From 3e839e9777d95d17e4b36c924b7e901b72531252 Mon Sep 17 00:00:00 2001 From: Galen Hunt Date: Wed, 30 Apr 2025 08:41:48 -0700 Subject: [PATCH 1/3] Rename raise_statement.txt to raise_statement.txt Remove trailing space in file name. --- test/corpus/{raise_statement.txt => raise_statement.txt} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename test/corpus/{raise_statement.txt => raise_statement.txt} (100%) diff --git a/test/corpus/raise_statement.txt b/test/corpus/raise_statement.txt similarity index 100% rename from test/corpus/raise_statement.txt rename to test/corpus/raise_statement.txt From 5932d8d6aa6b7692ececcde19b696175c4d2ec3e Mon Sep 17 00:00:00 2001 From: Galen Hunt Date: Thu, 1 May 2025 09:09:14 -0700 Subject: [PATCH 2/3] Fix casing invariance and spacing. --- grammar.js | 61 +- package.json | 6 +- src/grammar.json | 2007 +- src/node-types.json | 138 +- src/parser.c | 80237 ++++++++++++++++--------------------- src/tree_sitter/parser.h | 67 +- 6 files changed, 34853 insertions(+), 47663 deletions(-) diff --git a/grammar.js b/grammar.js index bd627bc..eb2fdcd 100644 --- a/grammar.js +++ b/grammar.js @@ -100,7 +100,8 @@ module.exports = grammar({ $.constructor_declaration, $.method_redefinition, alias($.class_method_declaration_class, $.class_method_declaration), - $.class_constructor_declaration + $.class_constructor_declaration, + $.chained_interface_declaration ), class_implementation: $ => @@ -263,6 +264,17 @@ module.exports = grammar({ "." ), + chained_interface_declaration: $ => + seq( + kw("interfaces"), + ":", + seq($.interface, repeat(seq(",", $.interface))), + ".", + ), + + interface: $ => + field("name", $.name), + interface_declaration: $ => seq( kw("interface"), @@ -383,11 +395,14 @@ module.exports = grammar({ seq( kw("data"), ":", - repeat1(choice($.variable, seq(",", $.variable))), + seq($.variable, repeat(seq(",", $.variable))), "." ), - variable: $ => seq($.name, alias($._data_object_typing, $.typing)), + variable: $ => + seq( + field("name", $.name), + field("typing", alias($._data_object_typing, $.typing))), chained_structure_declaration: $ => seq( @@ -395,13 +410,13 @@ module.exports = grammar({ ":", kw("begin"), kw("of"), - alias($.name, $.strucure_name), + alias($.name, $.structure_name), optional(kw("read-only")), ",", alias(repeat1($.structure_component), $.structure_components), kw("end"), kw("of"), - alias($.name, $.strucure_name), + alias($.name, $.structure_name), "." ), @@ -419,7 +434,7 @@ module.exports = grammar({ seq( kw("field-symbols"), ":", - repeat1(choice($.field_symbol, seq(",", $.field_symbol))), + seq($.field_symbol, repeat(seq(",", $.field_symbol))), "." ), @@ -571,7 +586,7 @@ module.exports = grammar({ table_expression: $ => seq( field("itab", $.name), - token.immediate("[ "), + token.immediate("["), //"[", field( "line_spec", @@ -614,7 +629,7 @@ module.exports = grammar({ _select_target: $ => choice( - seq(kw("into"), " ( ", $.name, repeat(seq(",", $.name)), " ) "), + seq(kw("into"), "(", $.name, repeat(seq(",", $.name)), ")"), seq( kw("into"), optional(seq(kw("corresponding"), kw("fields"), kw("of"))), @@ -721,12 +736,7 @@ module.exports = grammar({ kw("write"), ":", optional("/"), - repeat1( - choice( - $._general_expression_position, - seq(",", $._general_expression_position) - ) - ), + seq($._general_expression_position, repeat(seq(",", $._general_expression_position))), "." ), @@ -899,13 +909,13 @@ module.exports = grammar({ ), macro_include: $ => - seq( + prec(-10, seq( field("name", $.name), optional( alias(repeat1($._general_expression_position), $.parameter_list) ), "." - ), + )), //_marco_parameter_list: $ => repeat1($._general_expression_position), @@ -929,13 +939,13 @@ module.exports = grammar({ character_literal: $ => /'[^']+'/, - eol_comment: $ => seq('"', /[^\n]*/), + eol_comment: _ => token(seq('"', /[^\n]*/)), - bol_comment: $ => seq("*", /[^\n]*/), + bol_comment: _ => token(seq("*", /[^\n]*/)), - name: $ => /[a-zA-Z_][a-zA-Z0-9_]{0,29}/i, + name: $ => token(prec(-1, /[a-zA-Z_][a-zA-Z0-9_]*/)), - field_symbol_name: $ => /<[a-zA-Z0-9_]{0,28}>/i, + field_symbol_name: $ => token(prec(-1, /<[a-zA-Z0-9_]*>/)), }, }); @@ -944,5 +954,14 @@ module.exports = grammar({ * @param {string} word ABAP word as string */ function kw(word) { - return alias(new RegExp(word, "i"), word); + const pattern = word + .split('') + .map(c => { + const lower = c.toLowerCase(); + const upper = c.toUpperCase(); + return lower === upper ? c : `[${upper}${lower}]`; + }) + .join(''); + const name = word.replace('-','_'); + return alias(token(new RegExp(pattern)), name); } diff --git a/package.json b/package.json index d893b8a..4ac02a2 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "tree-sitter-abap", "version": "1.0.0", "description": "Tree Sitter ABAP", - "main": "index.js", + "main": "bindings/node", "types": "bindings/node", "scripts": { "test": "tree-sitter generate && tree-sitter test", @@ -39,7 +39,9 @@ "tree-sitter": [ { "scope": "source.abap", - "file-types": ["abap"], + "file-types": [ + "abap" + ], "injection-regex": "^abap$" } ] diff --git a/src/grammar.json b/src/grammar.json index 363267c..969338a 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -173,9 +173,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "class", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Cc][Ll][Aa][Ss][Ss]" + } }, "named": false, "value": "class" @@ -191,9 +193,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "definition", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Dd][Ee][Ff][Ii][Nn][Ii][Tt][Ii][Oo][Nn]" + } }, "named": false, "value": "definition" @@ -204,9 +208,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "public", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Pp][Uu][Bb][Ll][Ii][Cc]" + } }, "named": false, "value": "public" @@ -225,9 +231,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "inheriting", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Ii][Nn][Hh][Ee][Rr][Ii][Tt][Ii][Nn][Gg]" + } }, "named": false, "value": "inheriting" @@ -235,9 +243,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "from", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Ff][Rr][Oo][Mm]" + } }, "named": false, "value": "from" @@ -263,9 +273,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "abstract", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Aa][Bb][Ss][Tt][Rr][Aa][Cc][Tt]" + } }, "named": false, "value": "abstract" @@ -281,9 +293,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "final", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Ff][Ii][Nn][Aa][Ll]" + } }, "named": false, "value": "final" @@ -314,9 +328,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "shared", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Ss][Hh][Aa][Rr][Ee][Dd]" + } }, "named": false, "value": "shared" @@ -324,9 +340,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "memory", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Mm][Ee][Mm][Oo][Rr][Yy]" + } }, "named": false, "value": "memory" @@ -334,9 +352,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "enabled", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Ee][Nn][Aa][Bb][Ll][Ee][Dd]" + } }, "named": false, "value": "enabled" @@ -360,9 +380,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "global", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Gg][Ll][Oo][Bb][Aa][Ll]" + } }, "named": false, "value": "global" @@ -375,9 +397,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "friends", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Ff][Rr][Ii][Ee][Nn][Dd][Ss]" + } }, "named": false, "value": "friends" @@ -443,9 +467,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "endclass", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Ee][Nn][Dd][Cc][Ll][Aa][Ss][Ss]" + } }, "named": false, "value": "endclass" @@ -462,9 +488,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "create", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Cc][Rr][Ee][Aa][Tt][Ee]" + } }, "named": false, "value": "create" @@ -475,9 +503,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "public", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Pp][Uu][Bb][Ll][Ii][Cc]" + } }, "named": false, "value": "public" @@ -485,9 +515,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "protected", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Pp][Rr][Oo][Tt][Ee][Cc][Tt][Ee][Dd]" + } }, "named": false, "value": "protected" @@ -495,9 +527,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "private", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Pp][Rr][Ii][Vv][Aa][Tt][Ee]" + } }, "named": false, "value": "private" @@ -512,9 +546,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "public", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Pp][Uu][Bb][Ll][Ii][Cc]" + } }, "named": false, "value": "public" @@ -522,9 +558,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "section", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Ss][Ee][Cc][Tt][Ii][Oo][Nn]" + } }, "named": false, "value": "section" @@ -548,9 +586,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "protected", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Pp][Rr][Oo][Tt][Ee][Cc][Tt][Ee][Dd]" + } }, "named": false, "value": "protected" @@ -558,9 +598,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "section", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Ss][Ee][Cc][Tt][Ii][Oo][Nn]" + } }, "named": false, "value": "section" @@ -584,9 +626,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "private", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Pp][Rr][Ii][Vv][Aa][Tt][Ee]" + } }, "named": false, "value": "private" @@ -594,9 +638,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "section", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Ss][Ee][Cc][Tt][Ii][Oo][Nn]" + } }, "named": false, "value": "section" @@ -650,6 +696,10 @@ { "type": "SYMBOL", "name": "class_constructor_declaration" + }, + { + "type": "SYMBOL", + "name": "chained_interface_declaration" } ] }, @@ -659,9 +709,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "class", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Cc][Ll][Aa][Ss][Ss]" + } }, "named": false, "value": "class" @@ -677,9 +729,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "implementation", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Ii][Mm][Pp][Ll][Ee][Mm][Ee][Nn][Tt][Aa][Tt][Ii][Oo][Nn]" + } }, "named": false, "value": "implementation" @@ -698,9 +752,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "endclass", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Ee][Nn][Dd][Cc][Ll][Aa][Ss][Ss]" + } }, "named": false, "value": "endclass" @@ -717,9 +773,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "methods", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Mm][Ee][Tt][Hh][Oo][Dd][Ss]" + } }, "named": false, "value": "methods" @@ -741,9 +799,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "abstract", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Aa][Bb][Ss][Tt][Rr][Aa][Cc][Tt]" + } }, "named": false, "value": "abstract" @@ -751,9 +811,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "final", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Ff][Ii][Nn][Aa][Ll]" + } }, "named": false, "value": "final" @@ -869,9 +931,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "importing", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Ii][Mm][Pp][Oo][Rr][Tt][Ii][Nn][Gg]" + } }, "named": false, "value": "importing" @@ -891,9 +955,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "exporting", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Ee][Xx][Pp][Oo][Rr][Tt][Ii][Nn][Gg]" + } }, "named": false, "value": "exporting" @@ -913,9 +979,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "changing", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Cc][Hh][Aa][Nn][Gg][Ii][Nn][Gg]" + } }, "named": false, "value": "changing" @@ -935,9 +1003,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "raising", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Rr][Aa][Ii][Ss][Ii][Nn][Gg]" + } }, "named": false, "value": "raising" @@ -957,9 +1027,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "resumable", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Rr][Ee][Ss][Uu][Mm][Aa][Bb][Ll][Ee]" + } }, "named": false, "value": "resumable" @@ -989,9 +1061,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "exceptions", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Ee][Xx][Cc][Ee][Pp][Tt][Ii][Oo][Nn][Ss]" + } }, "named": false, "value": "exceptions" @@ -1017,9 +1091,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "value", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Vv][Aa][Ll][Uu][Ee]" + } }, "named": false, "value": "value" @@ -1044,9 +1120,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "reference", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Rr][Ee][Ff][Ee][Rr][Ee][Nn][Cc][Ee]" + } }, "named": false, "value": "reference" @@ -1084,9 +1162,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "optional", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Oo][Pp][Tt][Ii][Oo][Nn][Aa][Ll]" + } }, "named": false, "value": "optional" @@ -1097,9 +1177,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "default", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Dd][Ee][Ff][Aa][Uu][Ll][Tt]" + } }, "named": false, "value": "default" @@ -1125,9 +1207,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "returning", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Rr][Ee][Tt][Uu][Rr][Nn][Ii][Nn][Gg]" + } }, "named": false, "value": "returning" @@ -1135,9 +1219,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "value", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Vv][Aa][Ll][Uu][Ee]" + } }, "named": false, "value": "value" @@ -1166,9 +1252,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "methods", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Mm][Ee][Tt][Hh][Oo][Dd][Ss]" + } }, "named": false, "value": "methods" @@ -1176,9 +1264,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "constructor", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Cc][Oo][Nn][Ss][Tt][Rr][Uu][Cc][Tt][Oo][Rr]" + } }, "named": false, "value": "constructor" @@ -1189,9 +1279,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "final", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Ff][Ii][Nn][Aa][Ll]" + } }, "named": false, "value": "final" @@ -1261,19 +1353,23 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "class-methods", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Cc][Ll][Aa][Ss][Ss]-[Mm][Ee][Tt][Hh][Oo][Dd][Ss]" + } }, "named": false, - "value": "class-methods" + "value": "class_methods" }, { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "class_constructor", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Cc][Ll][Aa][Ss][Ss]_[Cc][Oo][Nn][Ss][Tt][Rr][Uu][Cc][Tt][Oo][Rr]" + } }, "named": false, "value": "class_constructor" @@ -1290,9 +1386,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "methods", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Mm][Ee][Tt][Hh][Oo][Dd][Ss]" + } }, "named": false, "value": "methods" @@ -1307,9 +1405,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "final", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Ff][Ii][Nn][Aa][Ll]" + } }, "named": false, "value": "final" @@ -1322,9 +1422,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "redefinition", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Rr][Ee][Dd][Ee][Ff][Ii][Nn][Ii][Tt][Ii][Oo][Nn]" + } }, "named": false, "value": "redefinition" @@ -1341,12 +1443,14 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "class-methods", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Cc][Ll][Aa][Ss][Ss]-[Mm][Ee][Tt][Hh][Oo][Dd][Ss]" + } }, "named": false, - "value": "class-methods" + "value": "class_methods" }, { "type": "FIELD", @@ -1460,12 +1564,14 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "class-methods", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Cc][Ll][Aa][Ss][Ss]-[Mm][Ee][Tt][Hh][Oo][Dd][Ss]" + } }, "named": false, - "value": "class-methods" + "value": "class_methods" }, { "type": "FIELD", @@ -1484,9 +1590,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "default", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Dd][Ee][Ff][Aa][Uu][Ll][Tt]" + } }, "named": false, "value": "default" @@ -1497,9 +1605,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "ignore", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Ii][Gg][Nn][Oo][Rr][Ee]" + } }, "named": false, "value": "ignore" @@ -1507,9 +1617,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "fail", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Ff][Aa][Ii][Ll]" + } }, "named": false, "value": "fail" @@ -1627,9 +1739,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "method", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Mm][Ee][Tt][Hh][Oo][Dd]" + } }, "named": false, "value": "method" @@ -1661,9 +1775,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "endmethod", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Ee][Nn][Dd][Mm][Ee][Tt][Hh][Oo][Dd]" + } }, "named": false, "value": "endmethod" @@ -1687,9 +1803,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "class", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Cc][Ll][Aa][Ss][Ss]" + } }, "named": false, "value": "class" @@ -1705,9 +1823,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "definition", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Dd][Ee][Ff][Ii][Nn][Ii][Tt][Ii][Oo][Nn]" + } }, "named": false, "value": "definition" @@ -1715,9 +1835,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "deferred", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Dd][Ee][Ff][Ee][Rr][Rr][Ee][Dd]" + } }, "named": false, "value": "deferred" @@ -1728,9 +1850,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "public", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Pp][Uu][Bb][Ll][Ii][Cc]" + } }, "named": false, "value": "public" @@ -1752,9 +1876,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "class", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Cc][Ll][Aa][Ss][Ss]" + } }, "named": false, "value": "class" @@ -1770,9 +1896,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "definition", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Dd][Ee][Ff][Ii][Nn][Ii][Tt][Ii][Oo][Nn]" + } }, "named": false, "value": "definition" @@ -1780,9 +1908,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "local", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Ll][Oo][Cc][Aa][Ll]" + } }, "named": false, "value": "local" @@ -1790,9 +1920,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "friends", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Ff][Rr][Ii][Ee][Nn][Dd][Ss]" + } }, "named": false, "value": "friends" @@ -1814,15 +1946,75 @@ } ] }, + "chained_interface_declaration": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Ii][Nn][Tt][Ee][Rr][Ff][Aa][Cc][Ee][Ss]" + } + }, + "named": false, + "value": "interfaces" + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "interface" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "interface" + } + ] + } + } + ] + }, + { + "type": "STRING", + "value": "." + } + ] + }, + "interface": { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "name" + } + }, "interface_declaration": { "type": "SEQ", "members": [ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "interface", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Ii][Nn][Tt][Ee][Rr][Ff][Aa][Cc][Ee]" + } }, "named": false, "value": "interface" @@ -1841,11 +2033,13 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "public", - "flags": "i" - }, - "named": false, + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Pp][Uu][Bb][Ll][Ii][Cc]" + } + }, + "named": false, "value": "public" }, { @@ -1867,9 +2061,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "endinterface", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Ee][Nn][Dd][Ii][Nn][Tt][Ee][Rr][Ff][Aa][Cc][Ee]" + } }, "named": false, "value": "endinterface" @@ -1913,9 +2109,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "methods", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Mm][Ee][Tt][Hh][Oo][Dd][Ss]" + } }, "named": false, "value": "methods" @@ -1937,9 +2135,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "default", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Dd][Ee][Ff][Aa][Uu][Ll][Tt]" + } }, "named": false, "value": "default" @@ -1950,9 +2150,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "ignore", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Ii][Gg][Nn][Oo][Rr][Ee]" + } }, "named": false, "value": "ignore" @@ -1960,9 +2162,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "fail", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Ff][Aa][Ii][Ll]" + } }, "named": false, "value": "fail" @@ -2096,9 +2300,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "type", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Tt][Yy][Pp][Ee]" + } }, "named": false, "value": "type" @@ -2115,9 +2321,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "like", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Ll][Ii][Kk][Ee]" + } }, "named": false, "value": "like" @@ -2139,9 +2347,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "type", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Tt][Yy][Pp][Ee]" + } }, "named": false, "value": "type" @@ -2163,9 +2373,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "type", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Tt][Yy][Pp][Ee]" + } }, "named": false, "value": "type" @@ -2173,9 +2385,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "ref", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Rr][Ee][Ff]" + } }, "named": false, "value": "ref" @@ -2183,9 +2397,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "to", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Tt][Oo]" + } }, "named": false, "value": "to" @@ -2209,9 +2425,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "any", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Aa][Nn][Yy]" + } }, "named": false, "value": "any" @@ -2222,9 +2440,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "any", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Aa][Nn][Yy]" + } }, "named": false, "value": "any" @@ -2232,9 +2452,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "table", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Tt][Aa][Bb][Ll][Ee]" + } }, "named": false, "value": "table" @@ -2272,9 +2494,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "type", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Tt][Yy][Pp][Ee]" + } }, "named": false, "value": "type" @@ -2288,9 +2512,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "line", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Ll][Ii][Nn][Ee]" + } }, "named": false, "value": "line" @@ -2298,9 +2524,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "of", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Oo][Ff]" + } }, "named": false, "value": "of" @@ -2329,9 +2557,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "like", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Ll][Ii][Kk][Ee]" + } }, "named": false, "value": "like" @@ -2345,9 +2575,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "line", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Ll][Ii][Nn][Ee]" + } }, "named": false, "value": "line" @@ -2355,9 +2587,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "of", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Oo][Ff]" + } }, "named": false, "value": "of" @@ -2386,9 +2620,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "value", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Vv][Aa][Ll][Uu][Ee]" + } }, "named": false, "value": "value" @@ -2406,9 +2642,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "is", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Ii][Ss]" + } }, "named": false, "value": "is" @@ -2416,9 +2654,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "initial", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Ii][Nn][Ii][Tt][Ii][Aa][Ll]" + } }, "named": false, "value": "initial" @@ -2440,12 +2680,14 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "read-only", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Rr][Ee][Aa][Dd]-[Oo][Nn][Ll][Yy]" + } }, "named": false, - "value": "read-only" + "value": "read_only" }, { "type": "BLANK" @@ -2466,9 +2708,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "type", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Tt][Yy][Pp][Ee]" + } }, "named": false, "value": "type" @@ -2476,9 +2720,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "ref", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Rr][Ee][Ff]" + } }, "named": false, "value": "ref" @@ -2486,9 +2732,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "to", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Tt][Oo]" + } }, "named": false, "value": "to" @@ -2510,9 +2758,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "like", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Ll][Ii][Kk][Ee]" + } }, "named": false, "value": "like" @@ -2520,9 +2770,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "ref", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Rr][Ee][Ff]" + } }, "named": false, "value": "ref" @@ -2530,9 +2782,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "to", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Tt][Oo]" + } }, "named": false, "value": "to" @@ -2554,9 +2808,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "value", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Vv][Aa][Ll][Uu][Ee]" + } }, "named": false, "value": "value" @@ -2564,9 +2820,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "is", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Ii][Ss]" + } }, "named": false, "value": "is" @@ -2574,9 +2832,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "initial", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Ii][Nn][Ii][Tt][Ii][Aa][Ll]" + } }, "named": false, "value": "initial" @@ -2594,12 +2854,14 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "read-only", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Rr][Ee][Aa][Dd]-[Oo][Nn][Ll][Yy]" + } }, "named": false, - "value": "read-only" + "value": "read_only" }, { "type": "BLANK" @@ -2620,9 +2882,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "type", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Tt][Yy][Pp][Ee]" + } }, "named": false, "value": "type" @@ -2636,9 +2900,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "standard", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Ss][Tt][Aa][Nn][Dd][Aa][Rr][Dd]" + } }, "named": false, "value": "standard" @@ -2651,9 +2917,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "sorted", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Ss][Oo][Rr][Tt][Ee][Dd]" + } }, "named": false, "value": "sorted" @@ -2661,9 +2929,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "hashed", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Hh][Aa][Ss][Hh][Ee][Dd]" + } }, "named": false, "value": "hashed" @@ -2673,9 +2943,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "table", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Tt][Aa][Bb][Ll][Ee]" + } }, "named": false, "value": "table" @@ -2683,9 +2955,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "of", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Oo][Ff]" + } }, "named": false, "value": "of" @@ -2699,9 +2973,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "ref", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Rr][Ee][Ff]" + } }, "named": false, "value": "ref" @@ -2709,9 +2985,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "to", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Tt][Oo]" + } }, "named": false, "value": "to" @@ -2740,9 +3018,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "like", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Ll][Ii][Kk][Ee]" + } }, "named": false, "value": "like" @@ -2756,9 +3036,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "standard", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Ss][Tt][Aa][Nn][Dd][Aa][Rr][Dd]" + } }, "named": false, "value": "standard" @@ -2771,9 +3053,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "sorted", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Ss][Oo][Rr][Tt][Ee][Dd]" + } }, "named": false, "value": "sorted" @@ -2781,9 +3065,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "hashed", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Hh][Aa][Ss][Hh][Ee][Dd]" + } }, "named": false, "value": "hashed" @@ -2793,9 +3079,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "table", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Tt][Aa][Bb][Ll][Ee]" + } }, "named": false, "value": "table" @@ -2803,9 +3091,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "of", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Oo][Ff]" + } }, "named": false, "value": "of" @@ -2826,9 +3116,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "data", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Dd][Aa][Tt][Aa]" + } }, "named": false, "value": "data" @@ -2866,9 +3158,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "data", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Dd][Aa][Tt][Aa]" + } }, "named": false, "value": "data" @@ -2878,15 +3172,15 @@ "value": ":" }, { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "variable" - }, - { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "variable" + }, + { + "type": "REPEAT", + "content": { "type": "SEQ", "members": [ { @@ -2899,8 +3193,8 @@ } ] } - ] - } + } + ] }, { "type": "STRING", @@ -2912,17 +3206,25 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "name" + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "name" + } }, { - "type": "ALIAS", + "type": "FIELD", + "name": "typing", "content": { - "type": "SYMBOL", - "name": "_data_object_typing" - }, - "named": true, - "value": "typing" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_data_object_typing" + }, + "named": true, + "value": "typing" + } } ] }, @@ -2932,9 +3234,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "data", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Dd][Aa][Tt][Aa]" + } }, "named": false, "value": "data" @@ -2946,9 +3250,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "begin", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Bb][Ee][Gg][Ii][Nn]" + } }, "named": false, "value": "begin" @@ -2956,9 +3262,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "of", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Oo][Ff]" + } }, "named": false, "value": "of" @@ -2970,7 +3278,7 @@ "name": "name" }, "named": true, - "value": "strucure_name" + "value": "structure_name" }, { "type": "CHOICE", @@ -2978,12 +3286,14 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "read-only", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Rr][Ee][Aa][Dd]-[Oo][Nn][Ll][Yy]" + } }, "named": false, - "value": "read-only" + "value": "read_only" }, { "type": "BLANK" @@ -3009,9 +3319,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "end", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Ee][Nn][Dd]" + } }, "named": false, "value": "end" @@ -3019,9 +3331,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "of", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Oo][Ff]" + } }, "named": false, "value": "of" @@ -3033,7 +3347,7 @@ "name": "name" }, "named": true, - "value": "strucure_name" + "value": "structure_name" }, { "type": "STRING", @@ -3064,12 +3378,14 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "field-symbols", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Ff][Ii][Ee][Ll][Dd]-[Ss][Yy][Mm][Bb][Oo][Ll][Ss]" + } }, "named": false, - "value": "field-symbols" + "value": "field_symbols" }, { "type": "ALIAS", @@ -3096,27 +3412,29 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "field-symbols", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Ff][Ii][Ee][Ll][Dd]-[Ss][Yy][Mm][Bb][Oo][Ll][Ss]" + } }, "named": false, - "value": "field-symbols" + "value": "field_symbols" }, { "type": "STRING", "value": ":" }, { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "field_symbol" - }, - { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "field_symbol" + }, + { + "type": "REPEAT", + "content": { "type": "SEQ", "members": [ { @@ -3129,8 +3447,8 @@ } ] } - ] - } + } + ] }, { "type": "STRING", @@ -3162,9 +3480,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "loop", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Ll][Oo][Oo][Pp]" + } }, "named": false, "value": "loop" @@ -3172,9 +3492,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "at", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Aa][Tt]" + } }, "named": false, "value": "at" @@ -3197,9 +3519,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "into", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Ii][Nn][Tt][Oo]" + } }, "named": false, "value": "into" @@ -3221,9 +3545,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "assigning", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Aa][Ss][Ss][Ii][Gg][Nn][Ii][Nn][Gg]" + } }, "named": false, "value": "assigning" @@ -3256,9 +3582,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "from", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Ff][Rr][Oo][Mm]" + } }, "named": false, "value": "from" @@ -3283,9 +3611,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "to", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Tt][Oo]" + } }, "named": false, "value": "to" @@ -3310,9 +3640,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "step", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Ss][Tt][Ee][Pp]" + } }, "named": false, "value": "step" @@ -3349,9 +3681,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "endloop", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Ee][Nn][Dd][Ll][Oo][Oo][Pp]" + } }, "named": false, "value": "endloop" @@ -3368,9 +3702,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "exit", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Ee][Xx][Ii][Tt]" + } }, "named": false, "value": "exit" @@ -3387,9 +3723,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "continue", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Cc][Oo][Nn][Tt][Ii][Nn][Uu][Ee]" + } }, "named": false, "value": "continue" @@ -3406,9 +3744,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "return", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Rr][Ee][Tt][Uu][Rr][Nn]" + } }, "named": false, "value": "return" @@ -3425,9 +3765,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "report", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Rr][Ee][Pp][Oo][Rr][Tt]" + } }, "named": false, "value": "report" @@ -3448,9 +3790,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "if", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Ii][Ff]" + } }, "named": false, "value": "if" @@ -3473,9 +3817,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "endif", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Ee][Nn][Dd][Ii][Ff]" + } }, "named": false, "value": "endif" @@ -3492,9 +3838,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "check", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Cc][Hh][Ee][Cc][Kk]" + } }, "named": false, "value": "check" @@ -3525,9 +3873,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "not", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Nn][Oo][Tt]" + } }, "named": false, "value": "not" @@ -3552,9 +3902,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "or", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Oo][Rr]" + } }, "named": false, "value": "or" @@ -3579,9 +3931,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "and", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Aa][Nn][Dd]" + } }, "named": false, "value": "and" @@ -3606,9 +3960,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "is", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Ii][Ss]" + } }, "named": false, "value": "is" @@ -3616,9 +3972,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "initial", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Ii][Nn][Ii][Tt][Ii][Aa][Ll]" + } }, "named": false, "value": "initial" @@ -3645,9 +4003,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "eq", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Ee][Qq]" + } }, "named": false, "value": "eq" @@ -3659,9 +4019,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "ne", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Nn][Ee]" + } }, "named": false, "value": "ne" @@ -3880,7 +4242,7 @@ "type": "IMMEDIATE_TOKEN", "content": { "type": "STRING", - "value": "[ " + "value": "[" } }, { @@ -3949,9 +4311,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "select", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Ss][Ee][Ll][Ee][Cc][Tt]" + } }, "named": false, "value": "select" @@ -3969,9 +4333,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "up", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Uu][Pp]" + } }, "named": false, "value": "up" @@ -3979,9 +4345,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "to", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Tt][Oo]" + } }, "named": false, "value": "to" @@ -3993,9 +4361,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "rows", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Rr][Oo][Ww][Ss]" + } }, "named": false, "value": "rows" @@ -4010,9 +4380,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "from", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Ff][Rr][Oo][Mm]" + } }, "named": false, "value": "from" @@ -4093,16 +4465,18 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "into", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Ii][Nn][Tt][Oo]" + } }, "named": false, "value": "into" }, { "type": "STRING", - "value": " ( " + "value": "(" }, { "type": "SYMBOL", @@ -4126,7 +4500,7 @@ }, { "type": "STRING", - "value": " ) " + "value": ")" } ] }, @@ -4136,9 +4510,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "into", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Ii][Nn][Tt][Oo]" + } }, "named": false, "value": "into" @@ -4152,9 +4528,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "corresponding", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Cc][Oo][Rr][Rr][Ee][Ss][Pp][Oo][Nn][Dd][Ii][Nn][Gg]" + } }, "named": false, "value": "corresponding" @@ -4162,9 +4540,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "fields", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Ff][Ii][Ee][Ll][Dd][Ss]" + } }, "named": false, "value": "fields" @@ -4172,9 +4552,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "of", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Oo][Ff]" + } }, "named": false, "value": "of" @@ -4201,9 +4583,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "into", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Ii][Nn][Tt][Oo]" + } }, "named": false, "value": "into" @@ -4211,9 +4595,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "appending", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Aa][Pp][Pp][Ee][Nn][Dd][Ii][Nn][Gg]" + } }, "named": false, "value": "appending" @@ -4229,9 +4615,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "corresponding", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Cc][Oo][Rr][Rr][Ee][Ss][Pp][Oo][Nn][Dd][Ii][Nn][Gg]" + } }, "named": false, "value": "corresponding" @@ -4239,9 +4627,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "fields", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Ff][Ii][Ee][Ll][Dd][Ss]" + } }, "named": false, "value": "fields" @@ -4249,9 +4639,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "of", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Oo][Ff]" + } }, "named": false, "value": "of" @@ -4266,9 +4658,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "table", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Tt][Aa][Bb][Ll][Ee]" + } }, "named": false, "value": "table" @@ -4287,9 +4681,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "for", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Ff][Oo][Rr]" + } }, "named": false, "value": "for" @@ -4297,9 +4693,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "all", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Aa][Ll][Ll]" + } }, "named": false, "value": "all" @@ -4307,9 +4705,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "entries", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Ee][Nn][Tt][Rr][Ii][Ee][Ss]" + } }, "named": false, "value": "entries" @@ -4317,9 +4717,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "in", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Ii][Nn]" + } }, "named": false, "value": "in" @@ -4336,9 +4738,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "where", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Ww][Hh][Ee][Rr][Ee]" + } }, "named": false, "value": "where" @@ -4359,9 +4763,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "read", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Rr][Ee][Aa][Dd]" + } }, "named": false, "value": "read" @@ -4369,9 +4775,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "table", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Tt][Aa][Bb][Ll][Ee]" + } }, "named": false, "value": "table" @@ -4423,9 +4831,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "with", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Ww][Ii][Tt][Hh]" + } }, "named": false, "value": "with" @@ -4433,9 +4843,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "key", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Kk][Ee][Yy]" + } }, "named": false, "value": "key" @@ -4469,9 +4881,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "binary", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Bb][Ii][Nn][Aa][Rr][Yy]" + } }, "named": false, "value": "binary" @@ -4479,9 +4893,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "search", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Ss][Ee][Aa][Rr][Cc][Hh]" + } }, "named": false, "value": "search" @@ -4504,9 +4920,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "into", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Ii][Nn][Tt][Oo]" + } }, "named": false, "value": "into" @@ -4523,9 +4941,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "transporting", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Tt][Rr][Aa][Nn][Ss][Pp][Oo][Rr][Tt][Ii][Nn][Gg]" + } }, "named": false, "value": "transporting" @@ -4533,9 +4953,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "no", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Nn][Oo]" + } }, "named": false, "value": "no" @@ -4543,9 +4965,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "fields", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Ff][Ii][Ee][Ll][Dd][Ss]" + } }, "named": false, "value": "fields" @@ -4686,9 +5110,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "try", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Tt][Rr][Yy]" + } }, "named": false, "value": "try" @@ -4719,9 +5145,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "endtry", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Ee][Nn][Dd][Tt][Rr][Yy]" + } }, "named": false, "value": "endtry" @@ -4745,9 +5173,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "catch", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Cc][Aa][Tt][Cc][Hh]" + } }, "named": false, "value": "catch" @@ -4769,9 +5199,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "into", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Ii][Nn][Tt][Oo]" + } }, "named": false, "value": "into" @@ -4822,9 +5254,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "write", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Ww][Rr][Ii][Tt][Ee]" + } }, "named": false, "value": "write" @@ -4857,9 +5291,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "write", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Ww][Rr][Ii][Tt][Ee]" + } }, "named": false, "value": "write" @@ -4881,15 +5317,15 @@ ] }, { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_general_expression_position" - }, - { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_general_expression_position" + }, + { + "type": "REPEAT", + "content": { "type": "SEQ", "members": [ { @@ -4902,8 +5338,8 @@ } ] } - ] - } + } + ] }, { "type": "STRING", @@ -4989,9 +5425,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "exporting", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Ee][Xx][Pp][Oo][Rr][Tt][Ii][Nn][Gg]" + } }, "named": false, "value": "exporting" @@ -5008,9 +5446,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "importing", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Ii][Mm][Pp][Oo][Rr][Tt][Ii][Nn][Gg]" + } }, "named": false, "value": "importing" @@ -5027,9 +5467,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "changing", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Cc][Hh][Aa][Nn][Gg][Ii][Nn][Gg]" + } }, "named": false, "value": "changing" @@ -5046,9 +5488,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "receiving", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Rr][Ee][Cc][Ee][Ii][Vv][Ii][Nn][Gg]" + } }, "named": false, "value": "receiving" @@ -5276,9 +5720,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "call", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Cc][Aa][Ll][Ll]" + } }, "named": false, "value": "call" @@ -5286,9 +5732,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "function", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Ff][Uu][Nn][Cc][Tt][Ii][Oo][Nn]" + } }, "named": false, "value": "function" @@ -5350,9 +5798,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "exporting", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Ee][Xx][Pp][Oo][Rr][Tt][Ii][Nn][Gg]" + } }, "named": false, "value": "exporting" @@ -5374,9 +5824,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "importing", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Ii][Mm][Pp][Oo][Rr][Tt][Ii][Nn][Gg]" + } }, "named": false, "value": "importing" @@ -5393,9 +5845,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "changing", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Cc][Hh][Aa][Nn][Gg][Ii][Nn][Gg]" + } }, "named": false, "value": "changing" @@ -5415,9 +5869,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "exceptions", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Ee][Xx][Cc][Ee][Pp][Tt][Ii][Oo][Nn][Ss]" + } }, "named": false, "value": "exceptions" @@ -5462,9 +5918,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "raise", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Rr][Aa][Ii][Ss][Ee]" + } }, "named": false, "value": "raise" @@ -5472,9 +5930,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "exception", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Ee][Xx][Cc][Ee][Pp][Tt][Ii][Oo][Nn]" + } }, "named": false, "value": "exception" @@ -5488,9 +5948,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "type", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Tt][Yy][Pp][Ee]" + } }, "named": false, "value": "type" @@ -5515,9 +5977,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "exporting", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Ee][Xx][Pp][Oo][Rr][Tt][Ii][Nn][Gg]" + } }, "named": false, "value": "exporting" @@ -5558,9 +6022,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "clear", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Cc][Ll][Ee][Aa][Rr]" + } }, "named": false, "value": "clear" @@ -5581,9 +6047,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "append", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Aa][Pp][Pp][Ee][Nn][Dd]" + } }, "named": false, "value": "append" @@ -5599,9 +6067,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "to", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Tt][Oo]" + } }, "named": false, "value": "to" @@ -5626,9 +6096,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "append", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Aa][Pp][Pp][Ee][Nn][Dd]" + } }, "named": false, "value": "append" @@ -5653,9 +6125,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "create", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Cc][Rr][Ee][Aa][Tt][Ee]" + } }, "named": false, "value": "create" @@ -5663,9 +6137,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "object", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Oo][Bb][Jj][Ee][Cc][Tt]" + } }, "named": false, "value": "object" @@ -5683,9 +6159,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "exporting", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Ee][Xx][Pp][Oo][Rr][Tt][Ii][Nn][Gg]" + } }, "named": false, "value": "exporting" @@ -5717,9 +6195,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "include", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Ii][Nn][Cc][Ll][Uu][Dd][Ee]" + } }, "named": false, "value": "include" @@ -5746,9 +6226,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "if", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Ii][Ff]" + } }, "named": false, "value": "if" @@ -5756,9 +6238,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "found", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Ff][Oo][Uu][Nn][Dd]" + } }, "named": false, "value": "found" @@ -5777,41 +6261,45 @@ ] }, "macro_include": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "name" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "REPEAT1", + "type": "PREC", + "value": -10, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "name" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", "content": { - "type": "SYMBOL", - "name": "_general_expression_position" - } + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "_general_expression_position" + } + }, + "named": true, + "value": "parameter_list" }, - "named": true, - "value": "parameter_list" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "." - } - ] + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "." + } + ] + } }, "function_implementation": { "type": "SEQ", @@ -5819,9 +6307,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "function", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Ff][Uu][Nn][Cc][Tt][Ii][Oo][Nn]" + } }, "named": false, "value": "function" @@ -5848,9 +6338,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "endfunction", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Ee][Nn][Dd][Ff][Uu][Nn][Cc][Tt][Ii][Oo][Nn]" + } }, "named": false, "value": "endfunction" @@ -5867,9 +6359,11 @@ { "type": "ALIAS", "content": { - "type": "PATTERN", - "value": "raise", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PATTERN", + "value": "[Rr][Aa][Ii][Ss][Ee]" + } }, "named": false, "value": "raise" @@ -5919,40 +6413,58 @@ "value": "'[^']+'" }, "eol_comment": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "\"" - }, - { - "type": "PATTERN", - "value": "[^\\n]*" - } - ] + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "\"" + }, + { + "type": "PATTERN", + "value": "[^\\n]*" + } + ] + } }, "bol_comment": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "*" - }, - { - "type": "PATTERN", - "value": "[^\\n]*" - } - ] + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "*" + }, + { + "type": "PATTERN", + "value": "[^\\n]*" + } + ] + } }, "name": { - "type": "PATTERN", - "value": "[a-zA-Z_][a-zA-Z0-9_]{0,29}", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PREC", + "value": -1, + "content": { + "type": "PATTERN", + "value": "[a-zA-Z_][a-zA-Z0-9_]*" + } + } }, "field_symbol_name": { - "type": "PATTERN", - "value": "<[a-zA-Z0-9_]{0,28}>", - "flags": "i" + "type": "TOKEN", + "content": { + "type": "PREC", + "value": -1, + "content": { + "type": "PATTERN", + "value": "<[a-zA-Z0-9_]*>" + } + } } }, "extras": [ @@ -5975,3 +6487,4 @@ "inline": [], "supertypes": [] } + diff --git a/src/node-types.json b/src/node-types.json index ba2faf4..9720c1f 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -149,11 +149,6 @@ } } }, - { - "type": "bol_comment", - "named": true, - "fields": {} - }, { "type": "call_function", "named": true, @@ -650,6 +645,21 @@ ] } }, + { + "type": "chained_interface_declaration", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "interface", + "named": true + } + ] + } + }, { "type": "chained_structure_declaration", "named": true, @@ -663,7 +673,7 @@ "named": true }, { - "type": "strucure_name", + "type": "structure_name", "named": true } ] @@ -1199,11 +1209,6 @@ ] } }, - { - "type": "eol_comment", - "named": true, - "fields": {} - }, { "type": "exception_list", "named": true, @@ -1648,6 +1653,22 @@ ] } }, + { + "type": "interface", + "named": true, + "fields": { + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "name", + "named": true + } + ] + } + } + }, { "type": "interface_declaration", "named": true, @@ -2342,6 +2363,10 @@ "multiple": true, "required": false, "types": [ + { + "type": "chained_interface_declaration", + "named": true + }, { "type": "class_constructor_declaration", "named": true @@ -2532,6 +2557,10 @@ "multiple": true, "required": false, "types": [ + { + "type": "chained_interface_declaration", + "named": true + }, { "type": "class_constructor_declaration", "named": true @@ -2567,6 +2596,10 @@ "multiple": true, "required": false, "types": [ + { + "type": "chained_interface_declaration", + "named": true + }, { "type": "class_constructor_declaration", "named": true @@ -3131,20 +3164,27 @@ { "type": "variable", "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "name", - "named": true - }, - { - "type": "typing", - "named": true - } - ] + "fields": { + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "name", + "named": true + } + ] + }, + "typing": { + "multiple": false, + "required": true, + "types": [ + { + "type": "typing", + "named": true + } + ] + } } }, { @@ -3231,22 +3271,10 @@ ] } }, - { - "type": " ( ", - "named": false - }, - { - "type": " ) ", - "named": false - }, { "type": "!", "named": false }, - { - "type": "\"", - "named": false - }, { "type": "(", "named": false @@ -3312,7 +3340,7 @@ "named": false }, { - "type": "[ ", + "type": "[", "named": false }, { @@ -3359,6 +3387,10 @@ "type": "binary", "named": false }, + { + "type": "bol_comment", + "named": true + }, { "type": "call", "named": false @@ -3384,11 +3416,11 @@ "named": false }, { - "type": "class-methods", + "type": "class_constructor", "named": false }, { - "type": "class_constructor", + "type": "class_methods", "named": false }, { @@ -3475,6 +3507,10 @@ "type": "entries", "named": false }, + { + "type": "eol_comment", + "named": true + }, { "type": "eq", "named": false @@ -3499,14 +3535,14 @@ "type": "fail", "named": false }, - { - "type": "field-symbols", - "named": false - }, { "type": "field_symbol_name", "named": true }, + { + "type": "field_symbols", + "named": false + }, { "type": "fields", "named": false @@ -3579,6 +3615,10 @@ "type": "interface", "named": false }, + { + "type": "interfaces", + "named": false + }, { "type": "into", "named": false @@ -3684,7 +3724,7 @@ "named": false }, { - "type": "read-only", + "type": "read_only", "named": false }, { @@ -3759,10 +3799,6 @@ "type": "structure_name", "named": true }, - { - "type": "strucure_name", - "named": true - }, { "type": "table", "named": false @@ -3781,11 +3817,11 @@ }, { "type": "type", - "named": false + "named": true }, { "type": "type", - "named": true + "named": false }, { "type": "up", diff --git a/src/parser.c b/src/parser.c index 9010843..2a60e2c 100644 --- a/src/parser.c +++ b/src/parser.c @@ -1,21 +1,22 @@ -#include "tree_sitter/parser.h" +#include #if defined(__GNUC__) || defined(__clang__) +#pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wmissing-field-initializers" #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 3167 +#define STATE_COUNT 3154 #define LARGE_STATE_COUNT 31 #define SYMBOL_COUNT 268 -#define ALIAS_COUNT 9 -#define TOKEN_COUNT 141 +#define ALIAS_COUNT 8 +#define TOKEN_COUNT 140 #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 24 #define MAX_ALIAS_SEQUENCE_LENGTH 22 -#define PRODUCTION_ID_COUNT 242 +#define PRODUCTION_ID_COUNT 243 -enum ts_symbol_identifiers { +enum { sym_name = 1, aux_sym_class_declaration_token1 = 2, aux_sym_class_declaration_token2 = 3, @@ -60,215 +61,215 @@ enum ts_symbol_identifiers { aux_sym_method_implementation_token2 = 42, aux_sym_class_publication_token1 = 43, aux_sym_class_local_friend_publication_token1 = 44, - aux_sym_interface_declaration_token1 = 45, - aux_sym_interface_declaration_token2 = 46, - aux_sym_generic_typing_token1 = 47, - aux_sym_generic_typing_token2 = 48, - aux_sym_complete_typing_token1 = 49, - aux_sym_complete_typing_token2 = 50, - aux_sym_generic_type_token1 = 51, - aux_sym_generic_type_token2 = 52, - aux_sym__data_object_typing_normal_token1 = 53, - aux_sym__data_object_typing_normal_token2 = 54, - aux_sym__data_object_typing_normal_token3 = 55, - aux_sym__data_object_typing_normal_token4 = 56, - aux_sym__data_object_typing_normal_token5 = 57, - aux_sym__data_object_typing_itabs_token1 = 58, - aux_sym__data_object_typing_itabs_token2 = 59, - aux_sym__data_object_typing_itabs_token3 = 60, - aux_sym_variable_declaration_token1 = 61, - anon_sym_COLON = 62, - anon_sym_COMMA = 63, - aux_sym_chained_structure_declaration_token1 = 64, - aux_sym_chained_structure_declaration_token2 = 65, - aux_sym_field_symbol_declaration_token1 = 66, - aux_sym_loop_statement_token1 = 67, - aux_sym_loop_statement_token2 = 68, - aux_sym_loop_statement_token3 = 69, - aux_sym_loop_statement_token4 = 70, - aux_sym_loop_statement_token5 = 71, - aux_sym_loop_statement_token6 = 72, - aux_sym_exit_statement_token1 = 73, - aux_sym_continue_statement_token1 = 74, - aux_sym_return_statement_token1 = 75, - aux_sym_report_statement_token1 = 76, - aux_sym_if_statement_token1 = 77, - aux_sym_if_statement_token2 = 78, - aux_sym_check_statement_token1 = 79, - aux_sym__logical_expression_token1 = 80, - aux_sym__logical_expression_token2 = 81, - aux_sym__logical_expression_token3 = 82, - anon_sym_EQ = 83, - aux_sym_comparison_expression_token1 = 84, - anon_sym_LT_GT = 85, - aux_sym_comparison_expression_token2 = 86, - anon_sym_PLUS = 87, - anon_sym_DASH = 88, - anon_sym_STAR = 89, - anon_sym_SLASH = 90, - anon_sym_DIV = 91, - anon_sym_MOD = 92, - anon_sym_STAR_STAR = 93, - anon_sym_LBRACK = 94, - anon_sym_RBRACK = 95, - aux_sym_select_statement_obsolete_token1 = 96, - aux_sym_select_statement_obsolete_token2 = 97, - aux_sym_select_statement_obsolete_token3 = 98, - anon_sym_LPAREN2 = 99, - anon_sym_RPAREN2 = 100, - aux_sym__select_target_token1 = 101, - aux_sym__select_target_token2 = 102, - aux_sym__select_target_token3 = 103, - aux_sym_for_all_entries_token1 = 104, - aux_sym_for_all_entries_token2 = 105, - aux_sym_for_all_entries_token3 = 106, - aux_sym_for_all_entries_token4 = 107, - aux_sym__where_clause_token1 = 108, - aux_sym_read_table_statement_token1 = 109, - aux_sym_line_spec_token1 = 110, - aux_sym_line_spec_token2 = 111, - aux_sym_line_spec_token3 = 112, - aux_sym_line_spec_token4 = 113, - aux_sym__read_table_result_token1 = 114, - aux_sym__read_table_result_token2 = 115, - anon_sym_DASH2 = 116, - anon_sym_EQ_GT = 117, - aux_sym_try_catch_statement_token1 = 118, - aux_sym_try_catch_statement_token2 = 119, - aux_sym_catch_statement_token1 = 120, - aux_sym_write_statement_token1 = 121, - anon_sym_LPAREN3 = 122, - aux_sym__explicit_parameter_list_token1 = 123, - anon_sym_DASH_GT = 124, - aux_sym_call_function_token1 = 125, - aux_sym_call_function_token2 = 126, - aux_sym_raise_exception_statement_token1 = 127, - aux_sym_raise_exception_statement_token2 = 128, - aux_sym_clear_statement_token1 = 129, - aux_sym_append_statement_token1 = 130, - aux_sym_create_object_statement_token1 = 131, - aux_sym_include_statement_token1 = 132, - aux_sym_include_statement_token2 = 133, - aux_sym_function_implementation_token1 = 134, - anon_sym_BANG = 135, - sym_numeric_literal = 136, - sym_character_literal = 137, - anon_sym_DQUOTE = 138, - aux_sym_eol_comment_token1 = 139, - sym_field_symbol_name = 140, - sym_program = 141, - sym__statement = 142, - sym__implementation_statement = 143, - sym_class_declaration = 144, - sym__create_addition = 145, - sym_public_section = 146, - sym_protected_section = 147, - sym_private_section = 148, - sym__class_components = 149, - sym_class_implementation = 150, - sym_method_declaration_class = 151, - sym__method_declaration_importing = 152, - sym__method_declaration_exporting = 153, - sym__method_declaration_changing = 154, - sym__method_declaration_raising = 155, - sym__method_declaration_exceptions = 156, - sym_method_parameters = 157, - sym_returning_parameter = 158, - sym_constructor_declaration = 159, - sym_class_constructor_declaration = 160, - sym_method_redefinition = 161, - sym_class_method_declaration_class = 162, - sym_class_method_declaration_interface = 163, - sym_method_implementation = 164, - sym_method_body = 165, - sym_class_publication = 166, - sym_class_local_friend_publication = 167, - sym_interface_declaration = 168, - sym__interface_components = 169, - sym_method_declaration_interface = 170, - sym__typing = 171, - sym_generic_typing = 172, - sym_complete_typing = 173, - sym_generic_type = 174, - sym__data_object_typing = 175, - sym__data_object_typing_normal = 176, - sym__data_object_typing_reference = 177, - sym__data_object_typing_itabs = 178, - sym_variable_declaration = 179, - sym_chained_variable_declaration = 180, - sym_variable = 181, - sym_chained_structure_declaration = 182, - sym_structure_component = 183, - sym_field_symbol_declaration = 184, - sym_chained_field_symbol_declaration = 185, - sym_field_symbol = 186, - sym_loop_statement = 187, - sym_exit_statement = 188, - sym_continue_statement = 189, - sym_return_statement = 190, - sym_report_statement = 191, - sym_if_statement = 192, - sym_check_statement = 193, - sym__logical_expression = 194, - sym_comparison_expression = 195, - sym__general_expression_position = 196, - sym__calculation_expression = 197, - sym_arithmetic_expression = 198, - sym__writeable_expression = 199, - sym_table_expression = 200, - aux_sym__table_expression_free_key = 201, - sym_comp_spec = 202, - sym_select_statement_obsolete = 203, - sym_select_list = 204, - sym__select_target = 205, - sym_for_all_entries = 206, - sym__where_clause = 207, - sym__sql_condition = 208, - sym_read_table_statement = 209, - sym_line_spec = 210, - sym__read_table_result = 211, - sym__data_object = 212, - sym_structured_data_object = 213, - sym_attribute_access_static = 214, - sym_assignment = 215, - sym_try_catch_statement = 216, - sym_try_block = 217, - sym_catch_statement = 218, - sym_catch_block = 219, - sym_write_statement = 220, - sym_chained_write_statement = 221, - sym_call_method = 222, - sym_parameter_list = 223, - sym__explicit_parameter_list = 224, - sym_parameter_list_exporting = 225, - sym_parameter_binding = 226, - sym_parameter_binding_exporting = 227, - sym_call_method_static = 228, - sym_call_method_instance = 229, - sym_call_function = 230, - aux_sym__function_parameter_list = 231, - sym_exception_list = 232, - sym_return_code_binding = 233, - sym_raise_exception_statement = 234, - sym_clear_statement = 235, - sym_append_statement = 236, - sym_append_statement_obsolete = 237, - sym_create_object_statement = 238, - sym_include_statement = 239, - sym_macro_include = 240, - sym_function_implementation = 241, - sym_raise_statement = 242, - sym__operand = 243, - sym__escaped_operand = 244, - sym_eol_comment = 245, - sym_bol_comment = 246, - aux_sym_program_repeat1 = 247, - aux_sym_class_declaration_repeat1 = 248, - aux_sym_public_section_repeat1 = 249, - aux_sym_class_implementation_repeat1 = 250, - aux_sym__method_declaration_importing_repeat1 = 251, - aux_sym__method_declaration_raising_repeat1 = 252, - aux_sym_method_body_repeat1 = 253, + aux_sym_chained_interface_declaration_token1 = 45, + anon_sym_COLON = 46, + anon_sym_COMMA = 47, + aux_sym_interface_declaration_token1 = 48, + aux_sym_interface_declaration_token2 = 49, + aux_sym_generic_typing_token1 = 50, + aux_sym_generic_typing_token2 = 51, + aux_sym_complete_typing_token1 = 52, + aux_sym_complete_typing_token2 = 53, + aux_sym_generic_type_token1 = 54, + aux_sym_generic_type_token2 = 55, + aux_sym__data_object_typing_normal_token1 = 56, + aux_sym__data_object_typing_normal_token2 = 57, + aux_sym__data_object_typing_normal_token3 = 58, + aux_sym__data_object_typing_normal_token4 = 59, + aux_sym__data_object_typing_normal_token5 = 60, + aux_sym__data_object_typing_itabs_token1 = 61, + aux_sym__data_object_typing_itabs_token2 = 62, + aux_sym__data_object_typing_itabs_token3 = 63, + aux_sym_variable_declaration_token1 = 64, + aux_sym_chained_structure_declaration_token1 = 65, + aux_sym_chained_structure_declaration_token2 = 66, + aux_sym_field_symbol_declaration_token1 = 67, + aux_sym_loop_statement_token1 = 68, + aux_sym_loop_statement_token2 = 69, + aux_sym_loop_statement_token3 = 70, + aux_sym_loop_statement_token4 = 71, + aux_sym_loop_statement_token5 = 72, + aux_sym_loop_statement_token6 = 73, + aux_sym_exit_statement_token1 = 74, + aux_sym_continue_statement_token1 = 75, + aux_sym_return_statement_token1 = 76, + aux_sym_report_statement_token1 = 77, + aux_sym_if_statement_token1 = 78, + aux_sym_if_statement_token2 = 79, + aux_sym_check_statement_token1 = 80, + aux_sym__logical_expression_token1 = 81, + aux_sym__logical_expression_token2 = 82, + aux_sym__logical_expression_token3 = 83, + anon_sym_EQ = 84, + aux_sym_comparison_expression_token1 = 85, + anon_sym_LT_GT = 86, + aux_sym_comparison_expression_token2 = 87, + anon_sym_PLUS = 88, + anon_sym_DASH = 89, + anon_sym_STAR = 90, + anon_sym_SLASH = 91, + anon_sym_DIV = 92, + anon_sym_MOD = 93, + anon_sym_STAR_STAR = 94, + anon_sym_LBRACK = 95, + anon_sym_RBRACK = 96, + aux_sym_select_statement_obsolete_token1 = 97, + aux_sym_select_statement_obsolete_token2 = 98, + aux_sym_select_statement_obsolete_token3 = 99, + aux_sym__select_target_token1 = 100, + aux_sym__select_target_token2 = 101, + aux_sym__select_target_token3 = 102, + aux_sym_for_all_entries_token1 = 103, + aux_sym_for_all_entries_token2 = 104, + aux_sym_for_all_entries_token3 = 105, + aux_sym_for_all_entries_token4 = 106, + aux_sym__where_clause_token1 = 107, + aux_sym_read_table_statement_token1 = 108, + aux_sym_line_spec_token1 = 109, + aux_sym_line_spec_token2 = 110, + aux_sym_line_spec_token3 = 111, + aux_sym_line_spec_token4 = 112, + aux_sym__read_table_result_token1 = 113, + aux_sym__read_table_result_token2 = 114, + anon_sym_DASH2 = 115, + anon_sym_EQ_GT = 116, + aux_sym_try_catch_statement_token1 = 117, + aux_sym_try_catch_statement_token2 = 118, + aux_sym_catch_statement_token1 = 119, + aux_sym_write_statement_token1 = 120, + anon_sym_LPAREN2 = 121, + aux_sym__explicit_parameter_list_token1 = 122, + anon_sym_DASH_GT = 123, + aux_sym_call_function_token1 = 124, + aux_sym_call_function_token2 = 125, + aux_sym_raise_exception_statement_token1 = 126, + aux_sym_raise_exception_statement_token2 = 127, + aux_sym_clear_statement_token1 = 128, + aux_sym_append_statement_token1 = 129, + aux_sym_create_object_statement_token1 = 130, + aux_sym_include_statement_token1 = 131, + aux_sym_include_statement_token2 = 132, + aux_sym_function_implementation_token1 = 133, + anon_sym_BANG = 134, + sym_numeric_literal = 135, + sym_character_literal = 136, + sym_eol_comment = 137, + sym_bol_comment = 138, + sym_field_symbol_name = 139, + sym_program = 140, + sym__statement = 141, + sym__implementation_statement = 142, + sym_class_declaration = 143, + sym__create_addition = 144, + sym_public_section = 145, + sym_protected_section = 146, + sym_private_section = 147, + sym__class_components = 148, + sym_class_implementation = 149, + sym_method_declaration_class = 150, + sym__method_declaration_importing = 151, + sym__method_declaration_exporting = 152, + sym__method_declaration_changing = 153, + sym__method_declaration_raising = 154, + sym__method_declaration_exceptions = 155, + sym_method_parameters = 156, + sym_returning_parameter = 157, + sym_constructor_declaration = 158, + sym_class_constructor_declaration = 159, + sym_method_redefinition = 160, + sym_class_method_declaration_class = 161, + sym_class_method_declaration_interface = 162, + sym_method_implementation = 163, + sym_method_body = 164, + sym_class_publication = 165, + sym_class_local_friend_publication = 166, + sym_chained_interface_declaration = 167, + sym_interface = 168, + sym_interface_declaration = 169, + sym__interface_components = 170, + sym_method_declaration_interface = 171, + sym__typing = 172, + sym_generic_typing = 173, + sym_complete_typing = 174, + sym_generic_type = 175, + sym__data_object_typing = 176, + sym__data_object_typing_normal = 177, + sym__data_object_typing_reference = 178, + sym__data_object_typing_itabs = 179, + sym_variable_declaration = 180, + sym_chained_variable_declaration = 181, + sym_variable = 182, + sym_chained_structure_declaration = 183, + sym_structure_component = 184, + sym_field_symbol_declaration = 185, + sym_chained_field_symbol_declaration = 186, + sym_field_symbol = 187, + sym_loop_statement = 188, + sym_exit_statement = 189, + sym_continue_statement = 190, + sym_return_statement = 191, + sym_report_statement = 192, + sym_if_statement = 193, + sym_check_statement = 194, + sym__logical_expression = 195, + sym_comparison_expression = 196, + sym__general_expression_position = 197, + sym__calculation_expression = 198, + sym_arithmetic_expression = 199, + sym__writeable_expression = 200, + sym_table_expression = 201, + aux_sym__table_expression_free_key = 202, + sym_comp_spec = 203, + sym_select_statement_obsolete = 204, + sym_select_list = 205, + sym__select_target = 206, + sym_for_all_entries = 207, + sym__where_clause = 208, + sym__sql_condition = 209, + sym_read_table_statement = 210, + sym_line_spec = 211, + sym__read_table_result = 212, + sym__data_object = 213, + sym_structured_data_object = 214, + sym_attribute_access_static = 215, + sym_assignment = 216, + sym_try_catch_statement = 217, + sym_try_block = 218, + sym_catch_statement = 219, + sym_catch_block = 220, + sym_write_statement = 221, + sym_chained_write_statement = 222, + sym_call_method = 223, + sym_parameter_list = 224, + sym__explicit_parameter_list = 225, + sym_parameter_list_exporting = 226, + sym_parameter_binding = 227, + sym_parameter_binding_exporting = 228, + sym_call_method_static = 229, + sym_call_method_instance = 230, + sym_call_function = 231, + aux_sym__function_parameter_list = 232, + sym_exception_list = 233, + sym_return_code_binding = 234, + sym_raise_exception_statement = 235, + sym_clear_statement = 236, + sym_append_statement = 237, + sym_append_statement_obsolete = 238, + sym_create_object_statement = 239, + sym_include_statement = 240, + sym_macro_include = 241, + sym_function_implementation = 242, + sym_raise_statement = 243, + sym__operand = 244, + sym__escaped_operand = 245, + aux_sym_program_repeat1 = 246, + aux_sym_class_declaration_repeat1 = 247, + aux_sym_public_section_repeat1 = 248, + aux_sym_class_implementation_repeat1 = 249, + aux_sym__method_declaration_importing_repeat1 = 250, + aux_sym__method_declaration_raising_repeat1 = 251, + aux_sym_method_body_repeat1 = 252, + aux_sym_chained_interface_declaration_repeat1 = 253, aux_sym_interface_declaration_repeat1 = 254, aux_sym_chained_variable_declaration_repeat1 = 255, aux_sym_chained_structure_declaration_repeat1 = 256, @@ -290,8 +291,7 @@ enum ts_symbol_identifiers { alias_sym_result = 272, alias_sym_structure_components = 273, alias_sym_structure_name = 274, - alias_sym_strucure_name = 275, - alias_sym_type = 276, + alias_sym_type = 275, }; static const char * const ts_symbol_names[] = { @@ -331,7 +331,7 @@ static const char * const ts_symbol_names[] = { [aux_sym_method_parameters_token4] = "default", [aux_sym_returning_parameter_token1] = "returning", [aux_sym_constructor_declaration_token1] = "constructor", - [aux_sym_class_constructor_declaration_token1] = "class-methods", + [aux_sym_class_constructor_declaration_token1] = "class_methods", [aux_sym_class_constructor_declaration_token2] = "class_constructor", [aux_sym_method_redefinition_token1] = "redefinition", [aux_sym_class_method_declaration_interface_token1] = "ignore", @@ -340,6 +340,9 @@ static const char * const ts_symbol_names[] = { [aux_sym_method_implementation_token2] = "endmethod", [aux_sym_class_publication_token1] = "deferred", [aux_sym_class_local_friend_publication_token1] = "local", + [aux_sym_chained_interface_declaration_token1] = "interfaces", + [anon_sym_COLON] = ":", + [anon_sym_COMMA] = ",", [aux_sym_interface_declaration_token1] = "interface", [aux_sym_interface_declaration_token2] = "endinterface", [aux_sym_generic_typing_token1] = "type", @@ -352,16 +355,14 @@ static const char * const ts_symbol_names[] = { [aux_sym__data_object_typing_normal_token2] = "of", [aux_sym__data_object_typing_normal_token3] = "is", [aux_sym__data_object_typing_normal_token4] = "initial", - [aux_sym__data_object_typing_normal_token5] = "read-only", + [aux_sym__data_object_typing_normal_token5] = "read_only", [aux_sym__data_object_typing_itabs_token1] = "standard", [aux_sym__data_object_typing_itabs_token2] = "sorted", [aux_sym__data_object_typing_itabs_token3] = "hashed", [aux_sym_variable_declaration_token1] = "data", - [anon_sym_COLON] = ":", - [anon_sym_COMMA] = ",", [aux_sym_chained_structure_declaration_token1] = "begin", [aux_sym_chained_structure_declaration_token2] = "end", - [aux_sym_field_symbol_declaration_token1] = "field-symbols", + [aux_sym_field_symbol_declaration_token1] = "field_symbols", [aux_sym_loop_statement_token1] = "loop", [aux_sym_loop_statement_token2] = "at", [aux_sym_loop_statement_token3] = "into", @@ -389,13 +390,11 @@ static const char * const ts_symbol_names[] = { [anon_sym_DIV] = "DIV", [anon_sym_MOD] = "MOD", [anon_sym_STAR_STAR] = "**", - [anon_sym_LBRACK] = "[ ", + [anon_sym_LBRACK] = "[", [anon_sym_RBRACK] = "]", [aux_sym_select_statement_obsolete_token1] = "select", [aux_sym_select_statement_obsolete_token2] = "up", [aux_sym_select_statement_obsolete_token3] = "rows", - [anon_sym_LPAREN2] = " ( ", - [anon_sym_RPAREN2] = " ) ", [aux_sym__select_target_token1] = "corresponding", [aux_sym__select_target_token2] = "fields", [aux_sym__select_target_token3] = "appending", @@ -417,7 +416,7 @@ static const char * const ts_symbol_names[] = { [aux_sym_try_catch_statement_token2] = "endtry", [aux_sym_catch_statement_token1] = "catch", [aux_sym_write_statement_token1] = "write", - [anon_sym_LPAREN3] = "(", + [anon_sym_LPAREN2] = "(", [aux_sym__explicit_parameter_list_token1] = "receiving", [anon_sym_DASH_GT] = "->", [aux_sym_call_function_token1] = "call", @@ -433,8 +432,8 @@ static const char * const ts_symbol_names[] = { [anon_sym_BANG] = "!", [sym_numeric_literal] = "numeric_literal", [sym_character_literal] = "character_literal", - [anon_sym_DQUOTE] = "\"", - [aux_sym_eol_comment_token1] = "eol_comment_token1", + [sym_eol_comment] = "eol_comment", + [sym_bol_comment] = "bol_comment", [sym_field_symbol_name] = "field_symbol_name", [sym_program] = "program", [sym__statement] = "_statement", @@ -463,6 +462,8 @@ static const char * const ts_symbol_names[] = { [sym_method_body] = "method_body", [sym_class_publication] = "class_publication", [sym_class_local_friend_publication] = "class_local_friend_publication", + [sym_chained_interface_declaration] = "chained_interface_declaration", + [sym_interface] = "interface", [sym_interface_declaration] = "interface_declaration", [sym__interface_components] = "_interface_components", [sym_method_declaration_interface] = "method_declaration", @@ -540,8 +541,6 @@ static const char * const ts_symbol_names[] = { [sym_raise_statement] = "raise_statement", [sym__operand] = "_operand", [sym__escaped_operand] = "_escaped_operand", - [sym_eol_comment] = "eol_comment", - [sym_bol_comment] = "bol_comment", [aux_sym_program_repeat1] = "program_repeat1", [aux_sym_class_declaration_repeat1] = "class_declaration_repeat1", [aux_sym_public_section_repeat1] = "public_section_repeat1", @@ -549,6 +548,7 @@ static const char * const ts_symbol_names[] = { [aux_sym__method_declaration_importing_repeat1] = "_method_declaration_importing_repeat1", [aux_sym__method_declaration_raising_repeat1] = "_method_declaration_raising_repeat1", [aux_sym_method_body_repeat1] = "method_body_repeat1", + [aux_sym_chained_interface_declaration_repeat1] = "chained_interface_declaration_repeat1", [aux_sym_interface_declaration_repeat1] = "interface_declaration_repeat1", [aux_sym_chained_variable_declaration_repeat1] = "chained_variable_declaration_repeat1", [aux_sym_chained_structure_declaration_repeat1] = "chained_structure_declaration_repeat1", @@ -570,7 +570,6 @@ static const char * const ts_symbol_names[] = { [alias_sym_result] = "result", [alias_sym_structure_components] = "structure_components", [alias_sym_structure_name] = "structure_name", - [alias_sym_strucure_name] = "strucure_name", [alias_sym_type] = "type", }; @@ -620,6 +619,9 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_method_implementation_token2] = aux_sym_method_implementation_token2, [aux_sym_class_publication_token1] = aux_sym_class_publication_token1, [aux_sym_class_local_friend_publication_token1] = aux_sym_class_local_friend_publication_token1, + [aux_sym_chained_interface_declaration_token1] = aux_sym_chained_interface_declaration_token1, + [anon_sym_COLON] = anon_sym_COLON, + [anon_sym_COMMA] = anon_sym_COMMA, [aux_sym_interface_declaration_token1] = aux_sym_interface_declaration_token1, [aux_sym_interface_declaration_token2] = aux_sym_interface_declaration_token2, [aux_sym_generic_typing_token1] = aux_sym_generic_typing_token1, @@ -637,8 +639,6 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym__data_object_typing_itabs_token2] = aux_sym__data_object_typing_itabs_token2, [aux_sym__data_object_typing_itabs_token3] = aux_sym__data_object_typing_itabs_token3, [aux_sym_variable_declaration_token1] = aux_sym_variable_declaration_token1, - [anon_sym_COLON] = anon_sym_COLON, - [anon_sym_COMMA] = anon_sym_COMMA, [aux_sym_chained_structure_declaration_token1] = aux_sym_chained_structure_declaration_token1, [aux_sym_chained_structure_declaration_token2] = aux_sym_chained_structure_declaration_token2, [aux_sym_field_symbol_declaration_token1] = aux_sym_field_symbol_declaration_token1, @@ -674,8 +674,6 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_select_statement_obsolete_token1] = aux_sym_select_statement_obsolete_token1, [aux_sym_select_statement_obsolete_token2] = aux_sym_select_statement_obsolete_token2, [aux_sym_select_statement_obsolete_token3] = aux_sym_select_statement_obsolete_token3, - [anon_sym_LPAREN2] = anon_sym_LPAREN2, - [anon_sym_RPAREN2] = anon_sym_RPAREN2, [aux_sym__select_target_token1] = aux_sym__select_target_token1, [aux_sym__select_target_token2] = aux_sym__select_target_token2, [aux_sym__select_target_token3] = aux_sym__select_target_token3, @@ -697,7 +695,7 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_try_catch_statement_token2] = aux_sym_try_catch_statement_token2, [aux_sym_catch_statement_token1] = aux_sym_catch_statement_token1, [aux_sym_write_statement_token1] = aux_sym_write_statement_token1, - [anon_sym_LPAREN3] = anon_sym_LPAREN, + [anon_sym_LPAREN2] = anon_sym_LPAREN, [aux_sym__explicit_parameter_list_token1] = aux_sym__explicit_parameter_list_token1, [anon_sym_DASH_GT] = anon_sym_DASH_GT, [aux_sym_call_function_token1] = aux_sym_call_function_token1, @@ -713,8 +711,8 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_BANG] = anon_sym_BANG, [sym_numeric_literal] = sym_numeric_literal, [sym_character_literal] = sym_character_literal, - [anon_sym_DQUOTE] = anon_sym_DQUOTE, - [aux_sym_eol_comment_token1] = aux_sym_eol_comment_token1, + [sym_eol_comment] = sym_eol_comment, + [sym_bol_comment] = sym_bol_comment, [sym_field_symbol_name] = sym_field_symbol_name, [sym_program] = sym_program, [sym__statement] = sym__statement, @@ -743,6 +741,8 @@ static const TSSymbol ts_symbol_map[] = { [sym_method_body] = sym_method_body, [sym_class_publication] = sym_class_publication, [sym_class_local_friend_publication] = sym_class_local_friend_publication, + [sym_chained_interface_declaration] = sym_chained_interface_declaration, + [sym_interface] = sym_interface, [sym_interface_declaration] = sym_interface_declaration, [sym__interface_components] = sym__interface_components, [sym_method_declaration_interface] = sym_method_declaration_class, @@ -820,8 +820,6 @@ static const TSSymbol ts_symbol_map[] = { [sym_raise_statement] = sym_raise_statement, [sym__operand] = sym__operand, [sym__escaped_operand] = sym__escaped_operand, - [sym_eol_comment] = sym_eol_comment, - [sym_bol_comment] = sym_bol_comment, [aux_sym_program_repeat1] = aux_sym_program_repeat1, [aux_sym_class_declaration_repeat1] = aux_sym_class_declaration_repeat1, [aux_sym_public_section_repeat1] = aux_sym_public_section_repeat1, @@ -829,6 +827,7 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym__method_declaration_importing_repeat1] = aux_sym__method_declaration_importing_repeat1, [aux_sym__method_declaration_raising_repeat1] = aux_sym__method_declaration_raising_repeat1, [aux_sym_method_body_repeat1] = aux_sym_method_body_repeat1, + [aux_sym_chained_interface_declaration_repeat1] = aux_sym_chained_interface_declaration_repeat1, [aux_sym_interface_declaration_repeat1] = aux_sym_interface_declaration_repeat1, [aux_sym_chained_variable_declaration_repeat1] = aux_sym_chained_variable_declaration_repeat1, [aux_sym_chained_structure_declaration_repeat1] = aux_sym_chained_structure_declaration_repeat1, @@ -850,7 +849,6 @@ static const TSSymbol ts_symbol_map[] = { [alias_sym_result] = alias_sym_result, [alias_sym_structure_components] = alias_sym_structure_components, [alias_sym_structure_name] = alias_sym_structure_name, - [alias_sym_strucure_name] = alias_sym_strucure_name, [alias_sym_type] = alias_sym_type, }; @@ -1035,6 +1033,18 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [aux_sym_chained_interface_declaration_token1] = { + .visible = true, + .named = false, + }, + [anon_sym_COLON] = { + .visible = true, + .named = false, + }, + [anon_sym_COMMA] = { + .visible = true, + .named = false, + }, [aux_sym_interface_declaration_token1] = { .visible = true, .named = false, @@ -1103,14 +1113,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_COLON] = { - .visible = true, - .named = false, - }, - [anon_sym_COMMA] = { - .visible = true, - .named = false, - }, [aux_sym_chained_structure_declaration_token1] = { .visible = true, .named = false, @@ -1251,14 +1253,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_LPAREN2] = { - .visible = true, - .named = false, - }, - [anon_sym_RPAREN2] = { - .visible = true, - .named = false, - }, [aux_sym__select_target_token1] = { .visible = true, .named = false, @@ -1343,7 +1337,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_LPAREN3] = { + [anon_sym_LPAREN2] = { .visible = true, .named = false, }, @@ -1407,13 +1401,13 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [anon_sym_DQUOTE] = { + [sym_eol_comment] = { .visible = true, - .named = false, + .named = true, }, - [aux_sym_eol_comment_token1] = { - .visible = false, - .named = false, + [sym_bol_comment] = { + .visible = true, + .named = true, }, [sym_field_symbol_name] = { .visible = true, @@ -1527,6 +1521,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_chained_interface_declaration] = { + .visible = true, + .named = true, + }, + [sym_interface] = { + .visible = true, + .named = true, + }, [sym_interface_declaration] = { .visible = true, .named = true, @@ -1835,14 +1837,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, - [sym_eol_comment] = { - .visible = true, - .named = true, - }, - [sym_bol_comment] = { - .visible = true, - .named = true, - }, [aux_sym_program_repeat1] = { .visible = false, .named = false, @@ -1871,6 +1865,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_chained_interface_declaration_repeat1] = { + .visible = false, + .named = false, + }, [aux_sym_interface_declaration_repeat1] = { .visible = false, .named = false, @@ -1955,17 +1953,13 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [alias_sym_strucure_name] = { - .visible = true, - .named = true, - }, [alias_sym_type] = { .visible = true, .named = true, }, }; -enum ts_field_identifiers { +enum { field_actual_parameter = 1, field_attribute = 2, field_changing_parameters = 3, @@ -2025,23 +2019,23 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [3] = {.index = 1, .length = 1}, [5] = {.index = 2, .length = 2}, [6] = {.index = 0, .length = 1}, - [8] = {.index = 4, .length = 2}, - [11] = {.index = 6, .length = 1}, - [12] = {.index = 7, .length = 1}, - [13] = {.index = 8, .length = 2}, - [14] = {.index = 8, .length = 2}, - [15] = {.index = 10, .length = 1}, - [16] = {.index = 11, .length = 1}, - [17] = {.index = 12, .length = 2}, + [7] = {.index = 4, .length = 2}, + [9] = {.index = 6, .length = 2}, + [12] = {.index = 8, .length = 1}, + [13] = {.index = 9, .length = 1}, + [14] = {.index = 10, .length = 2}, + [15] = {.index = 10, .length = 2}, + [16] = {.index = 12, .length = 1}, + [17] = {.index = 13, .length = 1}, [18] = {.index = 14, .length = 2}, - [19] = {.index = 16, .length = 1}, - [20] = {.index = 17, .length = 2}, + [19] = {.index = 16, .length = 2}, + [20] = {.index = 18, .length = 1}, [21] = {.index = 19, .length = 2}, [22] = {.index = 21, .length = 2}, [23] = {.index = 23, .length = 2}, - [24] = {.index = 25, .length = 1}, - [27] = {.index = 26, .length = 3}, - [28] = {.index = 29, .length = 2}, + [24] = {.index = 25, .length = 2}, + [25] = {.index = 27, .length = 1}, + [28] = {.index = 28, .length = 3}, [29] = {.index = 31, .length = 2}, [30] = {.index = 33, .length = 2}, [31] = {.index = 35, .length = 2}, @@ -2049,205 +2043,206 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [33] = {.index = 39, .length = 2}, [34] = {.index = 41, .length = 2}, [35] = {.index = 43, .length = 2}, - [37] = {.index = 45, .length = 2}, + [36] = {.index = 45, .length = 2}, [38] = {.index = 47, .length = 2}, - [39] = {.index = 49, .length = 3}, - [40] = {.index = 52, .length = 3}, - [41] = {.index = 55, .length = 3}, - [42] = {.index = 58, .length = 2}, - [43] = {.index = 60, .length = 3}, - [44] = {.index = 63, .length = 3}, - [45] = {.index = 66, .length = 3}, - [46] = {.index = 69, .length = 3}, - [47] = {.index = 72, .length = 3}, - [48] = {.index = 75, .length = 3}, - [49] = {.index = 78, .length = 3}, - [50] = {.index = 81, .length = 3}, - [51] = {.index = 84, .length = 3}, - [52] = {.index = 87, .length = 3}, - [53] = {.index = 90, .length = 2}, + [39] = {.index = 49, .length = 2}, + [40] = {.index = 51, .length = 3}, + [41] = {.index = 54, .length = 3}, + [42] = {.index = 57, .length = 3}, + [43] = {.index = 60, .length = 2}, + [44] = {.index = 62, .length = 3}, + [45] = {.index = 65, .length = 3}, + [46] = {.index = 68, .length = 3}, + [47] = {.index = 71, .length = 3}, + [48] = {.index = 74, .length = 3}, + [49] = {.index = 77, .length = 3}, + [50] = {.index = 80, .length = 3}, + [51] = {.index = 83, .length = 3}, + [52] = {.index = 86, .length = 3}, + [53] = {.index = 89, .length = 3}, [54] = {.index = 92, .length = 2}, - [57] = {.index = 94, .length = 2}, + [55] = {.index = 94, .length = 2}, [58] = {.index = 96, .length = 2}, [59] = {.index = 98, .length = 2}, [60] = {.index = 100, .length = 2}, [61] = {.index = 102, .length = 2}, [62] = {.index = 104, .length = 2}, - [63] = {.index = 106, .length = 4}, - [64] = {.index = 110, .length = 4}, - [65] = {.index = 114, .length = 4}, - [66] = {.index = 118, .length = 4}, - [67] = {.index = 122, .length = 4}, - [68] = {.index = 126, .length = 4}, - [69] = {.index = 130, .length = 3}, - [70] = {.index = 133, .length = 3}, - [71] = {.index = 136, .length = 4}, - [72] = {.index = 140, .length = 4}, - [73] = {.index = 144, .length = 4}, - [74] = {.index = 148, .length = 3}, - [75] = {.index = 151, .length = 3}, - [76] = {.index = 154, .length = 4}, - [77] = {.index = 158, .length = 3}, - [78] = {.index = 161, .length = 3}, - [79] = {.index = 164, .length = 3}, - [81] = {.index = 167, .length = 2}, + [63] = {.index = 106, .length = 2}, + [64] = {.index = 108, .length = 4}, + [65] = {.index = 112, .length = 4}, + [66] = {.index = 116, .length = 4}, + [67] = {.index = 120, .length = 4}, + [68] = {.index = 124, .length = 4}, + [69] = {.index = 128, .length = 4}, + [70] = {.index = 132, .length = 3}, + [71] = {.index = 135, .length = 3}, + [72] = {.index = 138, .length = 4}, + [73] = {.index = 142, .length = 4}, + [74] = {.index = 146, .length = 4}, + [75] = {.index = 150, .length = 3}, + [76] = {.index = 153, .length = 3}, + [77] = {.index = 156, .length = 4}, + [78] = {.index = 160, .length = 3}, + [79] = {.index = 163, .length = 3}, + [80] = {.index = 166, .length = 3}, [82] = {.index = 169, .length = 2}, - [83] = {.index = 171, .length = 3}, - [84] = {.index = 174, .length = 3}, - [85] = {.index = 177, .length = 3}, - [86] = {.index = 180, .length = 3}, - [87] = {.index = 183, .length = 3}, - [88] = {.index = 186, .length = 3}, - [89] = {.index = 189, .length = 3}, - [90] = {.index = 192, .length = 3}, - [91] = {.index = 195, .length = 3}, - [92] = {.index = 198, .length = 3}, - [93] = {.index = 201, .length = 2}, + [83] = {.index = 171, .length = 2}, + [84] = {.index = 173, .length = 3}, + [85] = {.index = 176, .length = 3}, + [86] = {.index = 179, .length = 3}, + [87] = {.index = 182, .length = 3}, + [88] = {.index = 185, .length = 3}, + [89] = {.index = 188, .length = 3}, + [90] = {.index = 191, .length = 3}, + [91] = {.index = 194, .length = 3}, + [92] = {.index = 197, .length = 3}, + [93] = {.index = 200, .length = 3}, [94] = {.index = 203, .length = 2}, - [95] = {.index = 205, .length = 5}, - [96] = {.index = 210, .length = 5}, - [97] = {.index = 215, .length = 5}, - [98] = {.index = 220, .length = 4}, - [99] = {.index = 224, .length = 4}, - [100] = {.index = 228, .length = 5}, - [101] = {.index = 233, .length = 4}, - [102] = {.index = 237, .length = 4}, - [103] = {.index = 241, .length = 4}, - [104] = {.index = 245, .length = 5}, - [105] = {.index = 250, .length = 4}, - [106] = {.index = 254, .length = 4}, - [107] = {.index = 258, .length = 4}, - [108] = {.index = 262, .length = 4}, - [110] = {.index = 266, .length = 2}, - [111] = {.index = 268, .length = 3}, - [112] = {.index = 271, .length = 1}, - [113] = {.index = 272, .length = 1}, - [114] = {.index = 273, .length = 1}, - [115] = {.index = 274, .length = 4}, - [116] = {.index = 278, .length = 4}, - [117] = {.index = 282, .length = 4}, - [118] = {.index = 286, .length = 4}, - [119] = {.index = 290, .length = 4}, - [120] = {.index = 294, .length = 4}, - [121] = {.index = 298, .length = 3}, - [122] = {.index = 301, .length = 3}, - [123] = {.index = 304, .length = 4}, - [124] = {.index = 308, .length = 4}, - [125] = {.index = 312, .length = 4}, - [126] = {.index = 316, .length = 3}, - [127] = {.index = 319, .length = 3}, - [128] = {.index = 322, .length = 4}, - [129] = {.index = 326, .length = 3}, - [130] = {.index = 329, .length = 3}, - [131] = {.index = 332, .length = 3}, - [132] = {.index = 335, .length = 6}, - [133] = {.index = 341, .length = 5}, - [134] = {.index = 346, .length = 5}, - [135] = {.index = 351, .length = 5}, - [136] = {.index = 356, .length = 5}, - [137] = {.index = 361, .length = 5}, - [139] = {.index = 366, .length = 3}, - [140] = {.index = 369, .length = 2}, - [141] = {.index = 371, .length = 3}, - [142] = {.index = 374, .length = 1}, - [143] = {.index = 375, .length = 1}, - [144] = {.index = 376, .length = 1}, - [145] = {.index = 377, .length = 2}, + [95] = {.index = 205, .length = 2}, + [96] = {.index = 207, .length = 5}, + [97] = {.index = 212, .length = 5}, + [98] = {.index = 217, .length = 5}, + [99] = {.index = 222, .length = 4}, + [100] = {.index = 226, .length = 4}, + [101] = {.index = 230, .length = 5}, + [102] = {.index = 235, .length = 4}, + [103] = {.index = 239, .length = 4}, + [104] = {.index = 243, .length = 4}, + [105] = {.index = 247, .length = 5}, + [106] = {.index = 252, .length = 4}, + [107] = {.index = 256, .length = 4}, + [108] = {.index = 260, .length = 4}, + [109] = {.index = 264, .length = 4}, + [111] = {.index = 268, .length = 2}, + [112] = {.index = 270, .length = 3}, + [113] = {.index = 273, .length = 1}, + [114] = {.index = 274, .length = 1}, + [115] = {.index = 275, .length = 1}, + [116] = {.index = 276, .length = 4}, + [117] = {.index = 280, .length = 4}, + [118] = {.index = 284, .length = 4}, + [119] = {.index = 288, .length = 4}, + [120] = {.index = 292, .length = 4}, + [121] = {.index = 296, .length = 4}, + [122] = {.index = 300, .length = 3}, + [123] = {.index = 303, .length = 3}, + [124] = {.index = 306, .length = 4}, + [125] = {.index = 310, .length = 4}, + [126] = {.index = 314, .length = 4}, + [127] = {.index = 318, .length = 3}, + [128] = {.index = 321, .length = 3}, + [129] = {.index = 324, .length = 4}, + [130] = {.index = 328, .length = 3}, + [131] = {.index = 331, .length = 3}, + [132] = {.index = 334, .length = 3}, + [133] = {.index = 337, .length = 6}, + [134] = {.index = 343, .length = 5}, + [135] = {.index = 348, .length = 5}, + [136] = {.index = 353, .length = 5}, + [137] = {.index = 358, .length = 5}, + [138] = {.index = 363, .length = 5}, + [140] = {.index = 368, .length = 3}, + [141] = {.index = 371, .length = 2}, + [142] = {.index = 373, .length = 3}, + [143] = {.index = 376, .length = 1}, + [144] = {.index = 377, .length = 1}, + [145] = {.index = 378, .length = 1}, [146] = {.index = 379, .length = 2}, [147] = {.index = 381, .length = 2}, [148] = {.index = 383, .length = 2}, [149] = {.index = 385, .length = 2}, [150] = {.index = 387, .length = 2}, - [151] = {.index = 389, .length = 5}, - [152] = {.index = 394, .length = 5}, - [153] = {.index = 399, .length = 5}, - [154] = {.index = 404, .length = 4}, - [155] = {.index = 408, .length = 4}, - [156] = {.index = 412, .length = 5}, - [157] = {.index = 417, .length = 4}, - [158] = {.index = 421, .length = 4}, - [159] = {.index = 425, .length = 4}, - [160] = {.index = 429, .length = 5}, - [161] = {.index = 434, .length = 4}, - [162] = {.index = 438, .length = 4}, - [163] = {.index = 442, .length = 4}, - [164] = {.index = 446, .length = 4}, - [165] = {.index = 450, .length = 6}, - [167] = {.index = 456, .length = 3}, - [168] = {.index = 459, .length = 2}, - [169] = {.index = 461, .length = 3}, - [170] = {.index = 464, .length = 2}, + [151] = {.index = 389, .length = 2}, + [152] = {.index = 391, .length = 5}, + [153] = {.index = 396, .length = 5}, + [154] = {.index = 401, .length = 5}, + [155] = {.index = 406, .length = 4}, + [156] = {.index = 410, .length = 4}, + [157] = {.index = 414, .length = 5}, + [158] = {.index = 419, .length = 4}, + [159] = {.index = 423, .length = 4}, + [160] = {.index = 427, .length = 4}, + [161] = {.index = 431, .length = 5}, + [162] = {.index = 436, .length = 4}, + [163] = {.index = 440, .length = 4}, + [164] = {.index = 444, .length = 4}, + [165] = {.index = 448, .length = 4}, + [166] = {.index = 452, .length = 6}, + [168] = {.index = 458, .length = 3}, + [169] = {.index = 461, .length = 2}, + [170] = {.index = 463, .length = 3}, [171] = {.index = 466, .length = 2}, [172] = {.index = 468, .length = 2}, - [173] = {.index = 470, .length = 3}, - [174] = {.index = 473, .length = 3}, - [175] = {.index = 476, .length = 3}, - [176] = {.index = 479, .length = 3}, - [177] = {.index = 482, .length = 3}, - [178] = {.index = 485, .length = 3}, - [179] = {.index = 488, .length = 3}, - [180] = {.index = 491, .length = 3}, - [181] = {.index = 494, .length = 3}, - [182] = {.index = 497, .length = 3}, - [183] = {.index = 500, .length = 6}, - [184] = {.index = 506, .length = 5}, - [185] = {.index = 511, .length = 5}, - [186] = {.index = 516, .length = 5}, - [187] = {.index = 521, .length = 5}, - [188] = {.index = 526, .length = 5}, - [189] = {.index = 531, .length = 3}, - [190] = {.index = 534, .length = 2}, - [191] = {.index = 536, .length = 3}, - [192] = {.index = 539, .length = 3}, - [193] = {.index = 542, .length = 4}, - [194] = {.index = 546, .length = 4}, - [195] = {.index = 550, .length = 4}, - [196] = {.index = 554, .length = 4}, - [197] = {.index = 558, .length = 4}, - [198] = {.index = 562, .length = 4}, - [199] = {.index = 566, .length = 3}, - [200] = {.index = 569, .length = 3}, - [201] = {.index = 572, .length = 4}, - [202] = {.index = 576, .length = 4}, - [203] = {.index = 580, .length = 4}, - [204] = {.index = 584, .length = 3}, - [205] = {.index = 587, .length = 3}, - [206] = {.index = 590, .length = 4}, - [207] = {.index = 594, .length = 3}, - [208] = {.index = 597, .length = 3}, - [209] = {.index = 600, .length = 6}, - [210] = {.index = 606, .length = 3}, - [211] = {.index = 609, .length = 2}, - [212] = {.index = 611, .length = 3}, - [213] = {.index = 614, .length = 5}, - [214] = {.index = 619, .length = 5}, - [215] = {.index = 624, .length = 5}, - [216] = {.index = 629, .length = 4}, - [217] = {.index = 633, .length = 4}, - [218] = {.index = 637, .length = 5}, - [219] = {.index = 642, .length = 4}, - [220] = {.index = 646, .length = 4}, - [221] = {.index = 650, .length = 4}, - [222] = {.index = 654, .length = 5}, - [223] = {.index = 659, .length = 4}, - [224] = {.index = 663, .length = 4}, - [225] = {.index = 667, .length = 4}, - [226] = {.index = 671, .length = 4}, - [227] = {.index = 675, .length = 3}, - [228] = {.index = 678, .length = 2}, - [229] = {.index = 680, .length = 3}, - [230] = {.index = 683, .length = 6}, - [231] = {.index = 689, .length = 5}, - [232] = {.index = 694, .length = 5}, - [233] = {.index = 699, .length = 5}, - [234] = {.index = 704, .length = 5}, - [235] = {.index = 709, .length = 5}, - [236] = {.index = 714, .length = 3}, - [237] = {.index = 717, .length = 3}, - [238] = {.index = 720, .length = 6}, - [239] = {.index = 726, .length = 3}, - [240] = {.index = 729, .length = 3}, - [241] = {.index = 732, .length = 3}, + [173] = {.index = 470, .length = 2}, + [174] = {.index = 472, .length = 3}, + [175] = {.index = 475, .length = 3}, + [176] = {.index = 478, .length = 3}, + [177] = {.index = 481, .length = 3}, + [178] = {.index = 484, .length = 3}, + [179] = {.index = 487, .length = 3}, + [180] = {.index = 490, .length = 3}, + [181] = {.index = 493, .length = 3}, + [182] = {.index = 496, .length = 3}, + [183] = {.index = 499, .length = 3}, + [184] = {.index = 502, .length = 6}, + [185] = {.index = 508, .length = 5}, + [186] = {.index = 513, .length = 5}, + [187] = {.index = 518, .length = 5}, + [188] = {.index = 523, .length = 5}, + [189] = {.index = 528, .length = 5}, + [190] = {.index = 533, .length = 3}, + [191] = {.index = 536, .length = 2}, + [192] = {.index = 538, .length = 3}, + [193] = {.index = 541, .length = 3}, + [194] = {.index = 544, .length = 4}, + [195] = {.index = 548, .length = 4}, + [196] = {.index = 552, .length = 4}, + [197] = {.index = 556, .length = 4}, + [198] = {.index = 560, .length = 4}, + [199] = {.index = 564, .length = 4}, + [200] = {.index = 568, .length = 3}, + [201] = {.index = 571, .length = 3}, + [202] = {.index = 574, .length = 4}, + [203] = {.index = 578, .length = 4}, + [204] = {.index = 582, .length = 4}, + [205] = {.index = 586, .length = 3}, + [206] = {.index = 589, .length = 3}, + [207] = {.index = 592, .length = 4}, + [208] = {.index = 596, .length = 3}, + [209] = {.index = 599, .length = 3}, + [210] = {.index = 602, .length = 6}, + [211] = {.index = 608, .length = 3}, + [212] = {.index = 611, .length = 2}, + [213] = {.index = 613, .length = 3}, + [214] = {.index = 616, .length = 5}, + [215] = {.index = 621, .length = 5}, + [216] = {.index = 626, .length = 5}, + [217] = {.index = 631, .length = 4}, + [218] = {.index = 635, .length = 4}, + [219] = {.index = 639, .length = 5}, + [220] = {.index = 644, .length = 4}, + [221] = {.index = 648, .length = 4}, + [222] = {.index = 652, .length = 4}, + [223] = {.index = 656, .length = 5}, + [224] = {.index = 661, .length = 4}, + [225] = {.index = 665, .length = 4}, + [226] = {.index = 669, .length = 4}, + [227] = {.index = 673, .length = 4}, + [228] = {.index = 677, .length = 3}, + [229] = {.index = 680, .length = 2}, + [230] = {.index = 682, .length = 3}, + [231] = {.index = 685, .length = 6}, + [232] = {.index = 691, .length = 5}, + [233] = {.index = 696, .length = 5}, + [234] = {.index = 701, .length = 5}, + [235] = {.index = 706, .length = 5}, + [236] = {.index = 711, .length = 5}, + [237] = {.index = 716, .length = 3}, + [238] = {.index = 719, .length = 3}, + [239] = {.index = 722, .length = 6}, + [240] = {.index = 728, .length = 3}, + [241] = {.index = 731, .length = 3}, + [242] = {.index = 734, .length = 3}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -2259,955 +2254,958 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_attribute, 2}, {field_class, 0}, [4] = + {field_name, 0}, + {field_typing, 1}, + [6] = {field_name, 1}, {field_typing, 2}, - [6] = + [8] = {field_name, 2}, - [7] = + [9] = {field_oref, 2}, - [8] = + [10] = {field_itab, 0}, {field_line_spec, 2}, - [10] = + [12] = {field_name, 1}, - [11] = + [13] = {field_exception, 1}, - [12] = + [14] = {field_name, 2}, {field_parameters, 3}, - [14] = + [16] = {field_exceptions, 3}, {field_name, 2}, - [16] = + [18] = {field_class, 3}, - [17] = + [19] = {field_itab, 3}, {field_line_spec, 1}, - [19] = + [21] = {field_component, 0}, {field_operand, 2}, - [21] = + [23] = {field_actual_parameter, 2}, {field_formal_parameter, 0}, - [23] = + [25] = {field_name, 0}, {field_parameters, 2}, - [25] = + [27] = {field_parameters, 4}, - [26] = + [28] = {field_exceptions, 4}, {field_name, 2}, {field_parameters, 3}, - [29] = + [31] = {field_class_name, 0}, {field_method_name, 2}, - [31] = + [33] = {field_instance_name, 0}, {field_method_name, 2}, - [33] = + [35] = {field_friends, 5}, {field_name, 1}, - [35] = + [37] = {field_importing_parameters, 2}, {field_name, 1}, - [37] = + [39] = {field_exporting_parameters, 2}, {field_name, 1}, - [39] = + [41] = {field_changing_parameters, 2}, {field_name, 1}, - [41] = + [43] = {field_name, 1}, {field_raising, 2}, - [43] = + [45] = {field_exceptions, 2}, {field_name, 1}, - [45] = + [47] = {field_exception, 1}, {field_oref, 3}, - [47] = + [49] = {field_exception, 0}, {field_return_code, 2}, - [49] = + [51] = {field_class, 3}, {field_parameters, 4}, {field_parameters, 5}, - [52] = + [54] = {field_class_name, 0}, {field_method_name, 2}, {field_parameters, 4}, - [55] = + [57] = {field_instance_name, 0}, {field_method_name, 2}, {field_parameters, 4}, - [58] = + [60] = {field_friends, 4}, {field_name, 1}, - [60] = + [62] = {field_exporting_parameters, 3}, {field_importing_parameters, 2}, {field_name, 1}, - [63] = + [65] = {field_changing_parameters, 3}, {field_importing_parameters, 2}, {field_name, 1}, - [66] = + [68] = {field_importing_parameters, 2}, {field_name, 1}, {field_raising, 3}, - [69] = + [71] = {field_exceptions, 3}, {field_importing_parameters, 2}, {field_name, 1}, - [72] = + [74] = {field_changing_parameters, 3}, {field_exporting_parameters, 2}, {field_name, 1}, - [75] = + [77] = {field_exporting_parameters, 2}, {field_name, 1}, {field_raising, 3}, - [78] = + [80] = {field_exceptions, 3}, {field_exporting_parameters, 2}, {field_name, 1}, - [81] = + [83] = {field_changing_parameters, 2}, {field_name, 1}, {field_raising, 3}, - [84] = + [86] = {field_changing_parameters, 2}, {field_exceptions, 3}, {field_name, 1}, - [87] = + [89] = {field_exceptions, 3}, {field_name, 1}, {field_raising, 2}, - [90] = + [92] = {field_name, 1}, {field_raising, 3}, - [92] = + [94] = {field_exceptions, 3}, {field_name, 1}, - [94] = + [96] = {field_name, 1}, {field_superclass, 5}, - [96] = + [98] = {field_importing_parameters, 4}, {field_name, 1}, - [98] = + [100] = {field_exporting_parameters, 4}, {field_name, 1}, - [100] = + [102] = {field_changing_parameters, 4}, {field_name, 1}, - [102] = + [104] = {field_name, 1}, {field_raising, 4}, - [104] = + [106] = {field_exceptions, 4}, {field_name, 1}, - [106] = + [108] = {field_changing_parameters, 4}, {field_exporting_parameters, 3}, {field_importing_parameters, 2}, {field_name, 1}, - [110] = + [112] = {field_exporting_parameters, 3}, {field_importing_parameters, 2}, {field_name, 1}, {field_raising, 4}, - [114] = + [116] = {field_exceptions, 4}, {field_exporting_parameters, 3}, {field_importing_parameters, 2}, {field_name, 1}, - [118] = + [120] = {field_changing_parameters, 3}, {field_importing_parameters, 2}, {field_name, 1}, {field_raising, 4}, - [122] = + [124] = {field_changing_parameters, 3}, {field_exceptions, 4}, {field_importing_parameters, 2}, {field_name, 1}, - [126] = + [128] = {field_exceptions, 4}, {field_importing_parameters, 2}, {field_name, 1}, {field_raising, 3}, - [130] = + [132] = {field_importing_parameters, 2}, {field_name, 1}, {field_raising, 4}, - [133] = + [135] = {field_exceptions, 4}, {field_importing_parameters, 2}, {field_name, 1}, - [136] = + [138] = {field_changing_parameters, 3}, {field_exporting_parameters, 2}, {field_name, 1}, {field_raising, 4}, - [140] = + [142] = {field_changing_parameters, 3}, {field_exceptions, 4}, {field_exporting_parameters, 2}, {field_name, 1}, - [144] = + [146] = {field_exceptions, 4}, {field_exporting_parameters, 2}, {field_name, 1}, {field_raising, 3}, - [148] = + [150] = {field_exporting_parameters, 2}, {field_name, 1}, {field_raising, 4}, - [151] = + [153] = {field_exceptions, 4}, {field_exporting_parameters, 2}, {field_name, 1}, - [154] = + [156] = {field_changing_parameters, 2}, {field_exceptions, 4}, {field_name, 1}, {field_raising, 3}, - [158] = + [160] = {field_changing_parameters, 2}, {field_name, 1}, {field_raising, 4}, - [161] = + [163] = {field_changing_parameters, 2}, {field_exceptions, 4}, {field_name, 1}, - [164] = + [166] = {field_exceptions, 4}, {field_name, 1}, {field_raising, 3}, - [167] = + [169] = {field_name, 1}, {field_superclass, 6}, - [169] = + [171] = {field_friends, 6}, {field_name, 1}, - [171] = + [173] = {field_exporting_parameters, 5}, {field_importing_parameters, 4}, {field_name, 1}, - [174] = + [176] = {field_changing_parameters, 5}, {field_importing_parameters, 4}, {field_name, 1}, - [177] = + [179] = {field_importing_parameters, 4}, {field_name, 1}, {field_raising, 5}, - [180] = + [182] = {field_exceptions, 5}, {field_importing_parameters, 4}, {field_name, 1}, - [183] = + [185] = {field_changing_parameters, 5}, {field_exporting_parameters, 4}, {field_name, 1}, - [186] = + [188] = {field_exporting_parameters, 4}, {field_name, 1}, {field_raising, 5}, - [189] = + [191] = {field_exceptions, 5}, {field_exporting_parameters, 4}, {field_name, 1}, - [192] = + [194] = {field_changing_parameters, 4}, {field_name, 1}, {field_raising, 5}, - [195] = + [197] = {field_changing_parameters, 4}, {field_exceptions, 5}, {field_name, 1}, - [198] = + [200] = {field_exceptions, 5}, {field_name, 1}, {field_raising, 4}, - [201] = + [203] = {field_name, 1}, {field_raising, 5}, - [203] = + [205] = {field_exceptions, 5}, {field_name, 1}, - [205] = + [207] = {field_changing_parameters, 4}, {field_exporting_parameters, 3}, {field_importing_parameters, 2}, {field_name, 1}, {field_raising, 5}, - [210] = + [212] = {field_changing_parameters, 4}, {field_exceptions, 5}, {field_exporting_parameters, 3}, {field_importing_parameters, 2}, {field_name, 1}, - [215] = + [217] = {field_exceptions, 5}, {field_exporting_parameters, 3}, {field_importing_parameters, 2}, {field_name, 1}, {field_raising, 4}, - [220] = + [222] = {field_exporting_parameters, 3}, {field_importing_parameters, 2}, {field_name, 1}, {field_raising, 5}, - [224] = + [226] = {field_exceptions, 5}, {field_exporting_parameters, 3}, {field_importing_parameters, 2}, {field_name, 1}, - [228] = + [230] = {field_changing_parameters, 3}, {field_exceptions, 5}, {field_importing_parameters, 2}, {field_name, 1}, {field_raising, 4}, - [233] = + [235] = {field_changing_parameters, 3}, {field_importing_parameters, 2}, {field_name, 1}, {field_raising, 5}, - [237] = + [239] = {field_changing_parameters, 3}, {field_exceptions, 5}, {field_importing_parameters, 2}, {field_name, 1}, - [241] = + [243] = {field_exceptions, 5}, {field_importing_parameters, 2}, {field_name, 1}, {field_raising, 4}, - [245] = + [247] = {field_changing_parameters, 3}, {field_exceptions, 5}, {field_exporting_parameters, 2}, {field_name, 1}, {field_raising, 4}, - [250] = + [252] = {field_changing_parameters, 3}, {field_exporting_parameters, 2}, {field_name, 1}, {field_raising, 5}, - [254] = + [256] = {field_changing_parameters, 3}, {field_exceptions, 5}, {field_exporting_parameters, 2}, {field_name, 1}, - [258] = + [260] = {field_exceptions, 5}, {field_exporting_parameters, 2}, {field_name, 1}, {field_raising, 4}, - [262] = + [264] = {field_changing_parameters, 2}, {field_exceptions, 5}, {field_name, 1}, {field_raising, 4}, - [266] = + [268] = {field_friends, 7}, {field_name, 1}, - [268] = + [270] = {field_friends, 7}, {field_name, 1}, {field_superclass, 5}, - [271] = + [273] = {field_importing_parameters, 2}, - [272] = + [274] = {field_raising, 2}, - [273] = + [275] = {field_exceptions, 2}, - [274] = + [276] = {field_changing_parameters, 6}, {field_exporting_parameters, 5}, {field_importing_parameters, 4}, {field_name, 1}, - [278] = + [280] = {field_exporting_parameters, 5}, {field_importing_parameters, 4}, {field_name, 1}, {field_raising, 6}, - [282] = + [284] = {field_exceptions, 6}, {field_exporting_parameters, 5}, {field_importing_parameters, 4}, {field_name, 1}, - [286] = + [288] = {field_changing_parameters, 5}, {field_importing_parameters, 4}, {field_name, 1}, {field_raising, 6}, - [290] = + [292] = {field_changing_parameters, 5}, {field_exceptions, 6}, {field_importing_parameters, 4}, {field_name, 1}, - [294] = + [296] = {field_exceptions, 6}, {field_importing_parameters, 4}, {field_name, 1}, {field_raising, 5}, - [298] = + [300] = {field_importing_parameters, 4}, {field_name, 1}, {field_raising, 6}, - [301] = + [303] = {field_exceptions, 6}, {field_importing_parameters, 4}, {field_name, 1}, - [304] = + [306] = {field_changing_parameters, 5}, {field_exporting_parameters, 4}, {field_name, 1}, {field_raising, 6}, - [308] = + [310] = {field_changing_parameters, 5}, {field_exceptions, 6}, {field_exporting_parameters, 4}, {field_name, 1}, - [312] = + [314] = {field_exceptions, 6}, {field_exporting_parameters, 4}, {field_name, 1}, {field_raising, 5}, - [316] = + [318] = {field_exporting_parameters, 4}, {field_name, 1}, {field_raising, 6}, - [319] = + [321] = {field_exceptions, 6}, {field_exporting_parameters, 4}, {field_name, 1}, - [322] = + [324] = {field_changing_parameters, 4}, {field_exceptions, 6}, {field_name, 1}, {field_raising, 5}, - [326] = + [328] = {field_changing_parameters, 4}, {field_name, 1}, {field_raising, 6}, - [329] = + [331] = {field_changing_parameters, 4}, {field_exceptions, 6}, {field_name, 1}, - [332] = + [334] = {field_exceptions, 6}, {field_name, 1}, {field_raising, 5}, - [335] = + [337] = {field_changing_parameters, 4}, {field_exceptions, 6}, {field_exporting_parameters, 3}, {field_importing_parameters, 2}, {field_name, 1}, {field_raising, 5}, - [341] = + [343] = {field_changing_parameters, 4}, {field_exporting_parameters, 3}, {field_importing_parameters, 2}, {field_name, 1}, {field_raising, 6}, - [346] = + [348] = {field_changing_parameters, 4}, {field_exceptions, 6}, {field_exporting_parameters, 3}, {field_importing_parameters, 2}, {field_name, 1}, - [351] = + [353] = {field_exceptions, 6}, {field_exporting_parameters, 3}, {field_importing_parameters, 2}, {field_name, 1}, {field_raising, 5}, - [356] = + [358] = {field_changing_parameters, 3}, {field_exceptions, 6}, {field_importing_parameters, 2}, {field_name, 1}, {field_raising, 5}, - [361] = + [363] = {field_changing_parameters, 3}, {field_exceptions, 6}, {field_exporting_parameters, 2}, {field_name, 1}, {field_raising, 5}, - [366] = + [368] = {field_friends, 8}, {field_name, 1}, {field_superclass, 6}, - [369] = + [371] = {field_friends, 8}, {field_name, 1}, - [371] = + [373] = {field_friends, 8}, {field_name, 1}, {field_superclass, 5}, - [374] = + [376] = {field_importing_parameters, 3}, - [375] = + [377] = {field_raising, 3}, - [376] = + [378] = {field_exceptions, 3}, - [377] = + [379] = {field_importing_parameters, 2}, {field_raising, 3}, - [379] = + [381] = {field_exceptions, 3}, {field_importing_parameters, 2}, - [381] = + [383] = {field_exceptions, 3}, {field_raising, 2}, - [383] = + [385] = {field_importing_parameters, 3}, {field_name, 1}, - [385] = + [387] = {field_exporting_parameters, 3}, {field_name, 1}, - [387] = + [389] = {field_changing_parameters, 3}, {field_name, 1}, - [389] = + [391] = {field_changing_parameters, 6}, {field_exporting_parameters, 5}, {field_importing_parameters, 4}, {field_name, 1}, {field_raising, 7}, - [394] = + [396] = {field_changing_parameters, 6}, {field_exceptions, 7}, {field_exporting_parameters, 5}, {field_importing_parameters, 4}, {field_name, 1}, - [399] = + [401] = {field_exceptions, 7}, {field_exporting_parameters, 5}, {field_importing_parameters, 4}, {field_name, 1}, {field_raising, 6}, - [404] = + [406] = {field_exporting_parameters, 5}, {field_importing_parameters, 4}, {field_name, 1}, {field_raising, 7}, - [408] = + [410] = {field_exceptions, 7}, {field_exporting_parameters, 5}, {field_importing_parameters, 4}, {field_name, 1}, - [412] = + [414] = {field_changing_parameters, 5}, {field_exceptions, 7}, {field_importing_parameters, 4}, {field_name, 1}, {field_raising, 6}, - [417] = + [419] = {field_changing_parameters, 5}, {field_importing_parameters, 4}, {field_name, 1}, {field_raising, 7}, - [421] = + [423] = {field_changing_parameters, 5}, {field_exceptions, 7}, {field_importing_parameters, 4}, {field_name, 1}, - [425] = + [427] = {field_exceptions, 7}, {field_importing_parameters, 4}, {field_name, 1}, {field_raising, 6}, - [429] = + [431] = {field_changing_parameters, 5}, {field_exceptions, 7}, {field_exporting_parameters, 4}, {field_name, 1}, {field_raising, 6}, - [434] = + [436] = {field_changing_parameters, 5}, {field_exporting_parameters, 4}, {field_name, 1}, {field_raising, 7}, - [438] = + [440] = {field_changing_parameters, 5}, {field_exceptions, 7}, {field_exporting_parameters, 4}, {field_name, 1}, - [442] = + [444] = {field_exceptions, 7}, {field_exporting_parameters, 4}, {field_name, 1}, {field_raising, 6}, - [446] = + [448] = {field_changing_parameters, 4}, {field_exceptions, 7}, {field_name, 1}, {field_raising, 6}, - [450] = + [452] = {field_changing_parameters, 4}, {field_exceptions, 7}, {field_exporting_parameters, 3}, {field_importing_parameters, 2}, {field_name, 1}, {field_raising, 6}, - [456] = + [458] = {field_friends, 9}, {field_name, 1}, {field_superclass, 6}, - [459] = + [461] = {field_friends, 9}, {field_name, 1}, - [461] = + [463] = {field_friends, 9}, {field_name, 1}, {field_superclass, 5}, - [464] = + [466] = {field_importing_parameters, 3}, {field_raising, 4}, - [466] = + [468] = {field_exceptions, 4}, {field_importing_parameters, 3}, - [468] = + [470] = {field_exceptions, 4}, {field_raising, 3}, - [470] = + [472] = {field_exceptions, 4}, {field_importing_parameters, 2}, {field_raising, 3}, - [473] = + [475] = {field_exporting_parameters, 4}, {field_importing_parameters, 3}, {field_name, 1}, - [476] = + [478] = {field_changing_parameters, 4}, {field_importing_parameters, 3}, {field_name, 1}, - [479] = + [481] = {field_importing_parameters, 3}, {field_name, 1}, {field_raising, 4}, - [482] = + [484] = {field_exceptions, 4}, {field_importing_parameters, 3}, {field_name, 1}, - [485] = + [487] = {field_changing_parameters, 4}, {field_exporting_parameters, 3}, {field_name, 1}, - [488] = + [490] = {field_exporting_parameters, 3}, {field_name, 1}, {field_raising, 4}, - [491] = + [493] = {field_exceptions, 4}, {field_exporting_parameters, 3}, {field_name, 1}, - [494] = + [496] = {field_changing_parameters, 3}, {field_name, 1}, {field_raising, 4}, - [497] = + [499] = {field_changing_parameters, 3}, {field_exceptions, 4}, {field_name, 1}, - [500] = + [502] = {field_changing_parameters, 6}, {field_exceptions, 8}, {field_exporting_parameters, 5}, {field_importing_parameters, 4}, {field_name, 1}, {field_raising, 7}, - [506] = + [508] = {field_changing_parameters, 6}, {field_exporting_parameters, 5}, {field_importing_parameters, 4}, {field_name, 1}, {field_raising, 8}, - [511] = + [513] = {field_changing_parameters, 6}, {field_exceptions, 8}, {field_exporting_parameters, 5}, {field_importing_parameters, 4}, {field_name, 1}, - [516] = + [518] = {field_exceptions, 8}, {field_exporting_parameters, 5}, {field_importing_parameters, 4}, {field_name, 1}, {field_raising, 7}, - [521] = + [523] = {field_changing_parameters, 5}, {field_exceptions, 8}, {field_importing_parameters, 4}, {field_name, 1}, {field_raising, 7}, - [526] = + [528] = {field_changing_parameters, 5}, {field_exceptions, 8}, {field_exporting_parameters, 4}, {field_name, 1}, {field_raising, 7}, - [531] = + [533] = {field_friends, 10}, {field_name, 1}, {field_superclass, 6}, - [534] = + [536] = {field_friends, 10}, {field_name, 1}, - [536] = + [538] = {field_friends, 10}, {field_name, 1}, {field_superclass, 5}, - [539] = + [541] = {field_exceptions, 5}, {field_importing_parameters, 3}, {field_raising, 4}, - [542] = + [544] = {field_changing_parameters, 5}, {field_exporting_parameters, 4}, {field_importing_parameters, 3}, {field_name, 1}, - [546] = + [548] = {field_exporting_parameters, 4}, {field_importing_parameters, 3}, {field_name, 1}, {field_raising, 5}, - [550] = + [552] = {field_exceptions, 5}, {field_exporting_parameters, 4}, {field_importing_parameters, 3}, {field_name, 1}, - [554] = + [556] = {field_changing_parameters, 4}, {field_importing_parameters, 3}, {field_name, 1}, {field_raising, 5}, - [558] = + [560] = {field_changing_parameters, 4}, {field_exceptions, 5}, {field_importing_parameters, 3}, {field_name, 1}, - [562] = + [564] = {field_exceptions, 5}, {field_importing_parameters, 3}, {field_name, 1}, {field_raising, 4}, - [566] = + [568] = {field_importing_parameters, 3}, {field_name, 1}, {field_raising, 5}, - [569] = + [571] = {field_exceptions, 5}, {field_importing_parameters, 3}, {field_name, 1}, - [572] = + [574] = {field_changing_parameters, 4}, {field_exporting_parameters, 3}, {field_name, 1}, {field_raising, 5}, - [576] = + [578] = {field_changing_parameters, 4}, {field_exceptions, 5}, {field_exporting_parameters, 3}, {field_name, 1}, - [580] = + [582] = {field_exceptions, 5}, {field_exporting_parameters, 3}, {field_name, 1}, {field_raising, 4}, - [584] = + [586] = {field_exporting_parameters, 3}, {field_name, 1}, {field_raising, 5}, - [587] = + [589] = {field_exceptions, 5}, {field_exporting_parameters, 3}, {field_name, 1}, - [590] = + [592] = {field_changing_parameters, 3}, {field_exceptions, 5}, {field_name, 1}, {field_raising, 4}, - [594] = + [596] = {field_changing_parameters, 3}, {field_name, 1}, {field_raising, 5}, - [597] = + [599] = {field_changing_parameters, 3}, {field_exceptions, 5}, {field_name, 1}, - [600] = + [602] = {field_changing_parameters, 6}, {field_exceptions, 9}, {field_exporting_parameters, 5}, {field_importing_parameters, 4}, {field_name, 1}, {field_raising, 8}, - [606] = + [608] = {field_friends, 11}, {field_name, 1}, {field_superclass, 6}, - [609] = + [611] = {field_friends, 11}, {field_name, 1}, - [611] = + [613] = {field_friends, 11}, {field_name, 1}, {field_superclass, 5}, - [614] = + [616] = {field_changing_parameters, 5}, {field_exporting_parameters, 4}, {field_importing_parameters, 3}, {field_name, 1}, {field_raising, 6}, - [619] = + [621] = {field_changing_parameters, 5}, {field_exceptions, 6}, {field_exporting_parameters, 4}, {field_importing_parameters, 3}, {field_name, 1}, - [624] = + [626] = {field_exceptions, 6}, {field_exporting_parameters, 4}, {field_importing_parameters, 3}, {field_name, 1}, {field_raising, 5}, - [629] = + [631] = {field_exporting_parameters, 4}, {field_importing_parameters, 3}, {field_name, 1}, {field_raising, 6}, - [633] = + [635] = {field_exceptions, 6}, {field_exporting_parameters, 4}, {field_importing_parameters, 3}, {field_name, 1}, - [637] = + [639] = {field_changing_parameters, 4}, {field_exceptions, 6}, {field_importing_parameters, 3}, {field_name, 1}, {field_raising, 5}, - [642] = + [644] = {field_changing_parameters, 4}, {field_importing_parameters, 3}, {field_name, 1}, {field_raising, 6}, - [646] = + [648] = {field_changing_parameters, 4}, {field_exceptions, 6}, {field_importing_parameters, 3}, {field_name, 1}, - [650] = + [652] = {field_exceptions, 6}, {field_importing_parameters, 3}, {field_name, 1}, {field_raising, 5}, - [654] = + [656] = {field_changing_parameters, 4}, {field_exceptions, 6}, {field_exporting_parameters, 3}, {field_name, 1}, {field_raising, 5}, - [659] = + [661] = {field_changing_parameters, 4}, {field_exporting_parameters, 3}, {field_name, 1}, {field_raising, 6}, - [663] = + [665] = {field_changing_parameters, 4}, {field_exceptions, 6}, {field_exporting_parameters, 3}, {field_name, 1}, - [667] = + [669] = {field_exceptions, 6}, {field_exporting_parameters, 3}, {field_name, 1}, {field_raising, 5}, - [671] = + [673] = {field_changing_parameters, 3}, {field_exceptions, 6}, {field_name, 1}, {field_raising, 5}, - [675] = + [677] = {field_friends, 12}, {field_name, 1}, {field_superclass, 6}, - [678] = + [680] = {field_friends, 12}, {field_name, 1}, - [680] = + [682] = {field_friends, 12}, {field_name, 1}, {field_superclass, 5}, - [683] = + [685] = {field_changing_parameters, 5}, {field_exceptions, 7}, {field_exporting_parameters, 4}, {field_importing_parameters, 3}, {field_name, 1}, {field_raising, 6}, - [689] = + [691] = {field_changing_parameters, 5}, {field_exporting_parameters, 4}, {field_importing_parameters, 3}, {field_name, 1}, {field_raising, 7}, - [694] = + [696] = {field_changing_parameters, 5}, {field_exceptions, 7}, {field_exporting_parameters, 4}, {field_importing_parameters, 3}, {field_name, 1}, - [699] = + [701] = {field_exceptions, 7}, {field_exporting_parameters, 4}, {field_importing_parameters, 3}, {field_name, 1}, {field_raising, 6}, - [704] = + [706] = {field_changing_parameters, 4}, {field_exceptions, 7}, {field_importing_parameters, 3}, {field_name, 1}, {field_raising, 6}, - [709] = + [711] = {field_changing_parameters, 4}, {field_exceptions, 7}, {field_exporting_parameters, 3}, {field_name, 1}, {field_raising, 6}, - [714] = + [716] = {field_friends, 13}, {field_name, 1}, {field_superclass, 6}, - [717] = + [719] = {field_friends, 13}, {field_name, 1}, {field_superclass, 5}, - [720] = + [722] = {field_changing_parameters, 5}, {field_exceptions, 8}, {field_exporting_parameters, 4}, {field_importing_parameters, 3}, {field_name, 1}, {field_raising, 7}, - [726] = + [728] = {field_friends, 14}, {field_name, 1}, {field_superclass, 6}, - [729] = + [731] = {field_friends, 14}, {field_name, 1}, {field_superclass, 5}, - [732] = + [734] = {field_friends, 15}, {field_name, 1}, {field_superclass, 6}, @@ -3224,49 +3222,49 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [6] = { [1] = sym_parameter_list, }, - [7] = { + [8] = { [1] = alias_sym_type, }, - [9] = { + [10] = { [0] = sym_name, }, - [10] = { + [11] = { [1] = sym_name, }, - [14] = { + [15] = { [2] = alias_sym_free_key, }, - [25] = { + [26] = { [3] = alias_sym_type, }, - [26] = { + [27] = { [3] = alias_sym_data_source, }, - [36] = { + [37] = { [4] = alias_sym_type, }, - [55] = { + [56] = { [5] = alias_sym_type, }, - [56] = { + [57] = { [2] = alias_sym_itab, [4] = alias_sym_result, }, - [80] = { + [81] = { [6] = alias_sym_type, }, - [109] = { + [110] = { [7] = alias_sym_data_source, }, - [138] = { - [4] = alias_sym_strucure_name, + [139] = { + [4] = alias_sym_structure_name, [6] = alias_sym_structure_components, - [9] = alias_sym_strucure_name, + [9] = alias_sym_structure_name, }, - [166] = { - [4] = alias_sym_strucure_name, + [167] = { + [4] = alias_sym_structure_name, [7] = alias_sym_structure_components, - [10] = alias_sym_strucure_name, + [10] = alias_sym_structure_name, }, }; @@ -3294,34 +3292,34 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [7] = 7, [8] = 8, [9] = 9, - [10] = 9, + [10] = 10, [11] = 11, [12] = 12, - [13] = 13, + [13] = 10, [14] = 14, [15] = 15, [16] = 16, - [17] = 17, - [18] = 11, - [19] = 4, - [20] = 20, - [21] = 17, - [22] = 15, - [23] = 23, - [24] = 20, - [25] = 13, - [26] = 26, - [27] = 14, - [28] = 12, - [29] = 26, - [30] = 16, + [17] = 16, + [18] = 18, + [19] = 19, + [20] = 4, + [21] = 9, + [22] = 14, + [23] = 11, + [24] = 18, + [25] = 15, + [26] = 19, + [27] = 27, + [28] = 28, + [29] = 27, + [30] = 12, [31] = 31, [32] = 32, [33] = 33, - [34] = 33, + [34] = 34, [35] = 35, - [36] = 36, - [37] = 36, + [36] = 33, + [37] = 34, [38] = 38, [39] = 39, [40] = 40, @@ -3532,249 +3530,249 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [245] = 245, [246] = 246, [247] = 247, - [248] = 248, - [249] = 249, - [250] = 250, - [251] = 191, - [252] = 159, - [253] = 217, - [254] = 76, - [255] = 64, - [256] = 71, - [257] = 78, - [258] = 59, - [259] = 58, - [260] = 57, - [261] = 219, - [262] = 77, - [263] = 220, - [264] = 56, - [265] = 223, - [266] = 63, - [267] = 224, - [268] = 225, - [269] = 229, - [270] = 81, - [271] = 176, - [272] = 60, - [273] = 110, - [274] = 114, - [275] = 120, - [276] = 132, - [277] = 158, - [278] = 74, - [279] = 192, - [280] = 218, - [281] = 226, - [282] = 244, - [283] = 79, - [284] = 243, - [285] = 242, - [286] = 241, - [287] = 240, - [288] = 239, - [289] = 82, - [290] = 238, - [291] = 237, - [292] = 83, - [293] = 236, - [294] = 106, - [295] = 235, - [296] = 190, - [297] = 234, - [298] = 233, - [299] = 232, - [300] = 231, - [301] = 230, - [302] = 151, - [303] = 228, - [304] = 227, - [305] = 107, - [306] = 193, - [307] = 189, - [308] = 222, - [309] = 221, - [310] = 84, - [311] = 188, - [312] = 160, - [313] = 187, - [314] = 186, - [315] = 185, - [316] = 161, - [317] = 184, - [318] = 131, - [319] = 66, - [320] = 183, - [321] = 162, - [322] = 130, - [323] = 69, - [324] = 182, - [325] = 67, - [326] = 85, - [327] = 133, - [328] = 194, - [329] = 134, - [330] = 135, - [331] = 141, - [332] = 215, - [333] = 136, - [334] = 181, - [335] = 40, - [336] = 180, - [337] = 41, - [338] = 152, - [339] = 103, - [340] = 104, - [341] = 55, - [342] = 153, - [343] = 137, - [344] = 179, - [345] = 42, - [346] = 129, - [347] = 178, - [348] = 43, - [349] = 108, - [350] = 177, - [351] = 119, - [352] = 44, - [353] = 80, - [354] = 45, - [355] = 46, - [356] = 195, - [357] = 118, - [358] = 196, - [359] = 86, - [360] = 138, - [361] = 47, - [362] = 154, - [363] = 197, - [364] = 96, - [365] = 117, - [366] = 198, - [367] = 139, - [368] = 128, - [369] = 61, - [370] = 199, - [371] = 102, - [372] = 175, - [373] = 140, - [374] = 62, - [375] = 155, - [376] = 156, - [377] = 214, - [378] = 101, - [379] = 174, - [380] = 200, - [381] = 73, - [382] = 72, - [383] = 109, - [384] = 127, - [385] = 126, - [386] = 111, - [387] = 213, - [388] = 112, - [389] = 173, - [390] = 212, - [391] = 172, - [392] = 48, - [393] = 113, - [394] = 88, - [395] = 171, - [396] = 201, - [397] = 202, - [398] = 203, - [399] = 89, - [400] = 90, - [401] = 91, - [402] = 150, - [403] = 116, - [404] = 204, - [405] = 205, - [406] = 149, - [407] = 148, - [408] = 170, - [409] = 169, - [410] = 157, - [411] = 211, - [412] = 206, - [413] = 121, - [414] = 168, - [415] = 92, - [416] = 167, - [417] = 68, - [418] = 65, - [419] = 147, - [420] = 87, - [421] = 125, - [422] = 166, - [423] = 124, - [424] = 165, - [425] = 164, - [426] = 122, - [427] = 210, - [428] = 163, - [429] = 93, - [430] = 75, - [431] = 95, - [432] = 97, - [433] = 209, - [434] = 39, - [435] = 54, - [436] = 53, - [437] = 49, + [248] = 148, + [249] = 78, + [250] = 113, + [251] = 119, + [252] = 245, + [253] = 244, + [254] = 243, + [255] = 242, + [256] = 178, + [257] = 241, + [258] = 240, + [259] = 238, + [260] = 117, + [261] = 118, + [262] = 116, + [263] = 112, + [264] = 264, + [265] = 265, + [266] = 235, + [267] = 153, + [268] = 234, + [269] = 115, + [270] = 233, + [271] = 102, + [272] = 232, + [273] = 99, + [274] = 231, + [275] = 51, + [276] = 52, + [277] = 230, + [278] = 247, + [279] = 229, + [280] = 194, + [281] = 227, + [282] = 53, + [283] = 225, + [284] = 224, + [285] = 223, + [286] = 222, + [287] = 221, + [288] = 220, + [289] = 218, + [290] = 217, + [291] = 216, + [292] = 85, + [293] = 84, + [294] = 83, + [295] = 215, + [296] = 214, + [297] = 54, + [298] = 213, + [299] = 212, + [300] = 211, + [301] = 210, + [302] = 55, + [303] = 82, + [304] = 208, + [305] = 101, + [306] = 207, + [307] = 206, + [308] = 60, + [309] = 205, + [310] = 204, + [311] = 49, + [312] = 203, + [313] = 201, + [314] = 56, + [315] = 200, + [316] = 57, + [317] = 199, + [318] = 198, + [319] = 197, + [320] = 42, + [321] = 193, + [322] = 192, + [323] = 96, + [324] = 50, + [325] = 58, + [326] = 191, + [327] = 48, + [328] = 59, + [329] = 246, + [330] = 190, + [331] = 189, + [332] = 61, + [333] = 188, + [334] = 62, + [335] = 63, + [336] = 187, + [337] = 97, + [338] = 186, + [339] = 120, + [340] = 185, + [341] = 65, + [342] = 121, + [343] = 184, + [344] = 122, + [345] = 47, + [346] = 123, + [347] = 46, + [348] = 64, + [349] = 45, + [350] = 124, + [351] = 183, + [352] = 125, + [353] = 126, + [354] = 127, + [355] = 128, + [356] = 129, + [357] = 44, + [358] = 182, + [359] = 181, + [360] = 88, + [361] = 180, + [362] = 100, + [363] = 237, + [364] = 41, + [365] = 66, + [366] = 236, + [367] = 179, + [368] = 228, + [369] = 103, + [370] = 107, + [371] = 176, + [372] = 69, + [373] = 226, + [374] = 87, + [375] = 130, + [376] = 89, + [377] = 175, + [378] = 106, + [379] = 67, + [380] = 131, + [381] = 132, + [382] = 43, + [383] = 174, + [384] = 173, + [385] = 133, + [386] = 172, + [387] = 171, + [388] = 170, + [389] = 169, + [390] = 68, + [391] = 70, + [392] = 167, + [393] = 134, + [394] = 135, + [395] = 77, + [396] = 164, + [397] = 91, + [398] = 136, + [399] = 95, + [400] = 80, + [401] = 168, + [402] = 137, + [403] = 111, + [404] = 138, + [405] = 139, + [406] = 110, + [407] = 140, + [408] = 141, + [409] = 109, + [410] = 108, + [411] = 92, + [412] = 166, + [413] = 195, + [414] = 177, + [415] = 196, + [416] = 202, + [417] = 71, + [418] = 157, + [419] = 165, + [420] = 94, + [421] = 163, + [422] = 162, + [423] = 72, + [424] = 161, + [425] = 160, + [426] = 159, + [427] = 90, + [428] = 209, + [429] = 98, + [430] = 158, + [431] = 142, + [432] = 73, + [433] = 143, + [434] = 144, + [435] = 145, + [436] = 74, + [437] = 75, [438] = 146, - [439] = 145, - [440] = 216, - [441] = 123, - [442] = 144, - [443] = 50, - [444] = 143, - [445] = 115, - [446] = 142, - [447] = 52, - [448] = 94, - [449] = 208, - [450] = 207, - [451] = 70, - [452] = 38, - [453] = 51, + [439] = 93, + [440] = 147, + [441] = 149, + [442] = 76, + [443] = 219, + [444] = 150, + [445] = 114, + [446] = 151, + [447] = 79, + [448] = 152, + [449] = 156, + [450] = 155, + [451] = 86, + [452] = 154, + [453] = 453, [454] = 454, - [455] = 455, + [455] = 454, [456] = 456, - [457] = 457, - [458] = 458, - [459] = 457, - [460] = 460, - [461] = 460, - [462] = 458, + [457] = 456, + [458] = 453, + [459] = 459, + [460] = 459, + [461] = 461, + [462] = 462, [463] = 463, - [464] = 463, - [465] = 465, + [464] = 464, + [465] = 464, [466] = 466, - [467] = 467, - [468] = 467, + [467] = 463, + [468] = 468, [469] = 469, [470] = 470, [471] = 471, - [472] = 470, + [472] = 472, [473] = 473, - [474] = 250, + [474] = 239, [475] = 475, [476] = 476, [477] = 477, - [478] = 478, + [478] = 39, [479] = 479, [480] = 480, - [481] = 481, + [481] = 40, [482] = 482, - [483] = 483, - [484] = 484, - [485] = 98, + [483] = 239, + [484] = 38, + [485] = 485, [486] = 486, [487] = 487, - [488] = 99, + [488] = 488, [489] = 489, - [490] = 100, + [490] = 490, [491] = 491, [492] = 492, [493] = 493, @@ -3782,42 +3780,42 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [495] = 495, [496] = 496, [497] = 497, - [498] = 498, - [499] = 496, + [498] = 81, + [499] = 499, [500] = 500, [501] = 501, - [502] = 494, + [502] = 502, [503] = 503, - [504] = 250, + [504] = 504, [505] = 505, - [506] = 503, - [507] = 507, - [508] = 105, - [509] = 509, + [506] = 104, + [507] = 105, + [508] = 508, + [509] = 264, [510] = 510, - [511] = 511, - [512] = 245, + [511] = 265, + [512] = 504, [513] = 513, - [514] = 514, - [515] = 515, - [516] = 514, + [514] = 505, + [515] = 500, + [516] = 516, [517] = 517, [518] = 518, - [519] = 249, - [520] = 520, - [521] = 521, + [519] = 519, + [520] = 265, + [521] = 264, [522] = 522, [523] = 523, - [524] = 523, + [524] = 524, [525] = 525, - [526] = 520, - [527] = 511, - [528] = 456, - [529] = 454, - [530] = 246, + [526] = 526, + [527] = 526, + [528] = 528, + [529] = 529, + [530] = 530, [531] = 531, - [532] = 247, - [533] = 248, + [532] = 532, + [533] = 533, [534] = 534, [535] = 535, [536] = 536, @@ -3830,108 +3828,108 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [543] = 543, [544] = 544, [545] = 545, - [546] = 546, + [546] = 545, [547] = 547, - [548] = 548, + [548] = 536, [549] = 549, [550] = 550, - [551] = 551, - [552] = 547, + [551] = 541, + [552] = 552, [553] = 553, - [554] = 548, - [555] = 549, - [556] = 556, - [557] = 557, + [554] = 540, + [555] = 538, + [556] = 550, + [557] = 542, [558] = 558, [559] = 559, [560] = 560, - [561] = 561, + [561] = 559, [562] = 562, [563] = 563, [564] = 564, - [565] = 561, - [566] = 566, - [567] = 567, - [568] = 551, - [569] = 454, - [570] = 570, - [571] = 562, - [572] = 564, - [573] = 456, - [574] = 563, - [575] = 575, - [576] = 550, - [577] = 577, - [578] = 562, - [579] = 567, + [565] = 565, + [566] = 532, + [567] = 552, + [568] = 558, + [569] = 569, + [570] = 535, + [571] = 565, + [572] = 545, + [573] = 547, + [574] = 552, + [575] = 549, + [576] = 547, + [577] = 543, + [578] = 578, + [579] = 579, [580] = 580, - [581] = 546, - [582] = 570, - [583] = 546, - [584] = 561, + [581] = 581, + [582] = 582, + [583] = 583, + [584] = 584, [585] = 585, [586] = 586, [587] = 587, [588] = 588, [589] = 589, [590] = 590, - [591] = 591, - [592] = 592, + [591] = 588, + [592] = 581, [593] = 593, [594] = 594, - [595] = 595, + [595] = 594, [596] = 596, [597] = 597, [598] = 598, - [599] = 599, - [600] = 600, + [599] = 596, + [600] = 587, [601] = 601, - [602] = 602, - [603] = 603, + [602] = 601, + [603] = 580, [604] = 604, [605] = 605, [606] = 606, - [607] = 590, - [608] = 600, - [609] = 596, - [610] = 605, - [611] = 595, + [607] = 607, + [608] = 608, + [609] = 609, + [610] = 610, + [611] = 611, [612] = 612, [613] = 613, [614] = 614, - [615] = 601, + [615] = 615, [616] = 616, - [617] = 617, + [617] = 612, [618] = 618, [619] = 619, - [620] = 100, - [621] = 621, + [620] = 620, + [621] = 618, [622] = 619, - [623] = 623, - [624] = 618, - [625] = 617, - [626] = 626, - [627] = 98, - [628] = 99, - [629] = 629, - [630] = 630, - [631] = 623, + [623] = 611, + [624] = 624, + [625] = 625, + [626] = 620, + [627] = 627, + [628] = 615, + [629] = 610, + [630] = 616, + [631] = 614, [632] = 632, [633] = 633, [634] = 634, - [635] = 250, + [635] = 635, [636] = 636, [637] = 637, - [638] = 638, - [639] = 639, - [640] = 640, - [641] = 641, + [638] = 625, + [639] = 95, + [640] = 627, + [641] = 632, [642] = 642, [643] = 643, [644] = 644, [645] = 645, [646] = 646, - [647] = 647, + [647] = 239, [648] = 648, [649] = 649, [650] = 650, @@ -3939,7 +3937,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [652] = 652, [653] = 653, [654] = 654, - [655] = 655, + [655] = 38, [656] = 656, [657] = 657, [658] = 658, @@ -3949,11 +3947,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [662] = 662, [663] = 663, [664] = 664, - [665] = 665, + [665] = 645, [666] = 666, [667] = 667, [668] = 668, - [669] = 664, + [669] = 669, [670] = 670, [671] = 671, [672] = 672, @@ -3966,33 +3964,33 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [679] = 679, [680] = 680, [681] = 681, - [682] = 650, - [683] = 663, + [682] = 653, + [683] = 683, [684] = 684, [685] = 685, [686] = 686, [687] = 687, [688] = 688, - [689] = 83, - [690] = 637, + [689] = 689, + [690] = 690, [691] = 691, - [692] = 685, + [692] = 692, [693] = 693, - [694] = 688, + [694] = 694, [695] = 695, - [696] = 696, - [697] = 681, - [698] = 698, - [699] = 659, + [696] = 650, + [697] = 697, + [698] = 668, + [699] = 699, [700] = 700, [701] = 701, - [702] = 670, + [702] = 40, [703] = 703, - [704] = 686, + [704] = 677, [705] = 705, [706] = 706, [707] = 707, - [708] = 708, + [708] = 699, [709] = 709, [710] = 710, [711] = 711, @@ -4003,10 +4001,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [716] = 716, [717] = 717, [718] = 718, - [719] = 719, - [720] = 718, - [721] = 660, - [722] = 684, + [719] = 688, + [720] = 720, + [721] = 721, + [722] = 722, [723] = 723, [724] = 724, [725] = 725, @@ -4014,91 +4012,91 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [727] = 727, [728] = 728, [729] = 729, - [730] = 711, - [731] = 709, - [732] = 707, - [733] = 668, - [734] = 646, - [735] = 719, - [736] = 716, - [737] = 667, - [738] = 665, - [739] = 662, - [740] = 714, - [741] = 695, - [742] = 658, - [743] = 657, - [744] = 647, + [730] = 730, + [731] = 731, + [732] = 732, + [733] = 733, + [734] = 734, + [735] = 735, + [736] = 736, + [737] = 737, + [738] = 738, + [739] = 739, + [740] = 695, + [741] = 741, + [742] = 742, + [743] = 743, + [744] = 744, [745] = 745, - [746] = 654, - [747] = 713, - [748] = 712, - [749] = 673, - [750] = 674, - [751] = 751, - [752] = 675, - [753] = 693, - [754] = 645, - [755] = 698, + [746] = 746, + [747] = 747, + [748] = 748, + [749] = 749, + [750] = 750, + [751] = 652, + [752] = 752, + [753] = 753, + [754] = 754, + [755] = 755, [756] = 756, [757] = 757, - [758] = 678, + [758] = 758, [759] = 759, - [760] = 757, + [760] = 760, [761] = 761, [762] = 762, [763] = 763, - [764] = 703, + [764] = 764, [765] = 765, - [766] = 105, - [767] = 661, + [766] = 766, + [767] = 767, [768] = 768, [769] = 769, - [770] = 687, - [771] = 652, - [772] = 701, - [773] = 756, - [774] = 656, - [775] = 655, - [776] = 653, - [777] = 636, - [778] = 691, - [779] = 717, - [780] = 708, - [781] = 710, - [782] = 638, - [783] = 761, - [784] = 715, - [785] = 706, - [786] = 729, - [787] = 639, - [788] = 641, - [789] = 696, - [790] = 649, + [770] = 770, + [771] = 771, + [772] = 772, + [773] = 773, + [774] = 774, + [775] = 775, + [776] = 776, + [777] = 777, + [778] = 778, + [779] = 779, + [780] = 706, + [781] = 781, + [782] = 782, + [783] = 674, + [784] = 784, + [785] = 785, + [786] = 786, + [787] = 787, + [788] = 697, + [789] = 789, + [790] = 790, [791] = 791, - [792] = 769, + [792] = 792, [793] = 793, - [794] = 794, + [794] = 724, [795] = 795, - [796] = 796, + [796] = 722, [797] = 797, [798] = 798, [799] = 799, [800] = 800, [801] = 801, [802] = 802, - [803] = 803, + [803] = 725, [804] = 804, [805] = 805, [806] = 806, - [807] = 807, + [807] = 701, [808] = 808, [809] = 809, [810] = 810, - [811] = 811, - [812] = 812, + [811] = 657, + [812] = 703, [813] = 813, - [814] = 814, + [814] = 720, [815] = 815, [816] = 816, [817] = 817, @@ -4150,7 +4148,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [863] = 863, [864] = 864, [865] = 865, - [866] = 866, + [866] = 700, [867] = 867, [868] = 868, [869] = 869, @@ -4165,28 +4163,28 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [878] = 878, [879] = 879, [880] = 880, - [881] = 881, - [882] = 882, + [881] = 39, + [882] = 709, [883] = 883, - [884] = 884, - [885] = 885, - [886] = 886, - [887] = 887, + [884] = 707, + [885] = 671, + [886] = 716, + [887] = 679, [888] = 888, - [889] = 889, - [890] = 890, - [891] = 891, - [892] = 892, - [893] = 893, - [894] = 894, - [895] = 895, - [896] = 896, - [897] = 897, - [898] = 898, - [899] = 899, - [900] = 900, + [889] = 670, + [890] = 644, + [891] = 669, + [892] = 663, + [893] = 656, + [894] = 736, + [895] = 721, + [896] = 723, + [897] = 662, + [898] = 888, + [899] = 799, + [900] = 762, [901] = 901, - [902] = 902, + [902] = 705, [903] = 903, [904] = 904, [905] = 905, @@ -4199,7 +4197,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [912] = 912, [913] = 913, [914] = 914, - [915] = 915, + [915] = 738, [916] = 916, [917] = 917, [918] = 918, @@ -4216,9 +4214,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [929] = 929, [930] = 930, [931] = 931, - [932] = 932, - [933] = 933, - [934] = 934, + [932] = 761, + [933] = 660, + [934] = 661, [935] = 935, [936] = 936, [937] = 937, @@ -4234,7 +4232,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [947] = 947, [948] = 948, [949] = 949, - [950] = 950, + [950] = 770, [951] = 951, [952] = 952, [953] = 953, @@ -4245,7 +4243,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [958] = 958, [959] = 959, [960] = 960, - [961] = 961, + [961] = 782, [962] = 962, [963] = 963, [964] = 964, @@ -4254,64 +4252,64 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [967] = 967, [968] = 968, [969] = 969, - [970] = 970, + [970] = 791, [971] = 971, [972] = 972, [973] = 973, - [974] = 974, + [974] = 945, [975] = 975, - [976] = 951, + [976] = 976, [977] = 977, [978] = 978, [979] = 979, [980] = 980, [981] = 981, - [982] = 982, + [982] = 954, [983] = 983, - [984] = 951, - [985] = 985, - [986] = 986, - [987] = 987, - [988] = 988, - [989] = 989, - [990] = 990, + [984] = 984, + [985] = 958, + [986] = 729, + [987] = 971, + [988] = 728, + [989] = 964, + [990] = 959, [991] = 991, - [992] = 950, + [992] = 992, [993] = 993, [994] = 994, [995] = 995, - [996] = 249, - [997] = 997, - [998] = 998, - [999] = 999, + [996] = 996, + [997] = 993, + [998] = 993, + [999] = 992, [1000] = 1000, [1001] = 1001, - [1002] = 995, - [1003] = 1003, + [1002] = 1002, + [1003] = 994, [1004] = 1004, [1005] = 1005, [1006] = 1006, - [1007] = 1007, + [1007] = 996, [1008] = 1008, - [1009] = 998, + [1009] = 1001, [1010] = 1010, - [1011] = 1011, + [1011] = 81, [1012] = 1012, - [1013] = 1013, - [1014] = 1014, - [1015] = 1015, + [1013] = 1000, + [1014] = 995, + [1015] = 1012, [1016] = 1016, - [1017] = 1012, + [1017] = 1017, [1018] = 1018, [1019] = 1019, [1020] = 1020, [1021] = 1021, - [1022] = 803, + [1022] = 1022, [1023] = 1023, - [1024] = 1007, + [1024] = 1024, [1025] = 1025, [1026] = 1026, - [1027] = 1016, + [1027] = 1027, [1028] = 1028, [1029] = 1029, [1030] = 1030, @@ -4357,149 +4355,149 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1070] = 1070, [1071] = 1071, [1072] = 1072, - [1073] = 1030, + [1073] = 1073, [1074] = 1074, [1075] = 1075, [1076] = 1076, [1077] = 1077, [1078] = 1078, [1079] = 1079, - [1080] = 1080, - [1081] = 1081, + [1080] = 1018, + [1081] = 1029, [1082] = 1082, [1083] = 1083, - [1084] = 1078, + [1084] = 1034, [1085] = 1085, - [1086] = 1086, + [1086] = 1032, [1087] = 1087, [1088] = 1088, [1089] = 1089, - [1090] = 1090, + [1090] = 1026, [1091] = 1091, [1092] = 1092, - [1093] = 1089, + [1093] = 1093, [1094] = 1094, [1095] = 1095, [1096] = 1096, - [1097] = 1097, + [1097] = 1035, [1098] = 1098, - [1099] = 1099, - [1100] = 1100, + [1099] = 1065, + [1100] = 1037, [1101] = 1101, - [1102] = 1102, + [1102] = 1077, [1103] = 1103, - [1104] = 1104, + [1104] = 1072, [1105] = 1105, [1106] = 1106, - [1107] = 1044, - [1108] = 1108, - [1109] = 1109, - [1110] = 1110, - [1111] = 1102, - [1112] = 1100, - [1113] = 1113, - [1114] = 1114, - [1115] = 1087, - [1116] = 1085, - [1117] = 1080, - [1118] = 1071, - [1119] = 1119, + [1107] = 1038, + [1108] = 1049, + [1109] = 1066, + [1110] = 1031, + [1111] = 1111, + [1112] = 1112, + [1113] = 1112, + [1114] = 1045, + [1115] = 1047, + [1116] = 1062, + [1117] = 1061, + [1118] = 1059, + [1119] = 1103, [1120] = 1120, - [1121] = 1121, - [1122] = 1122, - [1123] = 1077, - [1124] = 1094, - [1125] = 1096, - [1126] = 1048, - [1127] = 1099, + [1121] = 1063, + [1122] = 1071, + [1123] = 1123, + [1124] = 1124, + [1125] = 1075, + [1126] = 1126, + [1127] = 1127, [1128] = 1128, [1129] = 1129, - [1130] = 1109, - [1131] = 1131, + [1130] = 1016, + [1131] = 1105, [1132] = 1132, [1133] = 1133, - [1134] = 1134, - [1135] = 1113, - [1136] = 1136, + [1134] = 1079, + [1135] = 1135, + [1136] = 1089, [1137] = 1137, - [1138] = 1066, + [1138] = 1138, [1139] = 1139, [1140] = 1140, - [1141] = 1141, + [1141] = 1111, [1142] = 1142, [1143] = 1143, [1144] = 1144, [1145] = 1145, - [1146] = 1146, - [1147] = 1147, + [1146] = 1129, + [1147] = 1073, [1148] = 1148, [1149] = 1149, - [1150] = 1150, + [1150] = 1139, [1151] = 1151, - [1152] = 1079, + [1152] = 1085, [1153] = 1153, - [1154] = 1154, + [1154] = 1043, [1155] = 1155, - [1156] = 1156, + [1156] = 1039, [1157] = 1157, - [1158] = 1158, + [1158] = 1022, [1159] = 1159, [1160] = 1160, - [1161] = 1161, - [1162] = 1162, - [1163] = 1163, - [1164] = 1067, - [1165] = 1163, - [1166] = 1090, - [1167] = 1064, - [1168] = 1168, - [1169] = 1162, - [1170] = 1062, - [1171] = 1055, - [1172] = 1051, - [1173] = 1082, - [1174] = 1056, - [1175] = 1175, - [1176] = 1176, - [1177] = 1031, - [1178] = 1072, - [1179] = 1179, - [1180] = 1148, - [1181] = 1181, + [1161] = 1095, + [1162] = 1145, + [1163] = 1023, + [1164] = 1021, + [1165] = 1165, + [1166] = 1166, + [1167] = 1044, + [1168] = 1064, + [1169] = 1169, + [1170] = 1170, + [1171] = 1171, + [1172] = 1160, + [1173] = 1096, + [1174] = 1028, + [1175] = 1124, + [1176] = 1166, + [1177] = 1177, + [1178] = 1033, + [1179] = 1101, + [1180] = 1169, + [1181] = 1155, [1182] = 1182, - [1183] = 1043, - [1184] = 1142, - [1185] = 1042, - [1186] = 246, - [1187] = 1097, + [1183] = 1041, + [1184] = 1184, + [1185] = 1185, + [1186] = 1186, + [1187] = 1187, [1188] = 1188, - [1189] = 1047, - [1190] = 1060, - [1191] = 1137, + [1189] = 1189, + [1190] = 1190, + [1191] = 1191, [1192] = 1192, - [1193] = 1098, + [1193] = 1193, [1194] = 1194, - [1195] = 1059, - [1196] = 1076, - [1197] = 1101, + [1195] = 1195, + [1196] = 1196, + [1197] = 1197, [1198] = 1198, [1199] = 1199, - [1200] = 1086, - [1201] = 1065, + [1200] = 1200, + [1201] = 1201, [1202] = 1202, - [1203] = 1179, - [1204] = 1088, - [1205] = 1105, - [1206] = 1158, + [1203] = 1203, + [1204] = 1204, + [1205] = 1205, + [1206] = 1206, [1207] = 1207, - [1208] = 1175, - [1209] = 1103, - [1210] = 1041, + [1208] = 1208, + [1209] = 1209, + [1210] = 1210, [1211] = 1211, - [1212] = 1161, - [1213] = 1075, + [1212] = 1212, + [1213] = 1213, [1214] = 1214, - [1215] = 1168, + [1215] = 1215, [1216] = 1216, [1217] = 1217, [1218] = 1218, @@ -4509,16 +4507,16 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1222] = 1222, [1223] = 1223, [1224] = 1224, - [1225] = 1225, + [1225] = 105, [1226] = 1226, [1227] = 1227, - [1228] = 1228, + [1228] = 1192, [1229] = 1229, [1230] = 1230, [1231] = 1231, [1232] = 1232, [1233] = 1233, - [1234] = 1234, + [1234] = 1230, [1235] = 1235, [1236] = 1236, [1237] = 1237, @@ -4538,19 +4536,19 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1251] = 1251, [1252] = 1252, [1253] = 1253, - [1254] = 1253, - [1255] = 1252, + [1254] = 1254, + [1255] = 1255, [1256] = 1256, [1257] = 1257, - [1258] = 1257, - [1259] = 1250, + [1258] = 1258, + [1259] = 1259, [1260] = 1260, [1261] = 1261, [1262] = 1262, [1263] = 1263, [1264] = 1264, [1265] = 1265, - [1266] = 1251, + [1266] = 1266, [1267] = 1267, [1268] = 1268, [1269] = 1269, @@ -4570,7 +4568,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1283] = 1283, [1284] = 1284, [1285] = 1285, - [1286] = 1230, + [1286] = 1286, [1287] = 1287, [1288] = 1288, [1289] = 1289, @@ -4592,7 +4590,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1305] = 1305, [1306] = 1306, [1307] = 1307, - [1308] = 1273, + [1308] = 1308, [1309] = 1309, [1310] = 1310, [1311] = 1311, @@ -4609,7 +4607,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1322] = 1322, [1323] = 1323, [1324] = 1324, - [1325] = 1249, + [1325] = 1325, [1326] = 1326, [1327] = 1327, [1328] = 1328, @@ -4626,7 +4624,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1339] = 1339, [1340] = 1340, [1341] = 1341, - [1342] = 1342, + [1342] = 1224, [1343] = 1343, [1344] = 1344, [1345] = 1345, @@ -4642,15 +4640,15 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1355] = 1355, [1356] = 1356, [1357] = 1357, - [1358] = 1358, + [1358] = 1210, [1359] = 1359, [1360] = 1360, [1361] = 1361, - [1362] = 1247, + [1362] = 1362, [1363] = 1363, [1364] = 1364, [1365] = 1365, - [1366] = 1366, + [1366] = 1226, [1367] = 1367, [1368] = 1368, [1369] = 1369, @@ -4659,19 +4657,19 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1372] = 1372, [1373] = 1373, [1374] = 1374, - [1375] = 1375, + [1375] = 1227, [1376] = 1376, [1377] = 1377, [1378] = 1378, [1379] = 1379, - [1380] = 1380, + [1380] = 1260, [1381] = 1381, [1382] = 1382, [1383] = 1383, [1384] = 1384, [1385] = 1385, [1386] = 1386, - [1387] = 1245, + [1387] = 1268, [1388] = 1388, [1389] = 1389, [1390] = 1390, @@ -4681,10 +4679,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1394] = 1394, [1395] = 1395, [1396] = 1396, - [1397] = 1397, + [1397] = 1323, [1398] = 1398, [1399] = 1399, - [1400] = 1400, + [1400] = 1345, [1401] = 1401, [1402] = 1402, [1403] = 1403, @@ -4698,25 +4696,25 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1411] = 1411, [1412] = 1412, [1413] = 1413, - [1414] = 1414, - [1415] = 1415, + [1414] = 1403, + [1415] = 1410, [1416] = 1416, - [1417] = 1417, + [1417] = 1332, [1418] = 1418, [1419] = 1419, [1420] = 1420, [1421] = 1421, - [1422] = 1422, - [1423] = 1423, + [1422] = 1396, + [1423] = 1326, [1424] = 1424, [1425] = 1425, [1426] = 1426, - [1427] = 1427, + [1427] = 1419, [1428] = 1428, [1429] = 1429, [1430] = 1430, - [1431] = 1431, - [1432] = 1432, + [1431] = 1416, + [1432] = 1406, [1433] = 1433, [1434] = 1434, [1435] = 1435, @@ -4774,15 +4772,15 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1487] = 1487, [1488] = 1488, [1489] = 1489, - [1490] = 1490, + [1490] = 1411, [1491] = 1491, - [1492] = 1243, + [1492] = 1492, [1493] = 1493, [1494] = 1494, [1495] = 1495, [1496] = 1496, [1497] = 1497, - [1498] = 1498, + [1498] = 1413, [1499] = 1499, [1500] = 1500, [1501] = 1501, @@ -4793,15 +4791,15 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1506] = 1506, [1507] = 1507, [1508] = 1508, - [1509] = 1332, + [1509] = 1509, [1510] = 1510, [1511] = 1511, [1512] = 1512, - [1513] = 1374, + [1513] = 1513, [1514] = 1514, [1515] = 1515, [1516] = 1516, - [1517] = 1240, + [1517] = 1517, [1518] = 1518, [1519] = 1519, [1520] = 1520, @@ -4809,22 +4807,22 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1522] = 1522, [1523] = 1523, [1524] = 1524, - [1525] = 1404, + [1525] = 1525, [1526] = 1526, [1527] = 1527, [1528] = 1528, [1529] = 1529, [1530] = 1530, [1531] = 1531, - [1532] = 1531, - [1533] = 1241, + [1532] = 1532, + [1533] = 1533, [1534] = 1534, [1535] = 1535, - [1536] = 1319, + [1536] = 1536, [1537] = 1537, - [1538] = 1537, - [1539] = 1497, - [1540] = 1535, + [1538] = 1538, + [1539] = 1539, + [1540] = 1540, [1541] = 1541, [1542] = 1542, [1543] = 1543, @@ -4857,17 +4855,17 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1570] = 1570, [1571] = 1571, [1572] = 1572, - [1573] = 1573, + [1573] = 1504, [1574] = 1574, [1575] = 1575, [1576] = 1576, [1577] = 1577, - [1578] = 1578, - [1579] = 1579, + [1578] = 1555, + [1579] = 1562, [1580] = 1580, [1581] = 1581, - [1582] = 1582, - [1583] = 1583, + [1582] = 1547, + [1583] = 1507, [1584] = 1584, [1585] = 1585, [1586] = 1586, @@ -4877,126 +4875,126 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1590] = 1590, [1591] = 1591, [1592] = 1592, - [1593] = 1593, - [1594] = 1594, + [1593] = 1577, + [1594] = 1554, [1595] = 1595, [1596] = 1596, [1597] = 1597, [1598] = 1598, [1599] = 1599, [1600] = 1600, - [1601] = 1601, + [1601] = 1552, [1602] = 1602, [1603] = 1603, - [1604] = 1604, - [1605] = 1605, + [1604] = 1586, + [1605] = 1551, [1606] = 1606, [1607] = 1607, [1608] = 1608, - [1609] = 1609, + [1609] = 1575, [1610] = 1610, [1611] = 1611, - [1612] = 1612, - [1613] = 1613, + [1612] = 1602, + [1613] = 1548, [1614] = 1614, - [1615] = 1615, + [1615] = 1564, [1616] = 1616, - [1617] = 1617, + [1617] = 1527, [1618] = 1618, - [1619] = 1619, + [1619] = 1603, [1620] = 1620, - [1621] = 1543, - [1622] = 1551, + [1621] = 1621, + [1622] = 1622, [1623] = 1623, - [1624] = 1624, + [1624] = 1546, [1625] = 1625, - [1626] = 1626, - [1627] = 1627, - [1628] = 1628, + [1626] = 1611, + [1627] = 1544, + [1628] = 1614, [1629] = 1629, - [1630] = 1630, + [1630] = 1572, [1631] = 1631, [1632] = 1632, [1633] = 1633, - [1634] = 1634, + [1634] = 1543, [1635] = 1635, [1636] = 1636, [1637] = 1637, - [1638] = 1638, + [1638] = 1541, [1639] = 1639, [1640] = 1640, [1641] = 1641, - [1642] = 1642, - [1643] = 1643, + [1642] = 1540, + [1643] = 1556, [1644] = 1644, - [1645] = 1553, - [1646] = 1646, + [1645] = 1645, + [1646] = 1622, [1647] = 1647, [1648] = 1648, - [1649] = 1635, - [1650] = 1627, + [1649] = 1649, + [1650] = 1650, [1651] = 1651, [1652] = 1652, - [1653] = 1624, + [1653] = 1653, [1654] = 1654, [1655] = 1655, - [1656] = 1609, - [1657] = 1605, + [1656] = 1629, + [1657] = 1657, [1658] = 1658, - [1659] = 1565, + [1659] = 1570, [1660] = 1660, [1661] = 1661, - [1662] = 1595, + [1662] = 1662, [1663] = 1663, - [1664] = 1592, + [1664] = 1664, [1665] = 1665, - [1666] = 1589, + [1666] = 1666, [1667] = 1667, [1668] = 1668, - [1669] = 1607, - [1670] = 1614, + [1669] = 1633, + [1670] = 1670, [1671] = 1671, [1672] = 1672, - [1673] = 1673, - [1674] = 1560, - [1675] = 1618, - [1676] = 1626, + [1673] = 1635, + [1674] = 1674, + [1675] = 1675, + [1676] = 1676, [1677] = 1677, [1678] = 1678, [1679] = 1679, [1680] = 1680, - [1681] = 1637, - [1682] = 1640, + [1681] = 1681, + [1682] = 1639, [1683] = 1683, [1684] = 1684, - [1685] = 1647, + [1685] = 1636, [1686] = 1686, [1687] = 1687, [1688] = 1688, - [1689] = 1651, + [1689] = 1689, [1690] = 1690, [1691] = 1691, [1692] = 1692, - [1693] = 1611, + [1693] = 1693, [1694] = 1694, - [1695] = 1695, - [1696] = 1655, + [1695] = 1567, + [1696] = 1640, [1697] = 1697, - [1698] = 1698, + [1698] = 1675, [1699] = 1699, [1700] = 1700, [1701] = 1701, - [1702] = 1702, - [1703] = 1703, - [1704] = 1704, + [1702] = 1653, + [1703] = 1566, + [1704] = 1667, [1705] = 1705, - [1706] = 1602, + [1706] = 1665, [1707] = 1707, [1708] = 1708, [1709] = 1709, - [1710] = 1710, + [1710] = 1679, [1711] = 1711, - [1712] = 1712, + [1712] = 1606, [1713] = 1713, [1714] = 1714, [1715] = 1715, @@ -5004,257 +5002,257 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1717] = 1717, [1718] = 1718, [1719] = 1719, - [1720] = 1720, - [1721] = 1575, - [1722] = 1596, + [1720] = 1652, + [1721] = 1721, + [1722] = 1722, [1723] = 1723, [1724] = 1724, - [1725] = 1725, + [1725] = 1697, [1726] = 1726, [1727] = 1727, [1728] = 1728, - [1729] = 1729, + [1729] = 1651, [1730] = 1730, - [1731] = 1561, + [1731] = 1731, [1732] = 1732, - [1733] = 1733, + [1733] = 1598, [1734] = 1734, - [1735] = 1566, - [1736] = 1736, - [1737] = 1737, - [1738] = 1738, + [1735] = 1735, + [1736] = 1647, + [1737] = 1714, + [1738] = 1597, [1739] = 1739, - [1740] = 1598, + [1740] = 1740, [1741] = 1741, [1742] = 1742, - [1743] = 1743, + [1743] = 1719, [1744] = 1744, [1745] = 1745, - [1746] = 1746, - [1747] = 1590, + [1746] = 1584, + [1747] = 1645, [1748] = 1748, [1749] = 1749, - [1750] = 1750, - [1751] = 1599, - [1752] = 1752, - [1753] = 1753, + [1750] = 1585, + [1751] = 1751, + [1752] = 1680, + [1753] = 1650, [1754] = 1754, - [1755] = 1755, - [1756] = 1756, - [1757] = 1648, + [1755] = 1632, + [1756] = 1732, + [1757] = 1757, [1758] = 1758, - [1759] = 1601, + [1759] = 1759, [1760] = 1760, - [1761] = 1761, - [1762] = 1762, - [1763] = 1646, + [1761] = 1588, + [1762] = 1563, + [1763] = 1655, [1764] = 1764, [1765] = 1765, - [1766] = 1588, + [1766] = 1592, [1767] = 1767, [1768] = 1768, - [1769] = 1769, - [1770] = 1587, - [1771] = 1771, - [1772] = 1772, - [1773] = 1634, + [1769] = 1560, + [1770] = 1770, + [1771] = 1657, + [1772] = 1528, + [1773] = 1595, [1774] = 1774, [1775] = 1775, [1776] = 1776, [1777] = 1777, - [1778] = 1778, + [1778] = 1521, [1779] = 1779, [1780] = 1780, [1781] = 1781, [1782] = 1782, - [1783] = 1783, - [1784] = 1633, - [1785] = 1785, - [1786] = 1786, - [1787] = 1603, - [1788] = 1788, - [1789] = 1631, - [1790] = 1790, - [1791] = 1791, - [1792] = 1629, - [1793] = 1793, - [1794] = 1794, - [1795] = 1795, - [1796] = 1734, - [1797] = 1699, + [1783] = 1663, + [1784] = 1534, + [1785] = 1779, + [1786] = 1666, + [1787] = 1787, + [1788] = 1532, + [1789] = 1718, + [1790] = 1780, + [1791] = 1558, + [1792] = 1531, + [1793] = 1641, + [1794] = 1716, + [1795] = 1777, + [1796] = 1796, + [1797] = 1724, [1798] = 1798, [1799] = 1799, - [1800] = 1625, - [1801] = 1702, + [1800] = 1726, + [1801] = 1801, [1802] = 1802, - [1803] = 1584, - [1804] = 1791, - [1805] = 1705, + [1803] = 1506, + [1804] = 1782, + [1805] = 1525, [1806] = 1806, - [1807] = 1807, + [1807] = 1798, [1808] = 1808, - [1809] = 1809, - [1810] = 1810, - [1811] = 1641, - [1812] = 1788, - [1813] = 1813, - [1814] = 1581, + [1809] = 1523, + [1810] = 1745, + [1811] = 1811, + [1812] = 1812, + [1813] = 1699, + [1814] = 1814, [1815] = 1815, - [1816] = 1786, - [1817] = 1817, - [1818] = 1713, - [1819] = 1668, - [1820] = 1678, + [1816] = 1816, + [1817] = 1692, + [1818] = 1677, + [1819] = 1749, + [1820] = 1686, [1821] = 1821, - [1822] = 1715, + [1822] = 1760, [1823] = 1823, - [1824] = 1783, - [1825] = 1782, - [1826] = 1826, + [1824] = 1824, + [1825] = 1519, + [1826] = 1742, [1827] = 1827, - [1828] = 1780, - [1829] = 1829, - [1830] = 1727, - [1831] = 1827, - [1832] = 1732, - [1833] = 1568, - [1834] = 1834, - [1835] = 1779, - [1836] = 1836, - [1837] = 1778, - [1838] = 1723, - [1839] = 1839, + [1828] = 1676, + [1829] = 1518, + [1830] = 1830, + [1831] = 1508, + [1832] = 1832, + [1833] = 1833, + [1834] = 1510, + [1835] = 1522, + [1836] = 1658, + [1837] = 1648, + [1838] = 1517, + [1839] = 1512, [1840] = 1840, - [1841] = 1841, - [1842] = 1725, - [1843] = 1571, + [1841] = 1535, + [1842] = 1842, + [1843] = 1843, [1844] = 1844, - [1845] = 1790, + [1845] = 1845, [1846] = 1846, - [1847] = 1840, - [1848] = 1848, - [1849] = 1775, + [1847] = 1847, + [1848] = 1514, + [1849] = 1557, [1850] = 1850, - [1851] = 1733, - [1852] = 1572, - [1853] = 1577, - [1854] = 1774, + [1851] = 1851, + [1852] = 1852, + [1853] = 1853, + [1854] = 1700, [1855] = 1855, - [1856] = 1771, - [1857] = 1574, + [1856] = 1708, + [1857] = 1775, [1858] = 1858, - [1859] = 1769, + [1859] = 1620, [1860] = 1860, - [1861] = 1861, - [1862] = 1768, - [1863] = 1863, + [1861] = 1774, + [1862] = 1862, + [1863] = 1757, [1864] = 1864, [1865] = 1865, - [1866] = 1765, + [1866] = 1513, [1867] = 1867, - [1868] = 1846, - [1869] = 1869, - [1870] = 1826, + [1868] = 1868, + [1869] = 1843, + [1870] = 1870, [1871] = 1871, - [1872] = 1810, + [1872] = 1872, [1873] = 1873, - [1874] = 1809, - [1875] = 1875, + [1874] = 1691, + [1875] = 1684, [1876] = 1876, - [1877] = 1877, - [1878] = 1628, - [1879] = 1744, - [1880] = 1880, - [1881] = 1881, + [1877] = 1764, + [1878] = 1599, + [1879] = 1600, + [1880] = 1678, + [1881] = 1767, [1882] = 1882, - [1883] = 1710, + [1883] = 1883, [1884] = 1884, - [1885] = 1728, - [1886] = 1743, - [1887] = 1887, - [1888] = 1848, + [1885] = 1623, + [1886] = 1631, + [1887] = 1670, + [1888] = 1888, [1889] = 1889, - [1890] = 1890, - [1891] = 1781, - [1892] = 1892, - [1893] = 1839, + [1890] = 1781, + [1891] = 1891, + [1892] = 1821, + [1893] = 1893, [1894] = 1894, - [1895] = 1829, - [1896] = 1896, + [1895] = 1895, + [1896] = 1505, [1897] = 1897, [1898] = 1898, [1899] = 1899, - [1900] = 1817, - [1901] = 1799, - [1902] = 1777, - [1903] = 1776, + [1900] = 1900, + [1901] = 1770, + [1902] = 1902, + [1903] = 1903, [1904] = 1904, - [1905] = 1642, - [1906] = 1761, + [1905] = 1905, + [1906] = 1668, [1907] = 1907, [1908] = 1908, - [1909] = 1639, - [1910] = 1616, - [1911] = 1758, - [1912] = 1594, - [1913] = 1593, + [1909] = 1909, + [1910] = 1910, + [1911] = 1911, + [1912] = 1912, + [1913] = 1913, [1914] = 1914, [1915] = 1915, [1916] = 1916, [1917] = 1917, - [1918] = 1612, - [1919] = 1613, - [1920] = 1756, + [1918] = 1918, + [1919] = 1919, + [1920] = 1920, [1921] = 1921, [1922] = 1922, - [1923] = 1636, - [1924] = 1644, + [1923] = 1922, + [1924] = 1921, [1925] = 1925, - [1926] = 1752, + [1926] = 1926, [1927] = 1927, - [1928] = 1794, + [1928] = 1928, [1929] = 1929, [1930] = 1930, - [1931] = 1834, + [1931] = 1931, [1932] = 1932, [1933] = 1933, - [1934] = 1932, + [1934] = 1934, [1935] = 1935, - [1936] = 1914, - [1937] = 1736, + [1936] = 1936, + [1937] = 1937, [1938] = 1938, - [1939] = 1737, - [1940] = 1864, + [1939] = 1939, + [1940] = 1940, [1941] = 1941, - [1942] = 1742, + [1942] = 1942, [1943] = 1943, [1944] = 1944, - [1945] = 1697, - [1946] = 1745, - [1947] = 1606, + [1945] = 1945, + [1946] = 1946, + [1947] = 1947, [1948] = 1948, [1949] = 1949, [1950] = 1950, [1951] = 1951, [1952] = 1952, [1953] = 1953, - [1954] = 1951, - [1955] = 1950, + [1954] = 1954, + [1955] = 1920, [1956] = 1956, [1957] = 1957, [1958] = 1958, [1959] = 1959, - [1960] = 1960, + [1960] = 1935, [1961] = 1961, [1962] = 1962, - [1963] = 1963, + [1963] = 1936, [1964] = 1964, [1965] = 1965, [1966] = 1966, [1967] = 1967, [1968] = 1968, [1969] = 1969, - [1970] = 1970, + [1970] = 1954, [1971] = 1971, [1972] = 1972, [1973] = 1973, @@ -5266,99 +5264,99 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1979] = 1979, [1980] = 1980, [1981] = 1981, - [1982] = 1982, + [1982] = 1950, [1983] = 1983, - [1984] = 1970, - [1985] = 1985, - [1986] = 1949, + [1984] = 1984, + [1985] = 1943, + [1986] = 1986, [1987] = 1987, - [1988] = 1964, + [1988] = 1988, [1989] = 1989, [1990] = 1990, - [1991] = 1963, + [1991] = 1991, [1992] = 1992, - [1993] = 1990, - [1994] = 1989, - [1995] = 1978, - [1996] = 1971, - [1997] = 1965, - [1998] = 1962, - [1999] = 1966, - [2000] = 1967, + [1993] = 1974, + [1994] = 1994, + [1995] = 1995, + [1996] = 1976, + [1997] = 1984, + [1998] = 1998, + [1999] = 1999, + [2000] = 2000, [2001] = 2001, - [2002] = 1982, + [2002] = 2002, [2003] = 2003, [2004] = 2004, [2005] = 2005, - [2006] = 2006, + [2006] = 1927, [2007] = 2007, [2008] = 2008, - [2009] = 1961, + [2009] = 2009, [2010] = 2010, - [2011] = 1985, - [2012] = 1960, - [2013] = 2013, - [2014] = 1953, - [2015] = 2015, + [2011] = 2002, + [2012] = 1975, + [2013] = 1979, + [2014] = 1915, + [2015] = 1978, [2016] = 2016, - [2017] = 2017, + [2017] = 1992, [2018] = 2018, - [2019] = 2019, - [2020] = 1992, - [2021] = 2021, - [2022] = 2022, - [2023] = 1981, - [2024] = 1959, + [2019] = 1972, + [2020] = 1977, + [2021] = 2000, + [2022] = 1991, + [2023] = 1912, + [2024] = 2024, [2025] = 2025, - [2026] = 2004, + [2026] = 2010, [2027] = 1987, - [2028] = 2028, - [2029] = 2025, - [2030] = 1958, - [2031] = 2008, - [2032] = 2006, - [2033] = 2005, - [2034] = 2021, + [2028] = 1994, + [2029] = 1929, + [2030] = 2030, + [2031] = 2031, + [2032] = 2018, + [2033] = 1999, + [2034] = 2034, [2035] = 2035, - [2036] = 2028, - [2037] = 1980, + [2036] = 2001, + [2037] = 1913, [2038] = 2038, - [2039] = 1957, - [2040] = 2018, - [2041] = 2041, - [2042] = 1952, - [2043] = 2043, + [2039] = 2039, + [2040] = 2040, + [2041] = 1973, + [2042] = 1919, + [2043] = 2003, [2044] = 2044, - [2045] = 2045, - [2046] = 2046, + [2045] = 1942, + [2046] = 1986, [2047] = 2047, - [2048] = 2048, + [2048] = 1989, [2049] = 2049, - [2050] = 1979, - [2051] = 2051, + [2050] = 2050, + [2051] = 1938, [2052] = 2052, [2053] = 2053, - [2054] = 2054, - [2055] = 2055, - [2056] = 2056, - [2057] = 2016, + [2054] = 2030, + [2055] = 2005, + [2056] = 1998, + [2057] = 1967, [2058] = 2058, - [2059] = 2059, + [2059] = 1968, [2060] = 2060, - [2061] = 1977, - [2062] = 1976, - [2063] = 2063, - [2064] = 1968, - [2065] = 1969, - [2066] = 2066, - [2067] = 1956, + [2061] = 2008, + [2062] = 2062, + [2063] = 2058, + [2064] = 2064, + [2065] = 2065, + [2066] = 1971, + [2067] = 2053, [2068] = 2068, [2069] = 2069, [2070] = 2070, - [2071] = 1975, - [2072] = 1974, + [2071] = 2071, + [2072] = 2072, [2073] = 2073, - [2074] = 1973, + [2074] = 2074, [2075] = 2075, [2076] = 2076, [2077] = 2077, @@ -5446,12 +5444,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2159] = 2159, [2160] = 2160, [2161] = 2161, - [2162] = 2148, + [2162] = 2162, [2163] = 2163, [2164] = 2164, [2165] = 2165, [2166] = 2166, - [2167] = 2127, + [2167] = 2069, [2168] = 2168, [2169] = 2169, [2170] = 2170, @@ -5522,7 +5520,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2235] = 2235, [2236] = 2236, [2237] = 2237, - [2238] = 2165, + [2238] = 2238, [2239] = 2239, [2240] = 2240, [2241] = 2241, @@ -5736,54 +5734,54 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2449] = 2449, [2450] = 2450, [2451] = 2451, - [2452] = 2452, - [2453] = 2453, - [2454] = 2413, - [2455] = 2402, + [2452] = 2380, + [2453] = 2443, + [2454] = 2441, + [2455] = 2397, [2456] = 2456, - [2457] = 2457, - [2458] = 2396, - [2459] = 2395, - [2460] = 2460, - [2461] = 2391, - [2462] = 2392, - [2463] = 2385, - [2464] = 2374, - [2465] = 2367, - [2466] = 2365, - [2467] = 2361, - [2468] = 2360, - [2469] = 2344, - [2470] = 2470, - [2471] = 2337, - [2472] = 2335, - [2473] = 2329, - [2474] = 2328, - [2475] = 2326, - [2476] = 2324, - [2477] = 2315, - [2478] = 2478, - [2479] = 2304, - [2480] = 2302, - [2481] = 2266, - [2482] = 2257, - [2483] = 2256, - [2484] = 2255, - [2485] = 2248, - [2486] = 2239, - [2487] = 2155, - [2488] = 2135, - [2489] = 2105, - [2490] = 2088, - [2491] = 2110, - [2492] = 2262, - [2493] = 2404, - [2494] = 2138, - [2495] = 2166, - [2496] = 2200, - [2497] = 2205, - [2498] = 2220, - [2499] = 2230, + [2457] = 2391, + [2458] = 2389, + [2459] = 2459, + [2460] = 2383, + [2461] = 2382, + [2462] = 2351, + [2463] = 2378, + [2464] = 2369, + [2465] = 2465, + [2466] = 2359, + [2467] = 2357, + [2468] = 2323, + [2469] = 2314, + [2470] = 2313, + [2471] = 2312, + [2472] = 2305, + [2473] = 2297, + [2474] = 2242, + [2475] = 2234, + [2476] = 2223, + [2477] = 2217, + [2478] = 2208, + [2479] = 2204, + [2480] = 2122, + [2481] = 2162, + [2482] = 2169, + [2483] = 2320, + [2484] = 2187, + [2485] = 2222, + [2486] = 2125, + [2487] = 2487, + [2488] = 2488, + [2489] = 2489, + [2490] = 2490, + [2491] = 2491, + [2492] = 2492, + [2493] = 2493, + [2494] = 2494, + [2495] = 2495, + [2496] = 2496, + [2497] = 2497, + [2498] = 2498, + [2499] = 2499, [2500] = 2500, [2501] = 2501, [2502] = 2502, @@ -5822,109 +5820,109 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2535] = 2535, [2536] = 2536, [2537] = 2537, - [2538] = 2447, - [2539] = 2428, - [2540] = 2419, - [2541] = 2417, - [2542] = 2410, - [2543] = 2405, - [2544] = 2400, + [2538] = 2538, + [2539] = 2539, + [2540] = 2425, + [2541] = 2423, + [2542] = 2419, + [2543] = 2413, + [2544] = 2401, [2545] = 2398, - [2546] = 2388, - [2547] = 2386, - [2548] = 2371, - [2549] = 2314, - [2550] = 2350, - [2551] = 2341, - [2552] = 2330, - [2553] = 2191, - [2554] = 2182, - [2555] = 2173, - [2556] = 2171, - [2557] = 2159, - [2558] = 2153, - [2559] = 2150, - [2560] = 2141, - [2561] = 2133, - [2562] = 2125, - [2563] = 2108, - [2564] = 2096, - [2565] = 2089, - [2566] = 2086, - [2567] = 2128, - [2568] = 2188, - [2569] = 2569, - [2570] = 2570, - [2571] = 2571, - [2572] = 2572, - [2573] = 2573, - [2574] = 2574, - [2575] = 2575, - [2576] = 2576, - [2577] = 2577, - [2578] = 2578, - [2579] = 2579, - [2580] = 2580, - [2581] = 2581, - [2582] = 2582, - [2583] = 2583, - [2584] = 2584, - [2585] = 2436, - [2586] = 2381, - [2587] = 2366, - [2588] = 2357, - [2589] = 2340, - [2590] = 2319, - [2591] = 2292, - [2592] = 2164, - [2593] = 2241, - [2594] = 2186, - [2595] = 2118, - [2596] = 2091, - [2597] = 2079, - [2598] = 2090, - [2599] = 2095, - [2600] = 2099, - [2601] = 2101, - [2602] = 2106, - [2603] = 2109, - [2604] = 2112, - [2605] = 2115, - [2606] = 2119, - [2607] = 2123, - [2608] = 2608, - [2609] = 2129, - [2610] = 2132, - [2611] = 2136, - [2612] = 2140, - [2613] = 2144, - [2614] = 2146, - [2615] = 2149, - [2616] = 2151, - [2617] = 2154, - [2618] = 2156, + [2546] = 2396, + [2547] = 2394, + [2548] = 2387, + [2549] = 2384, + [2550] = 2372, + [2551] = 2366, + [2552] = 2361, + [2553] = 2356, + [2554] = 2353, + [2555] = 2347, + [2556] = 2269, + [2557] = 2266, + [2558] = 2263, + [2559] = 2260, + [2560] = 2256, + [2561] = 2251, + [2562] = 2249, + [2563] = 2246, + [2564] = 2241, + [2565] = 2231, + [2566] = 2228, + [2567] = 2225, + [2568] = 2218, + [2569] = 2212, + [2570] = 2207, + [2571] = 2206, + [2572] = 2148, + [2573] = 2142, + [2574] = 2135, + [2575] = 2128, + [2576] = 2126, + [2577] = 2120, + [2578] = 2115, + [2579] = 2111, + [2580] = 2103, + [2581] = 2092, + [2582] = 2070, + [2583] = 2071, + [2584] = 2074, + [2585] = 2081, + [2586] = 2083, + [2587] = 2086, + [2588] = 2088, + [2589] = 2093, + [2590] = 2096, + [2591] = 2099, + [2592] = 2102, + [2593] = 2106, + [2594] = 2110, + [2595] = 2114, + [2596] = 2116, + [2597] = 2119, + [2598] = 2123, + [2599] = 2127, + [2600] = 2131, + [2601] = 2133, + [2602] = 2136, + [2603] = 2138, + [2604] = 2141, + [2605] = 2143, + [2606] = 2149, + [2607] = 2152, + [2608] = 2154, + [2609] = 2161, + [2610] = 2164, + [2611] = 2611, + [2612] = 2068, + [2613] = 2174, + [2614] = 2177, + [2615] = 2420, + [2616] = 2424, + [2617] = 2427, + [2618] = 2618, [2619] = 2619, - [2620] = 2620, - [2621] = 2608, - [2622] = 2174, - [2623] = 2177, - [2624] = 2180, - [2625] = 2183, - [2626] = 2187, - [2627] = 2190, - [2628] = 2437, - [2629] = 2441, - [2630] = 2444, + [2620] = 2487, + [2621] = 2621, + [2622] = 2451, + [2623] = 2623, + [2624] = 2624, + [2625] = 2625, + [2626] = 2626, + [2627] = 2627, + [2628] = 2628, + [2629] = 2629, + [2630] = 2630, [2631] = 2631, [2632] = 2632, [2633] = 2633, [2634] = 2634, - [2635] = 2635, + [2635] = 2450, [2636] = 2636, [2637] = 2637, [2638] = 2638, [2639] = 2639, - [2640] = 2453, + [2640] = 2640, [2641] = 2641, [2642] = 2642, [2643] = 2643, @@ -5937,7 +5935,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2650] = 2650, [2651] = 2651, [2652] = 2652, - [2653] = 2653, + [2653] = 2449, [2654] = 2654, [2655] = 2655, [2656] = 2656, @@ -5947,373 +5945,373 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2660] = 2660, [2661] = 2661, [2662] = 2662, - [2663] = 2663, + [2663] = 2448, [2664] = 2664, - [2665] = 2665, - [2666] = 2661, + [2665] = 2629, + [2666] = 2489, [2667] = 2667, - [2668] = 2668, + [2668] = 2447, [2669] = 2669, [2670] = 2670, - [2671] = 2671, - [2672] = 2450, - [2673] = 2673, - [2674] = 2674, + [2671] = 2379, + [2672] = 2445, + [2673] = 2377, + [2674] = 2444, [2675] = 2675, [2676] = 2676, - [2677] = 2677, - [2678] = 2369, + [2677] = 2367, + [2678] = 2490, [2679] = 2679, [2680] = 2680, [2681] = 2681, - [2682] = 2682, - [2683] = 2659, - [2684] = 2325, - [2685] = 2658, - [2686] = 2323, - [2687] = 2449, + [2682] = 2491, + [2683] = 2683, + [2684] = 2303, + [2685] = 2685, + [2686] = 2440, + [2687] = 2687, [2688] = 2688, - [2689] = 2689, - [2690] = 2312, - [2691] = 2657, + [2689] = 2295, + [2690] = 2492, + [2691] = 2691, [2692] = 2692, [2693] = 2693, - [2694] = 2694, + [2694] = 2221, [2695] = 2695, [2696] = 2696, - [2697] = 2245, + [2697] = 2493, [2698] = 2698, - [2699] = 2699, + [2699] = 2215, [2700] = 2700, [2701] = 2701, - [2702] = 2236, - [2703] = 2445, - [2704] = 2704, - [2705] = 2705, + [2702] = 2702, + [2703] = 2205, + [2704] = 2494, + [2705] = 2202, [2706] = 2706, - [2707] = 2100, - [2708] = 2708, + [2707] = 2707, + [2708] = 2439, [2709] = 2709, [2710] = 2710, - [2711] = 2711, - [2712] = 2085, - [2713] = 2713, - [2714] = 2714, + [2711] = 2168, + [2712] = 2712, + [2713] = 2539, + [2714] = 2176, [2715] = 2715, - [2716] = 2252, + [2716] = 2716, [2717] = 2717, - [2718] = 2298, - [2719] = 2444, - [2720] = 2720, - [2721] = 2721, + [2718] = 2538, + [2719] = 2184, + [2720] = 2495, + [2721] = 2193, [2722] = 2722, [2723] = 2723, - [2724] = 2160, - [2725] = 2725, + [2724] = 2724, + [2725] = 2227, [2726] = 2726, - [2727] = 2189, - [2728] = 2728, + [2727] = 2243, + [2728] = 2626, [2729] = 2729, [2730] = 2730, [2731] = 2731, - [2732] = 2202, - [2733] = 2537, - [2734] = 2208, - [2735] = 2443, + [2732] = 2537, + [2733] = 2669, + [2734] = 2496, + [2735] = 2735, [2736] = 2736, [2737] = 2737, - [2738] = 2224, - [2739] = 2739, - [2740] = 2231, - [2741] = 2741, - [2742] = 2536, + [2738] = 2738, + [2739] = 2680, + [2740] = 2683, + [2741] = 2536, + [2742] = 2742, [2743] = 2743, - [2744] = 2535, - [2745] = 2745, + [2744] = 2693, + [2745] = 2700, [2746] = 2746, - [2747] = 2534, - [2748] = 2748, + [2747] = 2535, + [2748] = 2706, [2749] = 2749, [2750] = 2750, [2751] = 2751, - [2752] = 2752, - [2753] = 2753, - [2754] = 2533, + [2752] = 2534, + [2753] = 2723, + [2754] = 2754, [2755] = 2755, - [2756] = 2532, - [2757] = 2757, + [2756] = 2533, + [2757] = 2436, [2758] = 2758, [2759] = 2759, [2760] = 2760, [2761] = 2761, - [2762] = 2531, - [2763] = 2441, + [2762] = 2762, + [2763] = 2532, [2764] = 2764, [2765] = 2765, - [2766] = 2766, + [2766] = 2531, [2767] = 2767, - [2768] = 2530, + [2768] = 2768, [2769] = 2769, [2770] = 2770, [2771] = 2771, [2772] = 2772, - [2773] = 2529, - [2774] = 2774, - [2775] = 2741, + [2773] = 2773, + [2774] = 2530, + [2775] = 2775, [2776] = 2776, - [2777] = 2777, - [2778] = 2528, + [2777] = 2529, + [2778] = 2778, [2779] = 2779, [2780] = 2780, - [2781] = 2527, - [2782] = 2782, + [2781] = 2781, + [2782] = 2528, [2783] = 2783, [2784] = 2784, [2785] = 2785, [2786] = 2786, [2787] = 2787, - [2788] = 2788, + [2788] = 2527, [2789] = 2789, - [2790] = 2790, + [2790] = 2648, [2791] = 2791, - [2792] = 2792, + [2792] = 2433, [2793] = 2793, - [2794] = 2526, - [2795] = 2525, + [2794] = 2794, + [2795] = 2526, [2796] = 2796, - [2797] = 2500, + [2797] = 2797, [2798] = 2798, [2799] = 2799, - [2800] = 2800, - [2801] = 2524, - [2802] = 2792, + [2800] = 2525, + [2801] = 2801, + [2802] = 2802, [2803] = 2803, - [2804] = 2437, + [2804] = 2804, [2805] = 2805, - [2806] = 2523, - [2807] = 2779, - [2808] = 2808, - [2809] = 2776, + [2806] = 2806, + [2807] = 2807, + [2808] = 2646, + [2809] = 2645, [2810] = 2810, [2811] = 2811, - [2812] = 2771, + [2812] = 2812, [2813] = 2813, - [2814] = 2765, - [2815] = 2760, + [2814] = 2432, + [2815] = 2815, [2816] = 2816, [2817] = 2817, - [2818] = 2818, - [2819] = 2755, + [2818] = 2644, + [2819] = 2819, [2820] = 2820, - [2821] = 2434, + [2821] = 2821, [2822] = 2822, - [2823] = 2823, - [2824] = 2745, - [2825] = 2743, - [2826] = 2826, + [2823] = 2791, + [2824] = 2784, + [2825] = 2825, + [2826] = 2428, [2827] = 2827, - [2828] = 2828, - [2829] = 2737, - [2830] = 2731, - [2831] = 2433, + [2828] = 2779, + [2829] = 2776, + [2830] = 2830, + [2831] = 2831, [2832] = 2832, - [2833] = 2833, - [2834] = 2834, - [2835] = 2835, - [2836] = 2420, - [2837] = 2418, - [2838] = 2838, + [2833] = 2769, + [2834] = 2658, + [2835] = 2762, + [2836] = 2836, + [2837] = 2837, + [2838] = 2750, [2839] = 2839, [2840] = 2840, - [2841] = 2412, - [2842] = 2409, - [2843] = 2646, - [2844] = 2844, + [2841] = 2743, + [2842] = 2427, + [2843] = 2843, + [2844] = 2738, [2845] = 2845, - [2846] = 2401, - [2847] = 2399, - [2848] = 2397, - [2849] = 2849, + [2846] = 2724, + [2847] = 2847, + [2848] = 2848, + [2849] = 2717, [2850] = 2850, - [2851] = 2380, + [2851] = 2426, [2852] = 2852, - [2853] = 2853, - [2854] = 2370, + [2853] = 2421, + [2854] = 2854, [2855] = 2855, - [2856] = 2856, - [2857] = 2362, - [2858] = 2502, - [2859] = 2347, + [2856] = 2418, + [2857] = 2857, + [2858] = 2411, + [2859] = 2859, [2860] = 2860, - [2861] = 2861, - [2862] = 2334, + [2861] = 2400, + [2862] = 2862, [2863] = 2863, - [2864] = 2864, + [2864] = 2395, [2865] = 2865, - [2866] = 2176, - [2867] = 2867, - [2868] = 2868, - [2869] = 2114, + [2866] = 2393, + [2867] = 2424, + [2868] = 2373, + [2869] = 2370, [2870] = 2870, - [2871] = 2168, - [2872] = 2872, + [2871] = 2871, + [2872] = 2365, [2873] = 2873, - [2874] = 2157, - [2875] = 2875, + [2874] = 2253, + [2875] = 2355, [2876] = 2876, - [2877] = 2142, - [2878] = 2512, - [2879] = 2139, + [2877] = 2877, + [2878] = 2878, + [2879] = 2349, [2880] = 2880, - [2881] = 2116, - [2882] = 2103, + [2881] = 2881, + [2882] = 2264, [2883] = 2883, - [2884] = 2884, - [2885] = 2092, + [2884] = 2262, + [2885] = 2259, [2886] = 2886, - [2887] = 2087, - [2888] = 2078, - [2889] = 2746, + [2887] = 2887, + [2888] = 2888, + [2889] = 2240, [2890] = 2890, - [2891] = 2891, - [2892] = 2179, + [2891] = 2247, + [2892] = 2245, [2893] = 2893, - [2894] = 2503, - [2895] = 2895, - [2896] = 2896, + [2894] = 2894, + [2895] = 2236, + [2896] = 2420, [2897] = 2897, - [2898] = 2254, - [2899] = 2899, - [2900] = 2752, - [2901] = 2504, + [2898] = 2898, + [2899] = 2224, + [2900] = 2216, + [2901] = 2211, [2902] = 2902, - [2903] = 2753, - [2904] = 2904, + [2903] = 2903, + [2904] = 2203, [2905] = 2905, - [2906] = 2906, + [2906] = 2417, [2907] = 2907, - [2908] = 2908, - [2909] = 2427, - [2910] = 2910, - [2911] = 2505, + [2908] = 2144, + [2909] = 2140, + [2910] = 2134, + [2911] = 2911, [2912] = 2912, - [2913] = 2913, - [2914] = 2914, - [2915] = 2798, - [2916] = 2522, - [2917] = 2917, - [2918] = 2429, - [2919] = 2796, - [2920] = 2521, - [2921] = 2403, - [2922] = 2377, - [2923] = 2363, - [2924] = 2757, + [2913] = 2087, + [2914] = 2117, + [2915] = 2915, + [2916] = 2108, + [2917] = 2416, + [2918] = 2918, + [2919] = 2095, + [2920] = 2920, + [2921] = 2090, + [2922] = 2922, + [2923] = 2073, + [2924] = 2075, [2925] = 2925, - [2926] = 2331, - [2927] = 2299, - [2928] = 2582, - [2929] = 2263, - [2930] = 2930, - [2931] = 2791, - [2932] = 2197, - [2933] = 2520, - [2934] = 2081, - [2935] = 2935, - [2936] = 2077, - [2937] = 2080, - [2938] = 2506, - [2939] = 2758, - [2940] = 2093, - [2941] = 2519, - [2942] = 2097, - [2943] = 2943, - [2944] = 2104, - [2945] = 2107, - [2946] = 2113, - [2947] = 2788, - [2948] = 2117, - [2949] = 2120, - [2950] = 2518, - [2951] = 2951, - [2952] = 2126, - [2953] = 2507, - [2954] = 2134, - [2955] = 2137, - [2956] = 2956, - [2957] = 2785, - [2958] = 2143, - [2959] = 2152, - [2960] = 2517, - [2961] = 2158, - [2962] = 2163, - [2963] = 2783, - [2964] = 2169, - [2965] = 2178, - [2966] = 2184, - [2967] = 2516, + [2926] = 2926, + [2927] = 2082, + [2928] = 2928, + [2929] = 2084, + [2930] = 2633, + [2931] = 2091, + [2932] = 2094, + [2933] = 2100, + [2934] = 2934, + [2935] = 2104, + [2936] = 2107, + [2937] = 2937, + [2938] = 2938, + [2939] = 2113, + [2940] = 2817, + [2941] = 2121, + [2942] = 2124, + [2943] = 2524, + [2944] = 2944, + [2945] = 2130, + [2946] = 2139, + [2947] = 2816, + [2948] = 2145, + [2949] = 2150, + [2950] = 2523, + [2951] = 2156, + [2952] = 2165, + [2953] = 2171, + [2954] = 2954, + [2955] = 2955, + [2956] = 2812, + [2957] = 2522, + [2958] = 2958, + [2959] = 2959, + [2960] = 2960, + [2961] = 2811, + [2962] = 2521, + [2963] = 2963, + [2964] = 2925, + [2965] = 2886, + [2966] = 2877, + [2967] = 2831, [2968] = 2968, - [2969] = 2969, - [2970] = 2970, + [2969] = 2520, + [2970] = 2787, [2971] = 2971, [2972] = 2972, [2973] = 2973, - [2974] = 2974, - [2975] = 2917, - [2976] = 2780, - [2977] = 2833, - [2978] = 2793, - [2979] = 2787, - [2980] = 2709, - [2981] = 2515, - [2982] = 2982, - [2983] = 2665, - [2984] = 2584, - [2985] = 2985, - [2986] = 2638, - [2987] = 2650, - [2988] = 2777, - [2989] = 2989, - [2990] = 2774, + [2974] = 2773, + [2975] = 2806, + [2976] = 2412, + [2977] = 2977, + [2978] = 2519, + [2979] = 2802, + [2980] = 2518, + [2981] = 2801, + [2982] = 2517, + [2983] = 2983, + [2984] = 2799, + [2985] = 2516, + [2986] = 2796, + [2987] = 2515, + [2988] = 2988, + [2989] = 2794, + [2990] = 2625, [2991] = 2514, - [2992] = 2761, - [2993] = 2993, - [2994] = 2451, + [2992] = 2992, + [2993] = 2960, + [2994] = 2994, [2995] = 2995, - [2996] = 2996, - [2997] = 2997, + [2996] = 2233, + [2997] = 2623, [2998] = 2998, - [2999] = 2973, - [3000] = 2772, - [3001] = 2513, + [2999] = 2789, + [3000] = 2513, + [3001] = 2512, [3002] = 3002, [3003] = 3003, - [3004] = 2583, - [3005] = 3005, - [3006] = 2636, - [3007] = 2511, + [3004] = 2511, + [3005] = 2076, + [3006] = 2959, + [3007] = 2510, [3008] = 3008, - [3009] = 2131, + [3009] = 3009, [3010] = 3010, - [3011] = 2972, - [3012] = 2914, + [3011] = 3011, + [3012] = 3012, [3013] = 3013, - [3014] = 2508, - [3015] = 2971, + [3014] = 2628, + [3015] = 2958, [3016] = 3016, - [3017] = 2510, - [3018] = 2694, + [3017] = 3017, + [3018] = 3018, [3019] = 3019, - [3020] = 2767, + [3020] = 3020, [3021] = 3021, [3022] = 3022, [3023] = 3023, [3024] = 3024, [3025] = 3025, [3026] = 3026, - [3027] = 2750, + [3027] = 3027, [3028] = 3028, - [3029] = 2631, + [3029] = 3029, [3030] = 3030, [3031] = 3031, [3032] = 3032, @@ -6323,134 +6321,121 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3036] = 3036, [3037] = 3037, [3038] = 3038, - [3039] = 2766, - [3040] = 3040, + [3039] = 3039, + [3040] = 2497, [3041] = 3041, - [3042] = 3042, + [3042] = 2754, [3043] = 3043, - [3044] = 3044, + [3044] = 3029, [3045] = 3045, - [3046] = 3046, - [3047] = 3047, - [3048] = 3048, - [3049] = 3049, - [3050] = 3050, - [3051] = 3051, + [3046] = 2618, + [3047] = 3002, + [3048] = 2498, + [3049] = 2937, + [3050] = 2804, + [3051] = 2887, [3052] = 3052, - [3053] = 3053, - [3054] = 3054, + [3053] = 2712, + [3054] = 2709, [3055] = 3055, - [3056] = 3056, - [3057] = 3057, - [3058] = 3058, - [3059] = 2426, - [3060] = 3010, - [3061] = 2913, - [3062] = 2860, - [3063] = 2800, - [3064] = 2799, - [3065] = 2581, - [3066] = 2415, - [3067] = 2414, + [3056] = 2639, + [3057] = 2638, + [3058] = 2376, + [3059] = 3059, + [3060] = 2371, + [3061] = 2410, + [3062] = 2409, + [3063] = 2408, + [3064] = 2322, + [3065] = 2499, + [3066] = 2307, + [3067] = 3067, [3068] = 3068, - [3069] = 2379, - [3070] = 2378, - [3071] = 2322, - [3072] = 2912, - [3073] = 2317, - [3074] = 2425, + [3069] = 2500, + [3070] = 2226, + [3071] = 3071, + [3072] = 2759, + [3073] = 2210, + [3074] = 3074, [3075] = 3075, [3076] = 3076, - [3077] = 2227, - [3078] = 3078, - [3079] = 2250, - [3080] = 2580, - [3081] = 2509, - [3082] = 3082, - [3083] = 2111, - [3084] = 2579, - [3085] = 3085, - [3086] = 2620, - [3087] = 2578, - [3088] = 2908, - [3089] = 3058, + [3077] = 3077, + [3078] = 2159, + [3079] = 2178, + [3080] = 3080, + [3081] = 3081, + [3082] = 2209, + [3083] = 2785, + [3084] = 2659, + [3085] = 2509, + [3086] = 2701, + [3087] = 2783, + [3088] = 2508, + [3089] = 3076, [3090] = 3090, - [3091] = 2124, - [3092] = 2193, - [3093] = 2572, - [3094] = 2577, - [3095] = 2216, - [3096] = 3096, - [3097] = 2876, - [3098] = 2897, - [3099] = 2943, - [3100] = 2905, - [3101] = 2968, - [3102] = 3005, - [3103] = 2576, - [3104] = 3104, - [3105] = 2930, - [3106] = 2904, - [3107] = 2790, - [3108] = 3108, - [3109] = 2575, - [3110] = 2571, - [3111] = 3111, - [3112] = 2574, - [3113] = 2895, - [3114] = 2902, - [3115] = 2569, - [3116] = 3028, - [3117] = 3019, - [3118] = 2570, - [3119] = 2662, - [3120] = 2660, - [3121] = 2656, - [3122] = 2384, - [3123] = 2383, - [3124] = 2382, - [3125] = 3057, - [3126] = 2321, - [3127] = 2320, - [3128] = 3128, - [3129] = 2075, - [3130] = 2253, - [3131] = 2243, - [3132] = 2242, - [3133] = 3133, - [3134] = 2122, - [3135] = 2121, - [3136] = 2098, - [3137] = 2094, - [3138] = 2084, - [3139] = 2082, - [3140] = 2219, - [3141] = 2102, - [3142] = 2198, - [3143] = 2209, - [3144] = 2212, - [3145] = 2868, - [3146] = 2872, - [3147] = 2891, - [3148] = 2993, - [3149] = 2995, - [3150] = 2998, - [3151] = 2996, - [3152] = 2956, - [3153] = 2925, - [3154] = 2782, - [3155] = 2751, - [3156] = 2442, - [3157] = 2345, - [3158] = 2161, - [3159] = 2935, - [3160] = 3160, - [3161] = 2573, - [3162] = 2288, - [3163] = 3075, - [3164] = 2708, - [3165] = 3165, - [3166] = 3166, + [3091] = 3091, + [3092] = 3091, + [3093] = 2778, + [3094] = 2998, + [3095] = 2507, + [3096] = 2506, + [3097] = 2775, + [3098] = 2505, + [3099] = 3099, + [3100] = 2772, + [3101] = 2504, + [3102] = 2770, + [3103] = 2503, + [3104] = 3016, + [3105] = 2767, + [3106] = 2786, + [3107] = 2781, + [3108] = 2780, + [3109] = 2652, + [3110] = 2649, + [3111] = 2647, + [3112] = 3045, + [3113] = 2375, + [3114] = 2374, + [3115] = 2502, + [3116] = 2311, + [3117] = 2310, + [3118] = 2301, + [3119] = 2300, + [3120] = 2764, + [3121] = 2230, + [3122] = 2229, + [3123] = 2220, + [3124] = 2219, + [3125] = 2214, + [3126] = 2213, + [3127] = 2155, + [3128] = 2157, + [3129] = 2182, + [3130] = 2194, + [3131] = 2201, + [3132] = 2651, + [3133] = 2656, + [3134] = 2675, + [3135] = 2710, + [3136] = 2716, + [3137] = 2170, + [3138] = 3021, + [3139] = 3099, + [3140] = 3090, + [3141] = 2992, + [3142] = 2968, + [3143] = 2797, + [3144] = 2722, + [3145] = 2407, + [3146] = 2977, + [3147] = 2955, + [3148] = 2501, + [3149] = 2344, + [3150] = 3075, + [3151] = 2830, + [3152] = 2751, + [3153] = 2876, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -6458,1097 +6443,660 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(71); - ADVANCE_MAP( - '!', 99, - '"', 102, - '\'', 67, - '(', 97, - ')', 74, - '*', 86, - '+', 83, - ',', 78, - '-', 95, - '.', 72, - '/', 88, - ':', 77, - '<', 18, - '=', 81, - '[', 1, - ']', 91, - 'C', 117, - 'c', 117, - 'F', 116, - 'f', 116, - 'R', 115, - 'r', 115, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(70); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(100); + if (eof) ADVANCE(44); + if (lookahead == '!') ADVANCE(69); + if (lookahead == '"') ADVANCE(72); + if (lookahead == '\'') ADVANCE(40); + if (lookahead == '(') ADVANCE(67); + if (lookahead == ')') ADVANCE(47); + if (lookahead == '*') ADVANCE(58); + if (lookahead == '+') ADVANCE(56); + if (lookahead == ',') ADVANCE(50); + if (lookahead == '-') ADVANCE(65); + if (lookahead == '.') ADVANCE(45); + if (lookahead == '/') ADVANCE(60); + if (lookahead == ':') ADVANCE(49); + if (lookahead == '<') ADVANCE(16); + if (lookahead == '=') ADVANCE(54); + if (lookahead == '[') ADVANCE(62); + if (lookahead == ']') ADVANCE(63); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(83); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(41) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(70); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(149); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(88); END_STATE(); case 1: - if (lookahead == ' ') ADVANCE(90); + if (lookahead == '!') ADVANCE(69); + if (lookahead == '"') ADVANCE(72); + if (lookahead == '\'') ADVANCE(40); + if (lookahead == '(') ADVANCE(67); + if (lookahead == ')') ADVANCE(47); + if (lookahead == '*') ADVANCE(73); + if (lookahead == ',') ADVANCE(50); + if (lookahead == '-') ADVANCE(65); + if (lookahead == '.') ADVANCE(45); + if (lookahead == '/') ADVANCE(60); + if (lookahead == ':') ADVANCE(49); + if (lookahead == '<') ADVANCE(18); + if (lookahead == '=') ADVANCE(54); + if (lookahead == '[') ADVANCE(62); + if (lookahead == ']') ADVANCE(63); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(2) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(70); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(88); END_STATE(); case 2: - ADVANCE_MAP( - ' ', 2, - '"', 102, - '\'', 67, - ')', 4, - '*', 85, - ',', 78, - '.', 72, - ':', 77, - '<', 22, - '=', 80, - 'F', 116, - 'f', 116, - ); - if (('\t' <= lookahead && lookahead <= '\r')) SKIP(3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(100); + if (lookahead == '!') ADVANCE(69); + if (lookahead == '"') ADVANCE(72); + if (lookahead == '\'') ADVANCE(40); + if (lookahead == ')') ADVANCE(47); + if (lookahead == '*') ADVANCE(73); + if (lookahead == ',') ADVANCE(50); + if (lookahead == '.') ADVANCE(45); + if (lookahead == '/') ADVANCE(60); + if (lookahead == ':') ADVANCE(49); + if (lookahead == '<') ADVANCE(18); + if (lookahead == '=') ADVANCE(53); + if (lookahead == ']') ADVANCE(63); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(2) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(70); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(149); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(88); END_STATE(); case 3: - ADVANCE_MAP( - ' ', 2, - '"', 102, - '\'', 67, - '*', 85, - ',', 78, - '.', 72, - ':', 77, - '<', 22, - '=', 80, - 'F', 116, - 'f', 116, - ); - if (('\t' <= lookahead && lookahead <= '\r')) SKIP(3); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(100); + if (lookahead == '"') ADVANCE(72); + if (lookahead == '\'') ADVANCE(40); + if (lookahead == '*') ADVANCE(58); + if (lookahead == '+') ADVANCE(56); + if (lookahead == '-') ADVANCE(57); + if (lookahead == '.') ADVANCE(45); + if (lookahead == '/') ADVANCE(60); + if (lookahead == '<') ADVANCE(18); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(3) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(70); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(149); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(88); END_STATE(); case 4: - if (lookahead == ' ') ADVANCE(93); + if (lookahead == '"') ADVANCE(72); + if (lookahead == '\'') ADVANCE(40); + if (lookahead == '*') ADVANCE(58); + if (lookahead == '+') ADVANCE(56); + if (lookahead == '-') ADVANCE(64); + if (lookahead == '.') ADVANCE(45); + if (lookahead == '/') ADVANCE(60); + if (lookahead == '<') ADVANCE(18); + if (lookahead == '=') ADVANCE(17); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(3) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(70); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(88); END_STATE(); case 5: - ADVANCE_MAP( - ' ', 6, - '!', 99, - '"', 102, - '\'', 67, - '(', 97, - ')', 74, - '*', 85, - ',', 78, - '-', 95, - '.', 72, - '/', 88, - ':', 77, - '<', 22, - '=', 81, - '[', 1, - ']', 91, - ); - if (('\t' <= lookahead && lookahead <= '\r')) SKIP(7); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(100); + if (lookahead == '"') ADVANCE(72); + if (lookahead == '(') ADVANCE(46); + if (lookahead == '*') ADVANCE(73); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(85); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(5) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(149); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(88); END_STATE(); case 6: - ADVANCE_MAP( - ' ', 6, - '!', 99, - '"', 102, - '\'', 67, - '(', 8, - ')', 74, - '*', 85, - ',', 78, - '.', 72, - '/', 88, - ':', 77, - '<', 22, - '=', 80, - ']', 91, - ); - if (('\t' <= lookahead && lookahead <= '\r')) SKIP(7); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(100); + if (lookahead == '"') ADVANCE(72); + if (lookahead == '(') ADVANCE(46); + if (lookahead == '*') ADVANCE(73); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(6) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(149); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(88); END_STATE(); case 7: - ADVANCE_MAP( - ' ', 6, - '!', 99, - '"', 102, - '\'', 67, - ')', 74, - '*', 85, - ',', 78, - '.', 72, - '/', 88, - ':', 77, - '<', 22, - '=', 80, - ']', 91, - ); - if (('\t' <= lookahead && lookahead <= '\r')) SKIP(7); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(100); + if (lookahead == '"') ADVANCE(72); + if (lookahead == ')') ADVANCE(47); + if (lookahead == '*') ADVANCE(58); + if (lookahead == '+') ADVANCE(56); + if (lookahead == ',') ADVANCE(50); + if (lookahead == '-') ADVANCE(57); + if (lookahead == '.') ADVANCE(45); + if (lookahead == '/') ADVANCE(60); + if (lookahead == '<') ADVANCE(15); + if (lookahead == '=') ADVANCE(53); + if (lookahead == ']') ADVANCE(63); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(7) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(149); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(88); END_STATE(); case 8: - if (lookahead == ' ') ADVANCE(92); + if (lookahead == '"') ADVANCE(72); + if (lookahead == ')') ADVANCE(47); + if (lookahead == '*') ADVANCE(58); + if (lookahead == '+') ADVANCE(56); + if (lookahead == ',') ADVANCE(50); + if (lookahead == '-') ADVANCE(64); + if (lookahead == '.') ADVANCE(45); + if (lookahead == '/') ADVANCE(60); + if (lookahead == '<') ADVANCE(15); + if (lookahead == '=') ADVANCE(54); + if (lookahead == ']') ADVANCE(63); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(7) + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(88); END_STATE(); case 9: - ADVANCE_MAP( - '"', 102, - '\'', 67, - '*', 86, - '+', 83, - ',', 78, - '-', 84, - '.', 72, - '/', 88, - '<', 22, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(9); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(100); + if (lookahead == '"') ADVANCE(72); + if (lookahead == '*') ADVANCE(73); + if (lookahead == ',') ADVANCE(50); + if (lookahead == '-') ADVANCE(64); + if (lookahead == '.') ADVANCE(45); + if (lookahead == '=') ADVANCE(54); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(82); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(10) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(149); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(88); END_STATE(); case 10: - ADVANCE_MAP( - '"', 102, - '\'', 67, - '*', 86, - '+', 83, - ',', 78, - '-', 94, - '.', 72, - '/', 88, - '<', 22, - '=', 19, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(9); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(100); + if (lookahead == '"') ADVANCE(72); + if (lookahead == '*') ADVANCE(73); + if (lookahead == ',') ADVANCE(50); + if (lookahead == '.') ADVANCE(45); + if (lookahead == '=') ADVANCE(53); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(82); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(10) if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(149); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(88); END_STATE(); case 11: - if (lookahead == '"') ADVANCE(102); - if (lookahead == '(') ADVANCE(73); - if (lookahead == '*') ADVANCE(85); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(117); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(11); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(149); + if (lookahead == '"') ADVANCE(72); + if (lookahead == '*') ADVANCE(73); + if (lookahead == ',') ADVANCE(50); + if (lookahead == '.') ADVANCE(45); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(24); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(11) END_STATE(); case 12: - ADVANCE_MAP( - '"', 102, - ')', 74, - '*', 86, - '+', 83, - '-', 84, - '.', 72, - '/', 88, - '<', 17, - '=', 80, - ']', 91, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(12); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(149); + if (lookahead == '"') ADVANCE(72); + if (lookahead == '*') ADVANCE(59); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(12) END_STATE(); case 13: - ADVANCE_MAP( - '"', 102, - ')', 74, - '*', 86, - '+', 83, - '-', 94, - '.', 72, - '/', 88, - '<', 17, - '=', 81, - ']', 91, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(12); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(149); + if (lookahead == '\'') ADVANCE(71); + if (lookahead != 0) ADVANCE(13); END_STATE(); case 14: - ADVANCE_MAP( - '"', 102, - '*', 85, - ',', 78, - '-', 94, - '.', 72, - '=', 81, - 'R', 115, - 'r', 115, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(15); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(149); + if (lookahead == '-') ADVANCE(33); END_STATE(); case 15: - if (lookahead == '"') ADVANCE(102); - if (lookahead == '*') ADVANCE(85); - if (lookahead == ',') ADVANCE(78); - if (lookahead == '.') ADVANCE(72); - if (lookahead == '=') ADVANCE(80); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(115); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(15); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(149); + if (lookahead == '>') ADVANCE(55); END_STATE(); case 16: - if (lookahead == '\'') ADVANCE(101); - if (lookahead != 0) ADVANCE(16); + if (lookahead == '>') ADVANCE(55); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(18); END_STATE(); case 17: - if (lookahead == '>') ADVANCE(82); + if (lookahead == '>') ADVANCE(66); END_STATE(); case 18: - if (lookahead == '>') ADVANCE(82); + if (lookahead == '>') ADVANCE(89); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(48); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(18); END_STATE(); case 19: - if (lookahead == '>') ADVANCE(96); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(21); END_STATE(); case 20: - if (lookahead == '>') ADVANCE(150); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(31); END_STATE(); case 21: - if (lookahead == '>') ADVANCE(150); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(20); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(14); END_STATE(); case 22: - if (lookahead == '>') ADVANCE(150); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(48); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(36); END_STATE(); case 23: - if (lookahead == '>') ADVANCE(150); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(21); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(37); END_STATE(); case 24: - if (lookahead == '>') ADVANCE(150); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(23); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(19); END_STATE(); case 25: - if (lookahead == '>') ADVANCE(150); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(24); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(32); END_STATE(); case 26: - if (lookahead == '>') ADVANCE(150); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(25); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(35); END_STATE(); case 27: - if (lookahead == '>') ADVANCE(150); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(26); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(39); END_STATE(); case 28: - if (lookahead == '>') ADVANCE(150); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(27); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(20); END_STATE(); case 29: - if (lookahead == '>') ADVANCE(150); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(28); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(23); END_STATE(); case 30: - if (lookahead == '>') ADVANCE(150); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(29); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(27); END_STATE(); case 31: - if (lookahead == '>') ADVANCE(150); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(30); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(26); END_STATE(); case 32: - if (lookahead == '>') ADVANCE(150); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(31); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(22); END_STATE(); case 33: - if (lookahead == '>') ADVANCE(150); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(32); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(30); END_STATE(); case 34: - if (lookahead == '>') ADVANCE(150); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(33); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(38); END_STATE(); case 35: - if (lookahead == '>') ADVANCE(150); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(34); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(52); END_STATE(); case 36: - if (lookahead == '>') ADVANCE(150); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(35); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(48); END_STATE(); case 37: - if (lookahead == '>') ADVANCE(150); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(36); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(25); END_STATE(); case 38: - if (lookahead == '>') ADVANCE(150); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(37); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(28); END_STATE(); case 39: - if (lookahead == '>') ADVANCE(150); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(38); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(51); END_STATE(); case 40: - if (lookahead == '>') ADVANCE(150); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(39); + if (lookahead != 0 && + lookahead != '\'') ADVANCE(13); END_STATE(); case 41: - if (lookahead == '>') ADVANCE(150); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + if (eof) ADVANCE(44); + if (lookahead == '!') ADVANCE(69); + if (lookahead == '"') ADVANCE(72); + if (lookahead == '\'') ADVANCE(40); + if (lookahead == '(') ADVANCE(46); + if (lookahead == ')') ADVANCE(47); + if (lookahead == '*') ADVANCE(58); + if (lookahead == '+') ADVANCE(56); + if (lookahead == ',') ADVANCE(50); + if (lookahead == '-') ADVANCE(57); + if (lookahead == '.') ADVANCE(45); + if (lookahead == '/') ADVANCE(60); + if (lookahead == ':') ADVANCE(49); + if (lookahead == '<') ADVANCE(16); + if (lookahead == '=') ADVANCE(53); + if (lookahead == ']') ADVANCE(63); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(83); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(41) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(70); + if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(40); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(88); END_STATE(); case 42: - if (lookahead == '>') ADVANCE(150); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + if (eof) ADVANCE(44); + if (lookahead == '"') ADVANCE(72); + if (lookahead == '\'') ADVANCE(40); + if (lookahead == '(') ADVANCE(67); + if (lookahead == ')') ADVANCE(47); + if (lookahead == '*') ADVANCE(73); + if (lookahead == ',') ADVANCE(50); + if (lookahead == '.') ADVANCE(45); + if (lookahead == ':') ADVANCE(49); + if (lookahead == '<') ADVANCE(18); + if (lookahead == '=') ADVANCE(53); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(83); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(43) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(70); + if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(41); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(88); END_STATE(); case 43: - if (lookahead == '>') ADVANCE(150); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + if (eof) ADVANCE(44); + if (lookahead == '"') ADVANCE(72); + if (lookahead == '\'') ADVANCE(40); + if (lookahead == ')') ADVANCE(47); + if (lookahead == '*') ADVANCE(73); + if (lookahead == ',') ADVANCE(50); + if (lookahead == '.') ADVANCE(45); + if (lookahead == ':') ADVANCE(49); + if (lookahead == '<') ADVANCE(18); + if (lookahead == '=') ADVANCE(53); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(83); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(43) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(70); + if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(42); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(88); END_STATE(); case 44: - if (lookahead == '>') ADVANCE(150); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(43); + ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); case 45: - if (lookahead == '>') ADVANCE(150); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(44); + ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); case 46: - if (lookahead == '>') ADVANCE(150); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(45); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 47: - if (lookahead == '>') ADVANCE(150); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(46); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 48: - if (lookahead == '>') ADVANCE(150); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(47); + ACCEPT_TOKEN(aux_sym_class_constructor_declaration_token1); END_STATE(); case 49: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(60); + ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); case 50: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(62); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 51: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(64); - END_STATE(); - case 52: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(59); - END_STATE(); - case 53: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(65); - END_STATE(); - case 54: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(63); - END_STATE(); - case 55: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(51); - END_STATE(); - case 56: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(49); - END_STATE(); - case 57: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(53); - END_STATE(); - case 58: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(57); - END_STATE(); - case 59: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(50); - END_STATE(); - case 60: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(54); - END_STATE(); - case 61: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(66); - END_STATE(); - case 62: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(75); - END_STATE(); - case 63: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(79); - END_STATE(); - case 64: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(52); - END_STATE(); - case 65: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(76); - END_STATE(); - case 66: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(56); - END_STATE(); - case 67: - if (lookahead != 0 && - lookahead != '\'') ADVANCE(16); - END_STATE(); - case 68: - if (eof) ADVANCE(71); - ADVANCE_MAP( - ' ', 2, - '"', 102, - '\'', 67, - '(', 97, - '*', 85, - ',', 78, - '.', 72, - ':', 77, - '<', 22, - '=', 80, - 'F', 116, - 'f', 116, - ); - if (('\t' <= lookahead && lookahead <= '\r')) SKIP(69); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(100); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(149); - END_STATE(); - case 69: - if (eof) ADVANCE(71); - ADVANCE_MAP( - ' ', 2, - '"', 102, - '\'', 67, - '*', 85, - ',', 78, - '.', 72, - ':', 77, - '<', 22, - '=', 80, - 'F', 116, - 'f', 116, - ); - if (('\t' <= lookahead && lookahead <= '\r')) SKIP(69); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(100); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(149); - END_STATE(); - case 70: - if (eof) ADVANCE(71); - ADVANCE_MAP( - '!', 99, - '"', 102, - '\'', 67, - '(', 73, - ')', 74, - '*', 86, - '+', 83, - ',', 78, - '-', 84, - '.', 72, - '/', 88, - ':', 77, - '<', 18, - '=', 80, - ']', 91, - 'C', 117, - 'c', 117, - 'F', 116, - 'f', 116, - 'R', 115, - 'r', 115, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(70); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(100); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(149); - END_STATE(); - case 71: - ACCEPT_TOKEN(ts_builtin_sym_end); - END_STATE(); - case 72: - ACCEPT_TOKEN(anon_sym_DOT); - END_STATE(); - case 73: - ACCEPT_TOKEN(anon_sym_LPAREN); - END_STATE(); - case 74: - ACCEPT_TOKEN(anon_sym_RPAREN); - END_STATE(); - case 75: - ACCEPT_TOKEN(aux_sym_class_constructor_declaration_token1); - END_STATE(); - case 76: ACCEPT_TOKEN(aux_sym__data_object_typing_normal_token5); END_STATE(); - case 77: - ACCEPT_TOKEN(anon_sym_COLON); - END_STATE(); - case 78: - ACCEPT_TOKEN(anon_sym_COMMA); - END_STATE(); - case 79: + case 52: ACCEPT_TOKEN(aux_sym_field_symbol_declaration_token1); END_STATE(); - case 80: + case 53: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); - case 81: + case 54: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '>') ADVANCE(96); + if (lookahead == '>') ADVANCE(66); END_STATE(); - case 82: + case 55: ACCEPT_TOKEN(anon_sym_LT_GT); END_STATE(); - case 83: + case 56: ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); - case 84: + case 57: ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); - case 85: - ACCEPT_TOKEN(anon_sym_STAR); - END_STATE(); - case 86: + case 58: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(89); + if (lookahead == '*') ADVANCE(61); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(73); END_STATE(); - case 87: + case 59: ACCEPT_TOKEN(anon_sym_STAR); if (lookahead != 0 && - lookahead != '\n') ADVANCE(105); + lookahead != '\n') ADVANCE(73); END_STATE(); - case 88: + case 60: ACCEPT_TOKEN(anon_sym_SLASH); END_STATE(); - case 89: + case 61: ACCEPT_TOKEN(anon_sym_STAR_STAR); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(73); END_STATE(); - case 90: + case 62: ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); - case 91: + case 63: ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); - case 92: - ACCEPT_TOKEN(anon_sym_LPAREN2); - END_STATE(); - case 93: - ACCEPT_TOKEN(anon_sym_RPAREN2); - END_STATE(); - case 94: + case 64: ACCEPT_TOKEN(anon_sym_DASH2); END_STATE(); - case 95: + case 65: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '>') ADVANCE(98); + if (lookahead == '>') ADVANCE(68); END_STATE(); - case 96: + case 66: ACCEPT_TOKEN(anon_sym_EQ_GT); END_STATE(); - case 97: - ACCEPT_TOKEN(anon_sym_LPAREN3); + case 67: + ACCEPT_TOKEN(anon_sym_LPAREN2); END_STATE(); - case 98: + case 68: ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); - case 99: + case 69: ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); - case 100: + case 70: ACCEPT_TOKEN(sym_numeric_literal); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(100); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(70); END_STATE(); - case 101: + case 71: ACCEPT_TOKEN(sym_character_literal); END_STATE(); - case 102: - ACCEPT_TOKEN(anon_sym_DQUOTE); - END_STATE(); - case 103: - ACCEPT_TOKEN(anon_sym_DQUOTE); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(105); - END_STATE(); - case 104: - ACCEPT_TOKEN(aux_sym_eol_comment_token1); - if (lookahead == '"') ADVANCE(103); - if (lookahead == '*') ADVANCE(87); - if (lookahead == '\t' || - (0x0b <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(104); + case 72: + ACCEPT_TOKEN(sym_eol_comment); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(105); + lookahead != '\n') ADVANCE(72); END_STATE(); - case 105: - ACCEPT_TOKEN(aux_sym_eol_comment_token1); + case 73: + ACCEPT_TOKEN(sym_bol_comment); if (lookahead != 0 && - lookahead != '\n') ADVANCE(105); + lookahead != '\n') ADVANCE(73); END_STATE(); - case 106: - ACCEPT_TOKEN(sym_name); - END_STATE(); - case 107: + case 74: ACCEPT_TOKEN(sym_name); - if (lookahead == '-') ADVANCE(58); + if (lookahead == '-') ADVANCE(34); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(145); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(88); END_STATE(); - case 108: + case 75: ACCEPT_TOKEN(sym_name); - if (lookahead == '-') ADVANCE(55); + if (lookahead == '-') ADVANCE(29); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(88); END_STATE(); - case 109: + case 76: ACCEPT_TOKEN(sym_name); - if (lookahead == '-') ADVANCE(61); + if (lookahead == '-') ADVANCE(33); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(88); END_STATE(); - case 110: + case 77: ACCEPT_TOKEN(sym_name); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(119); + lookahead == 'a') ADVANCE(87); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(147); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(88); END_STATE(); - case 111: + case 78: ACCEPT_TOKEN(sym_name); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(112); + lookahead == 'a') ADVANCE(80); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(147); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(88); END_STATE(); - case 112: + case 79: ACCEPT_TOKEN(sym_name); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(107); + lookahead == 'd') ADVANCE(74); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(146); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(88); END_STATE(); - case 113: + case 80: ACCEPT_TOKEN(sym_name); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(109); + lookahead == 'd') ADVANCE(76); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(145); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(88); END_STATE(); - case 114: + case 81: ACCEPT_TOKEN(sym_name); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(118); + lookahead == 'e') ADVANCE(84); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(147); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(88); END_STATE(); - case 115: + case 82: ACCEPT_TOKEN(sym_name); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(111); + lookahead == 'e') ADVANCE(78); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(148); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(88); END_STATE(); - case 116: + case 83: ACCEPT_TOKEN(sym_name); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(114); + lookahead == 'i') ADVANCE(81); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(148); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(88); END_STATE(); - case 117: + case 84: ACCEPT_TOKEN(sym_name); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(110); + lookahead == 'l') ADVANCE(79); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(148); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(88); END_STATE(); - case 118: + case 85: ACCEPT_TOKEN(sym_name); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(113); + lookahead == 'l') ADVANCE(77); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(146); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(88); END_STATE(); - case 119: + case 86: ACCEPT_TOKEN(sym_name); if (lookahead == 'S' || - lookahead == 's') ADVANCE(120); + lookahead == 's') ADVANCE(75); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(146); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(88); END_STATE(); - case 120: + case 87: ACCEPT_TOKEN(sym_name); if (lookahead == 'S' || - lookahead == 's') ADVANCE(108); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(145); - END_STATE(); - case 121: - ACCEPT_TOKEN(sym_name); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(106); - END_STATE(); - case 122: - ACCEPT_TOKEN(sym_name); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(121); - END_STATE(); - case 123: - ACCEPT_TOKEN(sym_name); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(122); - END_STATE(); - case 124: - ACCEPT_TOKEN(sym_name); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(123); - END_STATE(); - case 125: - ACCEPT_TOKEN(sym_name); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(124); - END_STATE(); - case 126: - ACCEPT_TOKEN(sym_name); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(125); - END_STATE(); - case 127: - ACCEPT_TOKEN(sym_name); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(126); - END_STATE(); - case 128: - ACCEPT_TOKEN(sym_name); + lookahead == 's') ADVANCE(86); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(127); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(88); END_STATE(); - case 129: - ACCEPT_TOKEN(sym_name); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(128); - END_STATE(); - case 130: - ACCEPT_TOKEN(sym_name); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(129); - END_STATE(); - case 131: - ACCEPT_TOKEN(sym_name); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(130); - END_STATE(); - case 132: - ACCEPT_TOKEN(sym_name); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(131); - END_STATE(); - case 133: - ACCEPT_TOKEN(sym_name); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(132); - END_STATE(); - case 134: - ACCEPT_TOKEN(sym_name); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(133); - END_STATE(); - case 135: - ACCEPT_TOKEN(sym_name); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(134); - END_STATE(); - case 136: - ACCEPT_TOKEN(sym_name); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(135); - END_STATE(); - case 137: - ACCEPT_TOKEN(sym_name); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(136); - END_STATE(); - case 138: - ACCEPT_TOKEN(sym_name); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(137); - END_STATE(); - case 139: - ACCEPT_TOKEN(sym_name); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(138); - END_STATE(); - case 140: - ACCEPT_TOKEN(sym_name); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(139); - END_STATE(); - case 141: - ACCEPT_TOKEN(sym_name); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(140); - END_STATE(); - case 142: - ACCEPT_TOKEN(sym_name); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(141); - END_STATE(); - case 143: - ACCEPT_TOKEN(sym_name); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(142); - END_STATE(); - case 144: - ACCEPT_TOKEN(sym_name); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(143); - END_STATE(); - case 145: - ACCEPT_TOKEN(sym_name); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); - END_STATE(); - case 146: - ACCEPT_TOKEN(sym_name); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(145); - END_STATE(); - case 147: - ACCEPT_TOKEN(sym_name); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(146); - END_STATE(); - case 148: - ACCEPT_TOKEN(sym_name); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(147); - END_STATE(); - case 149: + case 88: ACCEPT_TOKEN(sym_name); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(148); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(88); END_STATE(); - case 150: + case 89: ACCEPT_TOKEN(sym_field_symbol_name); END_STATE(); default: @@ -7561,52 +7109,52 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - ADVANCE_MAP( - 'D', 1, - 'M', 2, - 'd', 3, - 'm', 4, - 'A', 5, - 'a', 5, - 'B', 6, - 'b', 6, - 'C', 7, - 'c', 7, - 'E', 8, - 'e', 8, - 'F', 9, - 'f', 9, - 'G', 10, - 'g', 10, - 'H', 11, - 'h', 11, - 'I', 12, - 'i', 12, - 'K', 13, - 'k', 13, - 'L', 14, - 'l', 14, - 'N', 15, - 'n', 15, - 'O', 16, - 'o', 16, - 'P', 17, - 'p', 17, - 'R', 18, - 'r', 18, - 'S', 19, - 's', 19, - 'T', 20, - 't', 20, - 'U', 21, - 'u', 21, - 'V', 22, - 'v', 22, - 'W', 23, - 'w', 23, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(0); + if (lookahead == 'D') ADVANCE(1); + if (lookahead == 'M') ADVANCE(2); + if (lookahead == 'd') ADVANCE(3); + if (lookahead == 'm') ADVANCE(4); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(5); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(6); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(7); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(8); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(9); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(10); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(11); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(12); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(13); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(14); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(15); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(16); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(17); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(18); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(19); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(20); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(21); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(22); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(23); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(0) END_STATE(); case 1: if (lookahead == 'I') ADVANCE(24); @@ -7631,20 +7179,18 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { lookahead == 'e') ADVANCE(28); END_STATE(); case 5: - ADVANCE_MAP( - 'B', 29, - 'b', 29, - 'L', 30, - 'l', 30, - 'N', 31, - 'n', 31, - 'P', 32, - 'p', 32, - 'S', 33, - 's', 33, - 'T', 34, - 't', 34, - ); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(29); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(30); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(31); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(32); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(33); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(34); END_STATE(); case 6: if (lookahead == 'E' || @@ -7653,18 +7199,16 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { lookahead == 'i') ADVANCE(36); END_STATE(); case 7: - ADVANCE_MAP( - 'A', 37, - 'a', 37, - 'H', 38, - 'h', 38, - 'L', 39, - 'l', 39, - 'O', 40, - 'o', 40, - 'R', 41, - 'r', 41, - ); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(37); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(38); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(39); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(40); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(41); END_STATE(); case 8: if (lookahead == 'N' || @@ -7675,18 +7219,16 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { lookahead == 'x') ADVANCE(44); END_STATE(); case 9: - ADVANCE_MAP( - 'A', 45, - 'a', 45, - 'I', 46, - 'i', 46, - 'O', 47, - 'o', 47, - 'R', 48, - 'r', 48, - 'U', 49, - 'u', 49, - ); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(45); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(46); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(47); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(48); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(49); END_STATE(); case 10: if (lookahead == 'L' || @@ -7697,18 +7239,16 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { lookahead == 'a') ADVANCE(51); END_STATE(); case 12: - ADVANCE_MAP( - 'F', 52, - 'f', 52, - 'G', 53, - 'g', 53, - 'M', 54, - 'm', 54, - 'N', 55, - 'n', 55, - 'S', 56, - 's', 56, - ); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(52); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(53); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(54); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(55); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(56); END_STATE(); case 13: if (lookahead == 'E' || @@ -7727,16 +7267,14 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { lookahead == 'o') ADVANCE(61); END_STATE(); case 16: - ADVANCE_MAP( - 'B', 62, - 'b', 62, - 'F', 63, - 'f', 63, - 'P', 64, - 'p', 64, - 'R', 65, - 'r', 65, - ); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(62); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(63); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(64); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(65); END_STATE(); case 17: if (lookahead == 'R' || @@ -7753,28 +7291,24 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { lookahead == 'o') ADVANCE(70); END_STATE(); case 19: - ADVANCE_MAP( - 'E', 71, - 'e', 71, - 'H', 72, - 'h', 72, - 'O', 73, - 'o', 73, - 'T', 74, - 't', 74, - ); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(71); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(72); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(73); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(74); END_STATE(); case 20: - ADVANCE_MAP( - 'A', 75, - 'a', 75, - 'O', 76, - 'o', 76, - 'R', 77, - 'r', 77, - 'Y', 78, - 'y', 78, - ); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(75); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(76); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(77); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(78); END_STATE(); case 21: if (lookahead == 'P' || @@ -7939,16 +7473,14 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { END_STATE(); case 55: ACCEPT_TOKEN(aux_sym_for_all_entries_token4); - ADVANCE_MAP( - 'C', 125, - 'c', 125, - 'H', 126, - 'h', 126, - 'I', 127, - 'i', 127, - 'T', 128, - 't', 128, - ); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(125); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(126); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(127); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(128); END_STATE(); case 56: ACCEPT_TOKEN(aux_sym__data_object_typing_normal_token3); @@ -8006,22 +7538,20 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { lookahead == 'i') ADVANCE(140); END_STATE(); case 69: - ADVANCE_MAP( - 'A', 141, - 'a', 141, - 'C', 142, - 'c', 142, - 'D', 143, - 'd', 143, - 'F', 144, - 'f', 144, - 'P', 145, - 'p', 145, - 'S', 146, - 's', 146, - 'T', 147, - 't', 147, - ); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(141); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(142); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(143); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(144); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(145); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(146); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(147); END_STATE(); case 70: if (lookahead == 'W' || @@ -8184,20 +7714,18 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { END_STATE(); case 108: ACCEPT_TOKEN(aux_sym_chained_structure_declaration_token2); - ADVANCE_MAP( - 'C', 186, - 'c', 186, - 'F', 187, - 'f', 187, - 'I', 188, - 'i', 188, - 'L', 189, - 'l', 189, - 'M', 190, - 'm', 190, - 'T', 191, - 't', 191, - ); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(186); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(187); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(188); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(189); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(190); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(191); END_STATE(); case 109: if (lookahead == 'R' || @@ -9528,6 +9056,8 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { END_STATE(); case 455: ACCEPT_TOKEN(aux_sym_interface_declaration_token1); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(472); END_STATE(); case 456: ACCEPT_TOKEN(aux_sym__create_addition_token2); @@ -9537,7 +9067,7 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { END_STATE(); case 458: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(472); + lookahead == 'i') ADVANCE(473); END_STATE(); case 459: ACCEPT_TOKEN(aux_sym_method_parameters_token2); @@ -9550,127 +9080,130 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { END_STATE(); case 462: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(473); + lookahead == 'i') ADVANCE(474); END_STATE(); case 463: ACCEPT_TOKEN(aux_sym_class_declaration_token2); END_STATE(); case 464: if (lookahead == 'T' || - lookahead == 't') ADVANCE(474); + lookahead == 't') ADVANCE(475); END_STATE(); case 465: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(475); + lookahead == 'r') ADVANCE(476); END_STATE(); case 466: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(476); + lookahead == 'i') ADVANCE(477); END_STATE(); case 467: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(477); + lookahead == 'n') ADVANCE(478); END_STATE(); case 468: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(478); + lookahead == 'c') ADVANCE(479); END_STATE(); case 469: ACCEPT_TOKEN(aux_sym__method_declaration_exceptions_token1); END_STATE(); case 470: if (lookahead == 'T' || - lookahead == 't') ADVANCE(479); + lookahead == 't') ADVANCE(480); END_STATE(); case 471: ACCEPT_TOKEN(aux_sym_class_declaration_token4); END_STATE(); case 472: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(480); + ACCEPT_TOKEN(aux_sym_chained_interface_declaration_token1); END_STATE(); case 473: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(481); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(481); END_STATE(); case 474: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(482); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(482); END_STATE(); case 475: - ACCEPT_TOKEN(aux_sym_constructor_declaration_token1); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(483); END_STATE(); case 476: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(483); + ACCEPT_TOKEN(aux_sym_constructor_declaration_token1); END_STATE(); case 477: - ACCEPT_TOKEN(aux_sym_function_implementation_token1); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(484); END_STATE(); case 478: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(484); + ACCEPT_TOKEN(aux_sym_function_implementation_token1); END_STATE(); case 479: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(485); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(485); END_STATE(); case 480: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(486); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(486); END_STATE(); case 481: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(487); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(487); END_STATE(); case 482: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(488); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(488); END_STATE(); case 483: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(489); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(489); END_STATE(); case 484: - ACCEPT_TOKEN(aux_sym_interface_declaration_token2); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(490); END_STATE(); case 485: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(490); + ACCEPT_TOKEN(aux_sym_interface_declaration_token2); END_STATE(); case 486: - ACCEPT_TOKEN(aux_sym_method_redefinition_token1); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(491); END_STATE(); case 487: - ACCEPT_TOKEN(aux_sym__read_table_result_token1); + ACCEPT_TOKEN(aux_sym_method_redefinition_token1); END_STATE(); case 488: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(491); + ACCEPT_TOKEN(aux_sym__read_table_result_token1); END_STATE(); case 489: - ACCEPT_TOKEN(aux_sym__select_target_token1); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(492); END_STATE(); case 490: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(492); + ACCEPT_TOKEN(aux_sym__select_target_token1); END_STATE(); case 491: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(493); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(493); END_STATE(); case 492: - ACCEPT_TOKEN(aux_sym_class_implementation_token1); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(494); END_STATE(); case 493: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(494); + ACCEPT_TOKEN(aux_sym_class_implementation_token1); END_STATE(); case 494: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(495); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(495); END_STATE(); case 495: + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(496); + END_STATE(); + case 496: ACCEPT_TOKEN(aux_sym_class_constructor_declaration_token2); END_STATE(); default: @@ -9680,759 +9213,759 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0}, - [1] = {.lex_state = 68}, - [2] = {.lex_state = 68}, - [3] = {.lex_state = 68}, - [4] = {.lex_state = 68}, - [5] = {.lex_state = 68}, - [6] = {.lex_state = 68}, - [7] = {.lex_state = 68}, - [8] = {.lex_state = 68}, - [9] = {.lex_state = 68}, - [10] = {.lex_state = 68}, - [11] = {.lex_state = 68}, - [12] = {.lex_state = 68}, - [13] = {.lex_state = 68}, - [14] = {.lex_state = 68}, - [15] = {.lex_state = 68}, - [16] = {.lex_state = 68}, - [17] = {.lex_state = 68}, - [18] = {.lex_state = 68}, - [19] = {.lex_state = 68}, - [20] = {.lex_state = 68}, - [21] = {.lex_state = 68}, - [22] = {.lex_state = 68}, - [23] = {.lex_state = 68}, - [24] = {.lex_state = 68}, - [25] = {.lex_state = 68}, - [26] = {.lex_state = 68}, - [27] = {.lex_state = 68}, - [28] = {.lex_state = 68}, - [29] = {.lex_state = 68}, - [30] = {.lex_state = 68}, - [31] = {.lex_state = 68}, - [32] = {.lex_state = 68}, - [33] = {.lex_state = 68}, - [34] = {.lex_state = 68}, - [35] = {.lex_state = 68}, - [36] = {.lex_state = 68}, - [37] = {.lex_state = 68}, - [38] = {.lex_state = 68}, - [39] = {.lex_state = 68}, - [40] = {.lex_state = 68}, - [41] = {.lex_state = 68}, - [42] = {.lex_state = 68}, - [43] = {.lex_state = 68}, - [44] = {.lex_state = 68}, - [45] = {.lex_state = 68}, - [46] = {.lex_state = 68}, - [47] = {.lex_state = 68}, - [48] = {.lex_state = 68}, - [49] = {.lex_state = 68}, - [50] = {.lex_state = 68}, - [51] = {.lex_state = 68}, - [52] = {.lex_state = 68}, - [53] = {.lex_state = 68}, - [54] = {.lex_state = 68}, - [55] = {.lex_state = 68}, - [56] = {.lex_state = 68}, - [57] = {.lex_state = 68}, - [58] = {.lex_state = 68}, - [59] = {.lex_state = 68}, - [60] = {.lex_state = 68}, - [61] = {.lex_state = 68}, - [62] = {.lex_state = 68}, - [63] = {.lex_state = 68}, - [64] = {.lex_state = 68}, - [65] = {.lex_state = 68}, - [66] = {.lex_state = 68}, - [67] = {.lex_state = 68}, - [68] = {.lex_state = 68}, - [69] = {.lex_state = 68}, - [70] = {.lex_state = 68}, - [71] = {.lex_state = 68}, - [72] = {.lex_state = 68}, - [73] = {.lex_state = 68}, - [74] = {.lex_state = 68}, - [75] = {.lex_state = 68}, - [76] = {.lex_state = 68}, - [77] = {.lex_state = 68}, - [78] = {.lex_state = 68}, - [79] = {.lex_state = 68}, - [80] = {.lex_state = 68}, - [81] = {.lex_state = 68}, - [82] = {.lex_state = 68}, - [83] = {.lex_state = 68}, - [84] = {.lex_state = 68}, - [85] = {.lex_state = 68}, - [86] = {.lex_state = 68}, - [87] = {.lex_state = 68}, - [88] = {.lex_state = 68}, - [89] = {.lex_state = 68}, - [90] = {.lex_state = 68}, - [91] = {.lex_state = 68}, - [92] = {.lex_state = 68}, - [93] = {.lex_state = 68}, - [94] = {.lex_state = 68}, - [95] = {.lex_state = 68}, - [96] = {.lex_state = 68}, - [97] = {.lex_state = 68}, - [98] = {.lex_state = 13}, - [99] = {.lex_state = 13}, - [100] = {.lex_state = 13}, - [101] = {.lex_state = 68}, - [102] = {.lex_state = 68}, - [103] = {.lex_state = 68}, - [104] = {.lex_state = 68}, - [105] = {.lex_state = 13}, - [106] = {.lex_state = 68}, - [107] = {.lex_state = 68}, - [108] = {.lex_state = 68}, - [109] = {.lex_state = 68}, - [110] = {.lex_state = 68}, - [111] = {.lex_state = 68}, - [112] = {.lex_state = 68}, - [113] = {.lex_state = 68}, - [114] = {.lex_state = 68}, - [115] = {.lex_state = 68}, - [116] = {.lex_state = 68}, - [117] = {.lex_state = 68}, - [118] = {.lex_state = 68}, - [119] = {.lex_state = 68}, - [120] = {.lex_state = 68}, - [121] = {.lex_state = 68}, - [122] = {.lex_state = 68}, - [123] = {.lex_state = 68}, - [124] = {.lex_state = 68}, - [125] = {.lex_state = 68}, - [126] = {.lex_state = 68}, - [127] = {.lex_state = 68}, - [128] = {.lex_state = 68}, - [129] = {.lex_state = 68}, - [130] = {.lex_state = 68}, - [131] = {.lex_state = 68}, - [132] = {.lex_state = 68}, - [133] = {.lex_state = 68}, - [134] = {.lex_state = 68}, - [135] = {.lex_state = 68}, - [136] = {.lex_state = 68}, - [137] = {.lex_state = 68}, - [138] = {.lex_state = 68}, - [139] = {.lex_state = 68}, - [140] = {.lex_state = 68}, - [141] = {.lex_state = 68}, - [142] = {.lex_state = 68}, - [143] = {.lex_state = 68}, - [144] = {.lex_state = 68}, - [145] = {.lex_state = 68}, - [146] = {.lex_state = 68}, - [147] = {.lex_state = 68}, - [148] = {.lex_state = 68}, - [149] = {.lex_state = 68}, - [150] = {.lex_state = 68}, - [151] = {.lex_state = 68}, - [152] = {.lex_state = 68}, - [153] = {.lex_state = 68}, - [154] = {.lex_state = 68}, - [155] = {.lex_state = 68}, - [156] = {.lex_state = 68}, - [157] = {.lex_state = 68}, - [158] = {.lex_state = 68}, - [159] = {.lex_state = 68}, - [160] = {.lex_state = 68}, - [161] = {.lex_state = 68}, - [162] = {.lex_state = 68}, - [163] = {.lex_state = 68}, - [164] = {.lex_state = 68}, - [165] = {.lex_state = 68}, - [166] = {.lex_state = 68}, - [167] = {.lex_state = 68}, - [168] = {.lex_state = 68}, - [169] = {.lex_state = 68}, - [170] = {.lex_state = 68}, - [171] = {.lex_state = 68}, - [172] = {.lex_state = 68}, - [173] = {.lex_state = 68}, - [174] = {.lex_state = 68}, - [175] = {.lex_state = 68}, - [176] = {.lex_state = 68}, - [177] = {.lex_state = 68}, - [178] = {.lex_state = 68}, - [179] = {.lex_state = 68}, - [180] = {.lex_state = 68}, - [181] = {.lex_state = 68}, - [182] = {.lex_state = 68}, - [183] = {.lex_state = 68}, - [184] = {.lex_state = 68}, - [185] = {.lex_state = 68}, - [186] = {.lex_state = 68}, - [187] = {.lex_state = 68}, - [188] = {.lex_state = 68}, - [189] = {.lex_state = 68}, - [190] = {.lex_state = 68}, - [191] = {.lex_state = 68}, - [192] = {.lex_state = 68}, - [193] = {.lex_state = 68}, - [194] = {.lex_state = 68}, - [195] = {.lex_state = 68}, - [196] = {.lex_state = 68}, - [197] = {.lex_state = 68}, - [198] = {.lex_state = 68}, - [199] = {.lex_state = 68}, - [200] = {.lex_state = 68}, - [201] = {.lex_state = 68}, - [202] = {.lex_state = 68}, - [203] = {.lex_state = 68}, - [204] = {.lex_state = 68}, - [205] = {.lex_state = 68}, - [206] = {.lex_state = 68}, - [207] = {.lex_state = 68}, - [208] = {.lex_state = 68}, - [209] = {.lex_state = 68}, - [210] = {.lex_state = 68}, - [211] = {.lex_state = 68}, - [212] = {.lex_state = 68}, - [213] = {.lex_state = 68}, - [214] = {.lex_state = 68}, - [215] = {.lex_state = 68}, - [216] = {.lex_state = 68}, - [217] = {.lex_state = 68}, - [218] = {.lex_state = 68}, - [219] = {.lex_state = 68}, - [220] = {.lex_state = 68}, - [221] = {.lex_state = 68}, - [222] = {.lex_state = 68}, - [223] = {.lex_state = 68}, - [224] = {.lex_state = 68}, - [225] = {.lex_state = 68}, - [226] = {.lex_state = 68}, - [227] = {.lex_state = 68}, - [228] = {.lex_state = 68}, - [229] = {.lex_state = 68}, - [230] = {.lex_state = 68}, - [231] = {.lex_state = 68}, - [232] = {.lex_state = 68}, - [233] = {.lex_state = 68}, - [234] = {.lex_state = 68}, - [235] = {.lex_state = 68}, - [236] = {.lex_state = 68}, - [237] = {.lex_state = 68}, - [238] = {.lex_state = 68}, - [239] = {.lex_state = 68}, - [240] = {.lex_state = 68}, - [241] = {.lex_state = 68}, - [242] = {.lex_state = 68}, - [243] = {.lex_state = 68}, - [244] = {.lex_state = 68}, - [245] = {.lex_state = 12}, - [246] = {.lex_state = 12}, - [247] = {.lex_state = 12}, - [248] = {.lex_state = 12}, - [249] = {.lex_state = 12}, - [250] = {.lex_state = 13}, - [251] = {.lex_state = 68}, - [252] = {.lex_state = 68}, - [253] = {.lex_state = 68}, - [254] = {.lex_state = 68}, - [255] = {.lex_state = 68}, - [256] = {.lex_state = 68}, - [257] = {.lex_state = 68}, - [258] = {.lex_state = 68}, - [259] = {.lex_state = 68}, - [260] = {.lex_state = 68}, - [261] = {.lex_state = 68}, - [262] = {.lex_state = 68}, - [263] = {.lex_state = 68}, - [264] = {.lex_state = 68}, - [265] = {.lex_state = 68}, - [266] = {.lex_state = 68}, - [267] = {.lex_state = 68}, - [268] = {.lex_state = 68}, - [269] = {.lex_state = 68}, - [270] = {.lex_state = 68}, - [271] = {.lex_state = 68}, - [272] = {.lex_state = 68}, - [273] = {.lex_state = 68}, - [274] = {.lex_state = 68}, - [275] = {.lex_state = 68}, - [276] = {.lex_state = 68}, - [277] = {.lex_state = 68}, - [278] = {.lex_state = 68}, - [279] = {.lex_state = 68}, - [280] = {.lex_state = 68}, - [281] = {.lex_state = 68}, - [282] = {.lex_state = 68}, - [283] = {.lex_state = 68}, - [284] = {.lex_state = 68}, - [285] = {.lex_state = 68}, - [286] = {.lex_state = 68}, - [287] = {.lex_state = 68}, - [288] = {.lex_state = 68}, - [289] = {.lex_state = 68}, - [290] = {.lex_state = 68}, - [291] = {.lex_state = 68}, - [292] = {.lex_state = 68}, - [293] = {.lex_state = 68}, - [294] = {.lex_state = 68}, - [295] = {.lex_state = 68}, - [296] = {.lex_state = 68}, - [297] = {.lex_state = 68}, - [298] = {.lex_state = 68}, - [299] = {.lex_state = 68}, - [300] = {.lex_state = 68}, - [301] = {.lex_state = 68}, - [302] = {.lex_state = 68}, - [303] = {.lex_state = 68}, - [304] = {.lex_state = 68}, - [305] = {.lex_state = 68}, - [306] = {.lex_state = 68}, - [307] = {.lex_state = 68}, - [308] = {.lex_state = 68}, - [309] = {.lex_state = 68}, - [310] = {.lex_state = 68}, - [311] = {.lex_state = 68}, - [312] = {.lex_state = 68}, - [313] = {.lex_state = 68}, - [314] = {.lex_state = 68}, - [315] = {.lex_state = 68}, - [316] = {.lex_state = 68}, - [317] = {.lex_state = 68}, - [318] = {.lex_state = 68}, - [319] = {.lex_state = 68}, - [320] = {.lex_state = 68}, - [321] = {.lex_state = 68}, - [322] = {.lex_state = 68}, - [323] = {.lex_state = 68}, - [324] = {.lex_state = 68}, - [325] = {.lex_state = 68}, - [326] = {.lex_state = 68}, - [327] = {.lex_state = 68}, - [328] = {.lex_state = 68}, - [329] = {.lex_state = 68}, - [330] = {.lex_state = 68}, - [331] = {.lex_state = 68}, - [332] = {.lex_state = 68}, - [333] = {.lex_state = 68}, - [334] = {.lex_state = 68}, - [335] = {.lex_state = 68}, - [336] = {.lex_state = 68}, - [337] = {.lex_state = 68}, - [338] = {.lex_state = 68}, - [339] = {.lex_state = 68}, - [340] = {.lex_state = 68}, - [341] = {.lex_state = 68}, - [342] = {.lex_state = 68}, - [343] = {.lex_state = 68}, - [344] = {.lex_state = 68}, - [345] = {.lex_state = 68}, - [346] = {.lex_state = 68}, - [347] = {.lex_state = 68}, - [348] = {.lex_state = 68}, - [349] = {.lex_state = 68}, - [350] = {.lex_state = 68}, - [351] = {.lex_state = 68}, - [352] = {.lex_state = 68}, - [353] = {.lex_state = 68}, - [354] = {.lex_state = 68}, - [355] = {.lex_state = 68}, - [356] = {.lex_state = 68}, - [357] = {.lex_state = 68}, - [358] = {.lex_state = 68}, - [359] = {.lex_state = 68}, - [360] = {.lex_state = 68}, - [361] = {.lex_state = 68}, - [362] = {.lex_state = 68}, - [363] = {.lex_state = 68}, - [364] = {.lex_state = 68}, - [365] = {.lex_state = 68}, - [366] = {.lex_state = 68}, - [367] = {.lex_state = 68}, - [368] = {.lex_state = 68}, - [369] = {.lex_state = 68}, - [370] = {.lex_state = 68}, - [371] = {.lex_state = 68}, - [372] = {.lex_state = 68}, - [373] = {.lex_state = 68}, - [374] = {.lex_state = 68}, - [375] = {.lex_state = 68}, - [376] = {.lex_state = 68}, - [377] = {.lex_state = 68}, - [378] = {.lex_state = 68}, - [379] = {.lex_state = 68}, - [380] = {.lex_state = 68}, - [381] = {.lex_state = 68}, - [382] = {.lex_state = 68}, - [383] = {.lex_state = 68}, - [384] = {.lex_state = 68}, - [385] = {.lex_state = 68}, - [386] = {.lex_state = 68}, - [387] = {.lex_state = 68}, - [388] = {.lex_state = 68}, - [389] = {.lex_state = 68}, - [390] = {.lex_state = 68}, - [391] = {.lex_state = 68}, - [392] = {.lex_state = 68}, - [393] = {.lex_state = 68}, - [394] = {.lex_state = 68}, - [395] = {.lex_state = 68}, - [396] = {.lex_state = 68}, - [397] = {.lex_state = 68}, - [398] = {.lex_state = 68}, - [399] = {.lex_state = 68}, - [400] = {.lex_state = 68}, - [401] = {.lex_state = 68}, - [402] = {.lex_state = 68}, - [403] = {.lex_state = 68}, - [404] = {.lex_state = 68}, - [405] = {.lex_state = 68}, - [406] = {.lex_state = 68}, - [407] = {.lex_state = 68}, - [408] = {.lex_state = 68}, - [409] = {.lex_state = 68}, - [410] = {.lex_state = 68}, - [411] = {.lex_state = 68}, - [412] = {.lex_state = 68}, - [413] = {.lex_state = 68}, - [414] = {.lex_state = 68}, - [415] = {.lex_state = 68}, - [416] = {.lex_state = 68}, - [417] = {.lex_state = 68}, - [418] = {.lex_state = 68}, - [419] = {.lex_state = 68}, - [420] = {.lex_state = 68}, - [421] = {.lex_state = 68}, - [422] = {.lex_state = 68}, - [423] = {.lex_state = 68}, - [424] = {.lex_state = 68}, - [425] = {.lex_state = 68}, - [426] = {.lex_state = 68}, - [427] = {.lex_state = 68}, - [428] = {.lex_state = 68}, - [429] = {.lex_state = 68}, - [430] = {.lex_state = 68}, - [431] = {.lex_state = 68}, - [432] = {.lex_state = 68}, - [433] = {.lex_state = 68}, - [434] = {.lex_state = 68}, - [435] = {.lex_state = 68}, - [436] = {.lex_state = 68}, - [437] = {.lex_state = 68}, - [438] = {.lex_state = 68}, - [439] = {.lex_state = 68}, - [440] = {.lex_state = 68}, - [441] = {.lex_state = 68}, - [442] = {.lex_state = 68}, - [443] = {.lex_state = 68}, - [444] = {.lex_state = 68}, - [445] = {.lex_state = 68}, - [446] = {.lex_state = 68}, - [447] = {.lex_state = 68}, - [448] = {.lex_state = 68}, - [449] = {.lex_state = 68}, - [450] = {.lex_state = 68}, - [451] = {.lex_state = 68}, - [452] = {.lex_state = 68}, - [453] = {.lex_state = 68}, - [454] = {.lex_state = 12}, - [455] = {.lex_state = 68}, - [456] = {.lex_state = 12}, - [457] = {.lex_state = 5}, - [458] = {.lex_state = 5}, - [459] = {.lex_state = 5}, - [460] = {.lex_state = 5}, - [461] = {.lex_state = 5}, + [1] = {.lex_state = 42}, + [2] = {.lex_state = 42}, + [3] = {.lex_state = 42}, + [4] = {.lex_state = 42}, + [5] = {.lex_state = 42}, + [6] = {.lex_state = 42}, + [7] = {.lex_state = 42}, + [8] = {.lex_state = 42}, + [9] = {.lex_state = 42}, + [10] = {.lex_state = 42}, + [11] = {.lex_state = 42}, + [12] = {.lex_state = 42}, + [13] = {.lex_state = 42}, + [14] = {.lex_state = 42}, + [15] = {.lex_state = 42}, + [16] = {.lex_state = 42}, + [17] = {.lex_state = 42}, + [18] = {.lex_state = 42}, + [19] = {.lex_state = 42}, + [20] = {.lex_state = 42}, + [21] = {.lex_state = 42}, + [22] = {.lex_state = 42}, + [23] = {.lex_state = 42}, + [24] = {.lex_state = 42}, + [25] = {.lex_state = 42}, + [26] = {.lex_state = 42}, + [27] = {.lex_state = 42}, + [28] = {.lex_state = 42}, + [29] = {.lex_state = 42}, + [30] = {.lex_state = 42}, + [31] = {.lex_state = 42}, + [32] = {.lex_state = 42}, + [33] = {.lex_state = 42}, + [34] = {.lex_state = 42}, + [35] = {.lex_state = 42}, + [36] = {.lex_state = 42}, + [37] = {.lex_state = 42}, + [38] = {.lex_state = 8}, + [39] = {.lex_state = 8}, + [40] = {.lex_state = 8}, + [41] = {.lex_state = 42}, + [42] = {.lex_state = 42}, + [43] = {.lex_state = 42}, + [44] = {.lex_state = 42}, + [45] = {.lex_state = 42}, + [46] = {.lex_state = 42}, + [47] = {.lex_state = 42}, + [48] = {.lex_state = 42}, + [49] = {.lex_state = 42}, + [50] = {.lex_state = 42}, + [51] = {.lex_state = 42}, + [52] = {.lex_state = 42}, + [53] = {.lex_state = 42}, + [54] = {.lex_state = 42}, + [55] = {.lex_state = 42}, + [56] = {.lex_state = 42}, + [57] = {.lex_state = 42}, + [58] = {.lex_state = 42}, + [59] = {.lex_state = 42}, + [60] = {.lex_state = 42}, + [61] = {.lex_state = 42}, + [62] = {.lex_state = 42}, + [63] = {.lex_state = 42}, + [64] = {.lex_state = 42}, + [65] = {.lex_state = 42}, + [66] = {.lex_state = 42}, + [67] = {.lex_state = 42}, + [68] = {.lex_state = 42}, + [69] = {.lex_state = 42}, + [70] = {.lex_state = 42}, + [71] = {.lex_state = 42}, + [72] = {.lex_state = 42}, + [73] = {.lex_state = 42}, + [74] = {.lex_state = 42}, + [75] = {.lex_state = 42}, + [76] = {.lex_state = 42}, + [77] = {.lex_state = 42}, + [78] = {.lex_state = 42}, + [79] = {.lex_state = 42}, + [80] = {.lex_state = 42}, + [81] = {.lex_state = 8}, + [82] = {.lex_state = 42}, + [83] = {.lex_state = 42}, + [84] = {.lex_state = 42}, + [85] = {.lex_state = 42}, + [86] = {.lex_state = 42}, + [87] = {.lex_state = 42}, + [88] = {.lex_state = 42}, + [89] = {.lex_state = 42}, + [90] = {.lex_state = 42}, + [91] = {.lex_state = 42}, + [92] = {.lex_state = 42}, + [93] = {.lex_state = 42}, + [94] = {.lex_state = 42}, + [95] = {.lex_state = 42}, + [96] = {.lex_state = 42}, + [97] = {.lex_state = 42}, + [98] = {.lex_state = 42}, + [99] = {.lex_state = 42}, + [100] = {.lex_state = 42}, + [101] = {.lex_state = 42}, + [102] = {.lex_state = 42}, + [103] = {.lex_state = 42}, + [104] = {.lex_state = 7}, + [105] = {.lex_state = 7}, + [106] = {.lex_state = 42}, + [107] = {.lex_state = 42}, + [108] = {.lex_state = 42}, + [109] = {.lex_state = 42}, + [110] = {.lex_state = 42}, + [111] = {.lex_state = 42}, + [112] = {.lex_state = 42}, + [113] = {.lex_state = 42}, + [114] = {.lex_state = 42}, + [115] = {.lex_state = 42}, + [116] = {.lex_state = 42}, + [117] = {.lex_state = 42}, + [118] = {.lex_state = 42}, + [119] = {.lex_state = 42}, + [120] = {.lex_state = 42}, + [121] = {.lex_state = 42}, + [122] = {.lex_state = 42}, + [123] = {.lex_state = 42}, + [124] = {.lex_state = 42}, + [125] = {.lex_state = 42}, + [126] = {.lex_state = 42}, + [127] = {.lex_state = 42}, + [128] = {.lex_state = 42}, + [129] = {.lex_state = 42}, + [130] = {.lex_state = 42}, + [131] = {.lex_state = 42}, + [132] = {.lex_state = 42}, + [133] = {.lex_state = 42}, + [134] = {.lex_state = 42}, + [135] = {.lex_state = 42}, + [136] = {.lex_state = 42}, + [137] = {.lex_state = 42}, + [138] = {.lex_state = 42}, + [139] = {.lex_state = 42}, + [140] = {.lex_state = 42}, + [141] = {.lex_state = 42}, + [142] = {.lex_state = 42}, + [143] = {.lex_state = 42}, + [144] = {.lex_state = 42}, + [145] = {.lex_state = 42}, + [146] = {.lex_state = 42}, + [147] = {.lex_state = 42}, + [148] = {.lex_state = 42}, + [149] = {.lex_state = 42}, + [150] = {.lex_state = 42}, + [151] = {.lex_state = 42}, + [152] = {.lex_state = 42}, + [153] = {.lex_state = 42}, + [154] = {.lex_state = 42}, + [155] = {.lex_state = 42}, + [156] = {.lex_state = 42}, + [157] = {.lex_state = 42}, + [158] = {.lex_state = 42}, + [159] = {.lex_state = 42}, + [160] = {.lex_state = 42}, + [161] = {.lex_state = 42}, + [162] = {.lex_state = 42}, + [163] = {.lex_state = 42}, + [164] = {.lex_state = 42}, + [165] = {.lex_state = 42}, + [166] = {.lex_state = 42}, + [167] = {.lex_state = 42}, + [168] = {.lex_state = 42}, + [169] = {.lex_state = 42}, + [170] = {.lex_state = 42}, + [171] = {.lex_state = 42}, + [172] = {.lex_state = 42}, + [173] = {.lex_state = 42}, + [174] = {.lex_state = 42}, + [175] = {.lex_state = 42}, + [176] = {.lex_state = 42}, + [177] = {.lex_state = 42}, + [178] = {.lex_state = 42}, + [179] = {.lex_state = 42}, + [180] = {.lex_state = 42}, + [181] = {.lex_state = 42}, + [182] = {.lex_state = 42}, + [183] = {.lex_state = 42}, + [184] = {.lex_state = 42}, + [185] = {.lex_state = 42}, + [186] = {.lex_state = 42}, + [187] = {.lex_state = 42}, + [188] = {.lex_state = 42}, + [189] = {.lex_state = 42}, + [190] = {.lex_state = 42}, + [191] = {.lex_state = 42}, + [192] = {.lex_state = 42}, + [193] = {.lex_state = 42}, + [194] = {.lex_state = 42}, + [195] = {.lex_state = 42}, + [196] = {.lex_state = 42}, + [197] = {.lex_state = 42}, + [198] = {.lex_state = 42}, + [199] = {.lex_state = 42}, + [200] = {.lex_state = 42}, + [201] = {.lex_state = 42}, + [202] = {.lex_state = 42}, + [203] = {.lex_state = 42}, + [204] = {.lex_state = 42}, + [205] = {.lex_state = 42}, + [206] = {.lex_state = 42}, + [207] = {.lex_state = 42}, + [208] = {.lex_state = 42}, + [209] = {.lex_state = 42}, + [210] = {.lex_state = 42}, + [211] = {.lex_state = 42}, + [212] = {.lex_state = 42}, + [213] = {.lex_state = 42}, + [214] = {.lex_state = 42}, + [215] = {.lex_state = 42}, + [216] = {.lex_state = 42}, + [217] = {.lex_state = 42}, + [218] = {.lex_state = 42}, + [219] = {.lex_state = 42}, + [220] = {.lex_state = 42}, + [221] = {.lex_state = 42}, + [222] = {.lex_state = 42}, + [223] = {.lex_state = 42}, + [224] = {.lex_state = 42}, + [225] = {.lex_state = 42}, + [226] = {.lex_state = 42}, + [227] = {.lex_state = 42}, + [228] = {.lex_state = 42}, + [229] = {.lex_state = 42}, + [230] = {.lex_state = 42}, + [231] = {.lex_state = 42}, + [232] = {.lex_state = 42}, + [233] = {.lex_state = 42}, + [234] = {.lex_state = 42}, + [235] = {.lex_state = 42}, + [236] = {.lex_state = 42}, + [237] = {.lex_state = 42}, + [238] = {.lex_state = 42}, + [239] = {.lex_state = 8}, + [240] = {.lex_state = 42}, + [241] = {.lex_state = 42}, + [242] = {.lex_state = 42}, + [243] = {.lex_state = 42}, + [244] = {.lex_state = 42}, + [245] = {.lex_state = 42}, + [246] = {.lex_state = 42}, + [247] = {.lex_state = 42}, + [248] = {.lex_state = 42}, + [249] = {.lex_state = 42}, + [250] = {.lex_state = 42}, + [251] = {.lex_state = 42}, + [252] = {.lex_state = 42}, + [253] = {.lex_state = 42}, + [254] = {.lex_state = 42}, + [255] = {.lex_state = 42}, + [256] = {.lex_state = 42}, + [257] = {.lex_state = 42}, + [258] = {.lex_state = 42}, + [259] = {.lex_state = 42}, + [260] = {.lex_state = 42}, + [261] = {.lex_state = 42}, + [262] = {.lex_state = 42}, + [263] = {.lex_state = 42}, + [264] = {.lex_state = 7}, + [265] = {.lex_state = 7}, + [266] = {.lex_state = 42}, + [267] = {.lex_state = 42}, + [268] = {.lex_state = 42}, + [269] = {.lex_state = 42}, + [270] = {.lex_state = 42}, + [271] = {.lex_state = 42}, + [272] = {.lex_state = 42}, + [273] = {.lex_state = 42}, + [274] = {.lex_state = 42}, + [275] = {.lex_state = 42}, + [276] = {.lex_state = 42}, + [277] = {.lex_state = 42}, + [278] = {.lex_state = 42}, + [279] = {.lex_state = 42}, + [280] = {.lex_state = 42}, + [281] = {.lex_state = 42}, + [282] = {.lex_state = 42}, + [283] = {.lex_state = 42}, + [284] = {.lex_state = 42}, + [285] = {.lex_state = 42}, + [286] = {.lex_state = 42}, + [287] = {.lex_state = 42}, + [288] = {.lex_state = 42}, + [289] = {.lex_state = 42}, + [290] = {.lex_state = 42}, + [291] = {.lex_state = 42}, + [292] = {.lex_state = 42}, + [293] = {.lex_state = 42}, + [294] = {.lex_state = 42}, + [295] = {.lex_state = 42}, + [296] = {.lex_state = 42}, + [297] = {.lex_state = 42}, + [298] = {.lex_state = 42}, + [299] = {.lex_state = 42}, + [300] = {.lex_state = 42}, + [301] = {.lex_state = 42}, + [302] = {.lex_state = 42}, + [303] = {.lex_state = 42}, + [304] = {.lex_state = 42}, + [305] = {.lex_state = 42}, + [306] = {.lex_state = 42}, + [307] = {.lex_state = 42}, + [308] = {.lex_state = 42}, + [309] = {.lex_state = 42}, + [310] = {.lex_state = 42}, + [311] = {.lex_state = 42}, + [312] = {.lex_state = 42}, + [313] = {.lex_state = 42}, + [314] = {.lex_state = 42}, + [315] = {.lex_state = 42}, + [316] = {.lex_state = 42}, + [317] = {.lex_state = 42}, + [318] = {.lex_state = 42}, + [319] = {.lex_state = 42}, + [320] = {.lex_state = 42}, + [321] = {.lex_state = 42}, + [322] = {.lex_state = 42}, + [323] = {.lex_state = 42}, + [324] = {.lex_state = 42}, + [325] = {.lex_state = 42}, + [326] = {.lex_state = 42}, + [327] = {.lex_state = 42}, + [328] = {.lex_state = 42}, + [329] = {.lex_state = 42}, + [330] = {.lex_state = 42}, + [331] = {.lex_state = 42}, + [332] = {.lex_state = 42}, + [333] = {.lex_state = 42}, + [334] = {.lex_state = 42}, + [335] = {.lex_state = 42}, + [336] = {.lex_state = 42}, + [337] = {.lex_state = 42}, + [338] = {.lex_state = 42}, + [339] = {.lex_state = 42}, + [340] = {.lex_state = 42}, + [341] = {.lex_state = 42}, + [342] = {.lex_state = 42}, + [343] = {.lex_state = 42}, + [344] = {.lex_state = 42}, + [345] = {.lex_state = 42}, + [346] = {.lex_state = 42}, + [347] = {.lex_state = 42}, + [348] = {.lex_state = 42}, + [349] = {.lex_state = 42}, + [350] = {.lex_state = 42}, + [351] = {.lex_state = 42}, + [352] = {.lex_state = 42}, + [353] = {.lex_state = 42}, + [354] = {.lex_state = 42}, + [355] = {.lex_state = 42}, + [356] = {.lex_state = 42}, + [357] = {.lex_state = 42}, + [358] = {.lex_state = 42}, + [359] = {.lex_state = 42}, + [360] = {.lex_state = 42}, + [361] = {.lex_state = 42}, + [362] = {.lex_state = 42}, + [363] = {.lex_state = 42}, + [364] = {.lex_state = 42}, + [365] = {.lex_state = 42}, + [366] = {.lex_state = 42}, + [367] = {.lex_state = 42}, + [368] = {.lex_state = 42}, + [369] = {.lex_state = 42}, + [370] = {.lex_state = 42}, + [371] = {.lex_state = 42}, + [372] = {.lex_state = 42}, + [373] = {.lex_state = 42}, + [374] = {.lex_state = 42}, + [375] = {.lex_state = 42}, + [376] = {.lex_state = 42}, + [377] = {.lex_state = 42}, + [378] = {.lex_state = 42}, + [379] = {.lex_state = 42}, + [380] = {.lex_state = 42}, + [381] = {.lex_state = 42}, + [382] = {.lex_state = 42}, + [383] = {.lex_state = 42}, + [384] = {.lex_state = 42}, + [385] = {.lex_state = 42}, + [386] = {.lex_state = 42}, + [387] = {.lex_state = 42}, + [388] = {.lex_state = 42}, + [389] = {.lex_state = 42}, + [390] = {.lex_state = 42}, + [391] = {.lex_state = 42}, + [392] = {.lex_state = 42}, + [393] = {.lex_state = 42}, + [394] = {.lex_state = 42}, + [395] = {.lex_state = 42}, + [396] = {.lex_state = 42}, + [397] = {.lex_state = 42}, + [398] = {.lex_state = 42}, + [399] = {.lex_state = 42}, + [400] = {.lex_state = 42}, + [401] = {.lex_state = 42}, + [402] = {.lex_state = 42}, + [403] = {.lex_state = 42}, + [404] = {.lex_state = 42}, + [405] = {.lex_state = 42}, + [406] = {.lex_state = 42}, + [407] = {.lex_state = 42}, + [408] = {.lex_state = 42}, + [409] = {.lex_state = 42}, + [410] = {.lex_state = 42}, + [411] = {.lex_state = 42}, + [412] = {.lex_state = 42}, + [413] = {.lex_state = 42}, + [414] = {.lex_state = 42}, + [415] = {.lex_state = 42}, + [416] = {.lex_state = 42}, + [417] = {.lex_state = 42}, + [418] = {.lex_state = 42}, + [419] = {.lex_state = 42}, + [420] = {.lex_state = 42}, + [421] = {.lex_state = 42}, + [422] = {.lex_state = 42}, + [423] = {.lex_state = 42}, + [424] = {.lex_state = 42}, + [425] = {.lex_state = 42}, + [426] = {.lex_state = 42}, + [427] = {.lex_state = 42}, + [428] = {.lex_state = 42}, + [429] = {.lex_state = 42}, + [430] = {.lex_state = 42}, + [431] = {.lex_state = 42}, + [432] = {.lex_state = 42}, + [433] = {.lex_state = 42}, + [434] = {.lex_state = 42}, + [435] = {.lex_state = 42}, + [436] = {.lex_state = 42}, + [437] = {.lex_state = 42}, + [438] = {.lex_state = 42}, + [439] = {.lex_state = 42}, + [440] = {.lex_state = 42}, + [441] = {.lex_state = 42}, + [442] = {.lex_state = 42}, + [443] = {.lex_state = 42}, + [444] = {.lex_state = 42}, + [445] = {.lex_state = 42}, + [446] = {.lex_state = 42}, + [447] = {.lex_state = 42}, + [448] = {.lex_state = 42}, + [449] = {.lex_state = 42}, + [450] = {.lex_state = 42}, + [451] = {.lex_state = 42}, + [452] = {.lex_state = 42}, + [453] = {.lex_state = 1}, + [454] = {.lex_state = 1}, + [455] = {.lex_state = 1}, + [456] = {.lex_state = 1}, + [457] = {.lex_state = 1}, + [458] = {.lex_state = 1}, + [459] = {.lex_state = 1}, + [460] = {.lex_state = 1}, + [461] = {.lex_state = 1}, [462] = {.lex_state = 5}, - [463] = {.lex_state = 5}, - [464] = {.lex_state = 5}, - [465] = {.lex_state = 5}, - [466] = {.lex_state = 5}, - [467] = {.lex_state = 5}, - [468] = {.lex_state = 5}, - [469] = {.lex_state = 5}, - [470] = {.lex_state = 5}, + [463] = {.lex_state = 1}, + [464] = {.lex_state = 1}, + [465] = {.lex_state = 1}, + [466] = {.lex_state = 1}, + [467] = {.lex_state = 1}, + [468] = {.lex_state = 1}, + [469] = {.lex_state = 1}, + [470] = {.lex_state = 1}, [471] = {.lex_state = 5}, [472] = {.lex_state = 5}, - [473] = {.lex_state = 5}, - [474] = {.lex_state = 10}, + [473] = {.lex_state = 7}, + [474] = {.lex_state = 4}, [475] = {.lex_state = 5}, - [476] = {.lex_state = 5}, - [477] = {.lex_state = 11}, - [478] = {.lex_state = 5}, - [479] = {.lex_state = 13}, - [480] = {.lex_state = 5}, - [481] = {.lex_state = 5}, - [482] = {.lex_state = 5}, - [483] = {.lex_state = 5}, - [484] = {.lex_state = 5}, - [485] = {.lex_state = 10}, - [486] = {.lex_state = 5}, - [487] = {.lex_state = 5}, - [488] = {.lex_state = 10}, - [489] = {.lex_state = 11}, - [490] = {.lex_state = 10}, - [491] = {.lex_state = 11}, - [492] = {.lex_state = 12}, - [493] = {.lex_state = 5}, - [494] = {.lex_state = 5}, - [495] = {.lex_state = 5}, - [496] = {.lex_state = 5}, - [497] = {.lex_state = 5}, - [498] = {.lex_state = 5}, - [499] = {.lex_state = 5}, - [500] = {.lex_state = 11}, - [501] = {.lex_state = 5}, - [502] = {.lex_state = 5}, - [503] = {.lex_state = 5}, - [504] = {.lex_state = 13}, - [505] = {.lex_state = 5}, - [506] = {.lex_state = 5}, - [507] = {.lex_state = 11}, - [508] = {.lex_state = 10}, - [509] = {.lex_state = 5}, - [510] = {.lex_state = 5}, - [511] = {.lex_state = 5}, - [512] = {.lex_state = 9}, - [513] = {.lex_state = 11}, - [514] = {.lex_state = 5}, - [515] = {.lex_state = 5}, - [516] = {.lex_state = 5}, - [517] = {.lex_state = 5}, - [518] = {.lex_state = 5}, - [519] = {.lex_state = 9}, - [520] = {.lex_state = 5}, - [521] = {.lex_state = 5}, - [522] = {.lex_state = 9}, - [523] = {.lex_state = 5}, - [524] = {.lex_state = 5}, - [525] = {.lex_state = 11}, - [526] = {.lex_state = 5}, - [527] = {.lex_state = 5}, - [528] = {.lex_state = 9}, - [529] = {.lex_state = 9}, - [530] = {.lex_state = 9}, - [531] = {.lex_state = 9}, - [532] = {.lex_state = 9}, - [533] = {.lex_state = 9}, - [534] = {.lex_state = 5}, - [535] = {.lex_state = 9}, - [536] = {.lex_state = 5}, - [537] = {.lex_state = 5}, - [538] = {.lex_state = 5}, - [539] = {.lex_state = 5}, - [540] = {.lex_state = 13}, - [541] = {.lex_state = 12}, - [542] = {.lex_state = 5}, - [543] = {.lex_state = 5}, - [544] = {.lex_state = 13}, - [545] = {.lex_state = 5}, - [546] = {.lex_state = 5}, - [547] = {.lex_state = 5}, - [548] = {.lex_state = 5}, - [549] = {.lex_state = 5}, - [550] = {.lex_state = 5}, - [551] = {.lex_state = 5}, - [552] = {.lex_state = 5}, - [553] = {.lex_state = 5}, - [554] = {.lex_state = 5}, - [555] = {.lex_state = 5}, - [556] = {.lex_state = 5}, - [557] = {.lex_state = 5}, - [558] = {.lex_state = 5}, - [559] = {.lex_state = 12}, - [560] = {.lex_state = 5}, - [561] = {.lex_state = 5}, - [562] = {.lex_state = 5}, - [563] = {.lex_state = 5}, - [564] = {.lex_state = 5}, - [565] = {.lex_state = 5}, - [566] = {.lex_state = 5}, - [567] = {.lex_state = 5}, - [568] = {.lex_state = 5}, - [569] = {.lex_state = 12}, - [570] = {.lex_state = 5}, - [571] = {.lex_state = 5}, - [572] = {.lex_state = 5}, - [573] = {.lex_state = 12}, - [574] = {.lex_state = 5}, - [575] = {.lex_state = 5}, - [576] = {.lex_state = 5}, - [577] = {.lex_state = 5}, - [578] = {.lex_state = 5}, - [579] = {.lex_state = 5}, + [476] = {.lex_state = 8}, + [477] = {.lex_state = 5}, + [478] = {.lex_state = 4}, + [479] = {.lex_state = 5}, + [480] = {.lex_state = 1}, + [481] = {.lex_state = 4}, + [482] = {.lex_state = 1}, + [483] = {.lex_state = 8}, + [484] = {.lex_state = 4}, + [485] = {.lex_state = 1}, + [486] = {.lex_state = 1}, + [487] = {.lex_state = 1}, + [488] = {.lex_state = 5}, + [489] = {.lex_state = 1}, + [490] = {.lex_state = 1}, + [491] = {.lex_state = 1}, + [492] = {.lex_state = 1}, + [493] = {.lex_state = 1}, + [494] = {.lex_state = 1}, + [495] = {.lex_state = 1}, + [496] = {.lex_state = 1}, + [497] = {.lex_state = 1}, + [498] = {.lex_state = 4}, + [499] = {.lex_state = 1}, + [500] = {.lex_state = 1}, + [501] = {.lex_state = 1}, + [502] = {.lex_state = 8}, + [503] = {.lex_state = 1}, + [504] = {.lex_state = 1}, + [505] = {.lex_state = 1}, + [506] = {.lex_state = 3}, + [507] = {.lex_state = 3}, + [508] = {.lex_state = 8}, + [509] = {.lex_state = 3}, + [510] = {.lex_state = 1}, + [511] = {.lex_state = 3}, + [512] = {.lex_state = 1}, + [513] = {.lex_state = 7}, + [514] = {.lex_state = 1}, + [515] = {.lex_state = 1}, + [516] = {.lex_state = 3}, + [517] = {.lex_state = 1}, + [518] = {.lex_state = 1}, + [519] = {.lex_state = 1}, + [520] = {.lex_state = 7}, + [521] = {.lex_state = 7}, + [522] = {.lex_state = 1}, + [523] = {.lex_state = 1}, + [524] = {.lex_state = 7}, + [525] = {.lex_state = 1}, + [526] = {.lex_state = 1}, + [527] = {.lex_state = 1}, + [528] = {.lex_state = 1}, + [529] = {.lex_state = 1}, + [530] = {.lex_state = 1}, + [531] = {.lex_state = 1}, + [532] = {.lex_state = 1}, + [533] = {.lex_state = 1}, + [534] = {.lex_state = 1}, + [535] = {.lex_state = 1}, + [536] = {.lex_state = 7}, + [537] = {.lex_state = 1}, + [538] = {.lex_state = 1}, + [539] = {.lex_state = 1}, + [540] = {.lex_state = 7}, + [541] = {.lex_state = 1}, + [542] = {.lex_state = 1}, + [543] = {.lex_state = 1}, + [544] = {.lex_state = 1}, + [545] = {.lex_state = 1}, + [546] = {.lex_state = 1}, + [547] = {.lex_state = 1}, + [548] = {.lex_state = 7}, + [549] = {.lex_state = 1}, + [550] = {.lex_state = 1}, + [551] = {.lex_state = 1}, + [552] = {.lex_state = 1}, + [553] = {.lex_state = 1}, + [554] = {.lex_state = 7}, + [555] = {.lex_state = 1}, + [556] = {.lex_state = 1}, + [557] = {.lex_state = 1}, + [558] = {.lex_state = 7}, + [559] = {.lex_state = 1}, + [560] = {.lex_state = 1}, + [561] = {.lex_state = 1}, + [562] = {.lex_state = 1}, + [563] = {.lex_state = 1}, + [564] = {.lex_state = 7}, + [565] = {.lex_state = 1}, + [566] = {.lex_state = 1}, + [567] = {.lex_state = 1}, + [568] = {.lex_state = 7}, + [569] = {.lex_state = 1}, + [570] = {.lex_state = 1}, + [571] = {.lex_state = 1}, + [572] = {.lex_state = 1}, + [573] = {.lex_state = 1}, + [574] = {.lex_state = 1}, + [575] = {.lex_state = 1}, + [576] = {.lex_state = 1}, + [577] = {.lex_state = 1}, + [578] = {.lex_state = 1}, + [579] = {.lex_state = 1}, [580] = {.lex_state = 5}, - [581] = {.lex_state = 5}, - [582] = {.lex_state = 5}, - [583] = {.lex_state = 5}, - [584] = {.lex_state = 5}, - [585] = {.lex_state = 5}, - [586] = {.lex_state = 5}, + [581] = {.lex_state = 7}, + [582] = {.lex_state = 1}, + [583] = {.lex_state = 1}, + [584] = {.lex_state = 1}, + [585] = {.lex_state = 1}, + [586] = {.lex_state = 1}, [587] = {.lex_state = 5}, - [588] = {.lex_state = 5}, - [589] = {.lex_state = 5}, - [590] = {.lex_state = 12}, - [591] = {.lex_state = 5}, - [592] = {.lex_state = 5}, - [593] = {.lex_state = 5}, - [594] = {.lex_state = 12}, - [595] = {.lex_state = 11}, - [596] = {.lex_state = 11}, - [597] = {.lex_state = 5}, + [588] = {.lex_state = 1}, + [589] = {.lex_state = 1}, + [590] = {.lex_state = 1}, + [591] = {.lex_state = 1}, + [592] = {.lex_state = 7}, + [593] = {.lex_state = 1}, + [594] = {.lex_state = 5}, + [595] = {.lex_state = 5}, + [596] = {.lex_state = 7}, + [597] = {.lex_state = 7}, [598] = {.lex_state = 5}, - [599] = {.lex_state = 5}, - [600] = {.lex_state = 11}, - [601] = {.lex_state = 11}, + [599] = {.lex_state = 7}, + [600] = {.lex_state = 5}, + [601] = {.lex_state = 5}, [602] = {.lex_state = 5}, - [603] = {.lex_state = 11}, - [604] = {.lex_state = 5}, - [605] = {.lex_state = 5}, - [606] = {.lex_state = 5}, - [607] = {.lex_state = 12}, - [608] = {.lex_state = 11}, - [609] = {.lex_state = 11}, - [610] = {.lex_state = 5}, - [611] = {.lex_state = 11}, - [612] = {.lex_state = 5}, - [613] = {.lex_state = 5}, - [614] = {.lex_state = 5}, - [615] = {.lex_state = 11}, - [616] = {.lex_state = 5}, - [617] = {.lex_state = 12}, - [618] = {.lex_state = 5}, - [619] = {.lex_state = 5}, - [620] = {.lex_state = 14}, - [621] = {.lex_state = 5}, - [622] = {.lex_state = 5}, - [623] = {.lex_state = 12}, - [624] = {.lex_state = 5}, - [625] = {.lex_state = 12}, - [626] = {.lex_state = 5}, - [627] = {.lex_state = 14}, - [628] = {.lex_state = 14}, - [629] = {.lex_state = 5}, - [630] = {.lex_state = 5}, - [631] = {.lex_state = 12}, - [632] = {.lex_state = 5}, - [633] = {.lex_state = 5}, - [634] = {.lex_state = 12}, - [635] = {.lex_state = 14}, - [636] = {.lex_state = 5}, - [637] = {.lex_state = 12}, - [638] = {.lex_state = 5}, + [603] = {.lex_state = 5}, + [604] = {.lex_state = 1}, + [605] = {.lex_state = 1}, + [606] = {.lex_state = 1}, + [607] = {.lex_state = 1}, + [608] = {.lex_state = 7}, + [609] = {.lex_state = 1}, + [610] = {.lex_state = 7}, + [611] = {.lex_state = 7}, + [612] = {.lex_state = 7}, + [613] = {.lex_state = 1}, + [614] = {.lex_state = 7}, + [615] = {.lex_state = 1}, + [616] = {.lex_state = 1}, + [617] = {.lex_state = 7}, + [618] = {.lex_state = 7}, + [619] = {.lex_state = 7}, + [620] = {.lex_state = 7}, + [621] = {.lex_state = 7}, + [622] = {.lex_state = 7}, + [623] = {.lex_state = 7}, + [624] = {.lex_state = 1}, + [625] = {.lex_state = 7}, + [626] = {.lex_state = 7}, + [627] = {.lex_state = 7}, + [628] = {.lex_state = 1}, + [629] = {.lex_state = 7}, + [630] = {.lex_state = 1}, + [631] = {.lex_state = 7}, + [632] = {.lex_state = 7}, + [633] = {.lex_state = 1}, + [634] = {.lex_state = 7}, + [635] = {.lex_state = 1}, + [636] = {.lex_state = 1}, + [637] = {.lex_state = 1}, + [638] = {.lex_state = 7}, [639] = {.lex_state = 5}, - [640] = {.lex_state = 5}, - [641] = {.lex_state = 5}, + [640] = {.lex_state = 7}, + [641] = {.lex_state = 7}, [642] = {.lex_state = 5}, [643] = {.lex_state = 5}, - [644] = {.lex_state = 5}, - [645] = {.lex_state = 5}, - [646] = {.lex_state = 12}, - [647] = {.lex_state = 5}, + [644] = {.lex_state = 1}, + [645] = {.lex_state = 1}, + [646] = {.lex_state = 1}, + [647] = {.lex_state = 9}, [648] = {.lex_state = 5}, - [649] = {.lex_state = 5}, - [650] = {.lex_state = 5}, + [649] = {.lex_state = 1}, + [650] = {.lex_state = 1}, [651] = {.lex_state = 5}, - [652] = {.lex_state = 5}, - [653] = {.lex_state = 5}, + [652] = {.lex_state = 1}, + [653] = {.lex_state = 1}, [654] = {.lex_state = 5}, - [655] = {.lex_state = 12}, - [656] = {.lex_state = 12}, - [657] = {.lex_state = 5}, + [655] = {.lex_state = 9}, + [656] = {.lex_state = 1}, + [657] = {.lex_state = 1}, [658] = {.lex_state = 5}, [659] = {.lex_state = 5}, - [660] = {.lex_state = 12}, - [661] = {.lex_state = 5}, - [662] = {.lex_state = 5}, - [663] = {.lex_state = 5}, - [664] = {.lex_state = 5}, - [665] = {.lex_state = 5}, + [660] = {.lex_state = 1}, + [661] = {.lex_state = 1}, + [662] = {.lex_state = 1}, + [663] = {.lex_state = 1}, + [664] = {.lex_state = 1}, + [665] = {.lex_state = 1}, [666] = {.lex_state = 5}, [667] = {.lex_state = 5}, - [668] = {.lex_state = 5}, - [669] = {.lex_state = 5}, - [670] = {.lex_state = 5}, - [671] = {.lex_state = 5}, - [672] = {.lex_state = 5}, + [668] = {.lex_state = 1}, + [669] = {.lex_state = 1}, + [670] = {.lex_state = 1}, + [671] = {.lex_state = 1}, + [672] = {.lex_state = 1}, [673] = {.lex_state = 5}, - [674] = {.lex_state = 5}, - [675] = {.lex_state = 5}, + [674] = {.lex_state = 1}, + [675] = {.lex_state = 1}, [676] = {.lex_state = 5}, - [677] = {.lex_state = 5}, - [678] = {.lex_state = 5}, - [679] = {.lex_state = 5}, + [677] = {.lex_state = 1}, + [678] = {.lex_state = 1}, + [679] = {.lex_state = 1}, [680] = {.lex_state = 5}, [681] = {.lex_state = 5}, - [682] = {.lex_state = 5}, - [683] = {.lex_state = 5}, - [684] = {.lex_state = 12}, - [685] = {.lex_state = 5}, + [682] = {.lex_state = 1}, + [683] = {.lex_state = 1}, + [684] = {.lex_state = 5}, + [685] = {.lex_state = 1}, [686] = {.lex_state = 5}, - [687] = {.lex_state = 5}, - [688] = {.lex_state = 5}, - [689] = {.lex_state = 11}, - [690] = {.lex_state = 12}, - [691] = {.lex_state = 12}, + [687] = {.lex_state = 1}, + [688] = {.lex_state = 1}, + [689] = {.lex_state = 5}, + [690] = {.lex_state = 5}, + [691] = {.lex_state = 5}, [692] = {.lex_state = 5}, - [693] = {.lex_state = 12}, + [693] = {.lex_state = 5}, [694] = {.lex_state = 5}, - [695] = {.lex_state = 12}, - [696] = {.lex_state = 5}, - [697] = {.lex_state = 5}, - [698] = {.lex_state = 5}, - [699] = {.lex_state = 5}, - [700] = {.lex_state = 5}, - [701] = {.lex_state = 5}, - [702] = {.lex_state = 5}, - [703] = {.lex_state = 12}, - [704] = {.lex_state = 5}, - [705] = {.lex_state = 5}, - [706] = {.lex_state = 5}, - [707] = {.lex_state = 5}, - [708] = {.lex_state = 5}, - [709] = {.lex_state = 5}, + [695] = {.lex_state = 1}, + [696] = {.lex_state = 1}, + [697] = {.lex_state = 1}, + [698] = {.lex_state = 1}, + [699] = {.lex_state = 1}, + [700] = {.lex_state = 1}, + [701] = {.lex_state = 1}, + [702] = {.lex_state = 9}, + [703] = {.lex_state = 1}, + [704] = {.lex_state = 1}, + [705] = {.lex_state = 1}, + [706] = {.lex_state = 1}, + [707] = {.lex_state = 1}, + [708] = {.lex_state = 1}, + [709] = {.lex_state = 1}, [710] = {.lex_state = 5}, [711] = {.lex_state = 5}, [712] = {.lex_state = 5}, [713] = {.lex_state = 5}, [714] = {.lex_state = 5}, [715] = {.lex_state = 5}, - [716] = {.lex_state = 5}, + [716] = {.lex_state = 1}, [717] = {.lex_state = 5}, - [718] = {.lex_state = 5}, - [719] = {.lex_state = 5}, - [720] = {.lex_state = 5}, - [721] = {.lex_state = 12}, - [722] = {.lex_state = 12}, - [723] = {.lex_state = 5}, - [724] = {.lex_state = 5}, - [725] = {.lex_state = 5}, + [718] = {.lex_state = 1}, + [719] = {.lex_state = 1}, + [720] = {.lex_state = 1}, + [721] = {.lex_state = 1}, + [722] = {.lex_state = 1}, + [723] = {.lex_state = 1}, + [724] = {.lex_state = 1}, + [725] = {.lex_state = 1}, [726] = {.lex_state = 5}, [727] = {.lex_state = 5}, - [728] = {.lex_state = 5}, - [729] = {.lex_state = 5}, + [728] = {.lex_state = 1}, + [729] = {.lex_state = 1}, [730] = {.lex_state = 5}, [731] = {.lex_state = 5}, [732] = {.lex_state = 5}, [733] = {.lex_state = 5}, - [734] = {.lex_state = 12}, + [734] = {.lex_state = 1}, [735] = {.lex_state = 5}, - [736] = {.lex_state = 5}, - [737] = {.lex_state = 5}, - [738] = {.lex_state = 5}, - [739] = {.lex_state = 5}, - [740] = {.lex_state = 5}, - [741] = {.lex_state = 12}, - [742] = {.lex_state = 5}, + [736] = {.lex_state = 1}, + [737] = {.lex_state = 1}, + [738] = {.lex_state = 1}, + [739] = {.lex_state = 1}, + [740] = {.lex_state = 1}, + [741] = {.lex_state = 5}, + [742] = {.lex_state = 1}, [743] = {.lex_state = 5}, - [744] = {.lex_state = 5}, + [744] = {.lex_state = 1}, [745] = {.lex_state = 5}, [746] = {.lex_state = 5}, [747] = {.lex_state = 5}, [748] = {.lex_state = 5}, [749] = {.lex_state = 5}, [750] = {.lex_state = 5}, - [751] = {.lex_state = 5}, + [751] = {.lex_state = 1}, [752] = {.lex_state = 5}, - [753] = {.lex_state = 12}, + [753] = {.lex_state = 5}, [754] = {.lex_state = 5}, [755] = {.lex_state = 5}, [756] = {.lex_state = 5}, @@ -10440,438 +9973,438 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [758] = {.lex_state = 5}, [759] = {.lex_state = 5}, [760] = {.lex_state = 5}, - [761] = {.lex_state = 5}, - [762] = {.lex_state = 5}, + [761] = {.lex_state = 1}, + [762] = {.lex_state = 1}, [763] = {.lex_state = 5}, - [764] = {.lex_state = 12}, + [764] = {.lex_state = 5}, [765] = {.lex_state = 5}, - [766] = {.lex_state = 14}, + [766] = {.lex_state = 5}, [767] = {.lex_state = 5}, - [768] = {.lex_state = 12}, + [768] = {.lex_state = 5}, [769] = {.lex_state = 5}, - [770] = {.lex_state = 5}, + [770] = {.lex_state = 1}, [771] = {.lex_state = 5}, [772] = {.lex_state = 5}, [773] = {.lex_state = 5}, - [774] = {.lex_state = 12}, - [775] = {.lex_state = 12}, + [774] = {.lex_state = 5}, + [775] = {.lex_state = 5}, [776] = {.lex_state = 5}, [777] = {.lex_state = 5}, - [778] = {.lex_state = 12}, + [778] = {.lex_state = 5}, [779] = {.lex_state = 5}, - [780] = {.lex_state = 5}, + [780] = {.lex_state = 1}, [781] = {.lex_state = 5}, - [782] = {.lex_state = 5}, - [783] = {.lex_state = 5}, - [784] = {.lex_state = 5}, - [785] = {.lex_state = 5}, + [782] = {.lex_state = 1}, + [783] = {.lex_state = 1}, + [784] = {.lex_state = 1}, + [785] = {.lex_state = 1}, [786] = {.lex_state = 5}, [787] = {.lex_state = 5}, - [788] = {.lex_state = 5}, + [788] = {.lex_state = 1}, [789] = {.lex_state = 5}, [790] = {.lex_state = 5}, - [791] = {.lex_state = 5}, + [791] = {.lex_state = 1}, [792] = {.lex_state = 5}, - [793] = {.lex_state = 5}, - [794] = {.lex_state = 5}, - [795] = {.lex_state = 11}, - [796] = {.lex_state = 11}, + [793] = {.lex_state = 1}, + [794] = {.lex_state = 1}, + [795] = {.lex_state = 5}, + [796] = {.lex_state = 1}, [797] = {.lex_state = 5}, - [798] = {.lex_state = 11}, - [799] = {.lex_state = 11}, - [800] = {.lex_state = 11}, - [801] = {.lex_state = 11}, - [802] = {.lex_state = 11}, - [803] = {.lex_state = 5}, - [804] = {.lex_state = 11}, - [805] = {.lex_state = 11}, - [806] = {.lex_state = 11}, - [807] = {.lex_state = 11}, - [808] = {.lex_state = 11}, - [809] = {.lex_state = 11}, - [810] = {.lex_state = 11}, - [811] = {.lex_state = 11}, - [812] = {.lex_state = 11}, - [813] = {.lex_state = 11}, - [814] = {.lex_state = 11}, - [815] = {.lex_state = 11}, - [816] = {.lex_state = 11}, - [817] = {.lex_state = 11}, - [818] = {.lex_state = 11}, - [819] = {.lex_state = 11}, - [820] = {.lex_state = 11}, - [821] = {.lex_state = 11}, - [822] = {.lex_state = 11}, - [823] = {.lex_state = 11}, - [824] = {.lex_state = 11}, - [825] = {.lex_state = 11}, - [826] = {.lex_state = 11}, - [827] = {.lex_state = 11}, - [828] = {.lex_state = 11}, - [829] = {.lex_state = 11}, - [830] = {.lex_state = 11}, - [831] = {.lex_state = 11}, - [832] = {.lex_state = 11}, - [833] = {.lex_state = 11}, - [834] = {.lex_state = 11}, - [835] = {.lex_state = 11}, - [836] = {.lex_state = 11}, - [837] = {.lex_state = 11}, - [838] = {.lex_state = 11}, - [839] = {.lex_state = 11}, - [840] = {.lex_state = 11}, - [841] = {.lex_state = 11}, - [842] = {.lex_state = 11}, - [843] = {.lex_state = 11}, - [844] = {.lex_state = 11}, - [845] = {.lex_state = 11}, - [846] = {.lex_state = 11}, - [847] = {.lex_state = 11}, - [848] = {.lex_state = 11}, - [849] = {.lex_state = 11}, - [850] = {.lex_state = 11}, - [851] = {.lex_state = 11}, - [852] = {.lex_state = 11}, - [853] = {.lex_state = 11}, - [854] = {.lex_state = 11}, - [855] = {.lex_state = 11}, - [856] = {.lex_state = 11}, - [857] = {.lex_state = 11}, - [858] = {.lex_state = 11}, - [859] = {.lex_state = 11}, - [860] = {.lex_state = 11}, - [861] = {.lex_state = 11}, - [862] = {.lex_state = 11}, - [863] = {.lex_state = 11}, - [864] = {.lex_state = 11}, - [865] = {.lex_state = 11}, - [866] = {.lex_state = 11}, - [867] = {.lex_state = 11}, - [868] = {.lex_state = 11}, - [869] = {.lex_state = 11}, + [798] = {.lex_state = 5}, + [799] = {.lex_state = 1}, + [800] = {.lex_state = 5}, + [801] = {.lex_state = 5}, + [802] = {.lex_state = 5}, + [803] = {.lex_state = 1}, + [804] = {.lex_state = 5}, + [805] = {.lex_state = 5}, + [806] = {.lex_state = 1}, + [807] = {.lex_state = 1}, + [808] = {.lex_state = 5}, + [809] = {.lex_state = 5}, + [810] = {.lex_state = 1}, + [811] = {.lex_state = 1}, + [812] = {.lex_state = 1}, + [813] = {.lex_state = 5}, + [814] = {.lex_state = 1}, + [815] = {.lex_state = 1}, + [816] = {.lex_state = 5}, + [817] = {.lex_state = 5}, + [818] = {.lex_state = 5}, + [819] = {.lex_state = 5}, + [820] = {.lex_state = 5}, + [821] = {.lex_state = 5}, + [822] = {.lex_state = 5}, + [823] = {.lex_state = 5}, + [824] = {.lex_state = 5}, + [825] = {.lex_state = 5}, + [826] = {.lex_state = 5}, + [827] = {.lex_state = 5}, + [828] = {.lex_state = 5}, + [829] = {.lex_state = 5}, + [830] = {.lex_state = 5}, + [831] = {.lex_state = 5}, + [832] = {.lex_state = 5}, + [833] = {.lex_state = 5}, + [834] = {.lex_state = 5}, + [835] = {.lex_state = 5}, + [836] = {.lex_state = 5}, + [837] = {.lex_state = 5}, + [838] = {.lex_state = 5}, + [839] = {.lex_state = 5}, + [840] = {.lex_state = 5}, + [841] = {.lex_state = 5}, + [842] = {.lex_state = 5}, + [843] = {.lex_state = 5}, + [844] = {.lex_state = 5}, + [845] = {.lex_state = 5}, + [846] = {.lex_state = 5}, + [847] = {.lex_state = 5}, + [848] = {.lex_state = 5}, + [849] = {.lex_state = 5}, + [850] = {.lex_state = 5}, + [851] = {.lex_state = 5}, + [852] = {.lex_state = 5}, + [853] = {.lex_state = 5}, + [854] = {.lex_state = 5}, + [855] = {.lex_state = 5}, + [856] = {.lex_state = 5}, + [857] = {.lex_state = 5}, + [858] = {.lex_state = 5}, + [859] = {.lex_state = 5}, + [860] = {.lex_state = 5}, + [861] = {.lex_state = 5}, + [862] = {.lex_state = 5}, + [863] = {.lex_state = 5}, + [864] = {.lex_state = 5}, + [865] = {.lex_state = 5}, + [866] = {.lex_state = 1}, + [867] = {.lex_state = 1}, + [868] = {.lex_state = 5}, + [869] = {.lex_state = 5}, [870] = {.lex_state = 5}, - [871] = {.lex_state = 11}, - [872] = {.lex_state = 11}, - [873] = {.lex_state = 11}, - [874] = {.lex_state = 11}, - [875] = {.lex_state = 11}, - [876] = {.lex_state = 11}, - [877] = {.lex_state = 11}, - [878] = {.lex_state = 11}, - [879] = {.lex_state = 11}, - [880] = {.lex_state = 11}, - [881] = {.lex_state = 11}, - [882] = {.lex_state = 11}, - [883] = {.lex_state = 11}, - [884] = {.lex_state = 11}, - [885] = {.lex_state = 11}, - [886] = {.lex_state = 11}, - [887] = {.lex_state = 11}, - [888] = {.lex_state = 11}, - [889] = {.lex_state = 11}, - [890] = {.lex_state = 11}, - [891] = {.lex_state = 11}, - [892] = {.lex_state = 11}, - [893] = {.lex_state = 11}, - [894] = {.lex_state = 11}, - [895] = {.lex_state = 11}, - [896] = {.lex_state = 11}, - [897] = {.lex_state = 11}, - [898] = {.lex_state = 11}, - [899] = {.lex_state = 11}, - [900] = {.lex_state = 11}, - [901] = {.lex_state = 11}, - [902] = {.lex_state = 11}, - [903] = {.lex_state = 11}, - [904] = {.lex_state = 11}, - [905] = {.lex_state = 11}, - [906] = {.lex_state = 11}, - [907] = {.lex_state = 11}, - [908] = {.lex_state = 11}, - [909] = {.lex_state = 11}, - [910] = {.lex_state = 11}, - [911] = {.lex_state = 11}, - [912] = {.lex_state = 11}, - [913] = {.lex_state = 11}, - [914] = {.lex_state = 11}, - [915] = {.lex_state = 11}, - [916] = {.lex_state = 11}, - [917] = {.lex_state = 11}, - [918] = {.lex_state = 11}, - [919] = {.lex_state = 11}, - [920] = {.lex_state = 11}, - [921] = {.lex_state = 11}, - [922] = {.lex_state = 11}, - [923] = {.lex_state = 11}, - [924] = {.lex_state = 11}, - [925] = {.lex_state = 11}, - [926] = {.lex_state = 11}, - [927] = {.lex_state = 11}, - [928] = {.lex_state = 11}, - [929] = {.lex_state = 11}, - [930] = {.lex_state = 11}, - [931] = {.lex_state = 11}, - [932] = {.lex_state = 11}, - [933] = {.lex_state = 11}, - [934] = {.lex_state = 11}, - [935] = {.lex_state = 11}, + [871] = {.lex_state = 5}, + [872] = {.lex_state = 1}, + [873] = {.lex_state = 5}, + [874] = {.lex_state = 5}, + [875] = {.lex_state = 5}, + [876] = {.lex_state = 5}, + [877] = {.lex_state = 5}, + [878] = {.lex_state = 5}, + [879] = {.lex_state = 5}, + [880] = {.lex_state = 5}, + [881] = {.lex_state = 9}, + [882] = {.lex_state = 1}, + [883] = {.lex_state = 5}, + [884] = {.lex_state = 1}, + [885] = {.lex_state = 1}, + [886] = {.lex_state = 1}, + [887] = {.lex_state = 1}, + [888] = {.lex_state = 1}, + [889] = {.lex_state = 1}, + [890] = {.lex_state = 1}, + [891] = {.lex_state = 1}, + [892] = {.lex_state = 1}, + [893] = {.lex_state = 1}, + [894] = {.lex_state = 1}, + [895] = {.lex_state = 1}, + [896] = {.lex_state = 1}, + [897] = {.lex_state = 1}, + [898] = {.lex_state = 1}, + [899] = {.lex_state = 1}, + [900] = {.lex_state = 1}, + [901] = {.lex_state = 1}, + [902] = {.lex_state = 1}, + [903] = {.lex_state = 1}, + [904] = {.lex_state = 5}, + [905] = {.lex_state = 5}, + [906] = {.lex_state = 5}, + [907] = {.lex_state = 5}, + [908] = {.lex_state = 5}, + [909] = {.lex_state = 5}, + [910] = {.lex_state = 5}, + [911] = {.lex_state = 5}, + [912] = {.lex_state = 5}, + [913] = {.lex_state = 5}, + [914] = {.lex_state = 5}, + [915] = {.lex_state = 1}, + [916] = {.lex_state = 5}, + [917] = {.lex_state = 5}, + [918] = {.lex_state = 5}, + [919] = {.lex_state = 5}, + [920] = {.lex_state = 5}, + [921] = {.lex_state = 5}, + [922] = {.lex_state = 5}, + [923] = {.lex_state = 1}, + [924] = {.lex_state = 5}, + [925] = {.lex_state = 5}, + [926] = {.lex_state = 5}, + [927] = {.lex_state = 5}, + [928] = {.lex_state = 5}, + [929] = {.lex_state = 5}, + [930] = {.lex_state = 5}, + [931] = {.lex_state = 5}, + [932] = {.lex_state = 1}, + [933] = {.lex_state = 1}, + [934] = {.lex_state = 1}, + [935] = {.lex_state = 1}, [936] = {.lex_state = 5}, - [937] = {.lex_state = 11}, - [938] = {.lex_state = 11}, - [939] = {.lex_state = 11}, - [940] = {.lex_state = 11}, - [941] = {.lex_state = 11}, - [942] = {.lex_state = 11}, - [943] = {.lex_state = 11}, - [944] = {.lex_state = 11}, - [945] = {.lex_state = 11}, - [946] = {.lex_state = 11}, - [947] = {.lex_state = 11}, - [948] = {.lex_state = 11}, - [949] = {.lex_state = 11}, - [950] = {.lex_state = 5}, + [937] = {.lex_state = 5}, + [938] = {.lex_state = 5}, + [939] = {.lex_state = 5}, + [940] = {.lex_state = 5}, + [941] = {.lex_state = 5}, + [942] = {.lex_state = 5}, + [943] = {.lex_state = 5}, + [944] = {.lex_state = 5}, + [945] = {.lex_state = 1}, + [946] = {.lex_state = 5}, + [947] = {.lex_state = 5}, + [948] = {.lex_state = 5}, + [949] = {.lex_state = 5}, + [950] = {.lex_state = 1}, [951] = {.lex_state = 5}, - [952] = {.lex_state = 11}, - [953] = {.lex_state = 11}, - [954] = {.lex_state = 11}, - [955] = {.lex_state = 11}, - [956] = {.lex_state = 11}, - [957] = {.lex_state = 11}, - [958] = {.lex_state = 11}, - [959] = {.lex_state = 11}, - [960] = {.lex_state = 11}, - [961] = {.lex_state = 11}, - [962] = {.lex_state = 11}, - [963] = {.lex_state = 11}, - [964] = {.lex_state = 11}, - [965] = {.lex_state = 11}, - [966] = {.lex_state = 11}, - [967] = {.lex_state = 11}, - [968] = {.lex_state = 11}, - [969] = {.lex_state = 11}, - [970] = {.lex_state = 11}, - [971] = {.lex_state = 11}, - [972] = {.lex_state = 11}, - [973] = {.lex_state = 11}, - [974] = {.lex_state = 11}, - [975] = {.lex_state = 11}, + [952] = {.lex_state = 5}, + [953] = {.lex_state = 5}, + [954] = {.lex_state = 1}, + [955] = {.lex_state = 1}, + [956] = {.lex_state = 5}, + [957] = {.lex_state = 5}, + [958] = {.lex_state = 1}, + [959] = {.lex_state = 1}, + [960] = {.lex_state = 5}, + [961] = {.lex_state = 1}, + [962] = {.lex_state = 5}, + [963] = {.lex_state = 5}, + [964] = {.lex_state = 1}, + [965] = {.lex_state = 5}, + [966] = {.lex_state = 5}, + [967] = {.lex_state = 5}, + [968] = {.lex_state = 5}, + [969] = {.lex_state = 5}, + [970] = {.lex_state = 1}, + [971] = {.lex_state = 1}, + [972] = {.lex_state = 5}, + [973] = {.lex_state = 5}, + [974] = {.lex_state = 1}, + [975] = {.lex_state = 5}, [976] = {.lex_state = 5}, - [977] = {.lex_state = 11}, - [978] = {.lex_state = 11}, - [979] = {.lex_state = 11}, - [980] = {.lex_state = 11}, - [981] = {.lex_state = 11}, - [982] = {.lex_state = 11}, - [983] = {.lex_state = 11}, + [977] = {.lex_state = 1}, + [978] = {.lex_state = 1}, + [979] = {.lex_state = 5}, + [980] = {.lex_state = 5}, + [981] = {.lex_state = 5}, + [982] = {.lex_state = 1}, + [983] = {.lex_state = 5}, [984] = {.lex_state = 5}, - [985] = {.lex_state = 11}, - [986] = {.lex_state = 11}, - [987] = {.lex_state = 11}, - [988] = {.lex_state = 11}, - [989] = {.lex_state = 11}, - [990] = {.lex_state = 11}, - [991] = {.lex_state = 11}, - [992] = {.lex_state = 5}, - [993] = {.lex_state = 11}, - [994] = {.lex_state = 11}, - [995] = {.lex_state = 5}, - [996] = {.lex_state = 14}, - [997] = {.lex_state = 11}, - [998] = {.lex_state = 5}, - [999] = {.lex_state = 11}, - [1000] = {.lex_state = 11}, - [1001] = {.lex_state = 11}, - [1002] = {.lex_state = 5}, - [1003] = {.lex_state = 5}, - [1004] = {.lex_state = 5}, - [1005] = {.lex_state = 5}, - [1006] = {.lex_state = 11}, - [1007] = {.lex_state = 5}, - [1008] = {.lex_state = 11}, - [1009] = {.lex_state = 5}, - [1010] = {.lex_state = 11}, - [1011] = {.lex_state = 11}, - [1012] = {.lex_state = 5}, - [1013] = {.lex_state = 11}, - [1014] = {.lex_state = 11}, - [1015] = {.lex_state = 11}, - [1016] = {.lex_state = 5}, - [1017] = {.lex_state = 5}, - [1018] = {.lex_state = 11}, - [1019] = {.lex_state = 11}, - [1020] = {.lex_state = 5}, - [1021] = {.lex_state = 11}, - [1022] = {.lex_state = 5}, - [1023] = {.lex_state = 11}, - [1024] = {.lex_state = 5}, - [1025] = {.lex_state = 11}, - [1026] = {.lex_state = 11}, - [1027] = {.lex_state = 5}, - [1028] = {.lex_state = 5}, - [1029] = {.lex_state = 11}, - [1030] = {.lex_state = 5}, - [1031] = {.lex_state = 5}, - [1032] = {.lex_state = 5}, - [1033] = {.lex_state = 5}, - [1034] = {.lex_state = 5}, - [1035] = {.lex_state = 5}, - [1036] = {.lex_state = 5}, - [1037] = {.lex_state = 5}, - [1038] = {.lex_state = 5}, - [1039] = {.lex_state = 5}, - [1040] = {.lex_state = 5}, - [1041] = {.lex_state = 5}, - [1042] = {.lex_state = 5}, - [1043] = {.lex_state = 5}, - [1044] = {.lex_state = 5}, - [1045] = {.lex_state = 5}, - [1046] = {.lex_state = 5}, - [1047] = {.lex_state = 5}, - [1048] = {.lex_state = 5}, - [1049] = {.lex_state = 5}, - [1050] = {.lex_state = 5}, - [1051] = {.lex_state = 5}, - [1052] = {.lex_state = 5}, - [1053] = {.lex_state = 5}, - [1054] = {.lex_state = 5}, - [1055] = {.lex_state = 5}, - [1056] = {.lex_state = 5}, - [1057] = {.lex_state = 5}, - [1058] = {.lex_state = 5}, - [1059] = {.lex_state = 5}, - [1060] = {.lex_state = 5}, - [1061] = {.lex_state = 5}, - [1062] = {.lex_state = 5}, - [1063] = {.lex_state = 5}, - [1064] = {.lex_state = 5}, - [1065] = {.lex_state = 5}, - [1066] = {.lex_state = 5}, - [1067] = {.lex_state = 5}, - [1068] = {.lex_state = 5}, - [1069] = {.lex_state = 5}, - [1070] = {.lex_state = 5}, - [1071] = {.lex_state = 5}, - [1072] = {.lex_state = 5}, - [1073] = {.lex_state = 5}, - [1074] = {.lex_state = 5}, - [1075] = {.lex_state = 5}, - [1076] = {.lex_state = 5}, - [1077] = {.lex_state = 5}, - [1078] = {.lex_state = 68}, - [1079] = {.lex_state = 5}, - [1080] = {.lex_state = 5}, - [1081] = {.lex_state = 5}, - [1082] = {.lex_state = 5}, - [1083] = {.lex_state = 5}, - [1084] = {.lex_state = 68}, - [1085] = {.lex_state = 5}, - [1086] = {.lex_state = 5}, - [1087] = {.lex_state = 5}, - [1088] = {.lex_state = 5}, - [1089] = {.lex_state = 5}, - [1090] = {.lex_state = 5}, - [1091] = {.lex_state = 14}, - [1092] = {.lex_state = 14}, - [1093] = {.lex_state = 5}, - [1094] = {.lex_state = 5}, - [1095] = {.lex_state = 68}, - [1096] = {.lex_state = 5}, - [1097] = {.lex_state = 5}, - [1098] = {.lex_state = 5}, - [1099] = {.lex_state = 5}, - [1100] = {.lex_state = 5}, - [1101] = {.lex_state = 5}, - [1102] = {.lex_state = 5}, - [1103] = {.lex_state = 5}, - [1104] = {.lex_state = 5}, - [1105] = {.lex_state = 5}, - [1106] = {.lex_state = 5}, - [1107] = {.lex_state = 5}, - [1108] = {.lex_state = 5}, - [1109] = {.lex_state = 5}, - [1110] = {.lex_state = 5}, - [1111] = {.lex_state = 5}, - [1112] = {.lex_state = 5}, - [1113] = {.lex_state = 5}, - [1114] = {.lex_state = 5}, - [1115] = {.lex_state = 5}, - [1116] = {.lex_state = 5}, - [1117] = {.lex_state = 5}, - [1118] = {.lex_state = 5}, - [1119] = {.lex_state = 5}, - [1120] = {.lex_state = 5}, - [1121] = {.lex_state = 5}, - [1122] = {.lex_state = 5}, - [1123] = {.lex_state = 5}, - [1124] = {.lex_state = 5}, - [1125] = {.lex_state = 5}, - [1126] = {.lex_state = 5}, - [1127] = {.lex_state = 5}, - [1128] = {.lex_state = 5}, - [1129] = {.lex_state = 5}, - [1130] = {.lex_state = 5}, - [1131] = {.lex_state = 5}, - [1132] = {.lex_state = 5}, - [1133] = {.lex_state = 5}, - [1134] = {.lex_state = 5}, - [1135] = {.lex_state = 5}, - [1136] = {.lex_state = 5}, - [1137] = {.lex_state = 5}, - [1138] = {.lex_state = 5}, - [1139] = {.lex_state = 5}, - [1140] = {.lex_state = 5}, - [1141] = {.lex_state = 5}, - [1142] = {.lex_state = 5}, - [1143] = {.lex_state = 5}, - [1144] = {.lex_state = 14}, - [1145] = {.lex_state = 14}, - [1146] = {.lex_state = 5}, - [1147] = {.lex_state = 5}, - [1148] = {.lex_state = 5}, - [1149] = {.lex_state = 5}, - [1150] = {.lex_state = 5}, - [1151] = {.lex_state = 14}, - [1152] = {.lex_state = 5}, - [1153] = {.lex_state = 5}, - [1154] = {.lex_state = 14}, - [1155] = {.lex_state = 5}, - [1156] = {.lex_state = 5}, - [1157] = {.lex_state = 5}, - [1158] = {.lex_state = 5}, - [1159] = {.lex_state = 5}, - [1160] = {.lex_state = 5}, - [1161] = {.lex_state = 5}, - [1162] = {.lex_state = 5}, - [1163] = {.lex_state = 5}, - [1164] = {.lex_state = 5}, - [1165] = {.lex_state = 5}, - [1166] = {.lex_state = 5}, - [1167] = {.lex_state = 5}, - [1168] = {.lex_state = 5}, - [1169] = {.lex_state = 5}, - [1170] = {.lex_state = 5}, - [1171] = {.lex_state = 5}, - [1172] = {.lex_state = 5}, - [1173] = {.lex_state = 5}, - [1174] = {.lex_state = 5}, - [1175] = {.lex_state = 5}, - [1176] = {.lex_state = 5}, - [1177] = {.lex_state = 5}, - [1178] = {.lex_state = 5}, - [1179] = {.lex_state = 5}, - [1180] = {.lex_state = 5}, - [1181] = {.lex_state = 5}, - [1182] = {.lex_state = 5}, - [1183] = {.lex_state = 5}, - [1184] = {.lex_state = 5}, - [1185] = {.lex_state = 5}, - [1186] = {.lex_state = 14}, + [985] = {.lex_state = 1}, + [986] = {.lex_state = 1}, + [987] = {.lex_state = 1}, + [988] = {.lex_state = 1}, + [989] = {.lex_state = 1}, + [990] = {.lex_state = 1}, + [991] = {.lex_state = 1}, + [992] = {.lex_state = 1}, + [993] = {.lex_state = 1}, + [994] = {.lex_state = 1}, + [995] = {.lex_state = 1}, + [996] = {.lex_state = 1}, + [997] = {.lex_state = 1}, + [998] = {.lex_state = 1}, + [999] = {.lex_state = 1}, + [1000] = {.lex_state = 1}, + [1001] = {.lex_state = 1}, + [1002] = {.lex_state = 1}, + [1003] = {.lex_state = 1}, + [1004] = {.lex_state = 1}, + [1005] = {.lex_state = 1}, + [1006] = {.lex_state = 1}, + [1007] = {.lex_state = 1}, + [1008] = {.lex_state = 1}, + [1009] = {.lex_state = 1}, + [1010] = {.lex_state = 1}, + [1011] = {.lex_state = 9}, + [1012] = {.lex_state = 1}, + [1013] = {.lex_state = 1}, + [1014] = {.lex_state = 1}, + [1015] = {.lex_state = 1}, + [1016] = {.lex_state = 1}, + [1017] = {.lex_state = 1}, + [1018] = {.lex_state = 1}, + [1019] = {.lex_state = 1}, + [1020] = {.lex_state = 1}, + [1021] = {.lex_state = 1}, + [1022] = {.lex_state = 1}, + [1023] = {.lex_state = 1}, + [1024] = {.lex_state = 1}, + [1025] = {.lex_state = 1}, + [1026] = {.lex_state = 1}, + [1027] = {.lex_state = 1}, + [1028] = {.lex_state = 1}, + [1029] = {.lex_state = 1}, + [1030] = {.lex_state = 1}, + [1031] = {.lex_state = 1}, + [1032] = {.lex_state = 1}, + [1033] = {.lex_state = 1}, + [1034] = {.lex_state = 1}, + [1035] = {.lex_state = 1}, + [1036] = {.lex_state = 1}, + [1037] = {.lex_state = 1}, + [1038] = {.lex_state = 1}, + [1039] = {.lex_state = 1}, + [1040] = {.lex_state = 1}, + [1041] = {.lex_state = 1}, + [1042] = {.lex_state = 1}, + [1043] = {.lex_state = 1}, + [1044] = {.lex_state = 1}, + [1045] = {.lex_state = 1}, + [1046] = {.lex_state = 1}, + [1047] = {.lex_state = 1}, + [1048] = {.lex_state = 1}, + [1049] = {.lex_state = 1}, + [1050] = {.lex_state = 1}, + [1051] = {.lex_state = 1}, + [1052] = {.lex_state = 1}, + [1053] = {.lex_state = 1}, + [1054] = {.lex_state = 1}, + [1055] = {.lex_state = 1}, + [1056] = {.lex_state = 1}, + [1057] = {.lex_state = 1}, + [1058] = {.lex_state = 1}, + [1059] = {.lex_state = 1}, + [1060] = {.lex_state = 1}, + [1061] = {.lex_state = 1}, + [1062] = {.lex_state = 1}, + [1063] = {.lex_state = 1}, + [1064] = {.lex_state = 1}, + [1065] = {.lex_state = 1}, + [1066] = {.lex_state = 1}, + [1067] = {.lex_state = 1}, + [1068] = {.lex_state = 1}, + [1069] = {.lex_state = 1}, + [1070] = {.lex_state = 1}, + [1071] = {.lex_state = 1}, + [1072] = {.lex_state = 1}, + [1073] = {.lex_state = 1}, + [1074] = {.lex_state = 1}, + [1075] = {.lex_state = 1}, + [1076] = {.lex_state = 1}, + [1077] = {.lex_state = 1}, + [1078] = {.lex_state = 1}, + [1079] = {.lex_state = 1}, + [1080] = {.lex_state = 1}, + [1081] = {.lex_state = 1}, + [1082] = {.lex_state = 1}, + [1083] = {.lex_state = 1}, + [1084] = {.lex_state = 1}, + [1085] = {.lex_state = 1}, + [1086] = {.lex_state = 1}, + [1087] = {.lex_state = 1}, + [1088] = {.lex_state = 1}, + [1089] = {.lex_state = 1}, + [1090] = {.lex_state = 1}, + [1091] = {.lex_state = 1}, + [1092] = {.lex_state = 1}, + [1093] = {.lex_state = 1}, + [1094] = {.lex_state = 1}, + [1095] = {.lex_state = 1}, + [1096] = {.lex_state = 1}, + [1097] = {.lex_state = 1}, + [1098] = {.lex_state = 1}, + [1099] = {.lex_state = 1}, + [1100] = {.lex_state = 1}, + [1101] = {.lex_state = 1}, + [1102] = {.lex_state = 1}, + [1103] = {.lex_state = 1}, + [1104] = {.lex_state = 1}, + [1105] = {.lex_state = 1}, + [1106] = {.lex_state = 1}, + [1107] = {.lex_state = 1}, + [1108] = {.lex_state = 1}, + [1109] = {.lex_state = 1}, + [1110] = {.lex_state = 1}, + [1111] = {.lex_state = 1}, + [1112] = {.lex_state = 1}, + [1113] = {.lex_state = 1}, + [1114] = {.lex_state = 1}, + [1115] = {.lex_state = 1}, + [1116] = {.lex_state = 1}, + [1117] = {.lex_state = 1}, + [1118] = {.lex_state = 1}, + [1119] = {.lex_state = 1}, + [1120] = {.lex_state = 1}, + [1121] = {.lex_state = 1}, + [1122] = {.lex_state = 1}, + [1123] = {.lex_state = 1}, + [1124] = {.lex_state = 1}, + [1125] = {.lex_state = 1}, + [1126] = {.lex_state = 1}, + [1127] = {.lex_state = 1}, + [1128] = {.lex_state = 1}, + [1129] = {.lex_state = 1}, + [1130] = {.lex_state = 1}, + [1131] = {.lex_state = 1}, + [1132] = {.lex_state = 1}, + [1133] = {.lex_state = 1}, + [1134] = {.lex_state = 1}, + [1135] = {.lex_state = 1}, + [1136] = {.lex_state = 1}, + [1137] = {.lex_state = 1}, + [1138] = {.lex_state = 1}, + [1139] = {.lex_state = 1}, + [1140] = {.lex_state = 1}, + [1141] = {.lex_state = 1}, + [1142] = {.lex_state = 1}, + [1143] = {.lex_state = 1}, + [1144] = {.lex_state = 1}, + [1145] = {.lex_state = 1}, + [1146] = {.lex_state = 1}, + [1147] = {.lex_state = 1}, + [1148] = {.lex_state = 1}, + [1149] = {.lex_state = 1}, + [1150] = {.lex_state = 1}, + [1151] = {.lex_state = 1}, + [1152] = {.lex_state = 1}, + [1153] = {.lex_state = 1}, + [1154] = {.lex_state = 1}, + [1155] = {.lex_state = 1}, + [1156] = {.lex_state = 1}, + [1157] = {.lex_state = 1}, + [1158] = {.lex_state = 1}, + [1159] = {.lex_state = 1}, + [1160] = {.lex_state = 1}, + [1161] = {.lex_state = 1}, + [1162] = {.lex_state = 1}, + [1163] = {.lex_state = 1}, + [1164] = {.lex_state = 1}, + [1165] = {.lex_state = 1}, + [1166] = {.lex_state = 1}, + [1167] = {.lex_state = 1}, + [1168] = {.lex_state = 1}, + [1169] = {.lex_state = 1}, + [1170] = {.lex_state = 1}, + [1171] = {.lex_state = 1}, + [1172] = {.lex_state = 1}, + [1173] = {.lex_state = 1}, + [1174] = {.lex_state = 1}, + [1175] = {.lex_state = 1}, + [1176] = {.lex_state = 1}, + [1177] = {.lex_state = 1}, + [1178] = {.lex_state = 1}, + [1179] = {.lex_state = 1}, + [1180] = {.lex_state = 1}, + [1181] = {.lex_state = 1}, + [1182] = {.lex_state = 1}, + [1183] = {.lex_state = 1}, + [1184] = {.lex_state = 1}, + [1185] = {.lex_state = 1}, + [1186] = {.lex_state = 1}, [1187] = {.lex_state = 5}, [1188] = {.lex_state = 5}, [1189] = {.lex_state = 5}, - [1190] = {.lex_state = 5}, + [1190] = {.lex_state = 1}, [1191] = {.lex_state = 5}, - [1192] = {.lex_state = 5}, + [1192] = {.lex_state = 1}, [1193] = {.lex_state = 5}, [1194] = {.lex_state = 5}, [1195] = {.lex_state = 5}, @@ -10889,43 +10422,43 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1207] = {.lex_state = 5}, [1208] = {.lex_state = 5}, [1209] = {.lex_state = 5}, - [1210] = {.lex_state = 5}, + [1210] = {.lex_state = 1}, [1211] = {.lex_state = 5}, [1212] = {.lex_state = 5}, [1213] = {.lex_state = 5}, [1214] = {.lex_state = 5}, [1215] = {.lex_state = 5}, - [1216] = {.lex_state = 11}, - [1217] = {.lex_state = 11}, - [1218] = {.lex_state = 11}, - [1219] = {.lex_state = 11}, - [1220] = {.lex_state = 11}, - [1221] = {.lex_state = 11}, - [1222] = {.lex_state = 11}, - [1223] = {.lex_state = 11}, - [1224] = {.lex_state = 11}, - [1225] = {.lex_state = 11}, - [1226] = {.lex_state = 11}, - [1227] = {.lex_state = 11}, - [1228] = {.lex_state = 11}, - [1229] = {.lex_state = 11}, - [1230] = {.lex_state = 5}, - [1231] = {.lex_state = 11}, - [1232] = {.lex_state = 11}, - [1233] = {.lex_state = 11}, - [1234] = {.lex_state = 11}, - [1235] = {.lex_state = 11}, - [1236] = {.lex_state = 11}, - [1237] = {.lex_state = 11}, - [1238] = {.lex_state = 11}, - [1239] = {.lex_state = 11}, - [1240] = {.lex_state = 68}, + [1216] = {.lex_state = 5}, + [1217] = {.lex_state = 5}, + [1218] = {.lex_state = 5}, + [1219] = {.lex_state = 5}, + [1220] = {.lex_state = 5}, + [1221] = {.lex_state = 5}, + [1222] = {.lex_state = 5}, + [1223] = {.lex_state = 5}, + [1224] = {.lex_state = 1}, + [1225] = {.lex_state = 9}, + [1226] = {.lex_state = 1}, + [1227] = {.lex_state = 1}, + [1228] = {.lex_state = 1}, + [1229] = {.lex_state = 5}, + [1230] = {.lex_state = 1}, + [1231] = {.lex_state = 5}, + [1232] = {.lex_state = 5}, + [1233] = {.lex_state = 5}, + [1234] = {.lex_state = 1}, + [1235] = {.lex_state = 5}, + [1236] = {.lex_state = 5}, + [1237] = {.lex_state = 5}, + [1238] = {.lex_state = 5}, + [1239] = {.lex_state = 5}, + [1240] = {.lex_state = 5}, [1241] = {.lex_state = 5}, - [1242] = {.lex_state = 14}, + [1242] = {.lex_state = 5}, [1243] = {.lex_state = 5}, - [1244] = {.lex_state = 11}, + [1244] = {.lex_state = 5}, [1245] = {.lex_state = 5}, - [1246] = {.lex_state = 14}, + [1246] = {.lex_state = 5}, [1247] = {.lex_state = 5}, [1248] = {.lex_state = 5}, [1249] = {.lex_state = 5}, @@ -10935,1923 +10468,1908 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1253] = {.lex_state = 5}, [1254] = {.lex_state = 5}, [1255] = {.lex_state = 5}, - [1256] = {.lex_state = 11}, + [1256] = {.lex_state = 5}, [1257] = {.lex_state = 5}, [1258] = {.lex_state = 5}, [1259] = {.lex_state = 5}, - [1260] = {.lex_state = 5}, - [1261] = {.lex_state = 11}, - [1262] = {.lex_state = 11}, - [1263] = {.lex_state = 11}, - [1264] = {.lex_state = 14}, - [1265] = {.lex_state = 11}, + [1260] = {.lex_state = 1}, + [1261] = {.lex_state = 5}, + [1262] = {.lex_state = 5}, + [1263] = {.lex_state = 5}, + [1264] = {.lex_state = 5}, + [1265] = {.lex_state = 5}, [1266] = {.lex_state = 5}, - [1267] = {.lex_state = 11}, - [1268] = {.lex_state = 11}, - [1269] = {.lex_state = 11}, - [1270] = {.lex_state = 11}, - [1271] = {.lex_state = 11}, - [1272] = {.lex_state = 11}, - [1273] = {.lex_state = 5}, - [1274] = {.lex_state = 14}, - [1275] = {.lex_state = 11}, - [1276] = {.lex_state = 11}, - [1277] = {.lex_state = 11}, - [1278] = {.lex_state = 14}, - [1279] = {.lex_state = 11}, - [1280] = {.lex_state = 11}, - [1281] = {.lex_state = 11}, - [1282] = {.lex_state = 11}, - [1283] = {.lex_state = 11}, - [1284] = {.lex_state = 11}, - [1285] = {.lex_state = 11}, + [1267] = {.lex_state = 5}, + [1268] = {.lex_state = 1}, + [1269] = {.lex_state = 5}, + [1270] = {.lex_state = 5}, + [1271] = {.lex_state = 5}, + [1272] = {.lex_state = 5}, + [1273] = {.lex_state = 1}, + [1274] = {.lex_state = 5}, + [1275] = {.lex_state = 5}, + [1276] = {.lex_state = 5}, + [1277] = {.lex_state = 5}, + [1278] = {.lex_state = 5}, + [1279] = {.lex_state = 5}, + [1280] = {.lex_state = 5}, + [1281] = {.lex_state = 5}, + [1282] = {.lex_state = 9}, + [1283] = {.lex_state = 5}, + [1284] = {.lex_state = 5}, + [1285] = {.lex_state = 5}, [1286] = {.lex_state = 5}, - [1287] = {.lex_state = 11}, - [1288] = {.lex_state = 11}, - [1289] = {.lex_state = 11}, - [1290] = {.lex_state = 11}, - [1291] = {.lex_state = 11}, - [1292] = {.lex_state = 11}, - [1293] = {.lex_state = 11}, - [1294] = {.lex_state = 11}, - [1295] = {.lex_state = 11}, - [1296] = {.lex_state = 14}, - [1297] = {.lex_state = 11}, - [1298] = {.lex_state = 11}, - [1299] = {.lex_state = 11}, - [1300] = {.lex_state = 11}, - [1301] = {.lex_state = 11}, + [1287] = {.lex_state = 5}, + [1288] = {.lex_state = 9}, + [1289] = {.lex_state = 5}, + [1290] = {.lex_state = 5}, + [1291] = {.lex_state = 5}, + [1292] = {.lex_state = 9}, + [1293] = {.lex_state = 5}, + [1294] = {.lex_state = 5}, + [1295] = {.lex_state = 5}, + [1296] = {.lex_state = 5}, + [1297] = {.lex_state = 5}, + [1298] = {.lex_state = 9}, + [1299] = {.lex_state = 5}, + [1300] = {.lex_state = 5}, + [1301] = {.lex_state = 5}, [1302] = {.lex_state = 5}, - [1303] = {.lex_state = 11}, - [1304] = {.lex_state = 11}, - [1305] = {.lex_state = 11}, - [1306] = {.lex_state = 11}, - [1307] = {.lex_state = 11}, + [1303] = {.lex_state = 5}, + [1304] = {.lex_state = 5}, + [1305] = {.lex_state = 5}, + [1306] = {.lex_state = 5}, + [1307] = {.lex_state = 5}, [1308] = {.lex_state = 5}, - [1309] = {.lex_state = 11}, - [1310] = {.lex_state = 11}, - [1311] = {.lex_state = 11}, - [1312] = {.lex_state = 11}, - [1313] = {.lex_state = 11}, - [1314] = {.lex_state = 11}, - [1315] = {.lex_state = 11}, - [1316] = {.lex_state = 11}, - [1317] = {.lex_state = 11}, - [1318] = {.lex_state = 11}, + [1309] = {.lex_state = 5}, + [1310] = {.lex_state = 5}, + [1311] = {.lex_state = 5}, + [1312] = {.lex_state = 5}, + [1313] = {.lex_state = 1}, + [1314] = {.lex_state = 5}, + [1315] = {.lex_state = 5}, + [1316] = {.lex_state = 5}, + [1317] = {.lex_state = 5}, + [1318] = {.lex_state = 5}, [1319] = {.lex_state = 5}, - [1320] = {.lex_state = 11}, - [1321] = {.lex_state = 11}, - [1322] = {.lex_state = 11}, - [1323] = {.lex_state = 11}, - [1324] = {.lex_state = 11}, + [1320] = {.lex_state = 5}, + [1321] = {.lex_state = 5}, + [1322] = {.lex_state = 5}, + [1323] = {.lex_state = 1}, + [1324] = {.lex_state = 5}, [1325] = {.lex_state = 5}, - [1326] = {.lex_state = 11}, - [1327] = {.lex_state = 11}, - [1328] = {.lex_state = 11}, - [1329] = {.lex_state = 11}, - [1330] = {.lex_state = 11}, - [1331] = {.lex_state = 11}, - [1332] = {.lex_state = 5}, - [1333] = {.lex_state = 11}, - [1334] = {.lex_state = 11}, - [1335] = {.lex_state = 11}, - [1336] = {.lex_state = 11}, - [1337] = {.lex_state = 11}, - [1338] = {.lex_state = 11}, - [1339] = {.lex_state = 11}, - [1340] = {.lex_state = 11}, - [1341] = {.lex_state = 11}, - [1342] = {.lex_state = 5}, - [1343] = {.lex_state = 11}, - [1344] = {.lex_state = 11}, - [1345] = {.lex_state = 11}, + [1326] = {.lex_state = 1}, + [1327] = {.lex_state = 5}, + [1328] = {.lex_state = 5}, + [1329] = {.lex_state = 5}, + [1330] = {.lex_state = 1}, + [1331] = {.lex_state = 5}, + [1332] = {.lex_state = 1}, + [1333] = {.lex_state = 5}, + [1334] = {.lex_state = 5}, + [1335] = {.lex_state = 5}, + [1336] = {.lex_state = 5}, + [1337] = {.lex_state = 5}, + [1338] = {.lex_state = 5}, + [1339] = {.lex_state = 6}, + [1340] = {.lex_state = 5}, + [1341] = {.lex_state = 5}, + [1342] = {.lex_state = 1}, + [1343] = {.lex_state = 5}, + [1344] = {.lex_state = 5}, + [1345] = {.lex_state = 1}, [1346] = {.lex_state = 5}, - [1347] = {.lex_state = 11}, - [1348] = {.lex_state = 11}, - [1349] = {.lex_state = 11}, - [1350] = {.lex_state = 11}, - [1351] = {.lex_state = 11}, + [1347] = {.lex_state = 5}, + [1348] = {.lex_state = 5}, + [1349] = {.lex_state = 5}, + [1350] = {.lex_state = 5}, + [1351] = {.lex_state = 5}, [1352] = {.lex_state = 5}, - [1353] = {.lex_state = 11}, - [1354] = {.lex_state = 11}, - [1355] = {.lex_state = 11}, - [1356] = {.lex_state = 11}, - [1357] = {.lex_state = 11}, - [1358] = {.lex_state = 11}, - [1359] = {.lex_state = 11}, - [1360] = {.lex_state = 11}, - [1361] = {.lex_state = 11}, + [1353] = {.lex_state = 5}, + [1354] = {.lex_state = 5}, + [1355] = {.lex_state = 5}, + [1356] = {.lex_state = 5}, + [1357] = {.lex_state = 5}, + [1358] = {.lex_state = 1}, + [1359] = {.lex_state = 5}, + [1360] = {.lex_state = 5}, + [1361] = {.lex_state = 5}, [1362] = {.lex_state = 5}, - [1363] = {.lex_state = 11}, - [1364] = {.lex_state = 11}, - [1365] = {.lex_state = 11}, - [1366] = {.lex_state = 11}, - [1367] = {.lex_state = 11}, - [1368] = {.lex_state = 11}, - [1369] = {.lex_state = 11}, - [1370] = {.lex_state = 11}, - [1371] = {.lex_state = 11}, - [1372] = {.lex_state = 11}, - [1373] = {.lex_state = 11}, + [1363] = {.lex_state = 5}, + [1364] = {.lex_state = 5}, + [1365] = {.lex_state = 5}, + [1366] = {.lex_state = 1}, + [1367] = {.lex_state = 5}, + [1368] = {.lex_state = 5}, + [1369] = {.lex_state = 5}, + [1370] = {.lex_state = 5}, + [1371] = {.lex_state = 5}, + [1372] = {.lex_state = 5}, + [1373] = {.lex_state = 5}, [1374] = {.lex_state = 5}, - [1375] = {.lex_state = 11}, - [1376] = {.lex_state = 11}, - [1377] = {.lex_state = 11}, - [1378] = {.lex_state = 11}, - [1379] = {.lex_state = 11}, - [1380] = {.lex_state = 11}, + [1375] = {.lex_state = 1}, + [1376] = {.lex_state = 5}, + [1377] = {.lex_state = 5}, + [1378] = {.lex_state = 5}, + [1379] = {.lex_state = 5}, + [1380] = {.lex_state = 1}, [1381] = {.lex_state = 5}, - [1382] = {.lex_state = 11}, - [1383] = {.lex_state = 11}, - [1384] = {.lex_state = 11}, - [1385] = {.lex_state = 11}, - [1386] = {.lex_state = 14}, - [1387] = {.lex_state = 5}, - [1388] = {.lex_state = 11}, - [1389] = {.lex_state = 14}, - [1390] = {.lex_state = 11}, - [1391] = {.lex_state = 11}, + [1382] = {.lex_state = 5}, + [1383] = {.lex_state = 5}, + [1384] = {.lex_state = 5}, + [1385] = {.lex_state = 5}, + [1386] = {.lex_state = 5}, + [1387] = {.lex_state = 1}, + [1388] = {.lex_state = 5}, + [1389] = {.lex_state = 5}, + [1390] = {.lex_state = 5}, + [1391] = {.lex_state = 5}, [1392] = {.lex_state = 5}, - [1393] = {.lex_state = 11}, - [1394] = {.lex_state = 11}, + [1393] = {.lex_state = 5}, + [1394] = {.lex_state = 5}, [1395] = {.lex_state = 5}, - [1396] = {.lex_state = 11}, - [1397] = {.lex_state = 11}, + [1396] = {.lex_state = 1}, + [1397] = {.lex_state = 1}, [1398] = {.lex_state = 5}, [1399] = {.lex_state = 5}, - [1400] = {.lex_state = 11}, - [1401] = {.lex_state = 11}, - [1402] = {.lex_state = 11}, - [1403] = {.lex_state = 14}, + [1400] = {.lex_state = 1}, + [1401] = {.lex_state = 5}, + [1402] = {.lex_state = 5}, + [1403] = {.lex_state = 1}, [1404] = {.lex_state = 5}, - [1405] = {.lex_state = 11}, - [1406] = {.lex_state = 11}, - [1407] = {.lex_state = 11}, - [1408] = {.lex_state = 14}, - [1409] = {.lex_state = 11}, - [1410] = {.lex_state = 11}, - [1411] = {.lex_state = 11}, - [1412] = {.lex_state = 11}, - [1413] = {.lex_state = 11}, - [1414] = {.lex_state = 11}, - [1415] = {.lex_state = 11}, - [1416] = {.lex_state = 11}, - [1417] = {.lex_state = 11}, - [1418] = {.lex_state = 11}, - [1419] = {.lex_state = 11}, - [1420] = {.lex_state = 11}, - [1421] = {.lex_state = 11}, - [1422] = {.lex_state = 11}, - [1423] = {.lex_state = 11}, - [1424] = {.lex_state = 11}, - [1425] = {.lex_state = 11}, - [1426] = {.lex_state = 11}, - [1427] = {.lex_state = 11}, - [1428] = {.lex_state = 11}, - [1429] = {.lex_state = 11}, - [1430] = {.lex_state = 11}, - [1431] = {.lex_state = 11}, - [1432] = {.lex_state = 11}, - [1433] = {.lex_state = 11}, - [1434] = {.lex_state = 11}, - [1435] = {.lex_state = 11}, - [1436] = {.lex_state = 11}, - [1437] = {.lex_state = 11}, - [1438] = {.lex_state = 11}, + [1405] = {.lex_state = 5}, + [1406] = {.lex_state = 1}, + [1407] = {.lex_state = 5}, + [1408] = {.lex_state = 5}, + [1409] = {.lex_state = 1}, + [1410] = {.lex_state = 1}, + [1411] = {.lex_state = 1}, + [1412] = {.lex_state = 5}, + [1413] = {.lex_state = 1}, + [1414] = {.lex_state = 1}, + [1415] = {.lex_state = 1}, + [1416] = {.lex_state = 1}, + [1417] = {.lex_state = 1}, + [1418] = {.lex_state = 5}, + [1419] = {.lex_state = 1}, + [1420] = {.lex_state = 1}, + [1421] = {.lex_state = 5}, + [1422] = {.lex_state = 1}, + [1423] = {.lex_state = 1}, + [1424] = {.lex_state = 1}, + [1425] = {.lex_state = 1}, + [1426] = {.lex_state = 1}, + [1427] = {.lex_state = 1}, + [1428] = {.lex_state = 5}, + [1429] = {.lex_state = 9}, + [1430] = {.lex_state = 9}, + [1431] = {.lex_state = 1}, + [1432] = {.lex_state = 1}, + [1433] = {.lex_state = 1}, + [1434] = {.lex_state = 5}, + [1435] = {.lex_state = 1}, + [1436] = {.lex_state = 5}, + [1437] = {.lex_state = 5}, + [1438] = {.lex_state = 5}, [1439] = {.lex_state = 5}, - [1440] = {.lex_state = 11}, - [1441] = {.lex_state = 11}, - [1442] = {.lex_state = 11}, - [1443] = {.lex_state = 11}, - [1444] = {.lex_state = 11}, - [1445] = {.lex_state = 11}, - [1446] = {.lex_state = 11}, - [1447] = {.lex_state = 11}, - [1448] = {.lex_state = 11}, - [1449] = {.lex_state = 11}, - [1450] = {.lex_state = 11}, - [1451] = {.lex_state = 11}, - [1452] = {.lex_state = 11}, - [1453] = {.lex_state = 11}, - [1454] = {.lex_state = 11}, - [1455] = {.lex_state = 11}, - [1456] = {.lex_state = 11}, - [1457] = {.lex_state = 11}, - [1458] = {.lex_state = 11}, - [1459] = {.lex_state = 11}, - [1460] = {.lex_state = 11}, - [1461] = {.lex_state = 11}, - [1462] = {.lex_state = 11}, - [1463] = {.lex_state = 11}, - [1464] = {.lex_state = 11}, - [1465] = {.lex_state = 11}, - [1466] = {.lex_state = 11}, - [1467] = {.lex_state = 11}, - [1468] = {.lex_state = 11}, - [1469] = {.lex_state = 11}, - [1470] = {.lex_state = 11}, - [1471] = {.lex_state = 11}, - [1472] = {.lex_state = 11}, - [1473] = {.lex_state = 11}, - [1474] = {.lex_state = 11}, - [1475] = {.lex_state = 11}, - [1476] = {.lex_state = 11}, - [1477] = {.lex_state = 11}, - [1478] = {.lex_state = 11}, - [1479] = {.lex_state = 11}, - [1480] = {.lex_state = 11}, - [1481] = {.lex_state = 11}, - [1482] = {.lex_state = 11}, - [1483] = {.lex_state = 11}, - [1484] = {.lex_state = 11}, - [1485] = {.lex_state = 11}, - [1486] = {.lex_state = 11}, - [1487] = {.lex_state = 11}, - [1488] = {.lex_state = 11}, - [1489] = {.lex_state = 11}, - [1490] = {.lex_state = 11}, - [1491] = {.lex_state = 11}, + [1440] = {.lex_state = 5}, + [1441] = {.lex_state = 5}, + [1442] = {.lex_state = 5}, + [1443] = {.lex_state = 5}, + [1444] = {.lex_state = 5}, + [1445] = {.lex_state = 5}, + [1446] = {.lex_state = 5}, + [1447] = {.lex_state = 5}, + [1448] = {.lex_state = 5}, + [1449] = {.lex_state = 5}, + [1450] = {.lex_state = 5}, + [1451] = {.lex_state = 5}, + [1452] = {.lex_state = 5}, + [1453] = {.lex_state = 5}, + [1454] = {.lex_state = 1}, + [1455] = {.lex_state = 5}, + [1456] = {.lex_state = 5}, + [1457] = {.lex_state = 5}, + [1458] = {.lex_state = 5}, + [1459] = {.lex_state = 5}, + [1460] = {.lex_state = 5}, + [1461] = {.lex_state = 5}, + [1462] = {.lex_state = 5}, + [1463] = {.lex_state = 5}, + [1464] = {.lex_state = 5}, + [1465] = {.lex_state = 5}, + [1466] = {.lex_state = 5}, + [1467] = {.lex_state = 5}, + [1468] = {.lex_state = 5}, + [1469] = {.lex_state = 5}, + [1470] = {.lex_state = 5}, + [1471] = {.lex_state = 5}, + [1472] = {.lex_state = 5}, + [1473] = {.lex_state = 5}, + [1474] = {.lex_state = 5}, + [1475] = {.lex_state = 5}, + [1476] = {.lex_state = 5}, + [1477] = {.lex_state = 5}, + [1478] = {.lex_state = 5}, + [1479] = {.lex_state = 5}, + [1480] = {.lex_state = 1}, + [1481] = {.lex_state = 5}, + [1482] = {.lex_state = 5}, + [1483] = {.lex_state = 5}, + [1484] = {.lex_state = 5}, + [1485] = {.lex_state = 5}, + [1486] = {.lex_state = 5}, + [1487] = {.lex_state = 5}, + [1488] = {.lex_state = 5}, + [1489] = {.lex_state = 5}, + [1490] = {.lex_state = 1}, + [1491] = {.lex_state = 5}, [1492] = {.lex_state = 5}, - [1493] = {.lex_state = 11}, - [1494] = {.lex_state = 11}, - [1495] = {.lex_state = 11}, - [1496] = {.lex_state = 11}, + [1493] = {.lex_state = 5}, + [1494] = {.lex_state = 5}, + [1495] = {.lex_state = 5}, + [1496] = {.lex_state = 5}, [1497] = {.lex_state = 5}, - [1498] = {.lex_state = 11}, - [1499] = {.lex_state = 11}, - [1500] = {.lex_state = 11}, - [1501] = {.lex_state = 11}, - [1502] = {.lex_state = 11}, - [1503] = {.lex_state = 11}, - [1504] = {.lex_state = 11}, - [1505] = {.lex_state = 11}, - [1506] = {.lex_state = 11}, - [1507] = {.lex_state = 11}, - [1508] = {.lex_state = 11}, - [1509] = {.lex_state = 5}, - [1510] = {.lex_state = 11}, - [1511] = {.lex_state = 5}, - [1512] = {.lex_state = 11}, - [1513] = {.lex_state = 5}, - [1514] = {.lex_state = 11}, - [1515] = {.lex_state = 11}, - [1516] = {.lex_state = 11}, - [1517] = {.lex_state = 68}, - [1518] = {.lex_state = 11}, - [1519] = {.lex_state = 11}, - [1520] = {.lex_state = 5}, - [1521] = {.lex_state = 11}, - [1522] = {.lex_state = 5}, - [1523] = {.lex_state = 11}, - [1524] = {.lex_state = 11}, - [1525] = {.lex_state = 5}, - [1526] = {.lex_state = 11}, - [1527] = {.lex_state = 11}, - [1528] = {.lex_state = 11}, - [1529] = {.lex_state = 11}, - [1530] = {.lex_state = 11}, - [1531] = {.lex_state = 5}, - [1532] = {.lex_state = 5}, - [1533] = {.lex_state = 5}, - [1534] = {.lex_state = 11}, - [1535] = {.lex_state = 5}, - [1536] = {.lex_state = 5}, - [1537] = {.lex_state = 5}, - [1538] = {.lex_state = 5}, - [1539] = {.lex_state = 5}, - [1540] = {.lex_state = 5}, - [1541] = {.lex_state = 5}, - [1542] = {.lex_state = 5}, - [1543] = {.lex_state = 5}, - [1544] = {.lex_state = 5}, - [1545] = {.lex_state = 5}, - [1546] = {.lex_state = 5}, - [1547] = {.lex_state = 5}, - [1548] = {.lex_state = 5}, - [1549] = {.lex_state = 5}, - [1550] = {.lex_state = 5}, - [1551] = {.lex_state = 5}, - [1552] = {.lex_state = 5}, - [1553] = {.lex_state = 5}, - [1554] = {.lex_state = 5}, - [1555] = {.lex_state = 5}, - [1556] = {.lex_state = 5}, - [1557] = {.lex_state = 5}, - [1558] = {.lex_state = 5}, - [1559] = {.lex_state = 5}, - [1560] = {.lex_state = 5}, - [1561] = {.lex_state = 5}, - [1562] = {.lex_state = 5}, - [1563] = {.lex_state = 5}, - [1564] = {.lex_state = 5}, - [1565] = {.lex_state = 5}, - [1566] = {.lex_state = 5}, - [1567] = {.lex_state = 5}, - [1568] = {.lex_state = 5}, - [1569] = {.lex_state = 5}, - [1570] = {.lex_state = 5}, - [1571] = {.lex_state = 5}, - [1572] = {.lex_state = 5}, - [1573] = {.lex_state = 5}, - [1574] = {.lex_state = 5}, - [1575] = {.lex_state = 5}, - [1576] = {.lex_state = 5}, - [1577] = {.lex_state = 5}, - [1578] = {.lex_state = 5}, - [1579] = {.lex_state = 5}, - [1580] = {.lex_state = 5}, - [1581] = {.lex_state = 5}, - [1582] = {.lex_state = 5}, - [1583] = {.lex_state = 5}, - [1584] = {.lex_state = 5}, - [1585] = {.lex_state = 5}, - [1586] = {.lex_state = 5}, - [1587] = {.lex_state = 5}, - [1588] = {.lex_state = 5}, - [1589] = {.lex_state = 5}, - [1590] = {.lex_state = 5}, - [1591] = {.lex_state = 5}, - [1592] = {.lex_state = 5}, - [1593] = {.lex_state = 5}, - [1594] = {.lex_state = 5}, - [1595] = {.lex_state = 5}, - [1596] = {.lex_state = 5}, - [1597] = {.lex_state = 68}, - [1598] = {.lex_state = 5}, - [1599] = {.lex_state = 5}, - [1600] = {.lex_state = 5}, - [1601] = {.lex_state = 5}, - [1602] = {.lex_state = 5}, - [1603] = {.lex_state = 5}, - [1604] = {.lex_state = 5}, - [1605] = {.lex_state = 5}, - [1606] = {.lex_state = 5}, - [1607] = {.lex_state = 5}, - [1608] = {.lex_state = 68}, - [1609] = {.lex_state = 5}, - [1610] = {.lex_state = 68}, - [1611] = {.lex_state = 5}, - [1612] = {.lex_state = 5}, - [1613] = {.lex_state = 5}, - [1614] = {.lex_state = 5}, - [1615] = {.lex_state = 5}, - [1616] = {.lex_state = 5}, - [1617] = {.lex_state = 5}, - [1618] = {.lex_state = 5}, - [1619] = {.lex_state = 5}, - [1620] = {.lex_state = 5}, - [1621] = {.lex_state = 5}, - [1622] = {.lex_state = 5}, - [1623] = {.lex_state = 5}, - [1624] = {.lex_state = 5}, - [1625] = {.lex_state = 5}, - [1626] = {.lex_state = 5}, - [1627] = {.lex_state = 5}, - [1628] = {.lex_state = 5}, - [1629] = {.lex_state = 5}, - [1630] = {.lex_state = 5}, - [1631] = {.lex_state = 5}, - [1632] = {.lex_state = 5}, - [1633] = {.lex_state = 5}, - [1634] = {.lex_state = 5}, - [1635] = {.lex_state = 5}, - [1636] = {.lex_state = 5}, - [1637] = {.lex_state = 5}, - [1638] = {.lex_state = 5}, - [1639] = {.lex_state = 5}, - [1640] = {.lex_state = 5}, - [1641] = {.lex_state = 5}, - [1642] = {.lex_state = 5}, - [1643] = {.lex_state = 5}, - [1644] = {.lex_state = 5}, - [1645] = {.lex_state = 5}, - [1646] = {.lex_state = 5}, - [1647] = {.lex_state = 5}, - [1648] = {.lex_state = 5}, - [1649] = {.lex_state = 5}, - [1650] = {.lex_state = 5}, - [1651] = {.lex_state = 5}, - [1652] = {.lex_state = 5}, - [1653] = {.lex_state = 5}, - [1654] = {.lex_state = 5}, - [1655] = {.lex_state = 5}, - [1656] = {.lex_state = 5}, - [1657] = {.lex_state = 5}, - [1658] = {.lex_state = 5}, - [1659] = {.lex_state = 5}, - [1660] = {.lex_state = 5}, - [1661] = {.lex_state = 5}, - [1662] = {.lex_state = 5}, - [1663] = {.lex_state = 5}, - [1664] = {.lex_state = 5}, - [1665] = {.lex_state = 5}, - [1666] = {.lex_state = 5}, - [1667] = {.lex_state = 5}, - [1668] = {.lex_state = 5}, - [1669] = {.lex_state = 5}, - [1670] = {.lex_state = 5}, - [1671] = {.lex_state = 5}, - [1672] = {.lex_state = 5}, - [1673] = {.lex_state = 5}, - [1674] = {.lex_state = 5}, - [1675] = {.lex_state = 5}, - [1676] = {.lex_state = 5}, - [1677] = {.lex_state = 5}, - [1678] = {.lex_state = 5}, - [1679] = {.lex_state = 5}, - [1680] = {.lex_state = 5}, - [1681] = {.lex_state = 5}, - [1682] = {.lex_state = 5}, - [1683] = {.lex_state = 5}, - [1684] = {.lex_state = 5}, - [1685] = {.lex_state = 5}, - [1686] = {.lex_state = 5}, - [1687] = {.lex_state = 5}, - [1688] = {.lex_state = 5}, - [1689] = {.lex_state = 5}, - [1690] = {.lex_state = 5}, - [1691] = {.lex_state = 68}, - [1692] = {.lex_state = 5}, - [1693] = {.lex_state = 5}, - [1694] = {.lex_state = 5}, - [1695] = {.lex_state = 5}, - [1696] = {.lex_state = 5}, - [1697] = {.lex_state = 5}, - [1698] = {.lex_state = 5}, - [1699] = {.lex_state = 5}, - [1700] = {.lex_state = 5}, - [1701] = {.lex_state = 5}, - [1702] = {.lex_state = 5}, - [1703] = {.lex_state = 5}, - [1704] = {.lex_state = 5}, - [1705] = {.lex_state = 5}, - [1706] = {.lex_state = 5}, - [1707] = {.lex_state = 5}, - [1708] = {.lex_state = 5}, - [1709] = {.lex_state = 5}, - [1710] = {.lex_state = 5}, - [1711] = {.lex_state = 5}, - [1712] = {.lex_state = 5}, - [1713] = {.lex_state = 5}, - [1714] = {.lex_state = 5}, - [1715] = {.lex_state = 5}, - [1716] = {.lex_state = 5}, - [1717] = {.lex_state = 5}, - [1718] = {.lex_state = 5}, - [1719] = {.lex_state = 5}, - [1720] = {.lex_state = 5}, - [1721] = {.lex_state = 5}, - [1722] = {.lex_state = 5}, - [1723] = {.lex_state = 5}, - [1724] = {.lex_state = 5}, - [1725] = {.lex_state = 5}, - [1726] = {.lex_state = 5}, - [1727] = {.lex_state = 5}, - [1728] = {.lex_state = 5}, - [1729] = {.lex_state = 5}, - [1730] = {.lex_state = 5}, - [1731] = {.lex_state = 5}, - [1732] = {.lex_state = 5}, - [1733] = {.lex_state = 5}, - [1734] = {.lex_state = 5}, - [1735] = {.lex_state = 5}, - [1736] = {.lex_state = 5}, - [1737] = {.lex_state = 5}, - [1738] = {.lex_state = 5}, - [1739] = {.lex_state = 5}, - [1740] = {.lex_state = 5}, - [1741] = {.lex_state = 5}, - [1742] = {.lex_state = 5}, - [1743] = {.lex_state = 5}, - [1744] = {.lex_state = 5}, - [1745] = {.lex_state = 5}, - [1746] = {.lex_state = 5}, - [1747] = {.lex_state = 5}, - [1748] = {.lex_state = 5}, - [1749] = {.lex_state = 5}, - [1750] = {.lex_state = 5}, - [1751] = {.lex_state = 5}, - [1752] = {.lex_state = 5}, - [1753] = {.lex_state = 5}, - [1754] = {.lex_state = 5}, - [1755] = {.lex_state = 5}, - [1756] = {.lex_state = 5}, - [1757] = {.lex_state = 5}, - [1758] = {.lex_state = 5}, - [1759] = {.lex_state = 5}, - [1760] = {.lex_state = 5}, - [1761] = {.lex_state = 5}, - [1762] = {.lex_state = 5}, - [1763] = {.lex_state = 5}, - [1764] = {.lex_state = 5}, - [1765] = {.lex_state = 5}, - [1766] = {.lex_state = 5}, - [1767] = {.lex_state = 5}, - [1768] = {.lex_state = 5}, - [1769] = {.lex_state = 5}, - [1770] = {.lex_state = 5}, - [1771] = {.lex_state = 5}, - [1772] = {.lex_state = 5}, - [1773] = {.lex_state = 5}, - [1774] = {.lex_state = 5}, - [1775] = {.lex_state = 5}, - [1776] = {.lex_state = 5}, - [1777] = {.lex_state = 5}, - [1778] = {.lex_state = 5}, - [1779] = {.lex_state = 5}, - [1780] = {.lex_state = 5}, - [1781] = {.lex_state = 5}, - [1782] = {.lex_state = 5}, - [1783] = {.lex_state = 5}, - [1784] = {.lex_state = 5}, - [1785] = {.lex_state = 5}, - [1786] = {.lex_state = 5}, - [1787] = {.lex_state = 5}, - [1788] = {.lex_state = 5}, - [1789] = {.lex_state = 5}, - [1790] = {.lex_state = 5}, - [1791] = {.lex_state = 5}, - [1792] = {.lex_state = 5}, - [1793] = {.lex_state = 5}, - [1794] = {.lex_state = 5}, - [1795] = {.lex_state = 5}, - [1796] = {.lex_state = 5}, - [1797] = {.lex_state = 5}, - [1798] = {.lex_state = 5}, - [1799] = {.lex_state = 5}, - [1800] = {.lex_state = 5}, - [1801] = {.lex_state = 5}, - [1802] = {.lex_state = 5}, - [1803] = {.lex_state = 5}, - [1804] = {.lex_state = 5}, - [1805] = {.lex_state = 5}, - [1806] = {.lex_state = 5}, - [1807] = {.lex_state = 5}, - [1808] = {.lex_state = 5}, - [1809] = {.lex_state = 5}, - [1810] = {.lex_state = 5}, - [1811] = {.lex_state = 5}, - [1812] = {.lex_state = 5}, - [1813] = {.lex_state = 5}, - [1814] = {.lex_state = 5}, - [1815] = {.lex_state = 68}, - [1816] = {.lex_state = 5}, - [1817] = {.lex_state = 5}, - [1818] = {.lex_state = 5}, - [1819] = {.lex_state = 5}, - [1820] = {.lex_state = 5}, - [1821] = {.lex_state = 5}, - [1822] = {.lex_state = 5}, - [1823] = {.lex_state = 5}, - [1824] = {.lex_state = 5}, - [1825] = {.lex_state = 5}, - [1826] = {.lex_state = 5}, - [1827] = {.lex_state = 5}, - [1828] = {.lex_state = 5}, - [1829] = {.lex_state = 5}, - [1830] = {.lex_state = 5}, - [1831] = {.lex_state = 5}, - [1832] = {.lex_state = 5}, - [1833] = {.lex_state = 5}, - [1834] = {.lex_state = 5}, - [1835] = {.lex_state = 5}, - [1836] = {.lex_state = 5}, - [1837] = {.lex_state = 5}, - [1838] = {.lex_state = 5}, - [1839] = {.lex_state = 5}, - [1840] = {.lex_state = 5}, - [1841] = {.lex_state = 5}, - [1842] = {.lex_state = 5}, - [1843] = {.lex_state = 5}, - [1844] = {.lex_state = 5}, - [1845] = {.lex_state = 5}, - [1846] = {.lex_state = 5}, - [1847] = {.lex_state = 5}, - [1848] = {.lex_state = 5}, - [1849] = {.lex_state = 5}, - [1850] = {.lex_state = 5}, - [1851] = {.lex_state = 5}, - [1852] = {.lex_state = 5}, - [1853] = {.lex_state = 5}, - [1854] = {.lex_state = 5}, - [1855] = {.lex_state = 5}, - [1856] = {.lex_state = 5}, - [1857] = {.lex_state = 5}, - [1858] = {.lex_state = 5}, - [1859] = {.lex_state = 5}, - [1860] = {.lex_state = 5}, - [1861] = {.lex_state = 68}, - [1862] = {.lex_state = 5}, - [1863] = {.lex_state = 5}, - [1864] = {.lex_state = 5}, - [1865] = {.lex_state = 5}, - [1866] = {.lex_state = 5}, - [1867] = {.lex_state = 5}, - [1868] = {.lex_state = 5}, - [1869] = {.lex_state = 5}, - [1870] = {.lex_state = 5}, - [1871] = {.lex_state = 5}, - [1872] = {.lex_state = 5}, - [1873] = {.lex_state = 5}, - [1874] = {.lex_state = 5}, - [1875] = {.lex_state = 5}, - [1876] = {.lex_state = 5}, - [1877] = {.lex_state = 5}, - [1878] = {.lex_state = 5}, - [1879] = {.lex_state = 5}, - [1880] = {.lex_state = 5}, - [1881] = {.lex_state = 5}, - [1882] = {.lex_state = 5}, - [1883] = {.lex_state = 5}, - [1884] = {.lex_state = 5}, - [1885] = {.lex_state = 5}, - [1886] = {.lex_state = 5}, - [1887] = {.lex_state = 5}, - [1888] = {.lex_state = 5}, - [1889] = {.lex_state = 5}, - [1890] = {.lex_state = 5}, - [1891] = {.lex_state = 5}, - [1892] = {.lex_state = 5}, - [1893] = {.lex_state = 5}, - [1894] = {.lex_state = 5}, - [1895] = {.lex_state = 5}, - [1896] = {.lex_state = 5}, - [1897] = {.lex_state = 5}, - [1898] = {.lex_state = 5}, - [1899] = {.lex_state = 5}, - [1900] = {.lex_state = 5}, - [1901] = {.lex_state = 5}, - [1902] = {.lex_state = 5}, - [1903] = {.lex_state = 5}, - [1904] = {.lex_state = 5}, - [1905] = {.lex_state = 5}, - [1906] = {.lex_state = 5}, - [1907] = {.lex_state = 5}, - [1908] = {.lex_state = 5}, - [1909] = {.lex_state = 5}, - [1910] = {.lex_state = 5}, - [1911] = {.lex_state = 5}, - [1912] = {.lex_state = 5}, - [1913] = {.lex_state = 5}, - [1914] = {.lex_state = 5}, - [1915] = {.lex_state = 5}, - [1916] = {.lex_state = 5}, - [1917] = {.lex_state = 5}, - [1918] = {.lex_state = 5}, - [1919] = {.lex_state = 5}, - [1920] = {.lex_state = 5}, - [1921] = {.lex_state = 5}, - [1922] = {.lex_state = 5}, - [1923] = {.lex_state = 5}, - [1924] = {.lex_state = 5}, - [1925] = {.lex_state = 5}, - [1926] = {.lex_state = 5}, - [1927] = {.lex_state = 5}, - [1928] = {.lex_state = 5}, - [1929] = {.lex_state = 5}, - [1930] = {.lex_state = 5}, - [1931] = {.lex_state = 5}, - [1932] = {.lex_state = 5}, - [1933] = {.lex_state = 5}, - [1934] = {.lex_state = 5}, - [1935] = {.lex_state = 5}, - [1936] = {.lex_state = 5}, - [1937] = {.lex_state = 5}, - [1938] = {.lex_state = 5}, - [1939] = {.lex_state = 5}, - [1940] = {.lex_state = 5}, - [1941] = {.lex_state = 5}, - [1942] = {.lex_state = 5}, - [1943] = {.lex_state = 5}, - [1944] = {.lex_state = 5}, - [1945] = {.lex_state = 5}, - [1946] = {.lex_state = 5}, - [1947] = {.lex_state = 5}, - [1948] = {.lex_state = 5}, - [1949] = {.lex_state = 5}, - [1950] = {.lex_state = 5}, - [1951] = {.lex_state = 5}, - [1952] = {.lex_state = 14}, - [1953] = {.lex_state = 5}, - [1954] = {.lex_state = 5}, - [1955] = {.lex_state = 5}, - [1956] = {.lex_state = 5}, - [1957] = {.lex_state = 5}, - [1958] = {.lex_state = 5}, - [1959] = {.lex_state = 5}, - [1960] = {.lex_state = 5}, - [1961] = {.lex_state = 5}, - [1962] = {.lex_state = 5}, - [1963] = {.lex_state = 5}, - [1964] = {.lex_state = 5}, - [1965] = {.lex_state = 5}, - [1966] = {.lex_state = 5}, - [1967] = {.lex_state = 5}, - [1968] = {.lex_state = 5}, - [1969] = {.lex_state = 5}, - [1970] = {.lex_state = 5}, - [1971] = {.lex_state = 5}, - [1972] = {.lex_state = 5}, - [1973] = {.lex_state = 5}, - [1974] = {.lex_state = 5}, - [1975] = {.lex_state = 5}, - [1976] = {.lex_state = 5}, - [1977] = {.lex_state = 5}, - [1978] = {.lex_state = 68}, - [1979] = {.lex_state = 5}, - [1980] = {.lex_state = 5}, - [1981] = {.lex_state = 5}, - [1982] = {.lex_state = 5}, - [1983] = {.lex_state = 5}, - [1984] = {.lex_state = 5}, - [1985] = {.lex_state = 5}, - [1986] = {.lex_state = 5}, - [1987] = {.lex_state = 5}, - [1988] = {.lex_state = 5}, - [1989] = {.lex_state = 5}, - [1990] = {.lex_state = 5}, - [1991] = {.lex_state = 5}, - [1992] = {.lex_state = 68}, - [1993] = {.lex_state = 5}, - [1994] = {.lex_state = 5}, - [1995] = {.lex_state = 68}, - [1996] = {.lex_state = 5}, - [1997] = {.lex_state = 5}, - [1998] = {.lex_state = 5}, - [1999] = {.lex_state = 5}, - [2000] = {.lex_state = 5}, - [2001] = {.lex_state = 5}, - [2002] = {.lex_state = 5}, - [2003] = {.lex_state = 5}, - [2004] = {.lex_state = 5}, - [2005] = {.lex_state = 5}, - [2006] = {.lex_state = 5}, - [2007] = {.lex_state = 68}, - [2008] = {.lex_state = 5}, - [2009] = {.lex_state = 5}, - [2010] = {.lex_state = 5}, - [2011] = {.lex_state = 5}, - [2012] = {.lex_state = 5}, - [2013] = {.lex_state = 68}, - [2014] = {.lex_state = 5}, - [2015] = {.lex_state = 5}, - [2016] = {.lex_state = 5}, - [2017] = {.lex_state = 5}, - [2018] = {.lex_state = 5}, - [2019] = {.lex_state = 5}, - [2020] = {.lex_state = 68}, - [2021] = {.lex_state = 5}, - [2022] = {.lex_state = 5}, - [2023] = {.lex_state = 5}, - [2024] = {.lex_state = 5}, - [2025] = {.lex_state = 5}, - [2026] = {.lex_state = 5}, - [2027] = {.lex_state = 5}, - [2028] = {.lex_state = 5}, - [2029] = {.lex_state = 5}, - [2030] = {.lex_state = 5}, - [2031] = {.lex_state = 5}, - [2032] = {.lex_state = 5}, - [2033] = {.lex_state = 5}, - [2034] = {.lex_state = 5}, - [2035] = {.lex_state = 5}, - [2036] = {.lex_state = 5}, - [2037] = {.lex_state = 5}, - [2038] = {.lex_state = 5}, - [2039] = {.lex_state = 5}, - [2040] = {.lex_state = 5}, - [2041] = {.lex_state = 5}, - [2042] = {.lex_state = 14}, - [2043] = {.lex_state = 5}, - [2044] = {.lex_state = 5}, - [2045] = {.lex_state = 5}, - [2046] = {.lex_state = 5}, - [2047] = {.lex_state = 5}, - [2048] = {.lex_state = 5}, - [2049] = {.lex_state = 5}, - [2050] = {.lex_state = 5}, - [2051] = {.lex_state = 5}, - [2052] = {.lex_state = 5}, - [2053] = {.lex_state = 5}, - [2054] = {.lex_state = 5}, - [2055] = {.lex_state = 5}, - [2056] = {.lex_state = 5}, - [2057] = {.lex_state = 5}, - [2058] = {.lex_state = 5}, - [2059] = {.lex_state = 5}, - [2060] = {.lex_state = 5}, - [2061] = {.lex_state = 5}, - [2062] = {.lex_state = 5}, - [2063] = {.lex_state = 5}, - [2064] = {.lex_state = 5}, - [2065] = {.lex_state = 5}, - [2066] = {.lex_state = 5}, - [2067] = {.lex_state = 5}, - [2068] = {.lex_state = 5}, - [2069] = {.lex_state = 5}, - [2070] = {.lex_state = 5}, - [2071] = {.lex_state = 5}, - [2072] = {.lex_state = 5}, - [2073] = {.lex_state = 5}, - [2074] = {.lex_state = 5}, - [2075] = {.lex_state = 5}, - [2076] = {.lex_state = 68}, - [2077] = {.lex_state = 5}, - [2078] = {.lex_state = 5}, - [2079] = {.lex_state = 68}, - [2080] = {.lex_state = 5}, - [2081] = {.lex_state = 5}, - [2082] = {.lex_state = 5}, - [2083] = {.lex_state = 68}, - [2084] = {.lex_state = 5}, - [2085] = {.lex_state = 5}, - [2086] = {.lex_state = 68}, - [2087] = {.lex_state = 5}, - [2088] = {.lex_state = 68}, - [2089] = {.lex_state = 68}, - [2090] = {.lex_state = 68}, - [2091] = {.lex_state = 68}, - [2092] = {.lex_state = 5}, - [2093] = {.lex_state = 5}, - [2094] = {.lex_state = 5}, - [2095] = {.lex_state = 68}, - [2096] = {.lex_state = 68}, - [2097] = {.lex_state = 5}, - [2098] = {.lex_state = 5}, - [2099] = {.lex_state = 68}, - [2100] = {.lex_state = 5}, - [2101] = {.lex_state = 68}, - [2102] = {.lex_state = 5}, - [2103] = {.lex_state = 5}, - [2104] = {.lex_state = 5}, - [2105] = {.lex_state = 68}, - [2106] = {.lex_state = 68}, - [2107] = {.lex_state = 5}, - [2108] = {.lex_state = 68}, - [2109] = {.lex_state = 68}, - [2110] = {.lex_state = 68}, - [2111] = {.lex_state = 5}, - [2112] = {.lex_state = 68}, - [2113] = {.lex_state = 5}, - [2114] = {.lex_state = 5}, - [2115] = {.lex_state = 68}, - [2116] = {.lex_state = 5}, - [2117] = {.lex_state = 5}, - [2118] = {.lex_state = 68}, - [2119] = {.lex_state = 68}, - [2120] = {.lex_state = 5}, - [2121] = {.lex_state = 5}, - [2122] = {.lex_state = 5}, - [2123] = {.lex_state = 68}, - [2124] = {.lex_state = 5}, - [2125] = {.lex_state = 68}, - [2126] = {.lex_state = 5}, - [2127] = {.lex_state = 68}, - [2128] = {.lex_state = 68}, - [2129] = {.lex_state = 68}, - [2130] = {.lex_state = 5}, - [2131] = {.lex_state = 5}, - [2132] = {.lex_state = 68}, - [2133] = {.lex_state = 68}, - [2134] = {.lex_state = 5}, - [2135] = {.lex_state = 68}, - [2136] = {.lex_state = 68}, - [2137] = {.lex_state = 5}, - [2138] = {.lex_state = 68}, - [2139] = {.lex_state = 5}, - [2140] = {.lex_state = 68}, - [2141] = {.lex_state = 68}, - [2142] = {.lex_state = 5}, - [2143] = {.lex_state = 5}, - [2144] = {.lex_state = 68}, - [2145] = {.lex_state = 5}, - [2146] = {.lex_state = 68}, - [2147] = {.lex_state = 5}, - [2148] = {.lex_state = 68}, - [2149] = {.lex_state = 68}, - [2150] = {.lex_state = 68}, - [2151] = {.lex_state = 68}, - [2152] = {.lex_state = 5}, - [2153] = {.lex_state = 68}, - [2154] = {.lex_state = 68}, - [2155] = {.lex_state = 68}, - [2156] = {.lex_state = 68}, - [2157] = {.lex_state = 5}, - [2158] = {.lex_state = 5}, - [2159] = {.lex_state = 68}, - [2160] = {.lex_state = 5}, - [2161] = {.lex_state = 5}, - [2162] = {.lex_state = 68}, - [2163] = {.lex_state = 5}, - [2164] = {.lex_state = 68}, - [2165] = {.lex_state = 68}, - [2166] = {.lex_state = 68}, - [2167] = {.lex_state = 68}, - [2168] = {.lex_state = 5}, - [2169] = {.lex_state = 5}, - [2170] = {.lex_state = 5}, - [2171] = {.lex_state = 68}, - [2172] = {.lex_state = 68}, - [2173] = {.lex_state = 68}, - [2174] = {.lex_state = 68}, - [2175] = {.lex_state = 5}, - [2176] = {.lex_state = 5}, - [2177] = {.lex_state = 68}, - [2178] = {.lex_state = 5}, - [2179] = {.lex_state = 5}, - [2180] = {.lex_state = 68}, - [2181] = {.lex_state = 5}, - [2182] = {.lex_state = 68}, - [2183] = {.lex_state = 68}, - [2184] = {.lex_state = 5}, - [2185] = {.lex_state = 5}, - [2186] = {.lex_state = 68}, - [2187] = {.lex_state = 68}, - [2188] = {.lex_state = 68}, - [2189] = {.lex_state = 5}, - [2190] = {.lex_state = 68}, - [2191] = {.lex_state = 68}, - [2192] = {.lex_state = 68}, - [2193] = {.lex_state = 5}, - [2194] = {.lex_state = 68}, - [2195] = {.lex_state = 68}, - [2196] = {.lex_state = 68}, - [2197] = {.lex_state = 5}, - [2198] = {.lex_state = 5}, - [2199] = {.lex_state = 68}, - [2200] = {.lex_state = 68}, - [2201] = {.lex_state = 68}, - [2202] = {.lex_state = 5}, - [2203] = {.lex_state = 68}, - [2204] = {.lex_state = 68}, - [2205] = {.lex_state = 68}, - [2206] = {.lex_state = 68}, - [2207] = {.lex_state = 68}, - [2208] = {.lex_state = 5}, - [2209] = {.lex_state = 5}, - [2210] = {.lex_state = 68}, - [2211] = {.lex_state = 68}, - [2212] = {.lex_state = 5}, - [2213] = {.lex_state = 5}, - [2214] = {.lex_state = 68}, - [2215] = {.lex_state = 68}, - [2216] = {.lex_state = 5}, - [2217] = {.lex_state = 68}, - [2218] = {.lex_state = 68}, - [2219] = {.lex_state = 5}, - [2220] = {.lex_state = 68}, - [2221] = {.lex_state = 68}, - [2222] = {.lex_state = 68}, - [2223] = {.lex_state = 68}, - [2224] = {.lex_state = 5}, - [2225] = {.lex_state = 68}, - [2226] = {.lex_state = 68}, - [2227] = {.lex_state = 5}, - [2228] = {.lex_state = 68}, - [2229] = {.lex_state = 11}, - [2230] = {.lex_state = 68}, - [2231] = {.lex_state = 5}, - [2232] = {.lex_state = 68}, - [2233] = {.lex_state = 11}, - [2234] = {.lex_state = 68}, - [2235] = {.lex_state = 11}, - [2236] = {.lex_state = 5}, - [2237] = {.lex_state = 5}, - [2238] = {.lex_state = 68}, - [2239] = {.lex_state = 68}, - [2240] = {.lex_state = 68}, - [2241] = {.lex_state = 68}, - [2242] = {.lex_state = 5}, - [2243] = {.lex_state = 5}, - [2244] = {.lex_state = 5}, - [2245] = {.lex_state = 5}, - [2246] = {.lex_state = 5}, - [2247] = {.lex_state = 68}, - [2248] = {.lex_state = 68}, - [2249] = {.lex_state = 5}, - [2250] = {.lex_state = 5}, - [2251] = {.lex_state = 68}, - [2252] = {.lex_state = 5}, - [2253] = {.lex_state = 5}, - [2254] = {.lex_state = 5}, - [2255] = {.lex_state = 68}, - [2256] = {.lex_state = 68}, - [2257] = {.lex_state = 68}, - [2258] = {.lex_state = 68}, - [2259] = {.lex_state = 68}, - [2260] = {.lex_state = 5}, - [2261] = {.lex_state = 68}, - [2262] = {.lex_state = 68}, - [2263] = {.lex_state = 5}, - [2264] = {.lex_state = 68}, - [2265] = {.lex_state = 68}, - [2266] = {.lex_state = 68}, - [2267] = {.lex_state = 5}, - [2268] = {.lex_state = 5}, - [2269] = {.lex_state = 5}, - [2270] = {.lex_state = 68}, - [2271] = {.lex_state = 5}, - [2272] = {.lex_state = 5}, - [2273] = {.lex_state = 5}, - [2274] = {.lex_state = 68}, - [2275] = {.lex_state = 5}, - [2276] = {.lex_state = 5}, - [2277] = {.lex_state = 68}, - [2278] = {.lex_state = 68}, - [2279] = {.lex_state = 68}, - [2280] = {.lex_state = 68}, - [2281] = {.lex_state = 5}, - [2282] = {.lex_state = 68}, - [2283] = {.lex_state = 68}, - [2284] = {.lex_state = 68}, - [2285] = {.lex_state = 5}, - [2286] = {.lex_state = 68}, - [2287] = {.lex_state = 68}, - [2288] = {.lex_state = 68}, - [2289] = {.lex_state = 68}, - [2290] = {.lex_state = 68}, - [2291] = {.lex_state = 68}, - [2292] = {.lex_state = 68}, - [2293] = {.lex_state = 68}, + [1498] = {.lex_state = 1}, + [1499] = {.lex_state = 5}, + [1500] = {.lex_state = 5}, + [1501] = {.lex_state = 5}, + [1502] = {.lex_state = 5}, + [1503] = {.lex_state = 5}, + [1504] = {.lex_state = 1}, + [1505] = {.lex_state = 1}, + [1506] = {.lex_state = 1}, + [1507] = {.lex_state = 1}, + [1508] = {.lex_state = 1}, + [1509] = {.lex_state = 1}, + [1510] = {.lex_state = 1}, + [1511] = {.lex_state = 1}, + [1512] = {.lex_state = 1}, + [1513] = {.lex_state = 1}, + [1514] = {.lex_state = 1}, + [1515] = {.lex_state = 1}, + [1516] = {.lex_state = 1}, + [1517] = {.lex_state = 1}, + [1518] = {.lex_state = 1}, + [1519] = {.lex_state = 1}, + [1520] = {.lex_state = 1}, + [1521] = {.lex_state = 42}, + [1522] = {.lex_state = 1}, + [1523] = {.lex_state = 1}, + [1524] = {.lex_state = 1}, + [1525] = {.lex_state = 1}, + [1526] = {.lex_state = 1}, + [1527] = {.lex_state = 1}, + [1528] = {.lex_state = 42}, + [1529] = {.lex_state = 1}, + [1530] = {.lex_state = 1}, + [1531] = {.lex_state = 1}, + [1532] = {.lex_state = 1}, + [1533] = {.lex_state = 1}, + [1534] = {.lex_state = 1}, + [1535] = {.lex_state = 1}, + [1536] = {.lex_state = 1}, + [1537] = {.lex_state = 1}, + [1538] = {.lex_state = 1}, + [1539] = {.lex_state = 1}, + [1540] = {.lex_state = 1}, + [1541] = {.lex_state = 1}, + [1542] = {.lex_state = 1}, + [1543] = {.lex_state = 1}, + [1544] = {.lex_state = 1}, + [1545] = {.lex_state = 1}, + [1546] = {.lex_state = 1}, + [1547] = {.lex_state = 1}, + [1548] = {.lex_state = 1}, + [1549] = {.lex_state = 42}, + [1550] = {.lex_state = 1}, + [1551] = {.lex_state = 1}, + [1552] = {.lex_state = 1}, + [1553] = {.lex_state = 1}, + [1554] = {.lex_state = 1}, + [1555] = {.lex_state = 1}, + [1556] = {.lex_state = 1}, + [1557] = {.lex_state = 1}, + [1558] = {.lex_state = 1}, + [1559] = {.lex_state = 1}, + [1560] = {.lex_state = 1}, + [1561] = {.lex_state = 1}, + [1562] = {.lex_state = 1}, + [1563] = {.lex_state = 1}, + [1564] = {.lex_state = 1}, + [1565] = {.lex_state = 1}, + [1566] = {.lex_state = 1}, + [1567] = {.lex_state = 1}, + [1568] = {.lex_state = 1}, + [1569] = {.lex_state = 1}, + [1570] = {.lex_state = 1}, + [1571] = {.lex_state = 1}, + [1572] = {.lex_state = 1}, + [1573] = {.lex_state = 1}, + [1574] = {.lex_state = 1}, + [1575] = {.lex_state = 1}, + [1576] = {.lex_state = 1}, + [1577] = {.lex_state = 1}, + [1578] = {.lex_state = 1}, + [1579] = {.lex_state = 1}, + [1580] = {.lex_state = 1}, + [1581] = {.lex_state = 1}, + [1582] = {.lex_state = 1}, + [1583] = {.lex_state = 1}, + [1584] = {.lex_state = 1}, + [1585] = {.lex_state = 1}, + [1586] = {.lex_state = 1}, + [1587] = {.lex_state = 1}, + [1588] = {.lex_state = 1}, + [1589] = {.lex_state = 11}, + [1590] = {.lex_state = 1}, + [1591] = {.lex_state = 1}, + [1592] = {.lex_state = 1}, + [1593] = {.lex_state = 1}, + [1594] = {.lex_state = 1}, + [1595] = {.lex_state = 1}, + [1596] = {.lex_state = 1}, + [1597] = {.lex_state = 1}, + [1598] = {.lex_state = 1}, + [1599] = {.lex_state = 1}, + [1600] = {.lex_state = 1}, + [1601] = {.lex_state = 1}, + [1602] = {.lex_state = 1}, + [1603] = {.lex_state = 1}, + [1604] = {.lex_state = 1}, + [1605] = {.lex_state = 1}, + [1606] = {.lex_state = 1}, + [1607] = {.lex_state = 1}, + [1608] = {.lex_state = 1}, + [1609] = {.lex_state = 1}, + [1610] = {.lex_state = 42}, + [1611] = {.lex_state = 1}, + [1612] = {.lex_state = 1}, + [1613] = {.lex_state = 1}, + [1614] = {.lex_state = 1}, + [1615] = {.lex_state = 1}, + [1616] = {.lex_state = 1}, + [1617] = {.lex_state = 1}, + [1618] = {.lex_state = 1}, + [1619] = {.lex_state = 1}, + [1620] = {.lex_state = 1}, + [1621] = {.lex_state = 11}, + [1622] = {.lex_state = 1}, + [1623] = {.lex_state = 1}, + [1624] = {.lex_state = 1}, + [1625] = {.lex_state = 1}, + [1626] = {.lex_state = 1}, + [1627] = {.lex_state = 1}, + [1628] = {.lex_state = 1}, + [1629] = {.lex_state = 1}, + [1630] = {.lex_state = 1}, + [1631] = {.lex_state = 1}, + [1632] = {.lex_state = 42}, + [1633] = {.lex_state = 1}, + [1634] = {.lex_state = 1}, + [1635] = {.lex_state = 1}, + [1636] = {.lex_state = 1}, + [1637] = {.lex_state = 1}, + [1638] = {.lex_state = 1}, + [1639] = {.lex_state = 1}, + [1640] = {.lex_state = 1}, + [1641] = {.lex_state = 1}, + [1642] = {.lex_state = 1}, + [1643] = {.lex_state = 1}, + [1644] = {.lex_state = 1}, + [1645] = {.lex_state = 1}, + [1646] = {.lex_state = 1}, + [1647] = {.lex_state = 1}, + [1648] = {.lex_state = 1}, + [1649] = {.lex_state = 1}, + [1650] = {.lex_state = 42}, + [1651] = {.lex_state = 1}, + [1652] = {.lex_state = 1}, + [1653] = {.lex_state = 1}, + [1654] = {.lex_state = 1}, + [1655] = {.lex_state = 1}, + [1656] = {.lex_state = 1}, + [1657] = {.lex_state = 1}, + [1658] = {.lex_state = 1}, + [1659] = {.lex_state = 1}, + [1660] = {.lex_state = 1}, + [1661] = {.lex_state = 1}, + [1662] = {.lex_state = 1}, + [1663] = {.lex_state = 1}, + [1664] = {.lex_state = 1}, + [1665] = {.lex_state = 1}, + [1666] = {.lex_state = 1}, + [1667] = {.lex_state = 1}, + [1668] = {.lex_state = 1}, + [1669] = {.lex_state = 1}, + [1670] = {.lex_state = 1}, + [1671] = {.lex_state = 1}, + [1672] = {.lex_state = 1}, + [1673] = {.lex_state = 1}, + [1674] = {.lex_state = 1}, + [1675] = {.lex_state = 1}, + [1676] = {.lex_state = 1}, + [1677] = {.lex_state = 1}, + [1678] = {.lex_state = 1}, + [1679] = {.lex_state = 1}, + [1680] = {.lex_state = 42}, + [1681] = {.lex_state = 1}, + [1682] = {.lex_state = 1}, + [1683] = {.lex_state = 1}, + [1684] = {.lex_state = 1}, + [1685] = {.lex_state = 1}, + [1686] = {.lex_state = 1}, + [1687] = {.lex_state = 1}, + [1688] = {.lex_state = 1}, + [1689] = {.lex_state = 1}, + [1690] = {.lex_state = 42}, + [1691] = {.lex_state = 1}, + [1692] = {.lex_state = 1}, + [1693] = {.lex_state = 1}, + [1694] = {.lex_state = 1}, + [1695] = {.lex_state = 1}, + [1696] = {.lex_state = 1}, + [1697] = {.lex_state = 1}, + [1698] = {.lex_state = 1}, + [1699] = {.lex_state = 1}, + [1700] = {.lex_state = 1}, + [1701] = {.lex_state = 1}, + [1702] = {.lex_state = 1}, + [1703] = {.lex_state = 1}, + [1704] = {.lex_state = 1}, + [1705] = {.lex_state = 1}, + [1706] = {.lex_state = 1}, + [1707] = {.lex_state = 1}, + [1708] = {.lex_state = 1}, + [1709] = {.lex_state = 1}, + [1710] = {.lex_state = 1}, + [1711] = {.lex_state = 1}, + [1712] = {.lex_state = 1}, + [1713] = {.lex_state = 42}, + [1714] = {.lex_state = 1}, + [1715] = {.lex_state = 1}, + [1716] = {.lex_state = 1}, + [1717] = {.lex_state = 1}, + [1718] = {.lex_state = 1}, + [1719] = {.lex_state = 1}, + [1720] = {.lex_state = 1}, + [1721] = {.lex_state = 1}, + [1722] = {.lex_state = 11}, + [1723] = {.lex_state = 11}, + [1724] = {.lex_state = 1}, + [1725] = {.lex_state = 1}, + [1726] = {.lex_state = 1}, + [1727] = {.lex_state = 11}, + [1728] = {.lex_state = 1}, + [1729] = {.lex_state = 1}, + [1730] = {.lex_state = 11}, + [1731] = {.lex_state = 1}, + [1732] = {.lex_state = 1}, + [1733] = {.lex_state = 1}, + [1734] = {.lex_state = 1}, + [1735] = {.lex_state = 1}, + [1736] = {.lex_state = 1}, + [1737] = {.lex_state = 1}, + [1738] = {.lex_state = 1}, + [1739] = {.lex_state = 1}, + [1740] = {.lex_state = 1}, + [1741] = {.lex_state = 1}, + [1742] = {.lex_state = 1}, + [1743] = {.lex_state = 1}, + [1744] = {.lex_state = 1}, + [1745] = {.lex_state = 42}, + [1746] = {.lex_state = 1}, + [1747] = {.lex_state = 1}, + [1748] = {.lex_state = 1}, + [1749] = {.lex_state = 1}, + [1750] = {.lex_state = 1}, + [1751] = {.lex_state = 1}, + [1752] = {.lex_state = 42}, + [1753] = {.lex_state = 42}, + [1754] = {.lex_state = 1}, + [1755] = {.lex_state = 42}, + [1756] = {.lex_state = 1}, + [1757] = {.lex_state = 1}, + [1758] = {.lex_state = 1}, + [1759] = {.lex_state = 1}, + [1760] = {.lex_state = 1}, + [1761] = {.lex_state = 1}, + [1762] = {.lex_state = 1}, + [1763] = {.lex_state = 1}, + [1764] = {.lex_state = 1}, + [1765] = {.lex_state = 42}, + [1766] = {.lex_state = 1}, + [1767] = {.lex_state = 1}, + [1768] = {.lex_state = 1}, + [1769] = {.lex_state = 1}, + [1770] = {.lex_state = 1}, + [1771] = {.lex_state = 1}, + [1772] = {.lex_state = 42}, + [1773] = {.lex_state = 1}, + [1774] = {.lex_state = 1}, + [1775] = {.lex_state = 1}, + [1776] = {.lex_state = 1}, + [1777] = {.lex_state = 1}, + [1778] = {.lex_state = 42}, + [1779] = {.lex_state = 1}, + [1780] = {.lex_state = 1}, + [1781] = {.lex_state = 1}, + [1782] = {.lex_state = 1}, + [1783] = {.lex_state = 1}, + [1784] = {.lex_state = 1}, + [1785] = {.lex_state = 1}, + [1786] = {.lex_state = 1}, + [1787] = {.lex_state = 1}, + [1788] = {.lex_state = 1}, + [1789] = {.lex_state = 1}, + [1790] = {.lex_state = 1}, + [1791] = {.lex_state = 1}, + [1792] = {.lex_state = 1}, + [1793] = {.lex_state = 1}, + [1794] = {.lex_state = 1}, + [1795] = {.lex_state = 1}, + [1796] = {.lex_state = 1}, + [1797] = {.lex_state = 1}, + [1798] = {.lex_state = 1}, + [1799] = {.lex_state = 42}, + [1800] = {.lex_state = 1}, + [1801] = {.lex_state = 1}, + [1802] = {.lex_state = 1}, + [1803] = {.lex_state = 1}, + [1804] = {.lex_state = 1}, + [1805] = {.lex_state = 1}, + [1806] = {.lex_state = 1}, + [1807] = {.lex_state = 1}, + [1808] = {.lex_state = 1}, + [1809] = {.lex_state = 1}, + [1810] = {.lex_state = 42}, + [1811] = {.lex_state = 42}, + [1812] = {.lex_state = 1}, + [1813] = {.lex_state = 1}, + [1814] = {.lex_state = 1}, + [1815] = {.lex_state = 42}, + [1816] = {.lex_state = 1}, + [1817] = {.lex_state = 1}, + [1818] = {.lex_state = 1}, + [1819] = {.lex_state = 1}, + [1820] = {.lex_state = 1}, + [1821] = {.lex_state = 1}, + [1822] = {.lex_state = 1}, + [1823] = {.lex_state = 1}, + [1824] = {.lex_state = 1}, + [1825] = {.lex_state = 1}, + [1826] = {.lex_state = 1}, + [1827] = {.lex_state = 11}, + [1828] = {.lex_state = 1}, + [1829] = {.lex_state = 1}, + [1830] = {.lex_state = 1}, + [1831] = {.lex_state = 1}, + [1832] = {.lex_state = 1}, + [1833] = {.lex_state = 11}, + [1834] = {.lex_state = 1}, + [1835] = {.lex_state = 1}, + [1836] = {.lex_state = 1}, + [1837] = {.lex_state = 1}, + [1838] = {.lex_state = 1}, + [1839] = {.lex_state = 1}, + [1840] = {.lex_state = 1}, + [1841] = {.lex_state = 1}, + [1842] = {.lex_state = 1}, + [1843] = {.lex_state = 1}, + [1844] = {.lex_state = 1}, + [1845] = {.lex_state = 1}, + [1846] = {.lex_state = 1}, + [1847] = {.lex_state = 1}, + [1848] = {.lex_state = 1}, + [1849] = {.lex_state = 1}, + [1850] = {.lex_state = 1}, + [1851] = {.lex_state = 1}, + [1852] = {.lex_state = 1}, + [1853] = {.lex_state = 11}, + [1854] = {.lex_state = 1}, + [1855] = {.lex_state = 1}, + [1856] = {.lex_state = 1}, + [1857] = {.lex_state = 1}, + [1858] = {.lex_state = 1}, + [1859] = {.lex_state = 1}, + [1860] = {.lex_state = 1}, + [1861] = {.lex_state = 1}, + [1862] = {.lex_state = 11}, + [1863] = {.lex_state = 1}, + [1864] = {.lex_state = 1}, + [1865] = {.lex_state = 1}, + [1866] = {.lex_state = 1}, + [1867] = {.lex_state = 42}, + [1868] = {.lex_state = 1}, + [1869] = {.lex_state = 1}, + [1870] = {.lex_state = 1}, + [1871] = {.lex_state = 1}, + [1872] = {.lex_state = 1}, + [1873] = {.lex_state = 1}, + [1874] = {.lex_state = 1}, + [1875] = {.lex_state = 1}, + [1876] = {.lex_state = 1}, + [1877] = {.lex_state = 1}, + [1878] = {.lex_state = 1}, + [1879] = {.lex_state = 1}, + [1880] = {.lex_state = 1}, + [1881] = {.lex_state = 1}, + [1882] = {.lex_state = 1}, + [1883] = {.lex_state = 1}, + [1884] = {.lex_state = 1}, + [1885] = {.lex_state = 1}, + [1886] = {.lex_state = 1}, + [1887] = {.lex_state = 1}, + [1888] = {.lex_state = 1}, + [1889] = {.lex_state = 1}, + [1890] = {.lex_state = 1}, + [1891] = {.lex_state = 1}, + [1892] = {.lex_state = 1}, + [1893] = {.lex_state = 1}, + [1894] = {.lex_state = 1}, + [1895] = {.lex_state = 1}, + [1896] = {.lex_state = 1}, + [1897] = {.lex_state = 1}, + [1898] = {.lex_state = 1}, + [1899] = {.lex_state = 1}, + [1900] = {.lex_state = 1}, + [1901] = {.lex_state = 1}, + [1902] = {.lex_state = 1}, + [1903] = {.lex_state = 1}, + [1904] = {.lex_state = 1}, + [1905] = {.lex_state = 1}, + [1906] = {.lex_state = 1}, + [1907] = {.lex_state = 1}, + [1908] = {.lex_state = 1}, + [1909] = {.lex_state = 1}, + [1910] = {.lex_state = 1}, + [1911] = {.lex_state = 1}, + [1912] = {.lex_state = 1}, + [1913] = {.lex_state = 1}, + [1914] = {.lex_state = 42}, + [1915] = {.lex_state = 1}, + [1916] = {.lex_state = 42}, + [1917] = {.lex_state = 42}, + [1918] = {.lex_state = 42}, + [1919] = {.lex_state = 1}, + [1920] = {.lex_state = 1}, + [1921] = {.lex_state = 1}, + [1922] = {.lex_state = 1}, + [1923] = {.lex_state = 1}, + [1924] = {.lex_state = 1}, + [1925] = {.lex_state = 1}, + [1926] = {.lex_state = 1}, + [1927] = {.lex_state = 1}, + [1928] = {.lex_state = 1}, + [1929] = {.lex_state = 1}, + [1930] = {.lex_state = 42}, + [1931] = {.lex_state = 1}, + [1932] = {.lex_state = 42}, + [1933] = {.lex_state = 1}, + [1934] = {.lex_state = 1}, + [1935] = {.lex_state = 1}, + [1936] = {.lex_state = 1}, + [1937] = {.lex_state = 1}, + [1938] = {.lex_state = 1}, + [1939] = {.lex_state = 42}, + [1940] = {.lex_state = 1}, + [1941] = {.lex_state = 42}, + [1942] = {.lex_state = 1}, + [1943] = {.lex_state = 11}, + [1944] = {.lex_state = 42}, + [1945] = {.lex_state = 1}, + [1946] = {.lex_state = 42}, + [1947] = {.lex_state = 1}, + [1948] = {.lex_state = 42}, + [1949] = {.lex_state = 1}, + [1950] = {.lex_state = 1}, + [1951] = {.lex_state = 1}, + [1952] = {.lex_state = 42}, + [1953] = {.lex_state = 42}, + [1954] = {.lex_state = 1}, + [1955] = {.lex_state = 1}, + [1956] = {.lex_state = 1}, + [1957] = {.lex_state = 1}, + [1958] = {.lex_state = 1}, + [1959] = {.lex_state = 1}, + [1960] = {.lex_state = 1}, + [1961] = {.lex_state = 42}, + [1962] = {.lex_state = 42}, + [1963] = {.lex_state = 1}, + [1964] = {.lex_state = 1}, + [1965] = {.lex_state = 42}, + [1966] = {.lex_state = 1}, + [1967] = {.lex_state = 1}, + [1968] = {.lex_state = 1}, + [1969] = {.lex_state = 1}, + [1970] = {.lex_state = 1}, + [1971] = {.lex_state = 1}, + [1972] = {.lex_state = 42}, + [1973] = {.lex_state = 1}, + [1974] = {.lex_state = 1}, + [1975] = {.lex_state = 1}, + [1976] = {.lex_state = 1}, + [1977] = {.lex_state = 1}, + [1978] = {.lex_state = 1}, + [1979] = {.lex_state = 1}, + [1980] = {.lex_state = 42}, + [1981] = {.lex_state = 1}, + [1982] = {.lex_state = 1}, + [1983] = {.lex_state = 1}, + [1984] = {.lex_state = 1}, + [1985] = {.lex_state = 11}, + [1986] = {.lex_state = 1}, + [1987] = {.lex_state = 1}, + [1988] = {.lex_state = 1}, + [1989] = {.lex_state = 1}, + [1990] = {.lex_state = 42}, + [1991] = {.lex_state = 1}, + [1992] = {.lex_state = 1}, + [1993] = {.lex_state = 1}, + [1994] = {.lex_state = 1}, + [1995] = {.lex_state = 1}, + [1996] = {.lex_state = 1}, + [1997] = {.lex_state = 1}, + [1998] = {.lex_state = 42}, + [1999] = {.lex_state = 1}, + [2000] = {.lex_state = 1}, + [2001] = {.lex_state = 42}, + [2002] = {.lex_state = 1}, + [2003] = {.lex_state = 1}, + [2004] = {.lex_state = 42}, + [2005] = {.lex_state = 1}, + [2006] = {.lex_state = 1}, + [2007] = {.lex_state = 42}, + [2008] = {.lex_state = 1}, + [2009] = {.lex_state = 42}, + [2010] = {.lex_state = 1}, + [2011] = {.lex_state = 1}, + [2012] = {.lex_state = 1}, + [2013] = {.lex_state = 1}, + [2014] = {.lex_state = 1}, + [2015] = {.lex_state = 1}, + [2016] = {.lex_state = 1}, + [2017] = {.lex_state = 1}, + [2018] = {.lex_state = 1}, + [2019] = {.lex_state = 42}, + [2020] = {.lex_state = 1}, + [2021] = {.lex_state = 1}, + [2022] = {.lex_state = 1}, + [2023] = {.lex_state = 1}, + [2024] = {.lex_state = 1}, + [2025] = {.lex_state = 1}, + [2026] = {.lex_state = 1}, + [2027] = {.lex_state = 1}, + [2028] = {.lex_state = 1}, + [2029] = {.lex_state = 1}, + [2030] = {.lex_state = 1}, + [2031] = {.lex_state = 1}, + [2032] = {.lex_state = 1}, + [2033] = {.lex_state = 1}, + [2034] = {.lex_state = 42}, + [2035] = {.lex_state = 42}, + [2036] = {.lex_state = 42}, + [2037] = {.lex_state = 1}, + [2038] = {.lex_state = 1}, + [2039] = {.lex_state = 42}, + [2040] = {.lex_state = 42}, + [2041] = {.lex_state = 1}, + [2042] = {.lex_state = 1}, + [2043] = {.lex_state = 1}, + [2044] = {.lex_state = 1}, + [2045] = {.lex_state = 1}, + [2046] = {.lex_state = 1}, + [2047] = {.lex_state = 1}, + [2048] = {.lex_state = 1}, + [2049] = {.lex_state = 42}, + [2050] = {.lex_state = 42}, + [2051] = {.lex_state = 1}, + [2052] = {.lex_state = 1}, + [2053] = {.lex_state = 12}, + [2054] = {.lex_state = 1}, + [2055] = {.lex_state = 1}, + [2056] = {.lex_state = 42}, + [2057] = {.lex_state = 1}, + [2058] = {.lex_state = 1}, + [2059] = {.lex_state = 1}, + [2060] = {.lex_state = 42}, + [2061] = {.lex_state = 1}, + [2062] = {.lex_state = 42}, + [2063] = {.lex_state = 1}, + [2064] = {.lex_state = 42}, + [2065] = {.lex_state = 1}, + [2066] = {.lex_state = 1}, + [2067] = {.lex_state = 12}, + [2068] = {.lex_state = 42}, + [2069] = {.lex_state = 42}, + [2070] = {.lex_state = 42}, + [2071] = {.lex_state = 42}, + [2072] = {.lex_state = 1}, + [2073] = {.lex_state = 1}, + [2074] = {.lex_state = 42}, + [2075] = {.lex_state = 1}, + [2076] = {.lex_state = 1}, + [2077] = {.lex_state = 42}, + [2078] = {.lex_state = 42}, + [2079] = {.lex_state = 42}, + [2080] = {.lex_state = 42}, + [2081] = {.lex_state = 42}, + [2082] = {.lex_state = 1}, + [2083] = {.lex_state = 42}, + [2084] = {.lex_state = 1}, + [2085] = {.lex_state = 42}, + [2086] = {.lex_state = 42}, + [2087] = {.lex_state = 1}, + [2088] = {.lex_state = 42}, + [2089] = {.lex_state = 42}, + [2090] = {.lex_state = 1}, + [2091] = {.lex_state = 1}, + [2092] = {.lex_state = 42}, + [2093] = {.lex_state = 42}, + [2094] = {.lex_state = 1}, + [2095] = {.lex_state = 1}, + [2096] = {.lex_state = 42}, + [2097] = {.lex_state = 42}, + [2098] = {.lex_state = 1}, + [2099] = {.lex_state = 42}, + [2100] = {.lex_state = 1}, + [2101] = {.lex_state = 42}, + [2102] = {.lex_state = 42}, + [2103] = {.lex_state = 42}, + [2104] = {.lex_state = 1}, + [2105] = {.lex_state = 1}, + [2106] = {.lex_state = 42}, + [2107] = {.lex_state = 1}, + [2108] = {.lex_state = 1}, + [2109] = {.lex_state = 42}, + [2110] = {.lex_state = 42}, + [2111] = {.lex_state = 42}, + [2112] = {.lex_state = 1}, + [2113] = {.lex_state = 1}, + [2114] = {.lex_state = 42}, + [2115] = {.lex_state = 42}, + [2116] = {.lex_state = 42}, + [2117] = {.lex_state = 1}, + [2118] = {.lex_state = 42}, + [2119] = {.lex_state = 42}, + [2120] = {.lex_state = 42}, + [2121] = {.lex_state = 1}, + [2122] = {.lex_state = 42}, + [2123] = {.lex_state = 42}, + [2124] = {.lex_state = 1}, + [2125] = {.lex_state = 42}, + [2126] = {.lex_state = 42}, + [2127] = {.lex_state = 42}, + [2128] = {.lex_state = 42}, + [2129] = {.lex_state = 1}, + [2130] = {.lex_state = 1}, + [2131] = {.lex_state = 42}, + [2132] = {.lex_state = 42}, + [2133] = {.lex_state = 42}, + [2134] = {.lex_state = 1}, + [2135] = {.lex_state = 42}, + [2136] = {.lex_state = 42}, + [2137] = {.lex_state = 42}, + [2138] = {.lex_state = 42}, + [2139] = {.lex_state = 1}, + [2140] = {.lex_state = 1}, + [2141] = {.lex_state = 42}, + [2142] = {.lex_state = 42}, + [2143] = {.lex_state = 42}, + [2144] = {.lex_state = 1}, + [2145] = {.lex_state = 1}, + [2146] = {.lex_state = 1}, + [2147] = {.lex_state = 42}, + [2148] = {.lex_state = 42}, + [2149] = {.lex_state = 42}, + [2150] = {.lex_state = 1}, + [2151] = {.lex_state = 1}, + [2152] = {.lex_state = 42}, + [2153] = {.lex_state = 42}, + [2154] = {.lex_state = 42}, + [2155] = {.lex_state = 1}, + [2156] = {.lex_state = 1}, + [2157] = {.lex_state = 1}, + [2158] = {.lex_state = 42}, + [2159] = {.lex_state = 1}, + [2160] = {.lex_state = 42}, + [2161] = {.lex_state = 42}, + [2162] = {.lex_state = 42}, + [2163] = {.lex_state = 42}, + [2164] = {.lex_state = 42}, + [2165] = {.lex_state = 1}, + [2166] = {.lex_state = 42}, + [2167] = {.lex_state = 42}, + [2168] = {.lex_state = 1}, + [2169] = {.lex_state = 42}, + [2170] = {.lex_state = 1}, + [2171] = {.lex_state = 1}, + [2172] = {.lex_state = 42}, + [2173] = {.lex_state = 42}, + [2174] = {.lex_state = 42}, + [2175] = {.lex_state = 42}, + [2176] = {.lex_state = 1}, + [2177] = {.lex_state = 42}, + [2178] = {.lex_state = 1}, + [2179] = {.lex_state = 42}, + [2180] = {.lex_state = 42}, + [2181] = {.lex_state = 42}, + [2182] = {.lex_state = 1}, + [2183] = {.lex_state = 42}, + [2184] = {.lex_state = 1}, + [2185] = {.lex_state = 42}, + [2186] = {.lex_state = 42}, + [2187] = {.lex_state = 42}, + [2188] = {.lex_state = 42}, + [2189] = {.lex_state = 1}, + [2190] = {.lex_state = 42}, + [2191] = {.lex_state = 1}, + [2192] = {.lex_state = 42}, + [2193] = {.lex_state = 1}, + [2194] = {.lex_state = 1}, + [2195] = {.lex_state = 1}, + [2196] = {.lex_state = 1}, + [2197] = {.lex_state = 1}, + [2198] = {.lex_state = 42}, + [2199] = {.lex_state = 42}, + [2200] = {.lex_state = 42}, + [2201] = {.lex_state = 1}, + [2202] = {.lex_state = 1}, + [2203] = {.lex_state = 1}, + [2204] = {.lex_state = 42}, + [2205] = {.lex_state = 1}, + [2206] = {.lex_state = 42}, + [2207] = {.lex_state = 42}, + [2208] = {.lex_state = 42}, + [2209] = {.lex_state = 1}, + [2210] = {.lex_state = 1}, + [2211] = {.lex_state = 1}, + [2212] = {.lex_state = 42}, + [2213] = {.lex_state = 1}, + [2214] = {.lex_state = 1}, + [2215] = {.lex_state = 1}, + [2216] = {.lex_state = 1}, + [2217] = {.lex_state = 42}, + [2218] = {.lex_state = 42}, + [2219] = {.lex_state = 1}, + [2220] = {.lex_state = 1}, + [2221] = {.lex_state = 1}, + [2222] = {.lex_state = 42}, + [2223] = {.lex_state = 42}, + [2224] = {.lex_state = 1}, + [2225] = {.lex_state = 42}, + [2226] = {.lex_state = 1}, + [2227] = {.lex_state = 1}, + [2228] = {.lex_state = 42}, + [2229] = {.lex_state = 1}, + [2230] = {.lex_state = 1}, + [2231] = {.lex_state = 42}, + [2232] = {.lex_state = 1}, + [2233] = {.lex_state = 1}, + [2234] = {.lex_state = 42}, + [2235] = {.lex_state = 42}, + [2236] = {.lex_state = 1}, + [2237] = {.lex_state = 1}, + [2238] = {.lex_state = 1}, + [2239] = {.lex_state = 1}, + [2240] = {.lex_state = 1}, + [2241] = {.lex_state = 42}, + [2242] = {.lex_state = 42}, + [2243] = {.lex_state = 1}, + [2244] = {.lex_state = 42}, + [2245] = {.lex_state = 1}, + [2246] = {.lex_state = 42}, + [2247] = {.lex_state = 1}, + [2248] = {.lex_state = 1}, + [2249] = {.lex_state = 42}, + [2250] = {.lex_state = 42}, + [2251] = {.lex_state = 42}, + [2252] = {.lex_state = 42}, + [2253] = {.lex_state = 1}, + [2254] = {.lex_state = 1}, + [2255] = {.lex_state = 1}, + [2256] = {.lex_state = 42}, + [2257] = {.lex_state = 1}, + [2258] = {.lex_state = 42}, + [2259] = {.lex_state = 1}, + [2260] = {.lex_state = 42}, + [2261] = {.lex_state = 42}, + [2262] = {.lex_state = 1}, + [2263] = {.lex_state = 42}, + [2264] = {.lex_state = 1}, + [2265] = {.lex_state = 42}, + [2266] = {.lex_state = 42}, + [2267] = {.lex_state = 42}, + [2268] = {.lex_state = 42}, + [2269] = {.lex_state = 42}, + [2270] = {.lex_state = 42}, + [2271] = {.lex_state = 42}, + [2272] = {.lex_state = 42}, + [2273] = {.lex_state = 42}, + [2274] = {.lex_state = 42}, + [2275] = {.lex_state = 42}, + [2276] = {.lex_state = 42}, + [2277] = {.lex_state = 42}, + [2278] = {.lex_state = 42}, + [2279] = {.lex_state = 42}, + [2280] = {.lex_state = 42}, + [2281] = {.lex_state = 42}, + [2282] = {.lex_state = 42}, + [2283] = {.lex_state = 42}, + [2284] = {.lex_state = 42}, + [2285] = {.lex_state = 42}, + [2286] = {.lex_state = 42}, + [2287] = {.lex_state = 42}, + [2288] = {.lex_state = 42}, + [2289] = {.lex_state = 42}, + [2290] = {.lex_state = 42}, + [2291] = {.lex_state = 5}, + [2292] = {.lex_state = 42}, + [2293] = {.lex_state = 5}, [2294] = {.lex_state = 5}, - [2295] = {.lex_state = 68}, - [2296] = {.lex_state = 68}, - [2297] = {.lex_state = 5}, - [2298] = {.lex_state = 5}, - [2299] = {.lex_state = 5}, - [2300] = {.lex_state = 68}, - [2301] = {.lex_state = 68}, - [2302] = {.lex_state = 68}, - [2303] = {.lex_state = 68}, - [2304] = {.lex_state = 68}, - [2305] = {.lex_state = 68}, - [2306] = {.lex_state = 68}, - [2307] = {.lex_state = 68}, - [2308] = {.lex_state = 68}, - [2309] = {.lex_state = 68}, - [2310] = {.lex_state = 68}, - [2311] = {.lex_state = 68}, - [2312] = {.lex_state = 5}, - [2313] = {.lex_state = 68}, - [2314] = {.lex_state = 68}, - [2315] = {.lex_state = 68}, - [2316] = {.lex_state = 68}, - [2317] = {.lex_state = 5}, - [2318] = {.lex_state = 68}, - [2319] = {.lex_state = 68}, - [2320] = {.lex_state = 5}, - [2321] = {.lex_state = 5}, - [2322] = {.lex_state = 5}, - [2323] = {.lex_state = 5}, - [2324] = {.lex_state = 68}, - [2325] = {.lex_state = 5}, - [2326] = {.lex_state = 68}, - [2327] = {.lex_state = 68}, - [2328] = {.lex_state = 68}, - [2329] = {.lex_state = 68}, - [2330] = {.lex_state = 68}, - [2331] = {.lex_state = 5}, - [2332] = {.lex_state = 68}, - [2333] = {.lex_state = 68}, - [2334] = {.lex_state = 5}, - [2335] = {.lex_state = 68}, - [2336] = {.lex_state = 5}, - [2337] = {.lex_state = 68}, - [2338] = {.lex_state = 5}, - [2339] = {.lex_state = 68}, - [2340] = {.lex_state = 68}, - [2341] = {.lex_state = 68}, - [2342] = {.lex_state = 68}, - [2343] = {.lex_state = 68}, - [2344] = {.lex_state = 68}, - [2345] = {.lex_state = 5}, - [2346] = {.lex_state = 5}, - [2347] = {.lex_state = 5}, - [2348] = {.lex_state = 5}, - [2349] = {.lex_state = 5}, - [2350] = {.lex_state = 68}, - [2351] = {.lex_state = 5}, - [2352] = {.lex_state = 5}, - [2353] = {.lex_state = 68}, - [2354] = {.lex_state = 68}, - [2355] = {.lex_state = 5}, - [2356] = {.lex_state = 5}, - [2357] = {.lex_state = 68}, - [2358] = {.lex_state = 5}, - [2359] = {.lex_state = 5}, - [2360] = {.lex_state = 68}, - [2361] = {.lex_state = 68}, - [2362] = {.lex_state = 5}, - [2363] = {.lex_state = 5}, - [2364] = {.lex_state = 5}, - [2365] = {.lex_state = 68}, - [2366] = {.lex_state = 68}, - [2367] = {.lex_state = 68}, - [2368] = {.lex_state = 68}, - [2369] = {.lex_state = 5}, - [2370] = {.lex_state = 5}, - [2371] = {.lex_state = 68}, - [2372] = {.lex_state = 5}, - [2373] = {.lex_state = 5}, - [2374] = {.lex_state = 68}, - [2375] = {.lex_state = 5}, - [2376] = {.lex_state = 5}, - [2377] = {.lex_state = 5}, - [2378] = {.lex_state = 5}, - [2379] = {.lex_state = 5}, - [2380] = {.lex_state = 5}, - [2381] = {.lex_state = 68}, - [2382] = {.lex_state = 5}, - [2383] = {.lex_state = 5}, - [2384] = {.lex_state = 5}, - [2385] = {.lex_state = 68}, - [2386] = {.lex_state = 68}, - [2387] = {.lex_state = 68}, - [2388] = {.lex_state = 68}, - [2389] = {.lex_state = 68}, - [2390] = {.lex_state = 68}, - [2391] = {.lex_state = 68}, - [2392] = {.lex_state = 68}, - [2393] = {.lex_state = 68}, - [2394] = {.lex_state = 68}, - [2395] = {.lex_state = 68}, - [2396] = {.lex_state = 68}, - [2397] = {.lex_state = 5}, - [2398] = {.lex_state = 68}, - [2399] = {.lex_state = 5}, - [2400] = {.lex_state = 68}, - [2401] = {.lex_state = 5}, - [2402] = {.lex_state = 68}, - [2403] = {.lex_state = 5}, - [2404] = {.lex_state = 68}, - [2405] = {.lex_state = 68}, - [2406] = {.lex_state = 5}, - [2407] = {.lex_state = 5}, - [2408] = {.lex_state = 5}, - [2409] = {.lex_state = 5}, - [2410] = {.lex_state = 68}, - [2411] = {.lex_state = 68}, - [2412] = {.lex_state = 5}, - [2413] = {.lex_state = 68}, - [2414] = {.lex_state = 68}, - [2415] = {.lex_state = 5}, - [2416] = {.lex_state = 5}, - [2417] = {.lex_state = 68}, - [2418] = {.lex_state = 5}, - [2419] = {.lex_state = 68}, - [2420] = {.lex_state = 5}, - [2421] = {.lex_state = 5}, - [2422] = {.lex_state = 5}, - [2423] = {.lex_state = 5}, - [2424] = {.lex_state = 5}, - [2425] = {.lex_state = 68}, - [2426] = {.lex_state = 68}, - [2427] = {.lex_state = 68}, - [2428] = {.lex_state = 68}, - [2429] = {.lex_state = 68}, - [2430] = {.lex_state = 68}, - [2431] = {.lex_state = 5}, - [2432] = {.lex_state = 5}, - [2433] = {.lex_state = 68}, - [2434] = {.lex_state = 68}, - [2435] = {.lex_state = 68}, - [2436] = {.lex_state = 68}, - [2437] = {.lex_state = 5}, - [2438] = {.lex_state = 5}, - [2439] = {.lex_state = 68}, - [2440] = {.lex_state = 5}, - [2441] = {.lex_state = 68}, - [2442] = {.lex_state = 5}, - [2443] = {.lex_state = 68}, - [2444] = {.lex_state = 5}, - [2445] = {.lex_state = 68}, - [2446] = {.lex_state = 5}, - [2447] = {.lex_state = 68}, - [2448] = {.lex_state = 68}, - [2449] = {.lex_state = 68}, - [2450] = {.lex_state = 68}, - [2451] = {.lex_state = 5}, - [2452] = {.lex_state = 5}, - [2453] = {.lex_state = 68}, - [2454] = {.lex_state = 68}, - [2455] = {.lex_state = 68}, - [2456] = {.lex_state = 68}, - [2457] = {.lex_state = 68}, - [2458] = {.lex_state = 68}, - [2459] = {.lex_state = 68}, - [2460] = {.lex_state = 68}, - [2461] = {.lex_state = 68}, - [2462] = {.lex_state = 68}, - [2463] = {.lex_state = 68}, - [2464] = {.lex_state = 68}, - [2465] = {.lex_state = 68}, - [2466] = {.lex_state = 68}, - [2467] = {.lex_state = 68}, - [2468] = {.lex_state = 68}, - [2469] = {.lex_state = 68}, - [2470] = {.lex_state = 68}, - [2471] = {.lex_state = 68}, - [2472] = {.lex_state = 68}, - [2473] = {.lex_state = 68}, - [2474] = {.lex_state = 68}, - [2475] = {.lex_state = 68}, - [2476] = {.lex_state = 68}, - [2477] = {.lex_state = 68}, - [2478] = {.lex_state = 68}, - [2479] = {.lex_state = 68}, - [2480] = {.lex_state = 68}, - [2481] = {.lex_state = 68}, - [2482] = {.lex_state = 68}, - [2483] = {.lex_state = 68}, - [2484] = {.lex_state = 68}, - [2485] = {.lex_state = 68}, - [2486] = {.lex_state = 68}, - [2487] = {.lex_state = 68}, - [2488] = {.lex_state = 68}, - [2489] = {.lex_state = 68}, - [2490] = {.lex_state = 68}, - [2491] = {.lex_state = 68}, - [2492] = {.lex_state = 68}, - [2493] = {.lex_state = 68}, - [2494] = {.lex_state = 68}, - [2495] = {.lex_state = 68}, - [2496] = {.lex_state = 68}, - [2497] = {.lex_state = 68}, - [2498] = {.lex_state = 68}, - [2499] = {.lex_state = 68}, - [2500] = {.lex_state = 68}, - [2501] = {.lex_state = 68}, - [2502] = {.lex_state = 68}, - [2503] = {.lex_state = 68}, - [2504] = {.lex_state = 68}, - [2505] = {.lex_state = 68}, - [2506] = {.lex_state = 68}, - [2507] = {.lex_state = 68}, - [2508] = {.lex_state = 68}, - [2509] = {.lex_state = 68}, - [2510] = {.lex_state = 68}, - [2511] = {.lex_state = 68}, - [2512] = {.lex_state = 68}, - [2513] = {.lex_state = 68}, - [2514] = {.lex_state = 68}, - [2515] = {.lex_state = 68}, - [2516] = {.lex_state = 68}, - [2517] = {.lex_state = 68}, - [2518] = {.lex_state = 68}, - [2519] = {.lex_state = 68}, - [2520] = {.lex_state = 68}, - [2521] = {.lex_state = 68}, - [2522] = {.lex_state = 68}, - [2523] = {.lex_state = 68}, - [2524] = {.lex_state = 68}, - [2525] = {.lex_state = 68}, - [2526] = {.lex_state = 68}, - [2527] = {.lex_state = 68}, - [2528] = {.lex_state = 68}, - [2529] = {.lex_state = 68}, - [2530] = {.lex_state = 68}, - [2531] = {.lex_state = 68}, - [2532] = {.lex_state = 68}, - [2533] = {.lex_state = 68}, - [2534] = {.lex_state = 68}, - [2535] = {.lex_state = 68}, - [2536] = {.lex_state = 68}, - [2537] = {.lex_state = 68}, - [2538] = {.lex_state = 68}, - [2539] = {.lex_state = 68}, - [2540] = {.lex_state = 68}, - [2541] = {.lex_state = 68}, - [2542] = {.lex_state = 68}, - [2543] = {.lex_state = 68}, - [2544] = {.lex_state = 68}, - [2545] = {.lex_state = 68}, - [2546] = {.lex_state = 68}, - [2547] = {.lex_state = 68}, - [2548] = {.lex_state = 68}, - [2549] = {.lex_state = 68}, - [2550] = {.lex_state = 68}, - [2551] = {.lex_state = 68}, - [2552] = {.lex_state = 68}, - [2553] = {.lex_state = 68}, - [2554] = {.lex_state = 68}, - [2555] = {.lex_state = 68}, - [2556] = {.lex_state = 68}, - [2557] = {.lex_state = 68}, - [2558] = {.lex_state = 68}, - [2559] = {.lex_state = 68}, - [2560] = {.lex_state = 68}, - [2561] = {.lex_state = 68}, - [2562] = {.lex_state = 68}, - [2563] = {.lex_state = 68}, - [2564] = {.lex_state = 68}, - [2565] = {.lex_state = 68}, - [2566] = {.lex_state = 68}, - [2567] = {.lex_state = 68}, - [2568] = {.lex_state = 68}, - [2569] = {.lex_state = 68}, - [2570] = {.lex_state = 68}, - [2571] = {.lex_state = 68}, - [2572] = {.lex_state = 68}, - [2573] = {.lex_state = 68}, - [2574] = {.lex_state = 68}, - [2575] = {.lex_state = 68}, - [2576] = {.lex_state = 68}, - [2577] = {.lex_state = 68}, - [2578] = {.lex_state = 68}, - [2579] = {.lex_state = 68}, - [2580] = {.lex_state = 68}, - [2581] = {.lex_state = 68}, - [2582] = {.lex_state = 68}, - [2583] = {.lex_state = 68}, - [2584] = {.lex_state = 68}, - [2585] = {.lex_state = 68}, - [2586] = {.lex_state = 68}, - [2587] = {.lex_state = 68}, - [2588] = {.lex_state = 68}, - [2589] = {.lex_state = 68}, - [2590] = {.lex_state = 68}, - [2591] = {.lex_state = 68}, - [2592] = {.lex_state = 68}, - [2593] = {.lex_state = 68}, - [2594] = {.lex_state = 68}, - [2595] = {.lex_state = 68}, - [2596] = {.lex_state = 68}, - [2597] = {.lex_state = 68}, - [2598] = {.lex_state = 68}, - [2599] = {.lex_state = 68}, - [2600] = {.lex_state = 68}, - [2601] = {.lex_state = 68}, - [2602] = {.lex_state = 68}, - [2603] = {.lex_state = 68}, - [2604] = {.lex_state = 68}, - [2605] = {.lex_state = 68}, - [2606] = {.lex_state = 68}, - [2607] = {.lex_state = 68}, - [2608] = {.lex_state = 68}, - [2609] = {.lex_state = 68}, - [2610] = {.lex_state = 68}, - [2611] = {.lex_state = 68}, - [2612] = {.lex_state = 68}, - [2613] = {.lex_state = 68}, - [2614] = {.lex_state = 68}, - [2615] = {.lex_state = 68}, - [2616] = {.lex_state = 68}, - [2617] = {.lex_state = 68}, - [2618] = {.lex_state = 68}, - [2619] = {.lex_state = 5}, - [2620] = {.lex_state = 5}, - [2621] = {.lex_state = 68}, - [2622] = {.lex_state = 68}, - [2623] = {.lex_state = 68}, - [2624] = {.lex_state = 68}, - [2625] = {.lex_state = 68}, - [2626] = {.lex_state = 68}, - [2627] = {.lex_state = 68}, - [2628] = {.lex_state = 5}, - [2629] = {.lex_state = 68}, - [2630] = {.lex_state = 5}, - [2631] = {.lex_state = 5}, - [2632] = {.lex_state = 68}, - [2633] = {.lex_state = 5}, - [2634] = {.lex_state = 68}, - [2635] = {.lex_state = 68}, - [2636] = {.lex_state = 5}, - [2637] = {.lex_state = 68}, - [2638] = {.lex_state = 5}, - [2639] = {.lex_state = 68}, - [2640] = {.lex_state = 68}, - [2641] = {.lex_state = 68}, - [2642] = {.lex_state = 68}, - [2643] = {.lex_state = 5}, - [2644] = {.lex_state = 5}, - [2645] = {.lex_state = 5}, - [2646] = {.lex_state = 68}, - [2647] = {.lex_state = 5}, - [2648] = {.lex_state = 68}, - [2649] = {.lex_state = 68}, - [2650] = {.lex_state = 5}, - [2651] = {.lex_state = 68}, - [2652] = {.lex_state = 5}, - [2653] = {.lex_state = 68}, - [2654] = {.lex_state = 68}, - [2655] = {.lex_state = 68}, - [2656] = {.lex_state = 5}, - [2657] = {.lex_state = 5}, - [2658] = {.lex_state = 5}, - [2659] = {.lex_state = 5}, - [2660] = {.lex_state = 5}, - [2661] = {.lex_state = 5}, - [2662] = {.lex_state = 5}, - [2663] = {.lex_state = 68}, - [2664] = {.lex_state = 68}, - [2665] = {.lex_state = 68}, - [2666] = {.lex_state = 5}, - [2667] = {.lex_state = 68}, - [2668] = {.lex_state = 68}, - [2669] = {.lex_state = 68}, - [2670] = {.lex_state = 5}, - [2671] = {.lex_state = 68}, - [2672] = {.lex_state = 68}, - [2673] = {.lex_state = 68}, - [2674] = {.lex_state = 68}, - [2675] = {.lex_state = 5}, - [2676] = {.lex_state = 68}, - [2677] = {.lex_state = 68}, - [2678] = {.lex_state = 5}, - [2679] = {.lex_state = 68}, - [2680] = {.lex_state = 68}, - [2681] = {.lex_state = 68}, - [2682] = {.lex_state = 68}, - [2683] = {.lex_state = 5}, - [2684] = {.lex_state = 5}, - [2685] = {.lex_state = 5}, - [2686] = {.lex_state = 5}, - [2687] = {.lex_state = 68}, - [2688] = {.lex_state = 68}, - [2689] = {.lex_state = 68}, - [2690] = {.lex_state = 5}, - [2691] = {.lex_state = 5}, - [2692] = {.lex_state = 68}, - [2693] = {.lex_state = 68}, - [2694] = {.lex_state = 5}, - [2695] = {.lex_state = 68}, - [2696] = {.lex_state = 68}, - [2697] = {.lex_state = 5}, - [2698] = {.lex_state = 68}, - [2699] = {.lex_state = 5}, - [2700] = {.lex_state = 68}, - [2701] = {.lex_state = 68}, - [2702] = {.lex_state = 5}, - [2703] = {.lex_state = 68}, - [2704] = {.lex_state = 68}, - [2705] = {.lex_state = 68}, - [2706] = {.lex_state = 68}, - [2707] = {.lex_state = 5}, - [2708] = {.lex_state = 5}, - [2709] = {.lex_state = 5}, - [2710] = {.lex_state = 68}, - [2711] = {.lex_state = 68}, - [2712] = {.lex_state = 5}, - [2713] = {.lex_state = 5}, - [2714] = {.lex_state = 68}, - [2715] = {.lex_state = 68}, - [2716] = {.lex_state = 5}, - [2717] = {.lex_state = 68}, - [2718] = {.lex_state = 5}, - [2719] = {.lex_state = 5}, - [2720] = {.lex_state = 68}, - [2721] = {.lex_state = 68}, - [2722] = {.lex_state = 68}, - [2723] = {.lex_state = 68}, - [2724] = {.lex_state = 5}, - [2725] = {.lex_state = 68}, - [2726] = {.lex_state = 68}, - [2727] = {.lex_state = 5}, - [2728] = {.lex_state = 68}, - [2729] = {.lex_state = 68}, - [2730] = {.lex_state = 68}, - [2731] = {.lex_state = 5}, - [2732] = {.lex_state = 5}, - [2733] = {.lex_state = 68}, - [2734] = {.lex_state = 5}, - [2735] = {.lex_state = 68}, - [2736] = {.lex_state = 68}, - [2737] = {.lex_state = 5}, - [2738] = {.lex_state = 5}, - [2739] = {.lex_state = 5}, - [2740] = {.lex_state = 5}, - [2741] = {.lex_state = 5}, - [2742] = {.lex_state = 68}, - [2743] = {.lex_state = 5}, - [2744] = {.lex_state = 68}, - [2745] = {.lex_state = 5}, - [2746] = {.lex_state = 5}, - [2747] = {.lex_state = 68}, - [2748] = {.lex_state = 68}, - [2749] = {.lex_state = 68}, - [2750] = {.lex_state = 5}, - [2751] = {.lex_state = 5}, - [2752] = {.lex_state = 5}, - [2753] = {.lex_state = 5}, - [2754] = {.lex_state = 68}, - [2755] = {.lex_state = 5}, - [2756] = {.lex_state = 68}, - [2757] = {.lex_state = 5}, - [2758] = {.lex_state = 5}, - [2759] = {.lex_state = 68}, - [2760] = {.lex_state = 5}, - [2761] = {.lex_state = 5}, - [2762] = {.lex_state = 68}, - [2763] = {.lex_state = 68}, - [2764] = {.lex_state = 5}, - [2765] = {.lex_state = 5}, - [2766] = {.lex_state = 5}, - [2767] = {.lex_state = 5}, - [2768] = {.lex_state = 68}, - [2769] = {.lex_state = 68}, - [2770] = {.lex_state = 68}, - [2771] = {.lex_state = 5}, - [2772] = {.lex_state = 5}, - [2773] = {.lex_state = 68}, - [2774] = {.lex_state = 5}, - [2775] = {.lex_state = 5}, - [2776] = {.lex_state = 5}, - [2777] = {.lex_state = 5}, - [2778] = {.lex_state = 68}, - [2779] = {.lex_state = 5}, - [2780] = {.lex_state = 5}, - [2781] = {.lex_state = 68}, - [2782] = {.lex_state = 5}, - [2783] = {.lex_state = 5}, - [2784] = {.lex_state = 68}, - [2785] = {.lex_state = 5}, - [2786] = {.lex_state = 5}, - [2787] = {.lex_state = 68}, - [2788] = {.lex_state = 5}, - [2789] = {.lex_state = 68}, - [2790] = {.lex_state = 5}, - [2791] = {.lex_state = 5}, - [2792] = {.lex_state = 5}, - [2793] = {.lex_state = 68}, - [2794] = {.lex_state = 68}, - [2795] = {.lex_state = 68}, - [2796] = {.lex_state = 5}, - [2797] = {.lex_state = 68}, - [2798] = {.lex_state = 5}, - [2799] = {.lex_state = 5}, - [2800] = {.lex_state = 5}, - [2801] = {.lex_state = 68}, - [2802] = {.lex_state = 5}, - [2803] = {.lex_state = 68}, - [2804] = {.lex_state = 5}, - [2805] = {.lex_state = 68}, - [2806] = {.lex_state = 68}, - [2807] = {.lex_state = 5}, - [2808] = {.lex_state = 68}, - [2809] = {.lex_state = 5}, - [2810] = {.lex_state = 68}, - [2811] = {.lex_state = 68}, - [2812] = {.lex_state = 5}, - [2813] = {.lex_state = 68}, - [2814] = {.lex_state = 5}, - [2815] = {.lex_state = 5}, - [2816] = {.lex_state = 68}, - [2817] = {.lex_state = 68}, - [2818] = {.lex_state = 68}, - [2819] = {.lex_state = 5}, - [2820] = {.lex_state = 68}, - [2821] = {.lex_state = 68}, - [2822] = {.lex_state = 68}, - [2823] = {.lex_state = 68}, - [2824] = {.lex_state = 5}, - [2825] = {.lex_state = 5}, - [2826] = {.lex_state = 68}, - [2827] = {.lex_state = 68}, - [2828] = {.lex_state = 68}, - [2829] = {.lex_state = 5}, - [2830] = {.lex_state = 5}, - [2831] = {.lex_state = 68}, - [2832] = {.lex_state = 68}, - [2833] = {.lex_state = 68}, - [2834] = {.lex_state = 68}, - [2835] = {.lex_state = 68}, - [2836] = {.lex_state = 5}, - [2837] = {.lex_state = 5}, - [2838] = {.lex_state = 68}, - [2839] = {.lex_state = 68}, - [2840] = {.lex_state = 68}, - [2841] = {.lex_state = 5}, - [2842] = {.lex_state = 5}, - [2843] = {.lex_state = 68}, - [2844] = {.lex_state = 68}, - [2845] = {.lex_state = 68}, - [2846] = {.lex_state = 5}, - [2847] = {.lex_state = 5}, - [2848] = {.lex_state = 5}, - [2849] = {.lex_state = 68}, - [2850] = {.lex_state = 68}, - [2851] = {.lex_state = 5}, - [2852] = {.lex_state = 68}, - [2853] = {.lex_state = 68}, - [2854] = {.lex_state = 5}, - [2855] = {.lex_state = 68}, - [2856] = {.lex_state = 68}, - [2857] = {.lex_state = 5}, - [2858] = {.lex_state = 68}, - [2859] = {.lex_state = 5}, - [2860] = {.lex_state = 5}, - [2861] = {.lex_state = 68}, - [2862] = {.lex_state = 5}, - [2863] = {.lex_state = 68}, - [2864] = {.lex_state = 5}, - [2865] = {.lex_state = 68}, - [2866] = {.lex_state = 5}, - [2867] = {.lex_state = 68}, - [2868] = {.lex_state = 5}, - [2869] = {.lex_state = 5}, - [2870] = {.lex_state = 68}, - [2871] = {.lex_state = 5}, - [2872] = {.lex_state = 5}, - [2873] = {.lex_state = 68}, - [2874] = {.lex_state = 5}, - [2875] = {.lex_state = 68}, - [2876] = {.lex_state = 5}, - [2877] = {.lex_state = 5}, - [2878] = {.lex_state = 68}, - [2879] = {.lex_state = 5}, - [2880] = {.lex_state = 5}, - [2881] = {.lex_state = 5}, - [2882] = {.lex_state = 5}, - [2883] = {.lex_state = 68}, - [2884] = {.lex_state = 68}, - [2885] = {.lex_state = 5}, - [2886] = {.lex_state = 68}, - [2887] = {.lex_state = 5}, - [2888] = {.lex_state = 5}, - [2889] = {.lex_state = 5}, - [2890] = {.lex_state = 68}, - [2891] = {.lex_state = 5}, - [2892] = {.lex_state = 5}, - [2893] = {.lex_state = 68}, - [2894] = {.lex_state = 68}, - [2895] = {.lex_state = 5}, - [2896] = {.lex_state = 68}, - [2897] = {.lex_state = 5}, - [2898] = {.lex_state = 5}, - [2899] = {.lex_state = 68}, - [2900] = {.lex_state = 5}, - [2901] = {.lex_state = 68}, - [2902] = {.lex_state = 5}, - [2903] = {.lex_state = 5}, - [2904] = {.lex_state = 5}, - [2905] = {.lex_state = 5}, - [2906] = {.lex_state = 68}, - [2907] = {.lex_state = 68}, - [2908] = {.lex_state = 5}, - [2909] = {.lex_state = 68}, - [2910] = {.lex_state = 68}, - [2911] = {.lex_state = 68}, - [2912] = {.lex_state = 5}, - [2913] = {.lex_state = 5}, - [2914] = {.lex_state = 5}, - [2915] = {.lex_state = 5}, - [2916] = {.lex_state = 68}, - [2917] = {.lex_state = 5}, - [2918] = {.lex_state = 68}, - [2919] = {.lex_state = 5}, - [2920] = {.lex_state = 68}, - [2921] = {.lex_state = 5}, - [2922] = {.lex_state = 5}, - [2923] = {.lex_state = 5}, - [2924] = {.lex_state = 5}, - [2925] = {.lex_state = 5}, - [2926] = {.lex_state = 5}, - [2927] = {.lex_state = 5}, - [2928] = {.lex_state = 68}, - [2929] = {.lex_state = 5}, - [2930] = {.lex_state = 5}, - [2931] = {.lex_state = 5}, - [2932] = {.lex_state = 5}, - [2933] = {.lex_state = 68}, - [2934] = {.lex_state = 5}, - [2935] = {.lex_state = 5}, - [2936] = {.lex_state = 5}, - [2937] = {.lex_state = 5}, - [2938] = {.lex_state = 68}, - [2939] = {.lex_state = 5}, - [2940] = {.lex_state = 5}, - [2941] = {.lex_state = 68}, - [2942] = {.lex_state = 5}, - [2943] = {.lex_state = 5}, - [2944] = {.lex_state = 5}, - [2945] = {.lex_state = 5}, - [2946] = {.lex_state = 5}, - [2947] = {.lex_state = 5}, - [2948] = {.lex_state = 5}, - [2949] = {.lex_state = 5}, - [2950] = {.lex_state = 68}, - [2951] = {.lex_state = 68}, - [2952] = {.lex_state = 5}, - [2953] = {.lex_state = 68}, - [2954] = {.lex_state = 5}, - [2955] = {.lex_state = 5}, - [2956] = {.lex_state = 5}, - [2957] = {.lex_state = 5}, - [2958] = {.lex_state = 5}, - [2959] = {.lex_state = 5}, - [2960] = {.lex_state = 68}, - [2961] = {.lex_state = 5}, - [2962] = {.lex_state = 5}, - [2963] = {.lex_state = 5}, - [2964] = {.lex_state = 5}, - [2965] = {.lex_state = 5}, - [2966] = {.lex_state = 5}, - [2967] = {.lex_state = 68}, - [2968] = {.lex_state = 5}, - [2969] = {.lex_state = 68}, - [2970] = {.lex_state = 68}, - [2971] = {.lex_state = 68}, - [2972] = {.lex_state = 5}, - [2973] = {.lex_state = 68}, - [2974] = {.lex_state = 68}, - [2975] = {.lex_state = 5}, - [2976] = {.lex_state = 5}, - [2977] = {.lex_state = 68}, - [2978] = {.lex_state = 68}, - [2979] = {.lex_state = 68}, - [2980] = {.lex_state = 5}, - [2981] = {.lex_state = 68}, - [2982] = {.lex_state = 68}, - [2983] = {.lex_state = 68}, - [2984] = {.lex_state = 68}, - [2985] = {.lex_state = 68}, - [2986] = {.lex_state = 5}, - [2987] = {.lex_state = 5}, - [2988] = {.lex_state = 5}, - [2989] = {.lex_state = 68}, - [2990] = {.lex_state = 5}, - [2991] = {.lex_state = 68}, - [2992] = {.lex_state = 5}, - [2993] = {.lex_state = 5}, - [2994] = {.lex_state = 5}, - [2995] = {.lex_state = 5}, - [2996] = {.lex_state = 5}, - [2997] = {.lex_state = 68}, - [2998] = {.lex_state = 5}, - [2999] = {.lex_state = 68}, - [3000] = {.lex_state = 5}, - [3001] = {.lex_state = 68}, - [3002] = {.lex_state = 68}, - [3003] = {.lex_state = 68}, - [3004] = {.lex_state = 68}, - [3005] = {.lex_state = 5}, - [3006] = {.lex_state = 5}, - [3007] = {.lex_state = 68}, - [3008] = {.lex_state = 68}, - [3009] = {.lex_state = 5}, - [3010] = {.lex_state = 5}, - [3011] = {.lex_state = 5}, - [3012] = {.lex_state = 5}, - [3013] = {.lex_state = 5}, - [3014] = {.lex_state = 68}, - [3015] = {.lex_state = 68}, - [3016] = {.lex_state = 68}, - [3017] = {.lex_state = 68}, - [3018] = {.lex_state = 5}, - [3019] = {.lex_state = 5}, - [3020] = {.lex_state = 5}, - [3021] = {.lex_state = 68}, - [3022] = {.lex_state = 68}, - [3023] = {.lex_state = 68}, - [3024] = {.lex_state = 68}, - [3025] = {.lex_state = 68}, - [3026] = {.lex_state = 68}, - [3027] = {.lex_state = 5}, - [3028] = {.lex_state = 68}, - [3029] = {.lex_state = 5}, - [3030] = {.lex_state = 68}, - [3031] = {.lex_state = 68}, - [3032] = {.lex_state = 68}, - [3033] = {.lex_state = 68}, - [3034] = {.lex_state = 68}, - [3035] = {.lex_state = 68}, - [3036] = {.lex_state = 68}, - [3037] = {.lex_state = 68}, - [3038] = {.lex_state = 68}, - [3039] = {.lex_state = 5}, - [3040] = {.lex_state = 68}, - [3041] = {.lex_state = 68}, - [3042] = {.lex_state = 104}, - [3043] = {.lex_state = 68}, - [3044] = {.lex_state = 68}, - [3045] = {.lex_state = 68}, - [3046] = {.lex_state = 68}, - [3047] = {.lex_state = 68}, - [3048] = {.lex_state = 68}, - [3049] = {.lex_state = 68}, - [3050] = {.lex_state = 68}, - [3051] = {.lex_state = 68}, - [3052] = {.lex_state = 68}, - [3053] = {.lex_state = 68}, - [3054] = {.lex_state = 68}, - [3055] = {.lex_state = 68}, - [3056] = {.lex_state = 68}, - [3057] = {.lex_state = 5}, - [3058] = {.lex_state = 5}, - [3059] = {.lex_state = 68}, - [3060] = {.lex_state = 5}, - [3061] = {.lex_state = 5}, - [3062] = {.lex_state = 5}, - [3063] = {.lex_state = 5}, - [3064] = {.lex_state = 5}, - [3065] = {.lex_state = 68}, - [3066] = {.lex_state = 5}, - [3067] = {.lex_state = 68}, - [3068] = {.lex_state = 68}, - [3069] = {.lex_state = 5}, - [3070] = {.lex_state = 5}, - [3071] = {.lex_state = 5}, - [3072] = {.lex_state = 5}, - [3073] = {.lex_state = 5}, - [3074] = {.lex_state = 68}, - [3075] = {.lex_state = 5}, - [3076] = {.lex_state = 68}, - [3077] = {.lex_state = 5}, - [3078] = {.lex_state = 68}, - [3079] = {.lex_state = 5}, - [3080] = {.lex_state = 68}, - [3081] = {.lex_state = 68}, - [3082] = {.lex_state = 68}, - [3083] = {.lex_state = 5}, - [3084] = {.lex_state = 68}, - [3085] = {.lex_state = 68}, - [3086] = {.lex_state = 5}, - [3087] = {.lex_state = 68}, - [3088] = {.lex_state = 5}, - [3089] = {.lex_state = 5}, - [3090] = {.lex_state = 68}, - [3091] = {.lex_state = 5}, - [3092] = {.lex_state = 5}, - [3093] = {.lex_state = 68}, - [3094] = {.lex_state = 68}, - [3095] = {.lex_state = 5}, - [3096] = {.lex_state = 68}, - [3097] = {.lex_state = 5}, - [3098] = {.lex_state = 5}, - [3099] = {.lex_state = 5}, - [3100] = {.lex_state = 5}, - [3101] = {.lex_state = 5}, - [3102] = {.lex_state = 5}, - [3103] = {.lex_state = 68}, - [3104] = {.lex_state = 68}, - [3105] = {.lex_state = 5}, - [3106] = {.lex_state = 5}, - [3107] = {.lex_state = 5}, - [3108] = {.lex_state = 68}, - [3109] = {.lex_state = 68}, - [3110] = {.lex_state = 68}, - [3111] = {.lex_state = 68}, - [3112] = {.lex_state = 68}, - [3113] = {.lex_state = 5}, - [3114] = {.lex_state = 5}, - [3115] = {.lex_state = 68}, - [3116] = {.lex_state = 68}, - [3117] = {.lex_state = 5}, - [3118] = {.lex_state = 68}, - [3119] = {.lex_state = 5}, - [3120] = {.lex_state = 5}, - [3121] = {.lex_state = 5}, - [3122] = {.lex_state = 5}, - [3123] = {.lex_state = 5}, - [3124] = {.lex_state = 5}, - [3125] = {.lex_state = 5}, - [3126] = {.lex_state = 5}, - [3127] = {.lex_state = 5}, - [3128] = {.lex_state = 68}, - [3129] = {.lex_state = 5}, - [3130] = {.lex_state = 5}, - [3131] = {.lex_state = 5}, - [3132] = {.lex_state = 5}, - [3133] = {.lex_state = 68}, - [3134] = {.lex_state = 5}, - [3135] = {.lex_state = 5}, - [3136] = {.lex_state = 5}, - [3137] = {.lex_state = 5}, - [3138] = {.lex_state = 5}, - [3139] = {.lex_state = 5}, - [3140] = {.lex_state = 5}, - [3141] = {.lex_state = 5}, - [3142] = {.lex_state = 5}, - [3143] = {.lex_state = 5}, - [3144] = {.lex_state = 5}, - [3145] = {.lex_state = 5}, - [3146] = {.lex_state = 5}, - [3147] = {.lex_state = 5}, - [3148] = {.lex_state = 5}, - [3149] = {.lex_state = 5}, - [3150] = {.lex_state = 5}, - [3151] = {.lex_state = 5}, - [3152] = {.lex_state = 5}, - [3153] = {.lex_state = 5}, - [3154] = {.lex_state = 5}, - [3155] = {.lex_state = 5}, - [3156] = {.lex_state = 5}, - [3157] = {.lex_state = 5}, - [3158] = {.lex_state = 5}, - [3159] = {.lex_state = 5}, - [3160] = {.lex_state = 104}, - [3161] = {.lex_state = 68}, - [3162] = {.lex_state = 68}, - [3163] = {.lex_state = 5}, - [3164] = {.lex_state = 5}, - [3165] = {(TSStateId)(-1)}, - [3166] = {(TSStateId)(-1)}, + [2295] = {.lex_state = 1}, + [2296] = {.lex_state = 42}, + [2297] = {.lex_state = 42}, + [2298] = {.lex_state = 42}, + [2299] = {.lex_state = 42}, + [2300] = {.lex_state = 1}, + [2301] = {.lex_state = 1}, + [2302] = {.lex_state = 42}, + [2303] = {.lex_state = 1}, + [2304] = {.lex_state = 42}, + [2305] = {.lex_state = 42}, + [2306] = {.lex_state = 42}, + [2307] = {.lex_state = 1}, + [2308] = {.lex_state = 42}, + [2309] = {.lex_state = 42}, + [2310] = {.lex_state = 1}, + [2311] = {.lex_state = 1}, + [2312] = {.lex_state = 42}, + [2313] = {.lex_state = 42}, + [2314] = {.lex_state = 42}, + [2315] = {.lex_state = 42}, + [2316] = {.lex_state = 42}, + [2317] = {.lex_state = 1}, + [2318] = {.lex_state = 42}, + [2319] = {.lex_state = 42}, + [2320] = {.lex_state = 42}, + [2321] = {.lex_state = 42}, + [2322] = {.lex_state = 1}, + [2323] = {.lex_state = 42}, + [2324] = {.lex_state = 42}, + [2325] = {.lex_state = 1}, + [2326] = {.lex_state = 1}, + [2327] = {.lex_state = 42}, + [2328] = {.lex_state = 1}, + [2329] = {.lex_state = 1}, + [2330] = {.lex_state = 1}, + [2331] = {.lex_state = 42}, + [2332] = {.lex_state = 1}, + [2333] = {.lex_state = 1}, + [2334] = {.lex_state = 42}, + [2335] = {.lex_state = 42}, + [2336] = {.lex_state = 42}, + [2337] = {.lex_state = 42}, + [2338] = {.lex_state = 1}, + [2339] = {.lex_state = 42}, + [2340] = {.lex_state = 42}, + [2341] = {.lex_state = 42}, + [2342] = {.lex_state = 1}, + [2343] = {.lex_state = 42}, + [2344] = {.lex_state = 42}, + [2345] = {.lex_state = 42}, + [2346] = {.lex_state = 42}, + [2347] = {.lex_state = 42}, + [2348] = {.lex_state = 42}, + [2349] = {.lex_state = 1}, + [2350] = {.lex_state = 42}, + [2351] = {.lex_state = 42}, + [2352] = {.lex_state = 1}, + [2353] = {.lex_state = 42}, + [2354] = {.lex_state = 42}, + [2355] = {.lex_state = 1}, + [2356] = {.lex_state = 42}, + [2357] = {.lex_state = 42}, + [2358] = {.lex_state = 42}, + [2359] = {.lex_state = 42}, + [2360] = {.lex_state = 42}, + [2361] = {.lex_state = 42}, + [2362] = {.lex_state = 42}, + [2363] = {.lex_state = 42}, + [2364] = {.lex_state = 42}, + [2365] = {.lex_state = 1}, + [2366] = {.lex_state = 42}, + [2367] = {.lex_state = 1}, + [2368] = {.lex_state = 42}, + [2369] = {.lex_state = 42}, + [2370] = {.lex_state = 1}, + [2371] = {.lex_state = 1}, + [2372] = {.lex_state = 42}, + [2373] = {.lex_state = 1}, + [2374] = {.lex_state = 1}, + [2375] = {.lex_state = 1}, + [2376] = {.lex_state = 1}, + [2377] = {.lex_state = 42}, + [2378] = {.lex_state = 42}, + [2379] = {.lex_state = 42}, + [2380] = {.lex_state = 42}, + [2381] = {.lex_state = 42}, + [2382] = {.lex_state = 42}, + [2383] = {.lex_state = 42}, + [2384] = {.lex_state = 42}, + [2385] = {.lex_state = 42}, + [2386] = {.lex_state = 42}, + [2387] = {.lex_state = 42}, + [2388] = {.lex_state = 42}, + [2389] = {.lex_state = 42}, + [2390] = {.lex_state = 1}, + [2391] = {.lex_state = 42}, + [2392] = {.lex_state = 1}, + [2393] = {.lex_state = 1}, + [2394] = {.lex_state = 42}, + [2395] = {.lex_state = 1}, + [2396] = {.lex_state = 42}, + [2397] = {.lex_state = 42}, + [2398] = {.lex_state = 42}, + [2399] = {.lex_state = 1}, + [2400] = {.lex_state = 1}, + [2401] = {.lex_state = 42}, + [2402] = {.lex_state = 42}, + [2403] = {.lex_state = 42}, + [2404] = {.lex_state = 1}, + [2405] = {.lex_state = 1}, + [2406] = {.lex_state = 1}, + [2407] = {.lex_state = 1}, + [2408] = {.lex_state = 42}, + [2409] = {.lex_state = 42}, + [2410] = {.lex_state = 42}, + [2411] = {.lex_state = 1}, + [2412] = {.lex_state = 42}, + [2413] = {.lex_state = 42}, + [2414] = {.lex_state = 1}, + [2415] = {.lex_state = 1}, + [2416] = {.lex_state = 42}, + [2417] = {.lex_state = 42}, + [2418] = {.lex_state = 1}, + [2419] = {.lex_state = 42}, + [2420] = {.lex_state = 1}, + [2421] = {.lex_state = 1}, + [2422] = {.lex_state = 42}, + [2423] = {.lex_state = 42}, + [2424] = {.lex_state = 42}, + [2425] = {.lex_state = 42}, + [2426] = {.lex_state = 42}, + [2427] = {.lex_state = 1}, + [2428] = {.lex_state = 42}, + [2429] = {.lex_state = 1}, + [2430] = {.lex_state = 42}, + [2431] = {.lex_state = 42}, + [2432] = {.lex_state = 42}, + [2433] = {.lex_state = 42}, + [2434] = {.lex_state = 42}, + [2435] = {.lex_state = 42}, + [2436] = {.lex_state = 42}, + [2437] = {.lex_state = 42}, + [2438] = {.lex_state = 42}, + [2439] = {.lex_state = 42}, + [2440] = {.lex_state = 42}, + [2441] = {.lex_state = 42}, + [2442] = {.lex_state = 42}, + [2443] = {.lex_state = 42}, + [2444] = {.lex_state = 42}, + [2445] = {.lex_state = 42}, + [2446] = {.lex_state = 42}, + [2447] = {.lex_state = 42}, + [2448] = {.lex_state = 42}, + [2449] = {.lex_state = 42}, + [2450] = {.lex_state = 42}, + [2451] = {.lex_state = 42}, + [2452] = {.lex_state = 42}, + [2453] = {.lex_state = 42}, + [2454] = {.lex_state = 42}, + [2455] = {.lex_state = 42}, + [2456] = {.lex_state = 42}, + [2457] = {.lex_state = 42}, + [2458] = {.lex_state = 42}, + [2459] = {.lex_state = 42}, + [2460] = {.lex_state = 42}, + [2461] = {.lex_state = 42}, + [2462] = {.lex_state = 42}, + [2463] = {.lex_state = 42}, + [2464] = {.lex_state = 42}, + [2465] = {.lex_state = 42}, + [2466] = {.lex_state = 42}, + [2467] = {.lex_state = 42}, + [2468] = {.lex_state = 42}, + [2469] = {.lex_state = 42}, + [2470] = {.lex_state = 42}, + [2471] = {.lex_state = 42}, + [2472] = {.lex_state = 42}, + [2473] = {.lex_state = 42}, + [2474] = {.lex_state = 42}, + [2475] = {.lex_state = 42}, + [2476] = {.lex_state = 42}, + [2477] = {.lex_state = 42}, + [2478] = {.lex_state = 42}, + [2479] = {.lex_state = 42}, + [2480] = {.lex_state = 42}, + [2481] = {.lex_state = 42}, + [2482] = {.lex_state = 42}, + [2483] = {.lex_state = 42}, + [2484] = {.lex_state = 42}, + [2485] = {.lex_state = 42}, + [2486] = {.lex_state = 42}, + [2487] = {.lex_state = 42}, + [2488] = {.lex_state = 1}, + [2489] = {.lex_state = 42}, + [2490] = {.lex_state = 42}, + [2491] = {.lex_state = 42}, + [2492] = {.lex_state = 42}, + [2493] = {.lex_state = 42}, + [2494] = {.lex_state = 42}, + [2495] = {.lex_state = 42}, + [2496] = {.lex_state = 42}, + [2497] = {.lex_state = 42}, + [2498] = {.lex_state = 42}, + [2499] = {.lex_state = 42}, + [2500] = {.lex_state = 42}, + [2501] = {.lex_state = 42}, + [2502] = {.lex_state = 42}, + [2503] = {.lex_state = 42}, + [2504] = {.lex_state = 42}, + [2505] = {.lex_state = 42}, + [2506] = {.lex_state = 42}, + [2507] = {.lex_state = 42}, + [2508] = {.lex_state = 42}, + [2509] = {.lex_state = 42}, + [2510] = {.lex_state = 42}, + [2511] = {.lex_state = 42}, + [2512] = {.lex_state = 42}, + [2513] = {.lex_state = 42}, + [2514] = {.lex_state = 42}, + [2515] = {.lex_state = 42}, + [2516] = {.lex_state = 42}, + [2517] = {.lex_state = 42}, + [2518] = {.lex_state = 42}, + [2519] = {.lex_state = 42}, + [2520] = {.lex_state = 42}, + [2521] = {.lex_state = 42}, + [2522] = {.lex_state = 42}, + [2523] = {.lex_state = 42}, + [2524] = {.lex_state = 42}, + [2525] = {.lex_state = 42}, + [2526] = {.lex_state = 42}, + [2527] = {.lex_state = 42}, + [2528] = {.lex_state = 42}, + [2529] = {.lex_state = 42}, + [2530] = {.lex_state = 42}, + [2531] = {.lex_state = 42}, + [2532] = {.lex_state = 42}, + [2533] = {.lex_state = 42}, + [2534] = {.lex_state = 42}, + [2535] = {.lex_state = 42}, + [2536] = {.lex_state = 42}, + [2537] = {.lex_state = 42}, + [2538] = {.lex_state = 42}, + [2539] = {.lex_state = 42}, + [2540] = {.lex_state = 42}, + [2541] = {.lex_state = 42}, + [2542] = {.lex_state = 42}, + [2543] = {.lex_state = 42}, + [2544] = {.lex_state = 42}, + [2545] = {.lex_state = 42}, + [2546] = {.lex_state = 42}, + [2547] = {.lex_state = 42}, + [2548] = {.lex_state = 42}, + [2549] = {.lex_state = 42}, + [2550] = {.lex_state = 42}, + [2551] = {.lex_state = 42}, + [2552] = {.lex_state = 42}, + [2553] = {.lex_state = 42}, + [2554] = {.lex_state = 42}, + [2555] = {.lex_state = 42}, + [2556] = {.lex_state = 42}, + [2557] = {.lex_state = 42}, + [2558] = {.lex_state = 42}, + [2559] = {.lex_state = 42}, + [2560] = {.lex_state = 42}, + [2561] = {.lex_state = 42}, + [2562] = {.lex_state = 42}, + [2563] = {.lex_state = 42}, + [2564] = {.lex_state = 42}, + [2565] = {.lex_state = 42}, + [2566] = {.lex_state = 42}, + [2567] = {.lex_state = 42}, + [2568] = {.lex_state = 42}, + [2569] = {.lex_state = 42}, + [2570] = {.lex_state = 42}, + [2571] = {.lex_state = 42}, + [2572] = {.lex_state = 42}, + [2573] = {.lex_state = 42}, + [2574] = {.lex_state = 42}, + [2575] = {.lex_state = 42}, + [2576] = {.lex_state = 42}, + [2577] = {.lex_state = 42}, + [2578] = {.lex_state = 42}, + [2579] = {.lex_state = 42}, + [2580] = {.lex_state = 42}, + [2581] = {.lex_state = 42}, + [2582] = {.lex_state = 42}, + [2583] = {.lex_state = 42}, + [2584] = {.lex_state = 42}, + [2585] = {.lex_state = 42}, + [2586] = {.lex_state = 42}, + [2587] = {.lex_state = 42}, + [2588] = {.lex_state = 42}, + [2589] = {.lex_state = 42}, + [2590] = {.lex_state = 42}, + [2591] = {.lex_state = 42}, + [2592] = {.lex_state = 42}, + [2593] = {.lex_state = 42}, + [2594] = {.lex_state = 42}, + [2595] = {.lex_state = 42}, + [2596] = {.lex_state = 42}, + [2597] = {.lex_state = 42}, + [2598] = {.lex_state = 42}, + [2599] = {.lex_state = 42}, + [2600] = {.lex_state = 42}, + [2601] = {.lex_state = 42}, + [2602] = {.lex_state = 42}, + [2603] = {.lex_state = 42}, + [2604] = {.lex_state = 42}, + [2605] = {.lex_state = 42}, + [2606] = {.lex_state = 42}, + [2607] = {.lex_state = 42}, + [2608] = {.lex_state = 42}, + [2609] = {.lex_state = 42}, + [2610] = {.lex_state = 42}, + [2611] = {.lex_state = 1}, + [2612] = {.lex_state = 42}, + [2613] = {.lex_state = 42}, + [2614] = {.lex_state = 42}, + [2615] = {.lex_state = 1}, + [2616] = {.lex_state = 42}, + [2617] = {.lex_state = 1}, + [2618] = {.lex_state = 1}, + [2619] = {.lex_state = 1}, + [2620] = {.lex_state = 42}, + [2621] = {.lex_state = 42}, + [2622] = {.lex_state = 42}, + [2623] = {.lex_state = 1}, + [2624] = {.lex_state = 42}, + [2625] = {.lex_state = 1}, + [2626] = {.lex_state = 1}, + [2627] = {.lex_state = 42}, + [2628] = {.lex_state = 1}, + [2629] = {.lex_state = 1}, + [2630] = {.lex_state = 42}, + [2631] = {.lex_state = 1}, + [2632] = {.lex_state = 1}, + [2633] = {.lex_state = 42}, + [2634] = {.lex_state = 42}, + [2635] = {.lex_state = 42}, + [2636] = {.lex_state = 42}, + [2637] = {.lex_state = 42}, + [2638] = {.lex_state = 1}, + [2639] = {.lex_state = 1}, + [2640] = {.lex_state = 42}, + [2641] = {.lex_state = 42}, + [2642] = {.lex_state = 1}, + [2643] = {.lex_state = 42}, + [2644] = {.lex_state = 1}, + [2645] = {.lex_state = 1}, + [2646] = {.lex_state = 1}, + [2647] = {.lex_state = 1}, + [2648] = {.lex_state = 42}, + [2649] = {.lex_state = 1}, + [2650] = {.lex_state = 1}, + [2651] = {.lex_state = 1}, + [2652] = {.lex_state = 1}, + [2653] = {.lex_state = 42}, + [2654] = {.lex_state = 42}, + [2655] = {.lex_state = 42}, + [2656] = {.lex_state = 1}, + [2657] = {.lex_state = 42}, + [2658] = {.lex_state = 1}, + [2659] = {.lex_state = 1}, + [2660] = {.lex_state = 42}, + [2661] = {.lex_state = 42}, + [2662] = {.lex_state = 42}, + [2663] = {.lex_state = 42}, + [2664] = {.lex_state = 42}, + [2665] = {.lex_state = 1}, + [2666] = {.lex_state = 42}, + [2667] = {.lex_state = 42}, + [2668] = {.lex_state = 42}, + [2669] = {.lex_state = 1}, + [2670] = {.lex_state = 42}, + [2671] = {.lex_state = 42}, + [2672] = {.lex_state = 42}, + [2673] = {.lex_state = 42}, + [2674] = {.lex_state = 42}, + [2675] = {.lex_state = 1}, + [2676] = {.lex_state = 42}, + [2677] = {.lex_state = 1}, + [2678] = {.lex_state = 42}, + [2679] = {.lex_state = 42}, + [2680] = {.lex_state = 1}, + [2681] = {.lex_state = 42}, + [2682] = {.lex_state = 42}, + [2683] = {.lex_state = 1}, + [2684] = {.lex_state = 1}, + [2685] = {.lex_state = 42}, + [2686] = {.lex_state = 42}, + [2687] = {.lex_state = 42}, + [2688] = {.lex_state = 42}, + [2689] = {.lex_state = 1}, + [2690] = {.lex_state = 42}, + [2691] = {.lex_state = 42}, + [2692] = {.lex_state = 1}, + [2693] = {.lex_state = 1}, + [2694] = {.lex_state = 1}, + [2695] = {.lex_state = 1}, + [2696] = {.lex_state = 1}, + [2697] = {.lex_state = 42}, + [2698] = {.lex_state = 42}, + [2699] = {.lex_state = 1}, + [2700] = {.lex_state = 1}, + [2701] = {.lex_state = 1}, + [2702] = {.lex_state = 42}, + [2703] = {.lex_state = 1}, + [2704] = {.lex_state = 42}, + [2705] = {.lex_state = 1}, + [2706] = {.lex_state = 1}, + [2707] = {.lex_state = 42}, + [2708] = {.lex_state = 42}, + [2709] = {.lex_state = 42}, + [2710] = {.lex_state = 1}, + [2711] = {.lex_state = 1}, + [2712] = {.lex_state = 1}, + [2713] = {.lex_state = 42}, + [2714] = {.lex_state = 1}, + [2715] = {.lex_state = 1}, + [2716] = {.lex_state = 1}, + [2717] = {.lex_state = 1}, + [2718] = {.lex_state = 42}, + [2719] = {.lex_state = 1}, + [2720] = {.lex_state = 42}, + [2721] = {.lex_state = 1}, + [2722] = {.lex_state = 1}, + [2723] = {.lex_state = 1}, + [2724] = {.lex_state = 1}, + [2725] = {.lex_state = 1}, + [2726] = {.lex_state = 1}, + [2727] = {.lex_state = 1}, + [2728] = {.lex_state = 1}, + [2729] = {.lex_state = 1}, + [2730] = {.lex_state = 1}, + [2731] = {.lex_state = 1}, + [2732] = {.lex_state = 42}, + [2733] = {.lex_state = 1}, + [2734] = {.lex_state = 42}, + [2735] = {.lex_state = 1}, + [2736] = {.lex_state = 1}, + [2737] = {.lex_state = 1}, + [2738] = {.lex_state = 1}, + [2739] = {.lex_state = 1}, + [2740] = {.lex_state = 1}, + [2741] = {.lex_state = 42}, + [2742] = {.lex_state = 1}, + [2743] = {.lex_state = 1}, + [2744] = {.lex_state = 1}, + [2745] = {.lex_state = 1}, + [2746] = {.lex_state = 42}, + [2747] = {.lex_state = 42}, + [2748] = {.lex_state = 1}, + [2749] = {.lex_state = 42}, + [2750] = {.lex_state = 1}, + [2751] = {.lex_state = 1}, + [2752] = {.lex_state = 42}, + [2753] = {.lex_state = 1}, + [2754] = {.lex_state = 1}, + [2755] = {.lex_state = 1}, + [2756] = {.lex_state = 42}, + [2757] = {.lex_state = 42}, + [2758] = {.lex_state = 42}, + [2759] = {.lex_state = 1}, + [2760] = {.lex_state = 1}, + [2761] = {.lex_state = 1}, + [2762] = {.lex_state = 1}, + [2763] = {.lex_state = 42}, + [2764] = {.lex_state = 1}, + [2765] = {.lex_state = 42}, + [2766] = {.lex_state = 42}, + [2767] = {.lex_state = 1}, + [2768] = {.lex_state = 42}, + [2769] = {.lex_state = 1}, + [2770] = {.lex_state = 1}, + [2771] = {.lex_state = 42}, + [2772] = {.lex_state = 1}, + [2773] = {.lex_state = 1}, + [2774] = {.lex_state = 42}, + [2775] = {.lex_state = 1}, + [2776] = {.lex_state = 1}, + [2777] = {.lex_state = 42}, + [2778] = {.lex_state = 1}, + [2779] = {.lex_state = 1}, + [2780] = {.lex_state = 1}, + [2781] = {.lex_state = 1}, + [2782] = {.lex_state = 42}, + [2783] = {.lex_state = 1}, + [2784] = {.lex_state = 1}, + [2785] = {.lex_state = 1}, + [2786] = {.lex_state = 1}, + [2787] = {.lex_state = 42}, + [2788] = {.lex_state = 42}, + [2789] = {.lex_state = 1}, + [2790] = {.lex_state = 42}, + [2791] = {.lex_state = 1}, + [2792] = {.lex_state = 42}, + [2793] = {.lex_state = 42}, + [2794] = {.lex_state = 1}, + [2795] = {.lex_state = 42}, + [2796] = {.lex_state = 1}, + [2797] = {.lex_state = 1}, + [2798] = {.lex_state = 42}, + [2799] = {.lex_state = 1}, + [2800] = {.lex_state = 42}, + [2801] = {.lex_state = 1}, + [2802] = {.lex_state = 1}, + [2803] = {.lex_state = 42}, + [2804] = {.lex_state = 1}, + [2805] = {.lex_state = 42}, + [2806] = {.lex_state = 1}, + [2807] = {.lex_state = 42}, + [2808] = {.lex_state = 1}, + [2809] = {.lex_state = 1}, + [2810] = {.lex_state = 42}, + [2811] = {.lex_state = 1}, + [2812] = {.lex_state = 1}, + [2813] = {.lex_state = 42}, + [2814] = {.lex_state = 42}, + [2815] = {.lex_state = 42}, + [2816] = {.lex_state = 1}, + [2817] = {.lex_state = 1}, + [2818] = {.lex_state = 1}, + [2819] = {.lex_state = 42}, + [2820] = {.lex_state = 42}, + [2821] = {.lex_state = 1}, + [2822] = {.lex_state = 42}, + [2823] = {.lex_state = 1}, + [2824] = {.lex_state = 1}, + [2825] = {.lex_state = 42}, + [2826] = {.lex_state = 42}, + [2827] = {.lex_state = 42}, + [2828] = {.lex_state = 1}, + [2829] = {.lex_state = 1}, + [2830] = {.lex_state = 1}, + [2831] = {.lex_state = 1}, + [2832] = {.lex_state = 1}, + [2833] = {.lex_state = 1}, + [2834] = {.lex_state = 1}, + [2835] = {.lex_state = 1}, + [2836] = {.lex_state = 42}, + [2837] = {.lex_state = 42}, + [2838] = {.lex_state = 1}, + [2839] = {.lex_state = 1}, + [2840] = {.lex_state = 42}, + [2841] = {.lex_state = 1}, + [2842] = {.lex_state = 1}, + [2843] = {.lex_state = 42}, + [2844] = {.lex_state = 1}, + [2845] = {.lex_state = 42}, + [2846] = {.lex_state = 1}, + [2847] = {.lex_state = 42}, + [2848] = {.lex_state = 42}, + [2849] = {.lex_state = 1}, + [2850] = {.lex_state = 42}, + [2851] = {.lex_state = 42}, + [2852] = {.lex_state = 42}, + [2853] = {.lex_state = 1}, + [2854] = {.lex_state = 1}, + [2855] = {.lex_state = 42}, + [2856] = {.lex_state = 1}, + [2857] = {.lex_state = 42}, + [2858] = {.lex_state = 1}, + [2859] = {.lex_state = 42}, + [2860] = {.lex_state = 42}, + [2861] = {.lex_state = 1}, + [2862] = {.lex_state = 42}, + [2863] = {.lex_state = 42}, + [2864] = {.lex_state = 1}, + [2865] = {.lex_state = 42}, + [2866] = {.lex_state = 1}, + [2867] = {.lex_state = 42}, + [2868] = {.lex_state = 1}, + [2869] = {.lex_state = 1}, + [2870] = {.lex_state = 42}, + [2871] = {.lex_state = 42}, + [2872] = {.lex_state = 1}, + [2873] = {.lex_state = 42}, + [2874] = {.lex_state = 1}, + [2875] = {.lex_state = 1}, + [2876] = {.lex_state = 1}, + [2877] = {.lex_state = 42}, + [2878] = {.lex_state = 42}, + [2879] = {.lex_state = 1}, + [2880] = {.lex_state = 42}, + [2881] = {.lex_state = 42}, + [2882] = {.lex_state = 1}, + [2883] = {.lex_state = 42}, + [2884] = {.lex_state = 1}, + [2885] = {.lex_state = 1}, + [2886] = {.lex_state = 42}, + [2887] = {.lex_state = 1}, + [2888] = {.lex_state = 42}, + [2889] = {.lex_state = 1}, + [2890] = {.lex_state = 42}, + [2891] = {.lex_state = 1}, + [2892] = {.lex_state = 1}, + [2893] = {.lex_state = 42}, + [2894] = {.lex_state = 42}, + [2895] = {.lex_state = 1}, + [2896] = {.lex_state = 1}, + [2897] = {.lex_state = 42}, + [2898] = {.lex_state = 42}, + [2899] = {.lex_state = 1}, + [2900] = {.lex_state = 1}, + [2901] = {.lex_state = 1}, + [2902] = {.lex_state = 42}, + [2903] = {.lex_state = 42}, + [2904] = {.lex_state = 1}, + [2905] = {.lex_state = 42}, + [2906] = {.lex_state = 42}, + [2907] = {.lex_state = 42}, + [2908] = {.lex_state = 1}, + [2909] = {.lex_state = 1}, + [2910] = {.lex_state = 1}, + [2911] = {.lex_state = 42}, + [2912] = {.lex_state = 42}, + [2913] = {.lex_state = 1}, + [2914] = {.lex_state = 1}, + [2915] = {.lex_state = 42}, + [2916] = {.lex_state = 1}, + [2917] = {.lex_state = 42}, + [2918] = {.lex_state = 42}, + [2919] = {.lex_state = 1}, + [2920] = {.lex_state = 42}, + [2921] = {.lex_state = 1}, + [2922] = {.lex_state = 42}, + [2923] = {.lex_state = 1}, + [2924] = {.lex_state = 1}, + [2925] = {.lex_state = 42}, + [2926] = {.lex_state = 42}, + [2927] = {.lex_state = 1}, + [2928] = {.lex_state = 42}, + [2929] = {.lex_state = 1}, + [2930] = {.lex_state = 42}, + [2931] = {.lex_state = 1}, + [2932] = {.lex_state = 1}, + [2933] = {.lex_state = 1}, + [2934] = {.lex_state = 42}, + [2935] = {.lex_state = 1}, + [2936] = {.lex_state = 1}, + [2937] = {.lex_state = 1}, + [2938] = {.lex_state = 42}, + [2939] = {.lex_state = 1}, + [2940] = {.lex_state = 1}, + [2941] = {.lex_state = 1}, + [2942] = {.lex_state = 1}, + [2943] = {.lex_state = 42}, + [2944] = {.lex_state = 42}, + [2945] = {.lex_state = 1}, + [2946] = {.lex_state = 1}, + [2947] = {.lex_state = 1}, + [2948] = {.lex_state = 1}, + [2949] = {.lex_state = 1}, + [2950] = {.lex_state = 42}, + [2951] = {.lex_state = 1}, + [2952] = {.lex_state = 1}, + [2953] = {.lex_state = 1}, + [2954] = {.lex_state = 42}, + [2955] = {.lex_state = 1}, + [2956] = {.lex_state = 1}, + [2957] = {.lex_state = 42}, + [2958] = {.lex_state = 42}, + [2959] = {.lex_state = 1}, + [2960] = {.lex_state = 42}, + [2961] = {.lex_state = 1}, + [2962] = {.lex_state = 42}, + [2963] = {.lex_state = 42}, + [2964] = {.lex_state = 42}, + [2965] = {.lex_state = 42}, + [2966] = {.lex_state = 42}, + [2967] = {.lex_state = 1}, + [2968] = {.lex_state = 1}, + [2969] = {.lex_state = 42}, + [2970] = {.lex_state = 42}, + [2971] = {.lex_state = 1}, + [2972] = {.lex_state = 42}, + [2973] = {.lex_state = 1}, + [2974] = {.lex_state = 1}, + [2975] = {.lex_state = 1}, + [2976] = {.lex_state = 42}, + [2977] = {.lex_state = 1}, + [2978] = {.lex_state = 42}, + [2979] = {.lex_state = 1}, + [2980] = {.lex_state = 42}, + [2981] = {.lex_state = 1}, + [2982] = {.lex_state = 42}, + [2983] = {.lex_state = 42}, + [2984] = {.lex_state = 1}, + [2985] = {.lex_state = 42}, + [2986] = {.lex_state = 1}, + [2987] = {.lex_state = 42}, + [2988] = {.lex_state = 42}, + [2989] = {.lex_state = 1}, + [2990] = {.lex_state = 1}, + [2991] = {.lex_state = 42}, + [2992] = {.lex_state = 1}, + [2993] = {.lex_state = 42}, + [2994] = {.lex_state = 42}, + [2995] = {.lex_state = 42}, + [2996] = {.lex_state = 1}, + [2997] = {.lex_state = 1}, + [2998] = {.lex_state = 1}, + [2999] = {.lex_state = 1}, + [3000] = {.lex_state = 42}, + [3001] = {.lex_state = 42}, + [3002] = {.lex_state = 1}, + [3003] = {.lex_state = 42}, + [3004] = {.lex_state = 42}, + [3005] = {.lex_state = 1}, + [3006] = {.lex_state = 1}, + [3007] = {.lex_state = 42}, + [3008] = {.lex_state = 42}, + [3009] = {.lex_state = 42}, + [3010] = {.lex_state = 42}, + [3011] = {.lex_state = 42}, + [3012] = {.lex_state = 42}, + [3013] = {.lex_state = 42}, + [3014] = {.lex_state = 1}, + [3015] = {.lex_state = 42}, + [3016] = {.lex_state = 1}, + [3017] = {.lex_state = 42}, + [3018] = {.lex_state = 42}, + [3019] = {.lex_state = 42}, + [3020] = {.lex_state = 42}, + [3021] = {.lex_state = 1}, + [3022] = {.lex_state = 42}, + [3023] = {.lex_state = 42}, + [3024] = {.lex_state = 42}, + [3025] = {.lex_state = 42}, + [3026] = {.lex_state = 42}, + [3027] = {.lex_state = 42}, + [3028] = {.lex_state = 42}, + [3029] = {.lex_state = 1}, + [3030] = {.lex_state = 42}, + [3031] = {.lex_state = 42}, + [3032] = {.lex_state = 42}, + [3033] = {.lex_state = 42}, + [3034] = {.lex_state = 42}, + [3035] = {.lex_state = 42}, + [3036] = {.lex_state = 42}, + [3037] = {.lex_state = 42}, + [3038] = {.lex_state = 42}, + [3039] = {.lex_state = 42}, + [3040] = {.lex_state = 42}, + [3041] = {.lex_state = 42}, + [3042] = {.lex_state = 1}, + [3043] = {.lex_state = 42}, + [3044] = {.lex_state = 1}, + [3045] = {.lex_state = 1}, + [3046] = {.lex_state = 1}, + [3047] = {.lex_state = 1}, + [3048] = {.lex_state = 42}, + [3049] = {.lex_state = 1}, + [3050] = {.lex_state = 1}, + [3051] = {.lex_state = 1}, + [3052] = {.lex_state = 42}, + [3053] = {.lex_state = 1}, + [3054] = {.lex_state = 42}, + [3055] = {.lex_state = 1}, + [3056] = {.lex_state = 1}, + [3057] = {.lex_state = 1}, + [3058] = {.lex_state = 1}, + [3059] = {.lex_state = 42}, + [3060] = {.lex_state = 1}, + [3061] = {.lex_state = 42}, + [3062] = {.lex_state = 42}, + [3063] = {.lex_state = 42}, + [3064] = {.lex_state = 1}, + [3065] = {.lex_state = 42}, + [3066] = {.lex_state = 1}, + [3067] = {.lex_state = 42}, + [3068] = {.lex_state = 42}, + [3069] = {.lex_state = 42}, + [3070] = {.lex_state = 1}, + [3071] = {.lex_state = 42}, + [3072] = {.lex_state = 1}, + [3073] = {.lex_state = 1}, + [3074] = {.lex_state = 42}, + [3075] = {.lex_state = 1}, + [3076] = {.lex_state = 1}, + [3077] = {.lex_state = 42}, + [3078] = {.lex_state = 1}, + [3079] = {.lex_state = 1}, + [3080] = {.lex_state = 42}, + [3081] = {.lex_state = 42}, + [3082] = {.lex_state = 1}, + [3083] = {.lex_state = 1}, + [3084] = {.lex_state = 1}, + [3085] = {.lex_state = 42}, + [3086] = {.lex_state = 1}, + [3087] = {.lex_state = 1}, + [3088] = {.lex_state = 42}, + [3089] = {.lex_state = 1}, + [3090] = {.lex_state = 1}, + [3091] = {.lex_state = 1}, + [3092] = {.lex_state = 1}, + [3093] = {.lex_state = 1}, + [3094] = {.lex_state = 1}, + [3095] = {.lex_state = 42}, + [3096] = {.lex_state = 42}, + [3097] = {.lex_state = 1}, + [3098] = {.lex_state = 42}, + [3099] = {.lex_state = 1}, + [3100] = {.lex_state = 1}, + [3101] = {.lex_state = 42}, + [3102] = {.lex_state = 1}, + [3103] = {.lex_state = 42}, + [3104] = {.lex_state = 1}, + [3105] = {.lex_state = 1}, + [3106] = {.lex_state = 1}, + [3107] = {.lex_state = 1}, + [3108] = {.lex_state = 1}, + [3109] = {.lex_state = 1}, + [3110] = {.lex_state = 1}, + [3111] = {.lex_state = 1}, + [3112] = {.lex_state = 1}, + [3113] = {.lex_state = 1}, + [3114] = {.lex_state = 1}, + [3115] = {.lex_state = 42}, + [3116] = {.lex_state = 1}, + [3117] = {.lex_state = 1}, + [3118] = {.lex_state = 1}, + [3119] = {.lex_state = 1}, + [3120] = {.lex_state = 1}, + [3121] = {.lex_state = 1}, + [3122] = {.lex_state = 1}, + [3123] = {.lex_state = 1}, + [3124] = {.lex_state = 1}, + [3125] = {.lex_state = 1}, + [3126] = {.lex_state = 1}, + [3127] = {.lex_state = 1}, + [3128] = {.lex_state = 1}, + [3129] = {.lex_state = 1}, + [3130] = {.lex_state = 1}, + [3131] = {.lex_state = 1}, + [3132] = {.lex_state = 1}, + [3133] = {.lex_state = 1}, + [3134] = {.lex_state = 1}, + [3135] = {.lex_state = 1}, + [3136] = {.lex_state = 1}, + [3137] = {.lex_state = 1}, + [3138] = {.lex_state = 1}, + [3139] = {.lex_state = 1}, + [3140] = {.lex_state = 1}, + [3141] = {.lex_state = 1}, + [3142] = {.lex_state = 1}, + [3143] = {.lex_state = 1}, + [3144] = {.lex_state = 1}, + [3145] = {.lex_state = 1}, + [3146] = {.lex_state = 1}, + [3147] = {.lex_state = 1}, + [3148] = {.lex_state = 42}, + [3149] = {.lex_state = 42}, + [3150] = {.lex_state = 1}, + [3151] = {.lex_state = 1}, + [3152] = {.lex_state = 1}, + [3153] = {.lex_state = 1}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [0] = { - [sym_eol_comment] = STATE(0), - [sym_bol_comment] = STATE(0), [ts_builtin_sym_end] = ACTIONS(1), [sym_name] = ACTIONS(1), [aux_sym_class_declaration_token1] = ACTIONS(1), @@ -12888,7 +12406,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_method_parameters_token4] = ACTIONS(1), [aux_sym_returning_parameter_token1] = ACTIONS(1), [aux_sym_constructor_declaration_token1] = ACTIONS(1), - [aux_sym_class_constructor_declaration_token1] = ACTIONS(1), [aux_sym_class_constructor_declaration_token2] = ACTIONS(1), [aux_sym_method_redefinition_token1] = ACTIONS(1), [aux_sym_class_method_declaration_interface_token1] = ACTIONS(1), @@ -12897,6 +12414,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_method_implementation_token2] = ACTIONS(1), [aux_sym_class_publication_token1] = ACTIONS(1), [aux_sym_class_local_friend_publication_token1] = ACTIONS(1), + [aux_sym_chained_interface_declaration_token1] = ACTIONS(1), + [anon_sym_COLON] = ACTIONS(1), + [anon_sym_COMMA] = ACTIONS(1), [aux_sym_interface_declaration_token1] = ACTIONS(1), [aux_sym_interface_declaration_token2] = ACTIONS(1), [aux_sym_generic_typing_token1] = ACTIONS(1), @@ -12909,13 +12429,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__data_object_typing_normal_token2] = ACTIONS(1), [aux_sym__data_object_typing_normal_token3] = ACTIONS(1), [aux_sym__data_object_typing_normal_token4] = ACTIONS(1), - [aux_sym__data_object_typing_normal_token5] = ACTIONS(1), [aux_sym__data_object_typing_itabs_token1] = ACTIONS(1), [aux_sym__data_object_typing_itabs_token2] = ACTIONS(1), [aux_sym__data_object_typing_itabs_token3] = ACTIONS(1), [aux_sym_variable_declaration_token1] = ACTIONS(1), - [anon_sym_COLON] = ACTIONS(1), - [anon_sym_COMMA] = ACTIONS(1), [aux_sym_chained_structure_declaration_token1] = ACTIONS(1), [aux_sym_chained_structure_declaration_token2] = ACTIONS(1), [aux_sym_field_symbol_declaration_token1] = ACTIONS(1), @@ -12941,7 +12458,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comparison_expression_token2] = ACTIONS(1), [anon_sym_PLUS] = ACTIONS(1), [anon_sym_DASH] = ACTIONS(1), - [anon_sym_STAR] = ACTIONS(3), + [anon_sym_STAR] = ACTIONS(1), [anon_sym_SLASH] = ACTIONS(1), [anon_sym_DIV] = ACTIONS(1), [anon_sym_MOD] = ACTIONS(1), @@ -12972,7 +12489,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_try_catch_statement_token2] = ACTIONS(1), [aux_sym_catch_statement_token1] = ACTIONS(1), [aux_sym_write_statement_token1] = ACTIONS(1), - [anon_sym_LPAREN3] = ACTIONS(1), + [anon_sym_LPAREN2] = ACTIONS(1), [aux_sym__explicit_parameter_list_token1] = ACTIONS(1), [anon_sym_DASH_GT] = ACTIONS(1), [aux_sym_call_function_token1] = ACTIONS(1), @@ -12988,57 +12505,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(1), [sym_numeric_literal] = ACTIONS(1), [sym_character_literal] = ACTIONS(1), - [anon_sym_DQUOTE] = ACTIONS(5), + [sym_eol_comment] = ACTIONS(3), + [sym_bol_comment] = ACTIONS(5), [sym_field_symbol_name] = ACTIONS(1), }, [1] = { - [sym_program] = STATE(3003), - [sym__statement] = STATE(339), - [sym__implementation_statement] = STATE(340), - [sym_class_declaration] = STATE(340), - [sym_class_implementation] = STATE(340), - [sym_class_publication] = STATE(340), - [sym_class_local_friend_publication] = STATE(340), - [sym_interface_declaration] = STATE(340), - [sym_variable_declaration] = STATE(341), - [sym_chained_variable_declaration] = STATE(341), - [sym_chained_structure_declaration] = STATE(341), - [sym_field_symbol_declaration] = STATE(341), - [sym_chained_field_symbol_declaration] = STATE(341), - [sym_loop_statement] = STATE(341), - [sym_exit_statement] = STATE(341), - [sym_continue_statement] = STATE(341), - [sym_return_statement] = STATE(341), - [sym_report_statement] = STATE(341), - [sym_if_statement] = STATE(341), - [sym_check_statement] = STATE(341), - [sym__writeable_expression] = STATE(2999), - [sym_table_expression] = STATE(2997), - [sym_select_statement_obsolete] = STATE(341), - [sym_read_table_statement] = STATE(341), - [sym__data_object] = STATE(2999), - [sym_structured_data_object] = STATE(996), - [sym_attribute_access_static] = STATE(996), - [sym_assignment] = STATE(341), - [sym_try_catch_statement] = STATE(341), - [sym_write_statement] = STATE(341), - [sym_chained_write_statement] = STATE(341), - [sym_call_method] = STATE(341), - [sym_call_method_static] = STATE(341), - [sym_call_method_instance] = STATE(341), - [sym_call_function] = STATE(341), - [sym_raise_exception_statement] = STATE(341), - [sym_clear_statement] = STATE(341), - [sym_append_statement] = STATE(341), - [sym_append_statement_obsolete] = STATE(341), - [sym_create_object_statement] = STATE(341), - [sym_include_statement] = STATE(341), - [sym_macro_include] = STATE(341), - [sym_function_implementation] = STATE(340), - [sym_raise_statement] = STATE(341), - [sym_eol_comment] = STATE(1), - [sym_bol_comment] = STATE(1), - [aux_sym_program_repeat1] = STATE(23), + [sym_program] = STATE(2994), + [sym__statement] = STATE(28), + [sym__implementation_statement] = STATE(28), + [sym_class_declaration] = STATE(28), + [sym_class_implementation] = STATE(28), + [sym_class_publication] = STATE(28), + [sym_class_local_friend_publication] = STATE(28), + [sym_interface_declaration] = STATE(28), + [sym_variable_declaration] = STATE(28), + [sym_chained_variable_declaration] = STATE(28), + [sym_chained_structure_declaration] = STATE(28), + [sym_field_symbol_declaration] = STATE(28), + [sym_chained_field_symbol_declaration] = STATE(28), + [sym_loop_statement] = STATE(28), + [sym_exit_statement] = STATE(28), + [sym_continue_statement] = STATE(28), + [sym_return_statement] = STATE(28), + [sym_report_statement] = STATE(28), + [sym_if_statement] = STATE(28), + [sym_check_statement] = STATE(28), + [sym__writeable_expression] = STATE(2993), + [sym_table_expression] = STATE(2993), + [sym_select_statement_obsolete] = STATE(28), + [sym_read_table_statement] = STATE(28), + [sym__data_object] = STATE(2993), + [sym_structured_data_object] = STATE(2993), + [sym_attribute_access_static] = STATE(2993), + [sym_assignment] = STATE(28), + [sym_try_catch_statement] = STATE(28), + [sym_write_statement] = STATE(28), + [sym_chained_write_statement] = STATE(28), + [sym_call_method] = STATE(28), + [sym_call_method_static] = STATE(28), + [sym_call_method_instance] = STATE(28), + [sym_call_function] = STATE(28), + [sym_raise_exception_statement] = STATE(28), + [sym_clear_statement] = STATE(28), + [sym_append_statement] = STATE(28), + [sym_append_statement_obsolete] = STATE(28), + [sym_create_object_statement] = STATE(28), + [sym_include_statement] = STATE(28), + [sym_macro_include] = STATE(28), + [sym_function_implementation] = STATE(28), + [sym_raise_statement] = STATE(28), + [aux_sym_program_repeat1] = STATE(28), [ts_builtin_sym_end] = ACTIONS(7), [sym_name] = ACTIONS(9), [aux_sym_class_declaration_token1] = ACTIONS(11), @@ -13053,1660 +12569,1981 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_report_statement_token1] = ACTIONS(29), [aux_sym_if_statement_token1] = ACTIONS(31), [aux_sym_check_statement_token1] = ACTIONS(33), - [anon_sym_STAR] = ACTIONS(35), - [aux_sym_select_statement_obsolete_token1] = ACTIONS(37), - [aux_sym_read_table_statement_token1] = ACTIONS(39), - [aux_sym_try_catch_statement_token1] = ACTIONS(41), - [aux_sym_write_statement_token1] = ACTIONS(43), - [aux_sym_call_function_token1] = ACTIONS(45), - [aux_sym_call_function_token2] = ACTIONS(47), - [aux_sym_raise_exception_statement_token1] = ACTIONS(49), - [aux_sym_clear_statement_token1] = ACTIONS(51), - [aux_sym_append_statement_token1] = ACTIONS(53), - [aux_sym_include_statement_token1] = ACTIONS(55), - [anon_sym_DQUOTE] = ACTIONS(5), - [sym_field_symbol_name] = ACTIONS(57), + [aux_sym_select_statement_obsolete_token1] = ACTIONS(35), + [aux_sym_read_table_statement_token1] = ACTIONS(37), + [aux_sym_try_catch_statement_token1] = ACTIONS(39), + [aux_sym_write_statement_token1] = ACTIONS(41), + [aux_sym_call_function_token1] = ACTIONS(43), + [aux_sym_call_function_token2] = ACTIONS(45), + [aux_sym_raise_exception_statement_token1] = ACTIONS(47), + [aux_sym_clear_statement_token1] = ACTIONS(49), + [aux_sym_append_statement_token1] = ACTIONS(51), + [aux_sym_include_statement_token1] = ACTIONS(53), + [sym_eol_comment] = ACTIONS(3), + [sym_bol_comment] = ACTIONS(3), + [sym_field_symbol_name] = ACTIONS(55), }, [2] = { - [sym__statement] = STATE(103), - [sym__implementation_statement] = STATE(104), - [sym_class_declaration] = STATE(104), - [sym_class_implementation] = STATE(104), - [sym_class_publication] = STATE(104), - [sym_class_local_friend_publication] = STATE(104), - [sym_interface_declaration] = STATE(104), - [sym_variable_declaration] = STATE(55), - [sym_chained_variable_declaration] = STATE(55), - [sym_chained_structure_declaration] = STATE(55), - [sym_field_symbol_declaration] = STATE(55), - [sym_chained_field_symbol_declaration] = STATE(55), - [sym_loop_statement] = STATE(55), - [sym_exit_statement] = STATE(55), - [sym_continue_statement] = STATE(55), - [sym_return_statement] = STATE(55), - [sym_report_statement] = STATE(55), - [sym_if_statement] = STATE(55), - [sym_check_statement] = STATE(55), - [sym__writeable_expression] = STATE(2973), - [sym_table_expression] = STATE(2997), - [sym_select_statement_obsolete] = STATE(55), - [sym_read_table_statement] = STATE(55), - [sym__data_object] = STATE(2973), - [sym_structured_data_object] = STATE(996), - [sym_attribute_access_static] = STATE(996), - [sym_assignment] = STATE(55), - [sym_try_catch_statement] = STATE(55), - [sym_try_block] = STATE(1497), - [sym_catch_statement] = STATE(2015), - [sym_write_statement] = STATE(55), - [sym_chained_write_statement] = STATE(55), - [sym_call_method] = STATE(55), - [sym_call_method_static] = STATE(55), - [sym_call_method_instance] = STATE(55), - [sym_call_function] = STATE(55), - [sym_raise_exception_statement] = STATE(55), - [sym_clear_statement] = STATE(55), - [sym_append_statement] = STATE(55), - [sym_append_statement_obsolete] = STATE(55), - [sym_create_object_statement] = STATE(55), - [sym_include_statement] = STATE(55), - [sym_macro_include] = STATE(55), - [sym_function_implementation] = STATE(104), - [sym_raise_statement] = STATE(55), - [sym_eol_comment] = STATE(2), - [sym_bol_comment] = STATE(2), - [aux_sym_program_repeat1] = STATE(8), - [aux_sym_try_catch_statement_repeat1] = STATE(1538), - [sym_name] = ACTIONS(59), - [aux_sym_class_declaration_token1] = ACTIONS(61), - [aux_sym__create_addition_token1] = ACTIONS(63), - [aux_sym_interface_declaration_token1] = ACTIONS(65), - [aux_sym_variable_declaration_token1] = ACTIONS(67), - [aux_sym_field_symbol_declaration_token1] = ACTIONS(69), - [aux_sym_loop_statement_token1] = ACTIONS(71), - [aux_sym_exit_statement_token1] = ACTIONS(73), - [aux_sym_continue_statement_token1] = ACTIONS(75), - [aux_sym_return_statement_token1] = ACTIONS(77), - [aux_sym_report_statement_token1] = ACTIONS(79), - [aux_sym_if_statement_token1] = ACTIONS(81), - [aux_sym_check_statement_token1] = ACTIONS(83), - [anon_sym_STAR] = ACTIONS(35), - [aux_sym_select_statement_obsolete_token1] = ACTIONS(85), - [aux_sym_read_table_statement_token1] = ACTIONS(87), - [aux_sym_try_catch_statement_token1] = ACTIONS(89), - [aux_sym_try_catch_statement_token2] = ACTIONS(91), - [aux_sym_catch_statement_token1] = ACTIONS(93), - [aux_sym_write_statement_token1] = ACTIONS(95), - [aux_sym_call_function_token1] = ACTIONS(97), - [aux_sym_call_function_token2] = ACTIONS(99), - [aux_sym_raise_exception_statement_token1] = ACTIONS(101), - [aux_sym_clear_statement_token1] = ACTIONS(103), - [aux_sym_append_statement_token1] = ACTIONS(105), - [aux_sym_include_statement_token1] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(5), - [sym_field_symbol_name] = ACTIONS(57), + [sym__statement] = STATE(7), + [sym__implementation_statement] = STATE(7), + [sym_class_declaration] = STATE(7), + [sym_class_implementation] = STATE(7), + [sym_class_publication] = STATE(7), + [sym_class_local_friend_publication] = STATE(7), + [sym_interface_declaration] = STATE(7), + [sym_variable_declaration] = STATE(7), + [sym_chained_variable_declaration] = STATE(7), + [sym_chained_structure_declaration] = STATE(7), + [sym_field_symbol_declaration] = STATE(7), + [sym_chained_field_symbol_declaration] = STATE(7), + [sym_loop_statement] = STATE(7), + [sym_exit_statement] = STATE(7), + [sym_continue_statement] = STATE(7), + [sym_return_statement] = STATE(7), + [sym_report_statement] = STATE(7), + [sym_if_statement] = STATE(7), + [sym_check_statement] = STATE(7), + [sym__writeable_expression] = STATE(2960), + [sym_table_expression] = STATE(2960), + [sym_select_statement_obsolete] = STATE(7), + [sym_read_table_statement] = STATE(7), + [sym__data_object] = STATE(2960), + [sym_structured_data_object] = STATE(2960), + [sym_attribute_access_static] = STATE(2960), + [sym_assignment] = STATE(7), + [sym_try_catch_statement] = STATE(7), + [sym_try_block] = STATE(1490), + [sym_catch_statement] = STATE(1498), + [sym_write_statement] = STATE(7), + [sym_chained_write_statement] = STATE(7), + [sym_call_method] = STATE(7), + [sym_call_method_static] = STATE(7), + [sym_call_method_instance] = STATE(7), + [sym_call_function] = STATE(7), + [sym_raise_exception_statement] = STATE(7), + [sym_clear_statement] = STATE(7), + [sym_append_statement] = STATE(7), + [sym_append_statement_obsolete] = STATE(7), + [sym_create_object_statement] = STATE(7), + [sym_include_statement] = STATE(7), + [sym_macro_include] = STATE(7), + [sym_function_implementation] = STATE(7), + [sym_raise_statement] = STATE(7), + [aux_sym_program_repeat1] = STATE(7), + [aux_sym_try_catch_statement_repeat1] = STATE(1498), + [sym_name] = ACTIONS(57), + [aux_sym_class_declaration_token1] = ACTIONS(59), + [aux_sym__create_addition_token1] = ACTIONS(61), + [aux_sym_interface_declaration_token1] = ACTIONS(63), + [aux_sym_variable_declaration_token1] = ACTIONS(65), + [aux_sym_field_symbol_declaration_token1] = ACTIONS(67), + [aux_sym_loop_statement_token1] = ACTIONS(69), + [aux_sym_exit_statement_token1] = ACTIONS(71), + [aux_sym_continue_statement_token1] = ACTIONS(73), + [aux_sym_return_statement_token1] = ACTIONS(75), + [aux_sym_report_statement_token1] = ACTIONS(77), + [aux_sym_if_statement_token1] = ACTIONS(79), + [aux_sym_check_statement_token1] = ACTIONS(81), + [aux_sym_select_statement_obsolete_token1] = ACTIONS(83), + [aux_sym_read_table_statement_token1] = ACTIONS(85), + [aux_sym_try_catch_statement_token1] = ACTIONS(87), + [aux_sym_try_catch_statement_token2] = ACTIONS(89), + [aux_sym_catch_statement_token1] = ACTIONS(91), + [aux_sym_write_statement_token1] = ACTIONS(93), + [aux_sym_call_function_token1] = ACTIONS(95), + [aux_sym_call_function_token2] = ACTIONS(97), + [aux_sym_raise_exception_statement_token1] = ACTIONS(99), + [aux_sym_clear_statement_token1] = ACTIONS(101), + [aux_sym_append_statement_token1] = ACTIONS(103), + [aux_sym_include_statement_token1] = ACTIONS(105), + [sym_eol_comment] = ACTIONS(3), + [sym_bol_comment] = ACTIONS(3), + [sym_field_symbol_name] = ACTIONS(55), }, [3] = { - [sym__statement] = STATE(103), - [sym__implementation_statement] = STATE(104), - [sym_class_declaration] = STATE(104), - [sym_class_implementation] = STATE(104), - [sym_class_publication] = STATE(104), - [sym_class_local_friend_publication] = STATE(104), - [sym_interface_declaration] = STATE(104), - [sym_variable_declaration] = STATE(55), - [sym_chained_variable_declaration] = STATE(55), - [sym_chained_structure_declaration] = STATE(55), - [sym_field_symbol_declaration] = STATE(55), - [sym_chained_field_symbol_declaration] = STATE(55), - [sym_loop_statement] = STATE(55), - [sym_exit_statement] = STATE(55), - [sym_continue_statement] = STATE(55), - [sym_return_statement] = STATE(55), - [sym_report_statement] = STATE(55), - [sym_if_statement] = STATE(55), - [sym_check_statement] = STATE(55), - [sym__writeable_expression] = STATE(2973), - [sym_table_expression] = STATE(2997), - [sym_select_statement_obsolete] = STATE(55), - [sym_read_table_statement] = STATE(55), - [sym__data_object] = STATE(2973), - [sym_structured_data_object] = STATE(996), - [sym_attribute_access_static] = STATE(996), - [sym_assignment] = STATE(55), - [sym_try_catch_statement] = STATE(55), - [sym_try_block] = STATE(1539), - [sym_catch_statement] = STATE(2015), - [sym_write_statement] = STATE(55), - [sym_chained_write_statement] = STATE(55), - [sym_call_method] = STATE(55), - [sym_call_method_static] = STATE(55), - [sym_call_method_instance] = STATE(55), - [sym_call_function] = STATE(55), - [sym_raise_exception_statement] = STATE(55), - [sym_clear_statement] = STATE(55), - [sym_append_statement] = STATE(55), - [sym_append_statement_obsolete] = STATE(55), - [sym_create_object_statement] = STATE(55), - [sym_include_statement] = STATE(55), - [sym_macro_include] = STATE(55), - [sym_function_implementation] = STATE(104), - [sym_raise_statement] = STATE(55), - [sym_eol_comment] = STATE(3), - [sym_bol_comment] = STATE(3), - [aux_sym_program_repeat1] = STATE(8), - [aux_sym_try_catch_statement_repeat1] = STATE(1537), - [sym_name] = ACTIONS(59), - [aux_sym_class_declaration_token1] = ACTIONS(61), - [aux_sym__create_addition_token1] = ACTIONS(63), - [aux_sym_interface_declaration_token1] = ACTIONS(65), - [aux_sym_variable_declaration_token1] = ACTIONS(67), - [aux_sym_field_symbol_declaration_token1] = ACTIONS(69), - [aux_sym_loop_statement_token1] = ACTIONS(71), - [aux_sym_exit_statement_token1] = ACTIONS(73), - [aux_sym_continue_statement_token1] = ACTIONS(75), - [aux_sym_return_statement_token1] = ACTIONS(77), - [aux_sym_report_statement_token1] = ACTIONS(79), - [aux_sym_if_statement_token1] = ACTIONS(81), - [aux_sym_check_statement_token1] = ACTIONS(83), - [anon_sym_STAR] = ACTIONS(35), - [aux_sym_select_statement_obsolete_token1] = ACTIONS(85), - [aux_sym_read_table_statement_token1] = ACTIONS(87), - [aux_sym_try_catch_statement_token1] = ACTIONS(89), - [aux_sym_try_catch_statement_token2] = ACTIONS(109), - [aux_sym_catch_statement_token1] = ACTIONS(93), - [aux_sym_write_statement_token1] = ACTIONS(95), - [aux_sym_call_function_token1] = ACTIONS(97), - [aux_sym_call_function_token2] = ACTIONS(99), - [aux_sym_raise_exception_statement_token1] = ACTIONS(101), - [aux_sym_clear_statement_token1] = ACTIONS(103), - [aux_sym_append_statement_token1] = ACTIONS(105), - [aux_sym_include_statement_token1] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(5), - [sym_field_symbol_name] = ACTIONS(57), + [sym__statement] = STATE(7), + [sym__implementation_statement] = STATE(7), + [sym_class_declaration] = STATE(7), + [sym_class_implementation] = STATE(7), + [sym_class_publication] = STATE(7), + [sym_class_local_friend_publication] = STATE(7), + [sym_interface_declaration] = STATE(7), + [sym_variable_declaration] = STATE(7), + [sym_chained_variable_declaration] = STATE(7), + [sym_chained_structure_declaration] = STATE(7), + [sym_field_symbol_declaration] = STATE(7), + [sym_chained_field_symbol_declaration] = STATE(7), + [sym_loop_statement] = STATE(7), + [sym_exit_statement] = STATE(7), + [sym_continue_statement] = STATE(7), + [sym_return_statement] = STATE(7), + [sym_report_statement] = STATE(7), + [sym_if_statement] = STATE(7), + [sym_check_statement] = STATE(7), + [sym__writeable_expression] = STATE(2960), + [sym_table_expression] = STATE(2960), + [sym_select_statement_obsolete] = STATE(7), + [sym_read_table_statement] = STATE(7), + [sym__data_object] = STATE(2960), + [sym_structured_data_object] = STATE(2960), + [sym_attribute_access_static] = STATE(2960), + [sym_assignment] = STATE(7), + [sym_try_catch_statement] = STATE(7), + [sym_try_block] = STATE(1411), + [sym_catch_statement] = STATE(1413), + [sym_write_statement] = STATE(7), + [sym_chained_write_statement] = STATE(7), + [sym_call_method] = STATE(7), + [sym_call_method_static] = STATE(7), + [sym_call_method_instance] = STATE(7), + [sym_call_function] = STATE(7), + [sym_raise_exception_statement] = STATE(7), + [sym_clear_statement] = STATE(7), + [sym_append_statement] = STATE(7), + [sym_append_statement_obsolete] = STATE(7), + [sym_create_object_statement] = STATE(7), + [sym_include_statement] = STATE(7), + [sym_macro_include] = STATE(7), + [sym_function_implementation] = STATE(7), + [sym_raise_statement] = STATE(7), + [aux_sym_program_repeat1] = STATE(7), + [aux_sym_try_catch_statement_repeat1] = STATE(1413), + [sym_name] = ACTIONS(57), + [aux_sym_class_declaration_token1] = ACTIONS(59), + [aux_sym__create_addition_token1] = ACTIONS(61), + [aux_sym_interface_declaration_token1] = ACTIONS(63), + [aux_sym_variable_declaration_token1] = ACTIONS(65), + [aux_sym_field_symbol_declaration_token1] = ACTIONS(67), + [aux_sym_loop_statement_token1] = ACTIONS(69), + [aux_sym_exit_statement_token1] = ACTIONS(71), + [aux_sym_continue_statement_token1] = ACTIONS(73), + [aux_sym_return_statement_token1] = ACTIONS(75), + [aux_sym_report_statement_token1] = ACTIONS(77), + [aux_sym_if_statement_token1] = ACTIONS(79), + [aux_sym_check_statement_token1] = ACTIONS(81), + [aux_sym_select_statement_obsolete_token1] = ACTIONS(83), + [aux_sym_read_table_statement_token1] = ACTIONS(85), + [aux_sym_try_catch_statement_token1] = ACTIONS(87), + [aux_sym_try_catch_statement_token2] = ACTIONS(107), + [aux_sym_catch_statement_token1] = ACTIONS(91), + [aux_sym_write_statement_token1] = ACTIONS(93), + [aux_sym_call_function_token1] = ACTIONS(95), + [aux_sym_call_function_token2] = ACTIONS(97), + [aux_sym_raise_exception_statement_token1] = ACTIONS(99), + [aux_sym_clear_statement_token1] = ACTIONS(101), + [aux_sym_append_statement_token1] = ACTIONS(103), + [aux_sym_include_statement_token1] = ACTIONS(105), + [sym_eol_comment] = ACTIONS(3), + [sym_bol_comment] = ACTIONS(3), + [sym_field_symbol_name] = ACTIONS(55), }, [4] = { - [sym__statement] = STATE(103), - [sym__implementation_statement] = STATE(104), - [sym_class_declaration] = STATE(104), - [sym_class_implementation] = STATE(104), - [sym_class_publication] = STATE(104), - [sym_class_local_friend_publication] = STATE(104), - [sym_interface_declaration] = STATE(104), - [sym_variable_declaration] = STATE(55), - [sym_chained_variable_declaration] = STATE(55), - [sym_chained_structure_declaration] = STATE(55), - [sym_field_symbol_declaration] = STATE(55), - [sym_chained_field_symbol_declaration] = STATE(55), - [sym_loop_statement] = STATE(55), - [sym_exit_statement] = STATE(55), - [sym_continue_statement] = STATE(55), - [sym_return_statement] = STATE(55), - [sym_report_statement] = STATE(55), - [sym_if_statement] = STATE(55), - [sym_check_statement] = STATE(55), - [sym__writeable_expression] = STATE(2973), - [sym_table_expression] = STATE(2997), - [sym_select_statement_obsolete] = STATE(55), - [sym_read_table_statement] = STATE(55), - [sym__data_object] = STATE(2973), - [sym_structured_data_object] = STATE(996), - [sym_attribute_access_static] = STATE(996), - [sym_assignment] = STATE(55), - [sym_try_catch_statement] = STATE(55), - [sym_write_statement] = STATE(55), - [sym_chained_write_statement] = STATE(55), - [sym_call_method] = STATE(55), - [sym_call_method_static] = STATE(55), - [sym_call_method_instance] = STATE(55), - [sym_call_function] = STATE(55), - [sym_raise_exception_statement] = STATE(55), - [sym_clear_statement] = STATE(55), - [sym_append_statement] = STATE(55), - [sym_append_statement_obsolete] = STATE(55), - [sym_create_object_statement] = STATE(55), - [sym_include_statement] = STATE(55), - [sym_macro_include] = STATE(55), - [sym_function_implementation] = STATE(104), - [sym_raise_statement] = STATE(55), - [sym_eol_comment] = STATE(4), - [sym_bol_comment] = STATE(4), + [sym__statement] = STATE(4), + [sym__implementation_statement] = STATE(4), + [sym_class_declaration] = STATE(4), + [sym_class_implementation] = STATE(4), + [sym_class_publication] = STATE(4), + [sym_class_local_friend_publication] = STATE(4), + [sym_interface_declaration] = STATE(4), + [sym_variable_declaration] = STATE(4), + [sym_chained_variable_declaration] = STATE(4), + [sym_chained_structure_declaration] = STATE(4), + [sym_field_symbol_declaration] = STATE(4), + [sym_chained_field_symbol_declaration] = STATE(4), + [sym_loop_statement] = STATE(4), + [sym_exit_statement] = STATE(4), + [sym_continue_statement] = STATE(4), + [sym_return_statement] = STATE(4), + [sym_report_statement] = STATE(4), + [sym_if_statement] = STATE(4), + [sym_check_statement] = STATE(4), + [sym__writeable_expression] = STATE(2960), + [sym_table_expression] = STATE(2960), + [sym_select_statement_obsolete] = STATE(4), + [sym_read_table_statement] = STATE(4), + [sym__data_object] = STATE(2960), + [sym_structured_data_object] = STATE(2960), + [sym_attribute_access_static] = STATE(2960), + [sym_assignment] = STATE(4), + [sym_try_catch_statement] = STATE(4), + [sym_write_statement] = STATE(4), + [sym_chained_write_statement] = STATE(4), + [sym_call_method] = STATE(4), + [sym_call_method_static] = STATE(4), + [sym_call_method_instance] = STATE(4), + [sym_call_function] = STATE(4), + [sym_raise_exception_statement] = STATE(4), + [sym_clear_statement] = STATE(4), + [sym_append_statement] = STATE(4), + [sym_append_statement_obsolete] = STATE(4), + [sym_create_object_statement] = STATE(4), + [sym_include_statement] = STATE(4), + [sym_macro_include] = STATE(4), + [sym_function_implementation] = STATE(4), + [sym_raise_statement] = STATE(4), [aux_sym_program_repeat1] = STATE(4), - [sym_name] = ACTIONS(111), - [aux_sym_class_declaration_token1] = ACTIONS(114), - [aux_sym__create_addition_token1] = ACTIONS(117), - [aux_sym_interface_declaration_token1] = ACTIONS(120), - [aux_sym_variable_declaration_token1] = ACTIONS(123), - [aux_sym_field_symbol_declaration_token1] = ACTIONS(126), - [aux_sym_loop_statement_token1] = ACTIONS(129), - [aux_sym_loop_statement_token6] = ACTIONS(132), - [aux_sym_exit_statement_token1] = ACTIONS(134), - [aux_sym_continue_statement_token1] = ACTIONS(137), - [aux_sym_return_statement_token1] = ACTIONS(140), - [aux_sym_report_statement_token1] = ACTIONS(143), - [aux_sym_if_statement_token1] = ACTIONS(146), - [aux_sym_if_statement_token2] = ACTIONS(132), - [aux_sym_check_statement_token1] = ACTIONS(149), - [anon_sym_STAR] = ACTIONS(35), - [aux_sym_select_statement_obsolete_token1] = ACTIONS(152), - [aux_sym_read_table_statement_token1] = ACTIONS(155), - [aux_sym_try_catch_statement_token1] = ACTIONS(158), - [aux_sym_try_catch_statement_token2] = ACTIONS(132), - [aux_sym_catch_statement_token1] = ACTIONS(132), - [aux_sym_write_statement_token1] = ACTIONS(161), - [aux_sym_call_function_token1] = ACTIONS(164), - [aux_sym_call_function_token2] = ACTIONS(167), - [aux_sym_raise_exception_statement_token1] = ACTIONS(170), - [aux_sym_clear_statement_token1] = ACTIONS(173), - [aux_sym_append_statement_token1] = ACTIONS(176), - [aux_sym_include_statement_token1] = ACTIONS(179), - [anon_sym_DQUOTE] = ACTIONS(5), - [sym_field_symbol_name] = ACTIONS(182), + [sym_name] = ACTIONS(109), + [aux_sym_class_declaration_token1] = ACTIONS(112), + [aux_sym__create_addition_token1] = ACTIONS(115), + [aux_sym_interface_declaration_token1] = ACTIONS(118), + [aux_sym_variable_declaration_token1] = ACTIONS(121), + [aux_sym_field_symbol_declaration_token1] = ACTIONS(124), + [aux_sym_loop_statement_token1] = ACTIONS(127), + [aux_sym_loop_statement_token6] = ACTIONS(130), + [aux_sym_exit_statement_token1] = ACTIONS(132), + [aux_sym_continue_statement_token1] = ACTIONS(135), + [aux_sym_return_statement_token1] = ACTIONS(138), + [aux_sym_report_statement_token1] = ACTIONS(141), + [aux_sym_if_statement_token1] = ACTIONS(144), + [aux_sym_if_statement_token2] = ACTIONS(130), + [aux_sym_check_statement_token1] = ACTIONS(147), + [aux_sym_select_statement_obsolete_token1] = ACTIONS(150), + [aux_sym_read_table_statement_token1] = ACTIONS(153), + [aux_sym_try_catch_statement_token1] = ACTIONS(156), + [aux_sym_try_catch_statement_token2] = ACTIONS(130), + [aux_sym_catch_statement_token1] = ACTIONS(130), + [aux_sym_write_statement_token1] = ACTIONS(159), + [aux_sym_call_function_token1] = ACTIONS(162), + [aux_sym_call_function_token2] = ACTIONS(165), + [aux_sym_raise_exception_statement_token1] = ACTIONS(168), + [aux_sym_clear_statement_token1] = ACTIONS(171), + [aux_sym_append_statement_token1] = ACTIONS(174), + [aux_sym_include_statement_token1] = ACTIONS(177), + [sym_eol_comment] = ACTIONS(3), + [sym_bol_comment] = ACTIONS(3), + [sym_field_symbol_name] = ACTIONS(180), }, [5] = { - [sym__statement] = STATE(103), - [sym__implementation_statement] = STATE(104), - [sym_class_declaration] = STATE(104), - [sym_class_implementation] = STATE(104), - [sym_class_publication] = STATE(104), - [sym_class_local_friend_publication] = STATE(104), - [sym_interface_declaration] = STATE(104), - [sym_variable_declaration] = STATE(55), - [sym_chained_variable_declaration] = STATE(55), - [sym_chained_structure_declaration] = STATE(55), - [sym_field_symbol_declaration] = STATE(55), - [sym_chained_field_symbol_declaration] = STATE(55), - [sym_loop_statement] = STATE(55), - [sym_exit_statement] = STATE(55), - [sym_continue_statement] = STATE(55), - [sym_return_statement] = STATE(55), - [sym_report_statement] = STATE(55), - [sym_if_statement] = STATE(55), - [sym_check_statement] = STATE(55), - [sym__writeable_expression] = STATE(2973), - [sym_table_expression] = STATE(2997), - [sym_select_statement_obsolete] = STATE(55), - [sym_read_table_statement] = STATE(55), - [sym__data_object] = STATE(2973), - [sym_structured_data_object] = STATE(996), - [sym_attribute_access_static] = STATE(996), - [sym_assignment] = STATE(55), - [sym_try_catch_statement] = STATE(55), - [sym_catch_block] = STATE(2073), - [sym_write_statement] = STATE(55), - [sym_chained_write_statement] = STATE(55), - [sym_call_method] = STATE(55), - [sym_call_method_static] = STATE(55), - [sym_call_method_instance] = STATE(55), - [sym_call_function] = STATE(55), - [sym_raise_exception_statement] = STATE(55), - [sym_clear_statement] = STATE(55), - [sym_append_statement] = STATE(55), - [sym_append_statement_obsolete] = STATE(55), - [sym_create_object_statement] = STATE(55), - [sym_include_statement] = STATE(55), - [sym_macro_include] = STATE(55), - [sym_function_implementation] = STATE(104), - [sym_raise_statement] = STATE(55), - [sym_eol_comment] = STATE(5), - [sym_bol_comment] = STATE(5), - [aux_sym_program_repeat1] = STATE(7), - [sym_name] = ACTIONS(59), - [aux_sym_class_declaration_token1] = ACTIONS(61), - [aux_sym__create_addition_token1] = ACTIONS(63), - [aux_sym_interface_declaration_token1] = ACTIONS(65), - [aux_sym_variable_declaration_token1] = ACTIONS(67), - [aux_sym_field_symbol_declaration_token1] = ACTIONS(69), - [aux_sym_loop_statement_token1] = ACTIONS(71), - [aux_sym_exit_statement_token1] = ACTIONS(73), - [aux_sym_continue_statement_token1] = ACTIONS(75), - [aux_sym_return_statement_token1] = ACTIONS(77), - [aux_sym_report_statement_token1] = ACTIONS(79), - [aux_sym_if_statement_token1] = ACTIONS(81), - [aux_sym_check_statement_token1] = ACTIONS(83), - [anon_sym_STAR] = ACTIONS(35), - [aux_sym_select_statement_obsolete_token1] = ACTIONS(85), - [aux_sym_read_table_statement_token1] = ACTIONS(87), - [aux_sym_try_catch_statement_token1] = ACTIONS(89), + [sym__statement] = STATE(8), + [sym__implementation_statement] = STATE(8), + [sym_class_declaration] = STATE(8), + [sym_class_implementation] = STATE(8), + [sym_class_publication] = STATE(8), + [sym_class_local_friend_publication] = STATE(8), + [sym_interface_declaration] = STATE(8), + [sym_variable_declaration] = STATE(8), + [sym_chained_variable_declaration] = STATE(8), + [sym_chained_structure_declaration] = STATE(8), + [sym_field_symbol_declaration] = STATE(8), + [sym_chained_field_symbol_declaration] = STATE(8), + [sym_loop_statement] = STATE(8), + [sym_exit_statement] = STATE(8), + [sym_continue_statement] = STATE(8), + [sym_return_statement] = STATE(8), + [sym_report_statement] = STATE(8), + [sym_if_statement] = STATE(8), + [sym_check_statement] = STATE(8), + [sym__writeable_expression] = STATE(2960), + [sym_table_expression] = STATE(2960), + [sym_select_statement_obsolete] = STATE(8), + [sym_read_table_statement] = STATE(8), + [sym__data_object] = STATE(2960), + [sym_structured_data_object] = STATE(2960), + [sym_attribute_access_static] = STATE(2960), + [sym_assignment] = STATE(8), + [sym_try_catch_statement] = STATE(8), + [sym_catch_block] = STATE(1926), + [sym_write_statement] = STATE(8), + [sym_chained_write_statement] = STATE(8), + [sym_call_method] = STATE(8), + [sym_call_method_static] = STATE(8), + [sym_call_method_instance] = STATE(8), + [sym_call_function] = STATE(8), + [sym_raise_exception_statement] = STATE(8), + [sym_clear_statement] = STATE(8), + [sym_append_statement] = STATE(8), + [sym_append_statement_obsolete] = STATE(8), + [sym_create_object_statement] = STATE(8), + [sym_include_statement] = STATE(8), + [sym_macro_include] = STATE(8), + [sym_function_implementation] = STATE(8), + [sym_raise_statement] = STATE(8), + [aux_sym_program_repeat1] = STATE(8), + [sym_name] = ACTIONS(57), + [aux_sym_class_declaration_token1] = ACTIONS(59), + [aux_sym__create_addition_token1] = ACTIONS(61), + [aux_sym_interface_declaration_token1] = ACTIONS(63), + [aux_sym_variable_declaration_token1] = ACTIONS(65), + [aux_sym_field_symbol_declaration_token1] = ACTIONS(67), + [aux_sym_loop_statement_token1] = ACTIONS(69), + [aux_sym_exit_statement_token1] = ACTIONS(71), + [aux_sym_continue_statement_token1] = ACTIONS(73), + [aux_sym_return_statement_token1] = ACTIONS(75), + [aux_sym_report_statement_token1] = ACTIONS(77), + [aux_sym_if_statement_token1] = ACTIONS(79), + [aux_sym_check_statement_token1] = ACTIONS(81), + [aux_sym_select_statement_obsolete_token1] = ACTIONS(83), + [aux_sym_read_table_statement_token1] = ACTIONS(85), + [aux_sym_try_catch_statement_token1] = ACTIONS(87), + [aux_sym_try_catch_statement_token2] = ACTIONS(183), + [aux_sym_catch_statement_token1] = ACTIONS(183), + [aux_sym_write_statement_token1] = ACTIONS(93), + [aux_sym_call_function_token1] = ACTIONS(95), + [aux_sym_call_function_token2] = ACTIONS(97), + [aux_sym_raise_exception_statement_token1] = ACTIONS(99), + [aux_sym_clear_statement_token1] = ACTIONS(101), + [aux_sym_append_statement_token1] = ACTIONS(103), + [aux_sym_include_statement_token1] = ACTIONS(105), + [sym_eol_comment] = ACTIONS(3), + [sym_bol_comment] = ACTIONS(3), + [sym_field_symbol_name] = ACTIONS(55), + }, + [6] = { + [sym__statement] = STATE(8), + [sym__implementation_statement] = STATE(8), + [sym_class_declaration] = STATE(8), + [sym_class_implementation] = STATE(8), + [sym_class_publication] = STATE(8), + [sym_class_local_friend_publication] = STATE(8), + [sym_interface_declaration] = STATE(8), + [sym_variable_declaration] = STATE(8), + [sym_chained_variable_declaration] = STATE(8), + [sym_chained_structure_declaration] = STATE(8), + [sym_field_symbol_declaration] = STATE(8), + [sym_chained_field_symbol_declaration] = STATE(8), + [sym_loop_statement] = STATE(8), + [sym_exit_statement] = STATE(8), + [sym_continue_statement] = STATE(8), + [sym_return_statement] = STATE(8), + [sym_report_statement] = STATE(8), + [sym_if_statement] = STATE(8), + [sym_check_statement] = STATE(8), + [sym__writeable_expression] = STATE(2960), + [sym_table_expression] = STATE(2960), + [sym_select_statement_obsolete] = STATE(8), + [sym_read_table_statement] = STATE(8), + [sym__data_object] = STATE(2960), + [sym_structured_data_object] = STATE(2960), + [sym_attribute_access_static] = STATE(2960), + [sym_assignment] = STATE(8), + [sym_try_catch_statement] = STATE(8), + [sym_catch_block] = STATE(2016), + [sym_write_statement] = STATE(8), + [sym_chained_write_statement] = STATE(8), + [sym_call_method] = STATE(8), + [sym_call_method_static] = STATE(8), + [sym_call_method_instance] = STATE(8), + [sym_call_function] = STATE(8), + [sym_raise_exception_statement] = STATE(8), + [sym_clear_statement] = STATE(8), + [sym_append_statement] = STATE(8), + [sym_append_statement_obsolete] = STATE(8), + [sym_create_object_statement] = STATE(8), + [sym_include_statement] = STATE(8), + [sym_macro_include] = STATE(8), + [sym_function_implementation] = STATE(8), + [sym_raise_statement] = STATE(8), + [aux_sym_program_repeat1] = STATE(8), + [sym_name] = ACTIONS(57), + [aux_sym_class_declaration_token1] = ACTIONS(59), + [aux_sym__create_addition_token1] = ACTIONS(61), + [aux_sym_interface_declaration_token1] = ACTIONS(63), + [aux_sym_variable_declaration_token1] = ACTIONS(65), + [aux_sym_field_symbol_declaration_token1] = ACTIONS(67), + [aux_sym_loop_statement_token1] = ACTIONS(69), + [aux_sym_exit_statement_token1] = ACTIONS(71), + [aux_sym_continue_statement_token1] = ACTIONS(73), + [aux_sym_return_statement_token1] = ACTIONS(75), + [aux_sym_report_statement_token1] = ACTIONS(77), + [aux_sym_if_statement_token1] = ACTIONS(79), + [aux_sym_check_statement_token1] = ACTIONS(81), + [aux_sym_select_statement_obsolete_token1] = ACTIONS(83), + [aux_sym_read_table_statement_token1] = ACTIONS(85), + [aux_sym_try_catch_statement_token1] = ACTIONS(87), [aux_sym_try_catch_statement_token2] = ACTIONS(185), [aux_sym_catch_statement_token1] = ACTIONS(185), - [aux_sym_write_statement_token1] = ACTIONS(95), - [aux_sym_call_function_token1] = ACTIONS(97), - [aux_sym_call_function_token2] = ACTIONS(99), - [aux_sym_raise_exception_statement_token1] = ACTIONS(101), - [aux_sym_clear_statement_token1] = ACTIONS(103), - [aux_sym_append_statement_token1] = ACTIONS(105), - [aux_sym_include_statement_token1] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(5), - [sym_field_symbol_name] = ACTIONS(57), + [aux_sym_write_statement_token1] = ACTIONS(93), + [aux_sym_call_function_token1] = ACTIONS(95), + [aux_sym_call_function_token2] = ACTIONS(97), + [aux_sym_raise_exception_statement_token1] = ACTIONS(99), + [aux_sym_clear_statement_token1] = ACTIONS(101), + [aux_sym_append_statement_token1] = ACTIONS(103), + [aux_sym_include_statement_token1] = ACTIONS(105), + [sym_eol_comment] = ACTIONS(3), + [sym_bol_comment] = ACTIONS(3), + [sym_field_symbol_name] = ACTIONS(55), }, - [6] = { - [sym__statement] = STATE(103), - [sym__implementation_statement] = STATE(104), - [sym_class_declaration] = STATE(104), - [sym_class_implementation] = STATE(104), - [sym_class_publication] = STATE(104), - [sym_class_local_friend_publication] = STATE(104), - [sym_interface_declaration] = STATE(104), - [sym_variable_declaration] = STATE(55), - [sym_chained_variable_declaration] = STATE(55), - [sym_chained_structure_declaration] = STATE(55), - [sym_field_symbol_declaration] = STATE(55), - [sym_chained_field_symbol_declaration] = STATE(55), - [sym_loop_statement] = STATE(55), - [sym_exit_statement] = STATE(55), - [sym_continue_statement] = STATE(55), - [sym_return_statement] = STATE(55), - [sym_report_statement] = STATE(55), - [sym_if_statement] = STATE(55), - [sym_check_statement] = STATE(55), - [sym__writeable_expression] = STATE(2973), - [sym_table_expression] = STATE(2997), - [sym_select_statement_obsolete] = STATE(55), - [sym_read_table_statement] = STATE(55), - [sym__data_object] = STATE(2973), - [sym_structured_data_object] = STATE(996), - [sym_attribute_access_static] = STATE(996), - [sym_assignment] = STATE(55), - [sym_try_catch_statement] = STATE(55), - [sym_catch_block] = STATE(2060), - [sym_write_statement] = STATE(55), - [sym_chained_write_statement] = STATE(55), - [sym_call_method] = STATE(55), - [sym_call_method_static] = STATE(55), - [sym_call_method_instance] = STATE(55), - [sym_call_function] = STATE(55), - [sym_raise_exception_statement] = STATE(55), - [sym_clear_statement] = STATE(55), - [sym_append_statement] = STATE(55), - [sym_append_statement_obsolete] = STATE(55), - [sym_create_object_statement] = STATE(55), - [sym_include_statement] = STATE(55), - [sym_macro_include] = STATE(55), - [sym_function_implementation] = STATE(104), - [sym_raise_statement] = STATE(55), - [sym_eol_comment] = STATE(6), - [sym_bol_comment] = STATE(6), - [aux_sym_program_repeat1] = STATE(7), - [sym_name] = ACTIONS(59), - [aux_sym_class_declaration_token1] = ACTIONS(61), - [aux_sym__create_addition_token1] = ACTIONS(63), - [aux_sym_interface_declaration_token1] = ACTIONS(65), - [aux_sym_variable_declaration_token1] = ACTIONS(67), - [aux_sym_field_symbol_declaration_token1] = ACTIONS(69), - [aux_sym_loop_statement_token1] = ACTIONS(71), - [aux_sym_exit_statement_token1] = ACTIONS(73), - [aux_sym_continue_statement_token1] = ACTIONS(75), - [aux_sym_return_statement_token1] = ACTIONS(77), - [aux_sym_report_statement_token1] = ACTIONS(79), - [aux_sym_if_statement_token1] = ACTIONS(81), - [aux_sym_check_statement_token1] = ACTIONS(83), - [anon_sym_STAR] = ACTIONS(35), - [aux_sym_select_statement_obsolete_token1] = ACTIONS(85), - [aux_sym_read_table_statement_token1] = ACTIONS(87), - [aux_sym_try_catch_statement_token1] = ACTIONS(89), + [7] = { + [sym__statement] = STATE(4), + [sym__implementation_statement] = STATE(4), + [sym_class_declaration] = STATE(4), + [sym_class_implementation] = STATE(4), + [sym_class_publication] = STATE(4), + [sym_class_local_friend_publication] = STATE(4), + [sym_interface_declaration] = STATE(4), + [sym_variable_declaration] = STATE(4), + [sym_chained_variable_declaration] = STATE(4), + [sym_chained_structure_declaration] = STATE(4), + [sym_field_symbol_declaration] = STATE(4), + [sym_chained_field_symbol_declaration] = STATE(4), + [sym_loop_statement] = STATE(4), + [sym_exit_statement] = STATE(4), + [sym_continue_statement] = STATE(4), + [sym_return_statement] = STATE(4), + [sym_report_statement] = STATE(4), + [sym_if_statement] = STATE(4), + [sym_check_statement] = STATE(4), + [sym__writeable_expression] = STATE(2960), + [sym_table_expression] = STATE(2960), + [sym_select_statement_obsolete] = STATE(4), + [sym_read_table_statement] = STATE(4), + [sym__data_object] = STATE(2960), + [sym_structured_data_object] = STATE(2960), + [sym_attribute_access_static] = STATE(2960), + [sym_assignment] = STATE(4), + [sym_try_catch_statement] = STATE(4), + [sym_write_statement] = STATE(4), + [sym_chained_write_statement] = STATE(4), + [sym_call_method] = STATE(4), + [sym_call_method_static] = STATE(4), + [sym_call_method_instance] = STATE(4), + [sym_call_function] = STATE(4), + [sym_raise_exception_statement] = STATE(4), + [sym_clear_statement] = STATE(4), + [sym_append_statement] = STATE(4), + [sym_append_statement_obsolete] = STATE(4), + [sym_create_object_statement] = STATE(4), + [sym_include_statement] = STATE(4), + [sym_macro_include] = STATE(4), + [sym_function_implementation] = STATE(4), + [sym_raise_statement] = STATE(4), + [aux_sym_program_repeat1] = STATE(4), + [sym_name] = ACTIONS(57), + [aux_sym_class_declaration_token1] = ACTIONS(59), + [aux_sym__create_addition_token1] = ACTIONS(61), + [aux_sym_interface_declaration_token1] = ACTIONS(63), + [aux_sym_variable_declaration_token1] = ACTIONS(65), + [aux_sym_field_symbol_declaration_token1] = ACTIONS(67), + [aux_sym_loop_statement_token1] = ACTIONS(69), + [aux_sym_exit_statement_token1] = ACTIONS(71), + [aux_sym_continue_statement_token1] = ACTIONS(73), + [aux_sym_return_statement_token1] = ACTIONS(75), + [aux_sym_report_statement_token1] = ACTIONS(77), + [aux_sym_if_statement_token1] = ACTIONS(79), + [aux_sym_check_statement_token1] = ACTIONS(81), + [aux_sym_select_statement_obsolete_token1] = ACTIONS(83), + [aux_sym_read_table_statement_token1] = ACTIONS(85), + [aux_sym_try_catch_statement_token1] = ACTIONS(87), [aux_sym_try_catch_statement_token2] = ACTIONS(187), [aux_sym_catch_statement_token1] = ACTIONS(187), - [aux_sym_write_statement_token1] = ACTIONS(95), - [aux_sym_call_function_token1] = ACTIONS(97), - [aux_sym_call_function_token2] = ACTIONS(99), - [aux_sym_raise_exception_statement_token1] = ACTIONS(101), - [aux_sym_clear_statement_token1] = ACTIONS(103), - [aux_sym_append_statement_token1] = ACTIONS(105), - [aux_sym_include_statement_token1] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(5), - [sym_field_symbol_name] = ACTIONS(57), + [aux_sym_write_statement_token1] = ACTIONS(93), + [aux_sym_call_function_token1] = ACTIONS(95), + [aux_sym_call_function_token2] = ACTIONS(97), + [aux_sym_raise_exception_statement_token1] = ACTIONS(99), + [aux_sym_clear_statement_token1] = ACTIONS(101), + [aux_sym_append_statement_token1] = ACTIONS(103), + [aux_sym_include_statement_token1] = ACTIONS(105), + [sym_eol_comment] = ACTIONS(3), + [sym_bol_comment] = ACTIONS(3), + [sym_field_symbol_name] = ACTIONS(55), }, - [7] = { - [sym__statement] = STATE(103), - [sym__implementation_statement] = STATE(104), - [sym_class_declaration] = STATE(104), - [sym_class_implementation] = STATE(104), - [sym_class_publication] = STATE(104), - [sym_class_local_friend_publication] = STATE(104), - [sym_interface_declaration] = STATE(104), - [sym_variable_declaration] = STATE(55), - [sym_chained_variable_declaration] = STATE(55), - [sym_chained_structure_declaration] = STATE(55), - [sym_field_symbol_declaration] = STATE(55), - [sym_chained_field_symbol_declaration] = STATE(55), - [sym_loop_statement] = STATE(55), - [sym_exit_statement] = STATE(55), - [sym_continue_statement] = STATE(55), - [sym_return_statement] = STATE(55), - [sym_report_statement] = STATE(55), - [sym_if_statement] = STATE(55), - [sym_check_statement] = STATE(55), - [sym__writeable_expression] = STATE(2973), - [sym_table_expression] = STATE(2997), - [sym_select_statement_obsolete] = STATE(55), - [sym_read_table_statement] = STATE(55), - [sym__data_object] = STATE(2973), - [sym_structured_data_object] = STATE(996), - [sym_attribute_access_static] = STATE(996), - [sym_assignment] = STATE(55), - [sym_try_catch_statement] = STATE(55), - [sym_write_statement] = STATE(55), - [sym_chained_write_statement] = STATE(55), - [sym_call_method] = STATE(55), - [sym_call_method_static] = STATE(55), - [sym_call_method_instance] = STATE(55), - [sym_call_function] = STATE(55), - [sym_raise_exception_statement] = STATE(55), - [sym_clear_statement] = STATE(55), - [sym_append_statement] = STATE(55), - [sym_append_statement_obsolete] = STATE(55), - [sym_create_object_statement] = STATE(55), - [sym_include_statement] = STATE(55), - [sym_macro_include] = STATE(55), - [sym_function_implementation] = STATE(104), - [sym_raise_statement] = STATE(55), - [sym_eol_comment] = STATE(7), - [sym_bol_comment] = STATE(7), + [8] = { + [sym__statement] = STATE(4), + [sym__implementation_statement] = STATE(4), + [sym_class_declaration] = STATE(4), + [sym_class_implementation] = STATE(4), + [sym_class_publication] = STATE(4), + [sym_class_local_friend_publication] = STATE(4), + [sym_interface_declaration] = STATE(4), + [sym_variable_declaration] = STATE(4), + [sym_chained_variable_declaration] = STATE(4), + [sym_chained_structure_declaration] = STATE(4), + [sym_field_symbol_declaration] = STATE(4), + [sym_chained_field_symbol_declaration] = STATE(4), + [sym_loop_statement] = STATE(4), + [sym_exit_statement] = STATE(4), + [sym_continue_statement] = STATE(4), + [sym_return_statement] = STATE(4), + [sym_report_statement] = STATE(4), + [sym_if_statement] = STATE(4), + [sym_check_statement] = STATE(4), + [sym__writeable_expression] = STATE(2960), + [sym_table_expression] = STATE(2960), + [sym_select_statement_obsolete] = STATE(4), + [sym_read_table_statement] = STATE(4), + [sym__data_object] = STATE(2960), + [sym_structured_data_object] = STATE(2960), + [sym_attribute_access_static] = STATE(2960), + [sym_assignment] = STATE(4), + [sym_try_catch_statement] = STATE(4), + [sym_write_statement] = STATE(4), + [sym_chained_write_statement] = STATE(4), + [sym_call_method] = STATE(4), + [sym_call_method_static] = STATE(4), + [sym_call_method_instance] = STATE(4), + [sym_call_function] = STATE(4), + [sym_raise_exception_statement] = STATE(4), + [sym_clear_statement] = STATE(4), + [sym_append_statement] = STATE(4), + [sym_append_statement_obsolete] = STATE(4), + [sym_create_object_statement] = STATE(4), + [sym_include_statement] = STATE(4), + [sym_macro_include] = STATE(4), + [sym_function_implementation] = STATE(4), + [sym_raise_statement] = STATE(4), [aux_sym_program_repeat1] = STATE(4), - [sym_name] = ACTIONS(59), - [aux_sym_class_declaration_token1] = ACTIONS(61), - [aux_sym__create_addition_token1] = ACTIONS(63), - [aux_sym_interface_declaration_token1] = ACTIONS(65), - [aux_sym_variable_declaration_token1] = ACTIONS(67), - [aux_sym_field_symbol_declaration_token1] = ACTIONS(69), - [aux_sym_loop_statement_token1] = ACTIONS(71), - [aux_sym_exit_statement_token1] = ACTIONS(73), - [aux_sym_continue_statement_token1] = ACTIONS(75), - [aux_sym_return_statement_token1] = ACTIONS(77), - [aux_sym_report_statement_token1] = ACTIONS(79), - [aux_sym_if_statement_token1] = ACTIONS(81), - [aux_sym_check_statement_token1] = ACTIONS(83), - [anon_sym_STAR] = ACTIONS(35), - [aux_sym_select_statement_obsolete_token1] = ACTIONS(85), - [aux_sym_read_table_statement_token1] = ACTIONS(87), - [aux_sym_try_catch_statement_token1] = ACTIONS(89), + [sym_name] = ACTIONS(57), + [aux_sym_class_declaration_token1] = ACTIONS(59), + [aux_sym__create_addition_token1] = ACTIONS(61), + [aux_sym_interface_declaration_token1] = ACTIONS(63), + [aux_sym_variable_declaration_token1] = ACTIONS(65), + [aux_sym_field_symbol_declaration_token1] = ACTIONS(67), + [aux_sym_loop_statement_token1] = ACTIONS(69), + [aux_sym_exit_statement_token1] = ACTIONS(71), + [aux_sym_continue_statement_token1] = ACTIONS(73), + [aux_sym_return_statement_token1] = ACTIONS(75), + [aux_sym_report_statement_token1] = ACTIONS(77), + [aux_sym_if_statement_token1] = ACTIONS(79), + [aux_sym_check_statement_token1] = ACTIONS(81), + [aux_sym_select_statement_obsolete_token1] = ACTIONS(83), + [aux_sym_read_table_statement_token1] = ACTIONS(85), + [aux_sym_try_catch_statement_token1] = ACTIONS(87), [aux_sym_try_catch_statement_token2] = ACTIONS(189), [aux_sym_catch_statement_token1] = ACTIONS(189), - [aux_sym_write_statement_token1] = ACTIONS(95), - [aux_sym_call_function_token1] = ACTIONS(97), - [aux_sym_call_function_token2] = ACTIONS(99), - [aux_sym_raise_exception_statement_token1] = ACTIONS(101), - [aux_sym_clear_statement_token1] = ACTIONS(103), - [aux_sym_append_statement_token1] = ACTIONS(105), - [aux_sym_include_statement_token1] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(5), - [sym_field_symbol_name] = ACTIONS(57), - }, - [8] = { - [sym__statement] = STATE(103), - [sym__implementation_statement] = STATE(104), - [sym_class_declaration] = STATE(104), - [sym_class_implementation] = STATE(104), - [sym_class_publication] = STATE(104), - [sym_class_local_friend_publication] = STATE(104), - [sym_interface_declaration] = STATE(104), - [sym_variable_declaration] = STATE(55), - [sym_chained_variable_declaration] = STATE(55), - [sym_chained_structure_declaration] = STATE(55), - [sym_field_symbol_declaration] = STATE(55), - [sym_chained_field_symbol_declaration] = STATE(55), - [sym_loop_statement] = STATE(55), - [sym_exit_statement] = STATE(55), - [sym_continue_statement] = STATE(55), - [sym_return_statement] = STATE(55), - [sym_report_statement] = STATE(55), - [sym_if_statement] = STATE(55), - [sym_check_statement] = STATE(55), - [sym__writeable_expression] = STATE(2973), - [sym_table_expression] = STATE(2997), - [sym_select_statement_obsolete] = STATE(55), - [sym_read_table_statement] = STATE(55), - [sym__data_object] = STATE(2973), - [sym_structured_data_object] = STATE(996), - [sym_attribute_access_static] = STATE(996), - [sym_assignment] = STATE(55), - [sym_try_catch_statement] = STATE(55), - [sym_write_statement] = STATE(55), - [sym_chained_write_statement] = STATE(55), - [sym_call_method] = STATE(55), - [sym_call_method_static] = STATE(55), - [sym_call_method_instance] = STATE(55), - [sym_call_function] = STATE(55), - [sym_raise_exception_statement] = STATE(55), - [sym_clear_statement] = STATE(55), - [sym_append_statement] = STATE(55), - [sym_append_statement_obsolete] = STATE(55), - [sym_create_object_statement] = STATE(55), - [sym_include_statement] = STATE(55), - [sym_macro_include] = STATE(55), - [sym_function_implementation] = STATE(104), - [sym_raise_statement] = STATE(55), - [sym_eol_comment] = STATE(8), - [sym_bol_comment] = STATE(8), - [aux_sym_program_repeat1] = STATE(4), - [sym_name] = ACTIONS(59), - [aux_sym_class_declaration_token1] = ACTIONS(61), - [aux_sym__create_addition_token1] = ACTIONS(63), - [aux_sym_interface_declaration_token1] = ACTIONS(65), - [aux_sym_variable_declaration_token1] = ACTIONS(67), - [aux_sym_field_symbol_declaration_token1] = ACTIONS(69), - [aux_sym_loop_statement_token1] = ACTIONS(71), - [aux_sym_exit_statement_token1] = ACTIONS(73), - [aux_sym_continue_statement_token1] = ACTIONS(75), - [aux_sym_return_statement_token1] = ACTIONS(77), - [aux_sym_report_statement_token1] = ACTIONS(79), - [aux_sym_if_statement_token1] = ACTIONS(81), - [aux_sym_check_statement_token1] = ACTIONS(83), - [anon_sym_STAR] = ACTIONS(35), - [aux_sym_select_statement_obsolete_token1] = ACTIONS(85), - [aux_sym_read_table_statement_token1] = ACTIONS(87), - [aux_sym_try_catch_statement_token1] = ACTIONS(89), - [aux_sym_try_catch_statement_token2] = ACTIONS(191), - [aux_sym_catch_statement_token1] = ACTIONS(191), - [aux_sym_write_statement_token1] = ACTIONS(95), - [aux_sym_call_function_token1] = ACTIONS(97), - [aux_sym_call_function_token2] = ACTIONS(99), - [aux_sym_raise_exception_statement_token1] = ACTIONS(101), - [aux_sym_clear_statement_token1] = ACTIONS(103), - [aux_sym_append_statement_token1] = ACTIONS(105), - [aux_sym_include_statement_token1] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(5), - [sym_field_symbol_name] = ACTIONS(57), + [aux_sym_write_statement_token1] = ACTIONS(93), + [aux_sym_call_function_token1] = ACTIONS(95), + [aux_sym_call_function_token2] = ACTIONS(97), + [aux_sym_raise_exception_statement_token1] = ACTIONS(99), + [aux_sym_clear_statement_token1] = ACTIONS(101), + [aux_sym_append_statement_token1] = ACTIONS(103), + [aux_sym_include_statement_token1] = ACTIONS(105), + [sym_eol_comment] = ACTIONS(3), + [sym_bol_comment] = ACTIONS(3), + [sym_field_symbol_name] = ACTIONS(55), }, [9] = { - [sym__statement] = STATE(103), - [sym__implementation_statement] = STATE(104), - [sym_class_declaration] = STATE(104), - [sym_class_implementation] = STATE(104), - [sym_class_publication] = STATE(104), - [sym_class_local_friend_publication] = STATE(104), - [sym_interface_declaration] = STATE(104), - [sym_variable_declaration] = STATE(55), - [sym_chained_variable_declaration] = STATE(55), - [sym_chained_structure_declaration] = STATE(55), - [sym_field_symbol_declaration] = STATE(55), - [sym_chained_field_symbol_declaration] = STATE(55), - [sym_loop_statement] = STATE(55), - [sym_exit_statement] = STATE(55), - [sym_continue_statement] = STATE(55), - [sym_return_statement] = STATE(55), - [sym_report_statement] = STATE(55), - [sym_if_statement] = STATE(55), - [sym_check_statement] = STATE(55), - [sym__writeable_expression] = STATE(2973), - [sym_table_expression] = STATE(2997), - [sym_select_statement_obsolete] = STATE(55), - [sym_read_table_statement] = STATE(55), - [sym__data_object] = STATE(2973), - [sym_structured_data_object] = STATE(996), - [sym_attribute_access_static] = STATE(996), - [sym_assignment] = STATE(55), - [sym_try_catch_statement] = STATE(55), - [sym_write_statement] = STATE(55), - [sym_chained_write_statement] = STATE(55), - [sym_call_method] = STATE(55), - [sym_call_method_static] = STATE(55), - [sym_call_method_instance] = STATE(55), - [sym_call_function] = STATE(55), - [sym_raise_exception_statement] = STATE(55), - [sym_clear_statement] = STATE(55), - [sym_append_statement] = STATE(55), - [sym_append_statement_obsolete] = STATE(55), - [sym_create_object_statement] = STATE(55), - [sym_include_statement] = STATE(55), - [sym_macro_include] = STATE(55), - [sym_function_implementation] = STATE(104), - [sym_raise_statement] = STATE(55), - [sym_eol_comment] = STATE(9), - [sym_bol_comment] = STATE(9), - [aux_sym_program_repeat1] = STATE(25), - [sym_name] = ACTIONS(59), - [aux_sym_class_declaration_token1] = ACTIONS(61), - [aux_sym__create_addition_token1] = ACTIONS(63), - [aux_sym_interface_declaration_token1] = ACTIONS(65), - [aux_sym_variable_declaration_token1] = ACTIONS(67), - [aux_sym_field_symbol_declaration_token1] = ACTIONS(69), - [aux_sym_loop_statement_token1] = ACTIONS(71), - [aux_sym_loop_statement_token6] = ACTIONS(193), - [aux_sym_exit_statement_token1] = ACTIONS(73), - [aux_sym_continue_statement_token1] = ACTIONS(75), - [aux_sym_return_statement_token1] = ACTIONS(77), - [aux_sym_report_statement_token1] = ACTIONS(79), - [aux_sym_if_statement_token1] = ACTIONS(81), - [aux_sym_check_statement_token1] = ACTIONS(83), - [anon_sym_STAR] = ACTIONS(35), - [aux_sym_select_statement_obsolete_token1] = ACTIONS(85), - [aux_sym_read_table_statement_token1] = ACTIONS(87), - [aux_sym_try_catch_statement_token1] = ACTIONS(89), - [aux_sym_write_statement_token1] = ACTIONS(95), - [aux_sym_call_function_token1] = ACTIONS(97), - [aux_sym_call_function_token2] = ACTIONS(99), - [aux_sym_raise_exception_statement_token1] = ACTIONS(101), - [aux_sym_clear_statement_token1] = ACTIONS(103), - [aux_sym_append_statement_token1] = ACTIONS(105), - [aux_sym_include_statement_token1] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(5), - [sym_field_symbol_name] = ACTIONS(57), + [sym__statement] = STATE(4), + [sym__implementation_statement] = STATE(4), + [sym_class_declaration] = STATE(4), + [sym_class_implementation] = STATE(4), + [sym_class_publication] = STATE(4), + [sym_class_local_friend_publication] = STATE(4), + [sym_interface_declaration] = STATE(4), + [sym_variable_declaration] = STATE(4), + [sym_chained_variable_declaration] = STATE(4), + [sym_chained_structure_declaration] = STATE(4), + [sym_field_symbol_declaration] = STATE(4), + [sym_chained_field_symbol_declaration] = STATE(4), + [sym_loop_statement] = STATE(4), + [sym_exit_statement] = STATE(4), + [sym_continue_statement] = STATE(4), + [sym_return_statement] = STATE(4), + [sym_report_statement] = STATE(4), + [sym_if_statement] = STATE(4), + [sym_check_statement] = STATE(4), + [sym__writeable_expression] = STATE(2960), + [sym_table_expression] = STATE(2960), + [sym_select_statement_obsolete] = STATE(4), + [sym_read_table_statement] = STATE(4), + [sym__data_object] = STATE(2960), + [sym_structured_data_object] = STATE(2960), + [sym_attribute_access_static] = STATE(2960), + [sym_assignment] = STATE(4), + [sym_try_catch_statement] = STATE(4), + [sym_write_statement] = STATE(4), + [sym_chained_write_statement] = STATE(4), + [sym_call_method] = STATE(4), + [sym_call_method_static] = STATE(4), + [sym_call_method_instance] = STATE(4), + [sym_call_function] = STATE(4), + [sym_raise_exception_statement] = STATE(4), + [sym_clear_statement] = STATE(4), + [sym_append_statement] = STATE(4), + [sym_append_statement_obsolete] = STATE(4), + [sym_create_object_statement] = STATE(4), + [sym_include_statement] = STATE(4), + [sym_macro_include] = STATE(4), + [sym_function_implementation] = STATE(4), + [sym_raise_statement] = STATE(4), + [aux_sym_program_repeat1] = STATE(4), + [sym_name] = ACTIONS(57), + [aux_sym_class_declaration_token1] = ACTIONS(59), + [aux_sym__create_addition_token1] = ACTIONS(61), + [aux_sym_interface_declaration_token1] = ACTIONS(63), + [aux_sym_variable_declaration_token1] = ACTIONS(65), + [aux_sym_field_symbol_declaration_token1] = ACTIONS(67), + [aux_sym_loop_statement_token1] = ACTIONS(69), + [aux_sym_loop_statement_token6] = ACTIONS(191), + [aux_sym_exit_statement_token1] = ACTIONS(71), + [aux_sym_continue_statement_token1] = ACTIONS(73), + [aux_sym_return_statement_token1] = ACTIONS(75), + [aux_sym_report_statement_token1] = ACTIONS(77), + [aux_sym_if_statement_token1] = ACTIONS(79), + [aux_sym_check_statement_token1] = ACTIONS(81), + [aux_sym_select_statement_obsolete_token1] = ACTIONS(83), + [aux_sym_read_table_statement_token1] = ACTIONS(85), + [aux_sym_try_catch_statement_token1] = ACTIONS(87), + [aux_sym_write_statement_token1] = ACTIONS(93), + [aux_sym_call_function_token1] = ACTIONS(95), + [aux_sym_call_function_token2] = ACTIONS(97), + [aux_sym_raise_exception_statement_token1] = ACTIONS(99), + [aux_sym_clear_statement_token1] = ACTIONS(101), + [aux_sym_append_statement_token1] = ACTIONS(103), + [aux_sym_include_statement_token1] = ACTIONS(105), + [sym_eol_comment] = ACTIONS(3), + [sym_bol_comment] = ACTIONS(3), + [sym_field_symbol_name] = ACTIONS(55), }, [10] = { - [sym__statement] = STATE(103), - [sym__implementation_statement] = STATE(104), - [sym_class_declaration] = STATE(104), - [sym_class_implementation] = STATE(104), - [sym_class_publication] = STATE(104), - [sym_class_local_friend_publication] = STATE(104), - [sym_interface_declaration] = STATE(104), - [sym_variable_declaration] = STATE(55), - [sym_chained_variable_declaration] = STATE(55), - [sym_chained_structure_declaration] = STATE(55), - [sym_field_symbol_declaration] = STATE(55), - [sym_chained_field_symbol_declaration] = STATE(55), - [sym_loop_statement] = STATE(55), - [sym_exit_statement] = STATE(55), - [sym_continue_statement] = STATE(55), - [sym_return_statement] = STATE(55), - [sym_report_statement] = STATE(55), - [sym_if_statement] = STATE(55), - [sym_check_statement] = STATE(55), - [sym__writeable_expression] = STATE(2973), - [sym_table_expression] = STATE(2997), - [sym_select_statement_obsolete] = STATE(55), - [sym_read_table_statement] = STATE(55), - [sym__data_object] = STATE(2973), - [sym_structured_data_object] = STATE(996), - [sym_attribute_access_static] = STATE(996), - [sym_assignment] = STATE(55), - [sym_try_catch_statement] = STATE(55), - [sym_write_statement] = STATE(55), - [sym_chained_write_statement] = STATE(55), - [sym_call_method] = STATE(55), - [sym_call_method_static] = STATE(55), - [sym_call_method_instance] = STATE(55), - [sym_call_function] = STATE(55), - [sym_raise_exception_statement] = STATE(55), - [sym_clear_statement] = STATE(55), - [sym_append_statement] = STATE(55), - [sym_append_statement_obsolete] = STATE(55), - [sym_create_object_statement] = STATE(55), - [sym_include_statement] = STATE(55), - [sym_macro_include] = STATE(55), - [sym_function_implementation] = STATE(104), - [sym_raise_statement] = STATE(55), - [sym_eol_comment] = STATE(10), - [sym_bol_comment] = STATE(10), - [aux_sym_program_repeat1] = STATE(13), - [sym_name] = ACTIONS(59), - [aux_sym_class_declaration_token1] = ACTIONS(61), - [aux_sym__create_addition_token1] = ACTIONS(63), - [aux_sym_interface_declaration_token1] = ACTIONS(65), - [aux_sym_variable_declaration_token1] = ACTIONS(67), - [aux_sym_field_symbol_declaration_token1] = ACTIONS(69), - [aux_sym_loop_statement_token1] = ACTIONS(71), - [aux_sym_loop_statement_token6] = ACTIONS(195), - [aux_sym_exit_statement_token1] = ACTIONS(73), - [aux_sym_continue_statement_token1] = ACTIONS(75), - [aux_sym_return_statement_token1] = ACTIONS(77), - [aux_sym_report_statement_token1] = ACTIONS(79), - [aux_sym_if_statement_token1] = ACTIONS(81), - [aux_sym_check_statement_token1] = ACTIONS(83), - [anon_sym_STAR] = ACTIONS(35), - [aux_sym_select_statement_obsolete_token1] = ACTIONS(85), - [aux_sym_read_table_statement_token1] = ACTIONS(87), - [aux_sym_try_catch_statement_token1] = ACTIONS(89), - [aux_sym_write_statement_token1] = ACTIONS(95), - [aux_sym_call_function_token1] = ACTIONS(97), - [aux_sym_call_function_token2] = ACTIONS(99), - [aux_sym_raise_exception_statement_token1] = ACTIONS(101), - [aux_sym_clear_statement_token1] = ACTIONS(103), - [aux_sym_append_statement_token1] = ACTIONS(105), - [aux_sym_include_statement_token1] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(5), - [sym_field_symbol_name] = ACTIONS(57), + [sym__statement] = STATE(22), + [sym__implementation_statement] = STATE(22), + [sym_class_declaration] = STATE(22), + [sym_class_implementation] = STATE(22), + [sym_class_publication] = STATE(22), + [sym_class_local_friend_publication] = STATE(22), + [sym_interface_declaration] = STATE(22), + [sym_variable_declaration] = STATE(22), + [sym_chained_variable_declaration] = STATE(22), + [sym_chained_structure_declaration] = STATE(22), + [sym_field_symbol_declaration] = STATE(22), + [sym_chained_field_symbol_declaration] = STATE(22), + [sym_loop_statement] = STATE(22), + [sym_exit_statement] = STATE(22), + [sym_continue_statement] = STATE(22), + [sym_return_statement] = STATE(22), + [sym_report_statement] = STATE(22), + [sym_if_statement] = STATE(22), + [sym_check_statement] = STATE(22), + [sym__writeable_expression] = STATE(2960), + [sym_table_expression] = STATE(2960), + [sym_select_statement_obsolete] = STATE(22), + [sym_read_table_statement] = STATE(22), + [sym__data_object] = STATE(2960), + [sym_structured_data_object] = STATE(2960), + [sym_attribute_access_static] = STATE(2960), + [sym_assignment] = STATE(22), + [sym_try_catch_statement] = STATE(22), + [sym_write_statement] = STATE(22), + [sym_chained_write_statement] = STATE(22), + [sym_call_method] = STATE(22), + [sym_call_method_static] = STATE(22), + [sym_call_method_instance] = STATE(22), + [sym_call_function] = STATE(22), + [sym_raise_exception_statement] = STATE(22), + [sym_clear_statement] = STATE(22), + [sym_append_statement] = STATE(22), + [sym_append_statement_obsolete] = STATE(22), + [sym_create_object_statement] = STATE(22), + [sym_include_statement] = STATE(22), + [sym_macro_include] = STATE(22), + [sym_function_implementation] = STATE(22), + [sym_raise_statement] = STATE(22), + [aux_sym_program_repeat1] = STATE(22), + [sym_name] = ACTIONS(57), + [aux_sym_class_declaration_token1] = ACTIONS(59), + [aux_sym__create_addition_token1] = ACTIONS(61), + [aux_sym_interface_declaration_token1] = ACTIONS(63), + [aux_sym_variable_declaration_token1] = ACTIONS(65), + [aux_sym_field_symbol_declaration_token1] = ACTIONS(67), + [aux_sym_loop_statement_token1] = ACTIONS(69), + [aux_sym_exit_statement_token1] = ACTIONS(71), + [aux_sym_continue_statement_token1] = ACTIONS(73), + [aux_sym_return_statement_token1] = ACTIONS(75), + [aux_sym_report_statement_token1] = ACTIONS(77), + [aux_sym_if_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token2] = ACTIONS(193), + [aux_sym_check_statement_token1] = ACTIONS(81), + [aux_sym_select_statement_obsolete_token1] = ACTIONS(83), + [aux_sym_read_table_statement_token1] = ACTIONS(85), + [aux_sym_try_catch_statement_token1] = ACTIONS(87), + [aux_sym_write_statement_token1] = ACTIONS(93), + [aux_sym_call_function_token1] = ACTIONS(95), + [aux_sym_call_function_token2] = ACTIONS(97), + [aux_sym_raise_exception_statement_token1] = ACTIONS(99), + [aux_sym_clear_statement_token1] = ACTIONS(101), + [aux_sym_append_statement_token1] = ACTIONS(103), + [aux_sym_include_statement_token1] = ACTIONS(105), + [sym_eol_comment] = ACTIONS(3), + [sym_bol_comment] = ACTIONS(3), + [sym_field_symbol_name] = ACTIONS(55), }, [11] = { - [sym__statement] = STATE(103), - [sym__implementation_statement] = STATE(104), - [sym_class_declaration] = STATE(104), - [sym_class_implementation] = STATE(104), - [sym_class_publication] = STATE(104), - [sym_class_local_friend_publication] = STATE(104), - [sym_interface_declaration] = STATE(104), - [sym_variable_declaration] = STATE(55), - [sym_chained_variable_declaration] = STATE(55), - [sym_chained_structure_declaration] = STATE(55), - [sym_field_symbol_declaration] = STATE(55), - [sym_chained_field_symbol_declaration] = STATE(55), - [sym_loop_statement] = STATE(55), - [sym_exit_statement] = STATE(55), - [sym_continue_statement] = STATE(55), - [sym_return_statement] = STATE(55), - [sym_report_statement] = STATE(55), - [sym_if_statement] = STATE(55), - [sym_check_statement] = STATE(55), - [sym__writeable_expression] = STATE(2973), - [sym_table_expression] = STATE(2997), - [sym_select_statement_obsolete] = STATE(55), - [sym_read_table_statement] = STATE(55), - [sym__data_object] = STATE(2973), - [sym_structured_data_object] = STATE(996), - [sym_attribute_access_static] = STATE(996), - [sym_assignment] = STATE(55), - [sym_try_catch_statement] = STATE(55), - [sym_write_statement] = STATE(55), - [sym_chained_write_statement] = STATE(55), - [sym_call_method] = STATE(55), - [sym_call_method_static] = STATE(55), - [sym_call_method_instance] = STATE(55), - [sym_call_function] = STATE(55), - [sym_raise_exception_statement] = STATE(55), - [sym_clear_statement] = STATE(55), - [sym_append_statement] = STATE(55), - [sym_append_statement_obsolete] = STATE(55), - [sym_create_object_statement] = STATE(55), - [sym_include_statement] = STATE(55), - [sym_macro_include] = STATE(55), - [sym_function_implementation] = STATE(104), - [sym_raise_statement] = STATE(55), - [sym_eol_comment] = STATE(11), - [sym_bol_comment] = STATE(11), - [aux_sym_program_repeat1] = STATE(22), - [sym_name] = ACTIONS(59), - [aux_sym_class_declaration_token1] = ACTIONS(61), - [aux_sym__create_addition_token1] = ACTIONS(63), - [aux_sym_interface_declaration_token1] = ACTIONS(65), - [aux_sym_variable_declaration_token1] = ACTIONS(67), - [aux_sym_field_symbol_declaration_token1] = ACTIONS(69), - [aux_sym_loop_statement_token1] = ACTIONS(71), - [aux_sym_exit_statement_token1] = ACTIONS(73), - [aux_sym_continue_statement_token1] = ACTIONS(75), - [aux_sym_return_statement_token1] = ACTIONS(77), - [aux_sym_report_statement_token1] = ACTIONS(79), - [aux_sym_if_statement_token1] = ACTIONS(81), - [aux_sym_if_statement_token2] = ACTIONS(197), - [aux_sym_check_statement_token1] = ACTIONS(83), - [anon_sym_STAR] = ACTIONS(35), - [aux_sym_select_statement_obsolete_token1] = ACTIONS(85), - [aux_sym_read_table_statement_token1] = ACTIONS(87), - [aux_sym_try_catch_statement_token1] = ACTIONS(89), - [aux_sym_write_statement_token1] = ACTIONS(95), - [aux_sym_call_function_token1] = ACTIONS(97), - [aux_sym_call_function_token2] = ACTIONS(99), - [aux_sym_raise_exception_statement_token1] = ACTIONS(101), - [aux_sym_clear_statement_token1] = ACTIONS(103), - [aux_sym_append_statement_token1] = ACTIONS(105), - [aux_sym_include_statement_token1] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(5), - [sym_field_symbol_name] = ACTIONS(57), + [sym__statement] = STATE(18), + [sym__implementation_statement] = STATE(18), + [sym_class_declaration] = STATE(18), + [sym_class_implementation] = STATE(18), + [sym_class_publication] = STATE(18), + [sym_class_local_friend_publication] = STATE(18), + [sym_interface_declaration] = STATE(18), + [sym_variable_declaration] = STATE(18), + [sym_chained_variable_declaration] = STATE(18), + [sym_chained_structure_declaration] = STATE(18), + [sym_field_symbol_declaration] = STATE(18), + [sym_chained_field_symbol_declaration] = STATE(18), + [sym_loop_statement] = STATE(18), + [sym_exit_statement] = STATE(18), + [sym_continue_statement] = STATE(18), + [sym_return_statement] = STATE(18), + [sym_report_statement] = STATE(18), + [sym_if_statement] = STATE(18), + [sym_check_statement] = STATE(18), + [sym__writeable_expression] = STATE(2960), + [sym_table_expression] = STATE(2960), + [sym_select_statement_obsolete] = STATE(18), + [sym_read_table_statement] = STATE(18), + [sym__data_object] = STATE(2960), + [sym_structured_data_object] = STATE(2960), + [sym_attribute_access_static] = STATE(2960), + [sym_assignment] = STATE(18), + [sym_try_catch_statement] = STATE(18), + [sym_write_statement] = STATE(18), + [sym_chained_write_statement] = STATE(18), + [sym_call_method] = STATE(18), + [sym_call_method_static] = STATE(18), + [sym_call_method_instance] = STATE(18), + [sym_call_function] = STATE(18), + [sym_raise_exception_statement] = STATE(18), + [sym_clear_statement] = STATE(18), + [sym_append_statement] = STATE(18), + [sym_append_statement_obsolete] = STATE(18), + [sym_create_object_statement] = STATE(18), + [sym_include_statement] = STATE(18), + [sym_macro_include] = STATE(18), + [sym_function_implementation] = STATE(18), + [sym_raise_statement] = STATE(18), + [aux_sym_program_repeat1] = STATE(18), + [sym_name] = ACTIONS(57), + [aux_sym_class_declaration_token1] = ACTIONS(59), + [aux_sym__create_addition_token1] = ACTIONS(61), + [aux_sym_interface_declaration_token1] = ACTIONS(63), + [aux_sym_variable_declaration_token1] = ACTIONS(65), + [aux_sym_field_symbol_declaration_token1] = ACTIONS(67), + [aux_sym_loop_statement_token1] = ACTIONS(69), + [aux_sym_loop_statement_token6] = ACTIONS(195), + [aux_sym_exit_statement_token1] = ACTIONS(71), + [aux_sym_continue_statement_token1] = ACTIONS(73), + [aux_sym_return_statement_token1] = ACTIONS(75), + [aux_sym_report_statement_token1] = ACTIONS(77), + [aux_sym_if_statement_token1] = ACTIONS(79), + [aux_sym_check_statement_token1] = ACTIONS(81), + [aux_sym_select_statement_obsolete_token1] = ACTIONS(83), + [aux_sym_read_table_statement_token1] = ACTIONS(85), + [aux_sym_try_catch_statement_token1] = ACTIONS(87), + [aux_sym_write_statement_token1] = ACTIONS(93), + [aux_sym_call_function_token1] = ACTIONS(95), + [aux_sym_call_function_token2] = ACTIONS(97), + [aux_sym_raise_exception_statement_token1] = ACTIONS(99), + [aux_sym_clear_statement_token1] = ACTIONS(101), + [aux_sym_append_statement_token1] = ACTIONS(103), + [aux_sym_include_statement_token1] = ACTIONS(105), + [sym_eol_comment] = ACTIONS(3), + [sym_bol_comment] = ACTIONS(3), + [sym_field_symbol_name] = ACTIONS(55), }, [12] = { - [sym__statement] = STATE(103), - [sym__implementation_statement] = STATE(104), - [sym_class_declaration] = STATE(104), - [sym_class_implementation] = STATE(104), - [sym_class_publication] = STATE(104), - [sym_class_local_friend_publication] = STATE(104), - [sym_interface_declaration] = STATE(104), - [sym_variable_declaration] = STATE(55), - [sym_chained_variable_declaration] = STATE(55), - [sym_chained_structure_declaration] = STATE(55), - [sym_field_symbol_declaration] = STATE(55), - [sym_chained_field_symbol_declaration] = STATE(55), - [sym_loop_statement] = STATE(55), - [sym_exit_statement] = STATE(55), - [sym_continue_statement] = STATE(55), - [sym_return_statement] = STATE(55), - [sym_report_statement] = STATE(55), - [sym_if_statement] = STATE(55), - [sym_check_statement] = STATE(55), - [sym__writeable_expression] = STATE(2973), - [sym_table_expression] = STATE(2997), - [sym_select_statement_obsolete] = STATE(55), - [sym_read_table_statement] = STATE(55), - [sym__data_object] = STATE(2973), - [sym_structured_data_object] = STATE(996), - [sym_attribute_access_static] = STATE(996), - [sym_assignment] = STATE(55), - [sym_try_catch_statement] = STATE(55), - [sym_write_statement] = STATE(55), - [sym_chained_write_statement] = STATE(55), - [sym_call_method] = STATE(55), - [sym_call_method_static] = STATE(55), - [sym_call_method_instance] = STATE(55), - [sym_call_function] = STATE(55), - [sym_raise_exception_statement] = STATE(55), - [sym_clear_statement] = STATE(55), - [sym_append_statement] = STATE(55), - [sym_append_statement_obsolete] = STATE(55), - [sym_create_object_statement] = STATE(55), - [sym_include_statement] = STATE(55), - [sym_macro_include] = STATE(55), - [sym_function_implementation] = STATE(104), - [sym_raise_statement] = STATE(55), - [sym_eol_comment] = STATE(12), - [sym_bol_comment] = STATE(12), - [aux_sym_program_repeat1] = STATE(17), - [sym_name] = ACTIONS(59), - [aux_sym_class_declaration_token1] = ACTIONS(61), - [aux_sym__create_addition_token1] = ACTIONS(63), - [aux_sym_interface_declaration_token1] = ACTIONS(65), - [aux_sym_variable_declaration_token1] = ACTIONS(67), - [aux_sym_field_symbol_declaration_token1] = ACTIONS(69), - [aux_sym_loop_statement_token1] = ACTIONS(71), - [aux_sym_loop_statement_token6] = ACTIONS(199), - [aux_sym_exit_statement_token1] = ACTIONS(73), - [aux_sym_continue_statement_token1] = ACTIONS(75), - [aux_sym_return_statement_token1] = ACTIONS(77), - [aux_sym_report_statement_token1] = ACTIONS(79), - [aux_sym_if_statement_token1] = ACTIONS(81), - [aux_sym_check_statement_token1] = ACTIONS(83), - [anon_sym_STAR] = ACTIONS(35), - [aux_sym_select_statement_obsolete_token1] = ACTIONS(85), - [aux_sym_read_table_statement_token1] = ACTIONS(87), - [aux_sym_try_catch_statement_token1] = ACTIONS(89), - [aux_sym_write_statement_token1] = ACTIONS(95), - [aux_sym_call_function_token1] = ACTIONS(97), - [aux_sym_call_function_token2] = ACTIONS(99), - [aux_sym_raise_exception_statement_token1] = ACTIONS(101), - [aux_sym_clear_statement_token1] = ACTIONS(103), - [aux_sym_append_statement_token1] = ACTIONS(105), - [aux_sym_include_statement_token1] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(5), - [sym_field_symbol_name] = ACTIONS(57), + [sym__statement] = STATE(4), + [sym__implementation_statement] = STATE(4), + [sym_class_declaration] = STATE(4), + [sym_class_implementation] = STATE(4), + [sym_class_publication] = STATE(4), + [sym_class_local_friend_publication] = STATE(4), + [sym_interface_declaration] = STATE(4), + [sym_variable_declaration] = STATE(4), + [sym_chained_variable_declaration] = STATE(4), + [sym_chained_structure_declaration] = STATE(4), + [sym_field_symbol_declaration] = STATE(4), + [sym_chained_field_symbol_declaration] = STATE(4), + [sym_loop_statement] = STATE(4), + [sym_exit_statement] = STATE(4), + [sym_continue_statement] = STATE(4), + [sym_return_statement] = STATE(4), + [sym_report_statement] = STATE(4), + [sym_if_statement] = STATE(4), + [sym_check_statement] = STATE(4), + [sym__writeable_expression] = STATE(2960), + [sym_table_expression] = STATE(2960), + [sym_select_statement_obsolete] = STATE(4), + [sym_read_table_statement] = STATE(4), + [sym__data_object] = STATE(2960), + [sym_structured_data_object] = STATE(2960), + [sym_attribute_access_static] = STATE(2960), + [sym_assignment] = STATE(4), + [sym_try_catch_statement] = STATE(4), + [sym_write_statement] = STATE(4), + [sym_chained_write_statement] = STATE(4), + [sym_call_method] = STATE(4), + [sym_call_method_static] = STATE(4), + [sym_call_method_instance] = STATE(4), + [sym_call_function] = STATE(4), + [sym_raise_exception_statement] = STATE(4), + [sym_clear_statement] = STATE(4), + [sym_append_statement] = STATE(4), + [sym_append_statement_obsolete] = STATE(4), + [sym_create_object_statement] = STATE(4), + [sym_include_statement] = STATE(4), + [sym_macro_include] = STATE(4), + [sym_function_implementation] = STATE(4), + [sym_raise_statement] = STATE(4), + [aux_sym_program_repeat1] = STATE(4), + [sym_name] = ACTIONS(57), + [aux_sym_class_declaration_token1] = ACTIONS(59), + [aux_sym__create_addition_token1] = ACTIONS(61), + [aux_sym_interface_declaration_token1] = ACTIONS(63), + [aux_sym_variable_declaration_token1] = ACTIONS(65), + [aux_sym_field_symbol_declaration_token1] = ACTIONS(67), + [aux_sym_loop_statement_token1] = ACTIONS(69), + [aux_sym_loop_statement_token6] = ACTIONS(197), + [aux_sym_exit_statement_token1] = ACTIONS(71), + [aux_sym_continue_statement_token1] = ACTIONS(73), + [aux_sym_return_statement_token1] = ACTIONS(75), + [aux_sym_report_statement_token1] = ACTIONS(77), + [aux_sym_if_statement_token1] = ACTIONS(79), + [aux_sym_check_statement_token1] = ACTIONS(81), + [aux_sym_select_statement_obsolete_token1] = ACTIONS(83), + [aux_sym_read_table_statement_token1] = ACTIONS(85), + [aux_sym_try_catch_statement_token1] = ACTIONS(87), + [aux_sym_write_statement_token1] = ACTIONS(93), + [aux_sym_call_function_token1] = ACTIONS(95), + [aux_sym_call_function_token2] = ACTIONS(97), + [aux_sym_raise_exception_statement_token1] = ACTIONS(99), + [aux_sym_clear_statement_token1] = ACTIONS(101), + [aux_sym_append_statement_token1] = ACTIONS(103), + [aux_sym_include_statement_token1] = ACTIONS(105), + [sym_eol_comment] = ACTIONS(3), + [sym_bol_comment] = ACTIONS(3), + [sym_field_symbol_name] = ACTIONS(55), }, [13] = { - [sym__statement] = STATE(103), - [sym__implementation_statement] = STATE(104), - [sym_class_declaration] = STATE(104), - [sym_class_implementation] = STATE(104), - [sym_class_publication] = STATE(104), - [sym_class_local_friend_publication] = STATE(104), - [sym_interface_declaration] = STATE(104), - [sym_variable_declaration] = STATE(55), - [sym_chained_variable_declaration] = STATE(55), - [sym_chained_structure_declaration] = STATE(55), - [sym_field_symbol_declaration] = STATE(55), - [sym_chained_field_symbol_declaration] = STATE(55), - [sym_loop_statement] = STATE(55), - [sym_exit_statement] = STATE(55), - [sym_continue_statement] = STATE(55), - [sym_return_statement] = STATE(55), - [sym_report_statement] = STATE(55), - [sym_if_statement] = STATE(55), - [sym_check_statement] = STATE(55), - [sym__writeable_expression] = STATE(2973), - [sym_table_expression] = STATE(2997), - [sym_select_statement_obsolete] = STATE(55), - [sym_read_table_statement] = STATE(55), - [sym__data_object] = STATE(2973), - [sym_structured_data_object] = STATE(996), - [sym_attribute_access_static] = STATE(996), - [sym_assignment] = STATE(55), - [sym_try_catch_statement] = STATE(55), - [sym_write_statement] = STATE(55), - [sym_chained_write_statement] = STATE(55), - [sym_call_method] = STATE(55), - [sym_call_method_static] = STATE(55), - [sym_call_method_instance] = STATE(55), - [sym_call_function] = STATE(55), - [sym_raise_exception_statement] = STATE(55), - [sym_clear_statement] = STATE(55), - [sym_append_statement] = STATE(55), - [sym_append_statement_obsolete] = STATE(55), - [sym_create_object_statement] = STATE(55), - [sym_include_statement] = STATE(55), - [sym_macro_include] = STATE(55), - [sym_function_implementation] = STATE(104), - [sym_raise_statement] = STATE(55), - [sym_eol_comment] = STATE(13), - [sym_bol_comment] = STATE(13), - [aux_sym_program_repeat1] = STATE(4), - [sym_name] = ACTIONS(59), - [aux_sym_class_declaration_token1] = ACTIONS(61), - [aux_sym__create_addition_token1] = ACTIONS(63), - [aux_sym_interface_declaration_token1] = ACTIONS(65), - [aux_sym_variable_declaration_token1] = ACTIONS(67), - [aux_sym_field_symbol_declaration_token1] = ACTIONS(69), - [aux_sym_loop_statement_token1] = ACTIONS(71), - [aux_sym_loop_statement_token6] = ACTIONS(201), - [aux_sym_exit_statement_token1] = ACTIONS(73), - [aux_sym_continue_statement_token1] = ACTIONS(75), - [aux_sym_return_statement_token1] = ACTIONS(77), - [aux_sym_report_statement_token1] = ACTIONS(79), - [aux_sym_if_statement_token1] = ACTIONS(81), - [aux_sym_check_statement_token1] = ACTIONS(83), - [anon_sym_STAR] = ACTIONS(35), - [aux_sym_select_statement_obsolete_token1] = ACTIONS(85), - [aux_sym_read_table_statement_token1] = ACTIONS(87), - [aux_sym_try_catch_statement_token1] = ACTIONS(89), - [aux_sym_write_statement_token1] = ACTIONS(95), - [aux_sym_call_function_token1] = ACTIONS(97), - [aux_sym_call_function_token2] = ACTIONS(99), - [aux_sym_raise_exception_statement_token1] = ACTIONS(101), - [aux_sym_clear_statement_token1] = ACTIONS(103), - [aux_sym_append_statement_token1] = ACTIONS(105), - [aux_sym_include_statement_token1] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(5), - [sym_field_symbol_name] = ACTIONS(57), + [sym__statement] = STATE(14), + [sym__implementation_statement] = STATE(14), + [sym_class_declaration] = STATE(14), + [sym_class_implementation] = STATE(14), + [sym_class_publication] = STATE(14), + [sym_class_local_friend_publication] = STATE(14), + [sym_interface_declaration] = STATE(14), + [sym_variable_declaration] = STATE(14), + [sym_chained_variable_declaration] = STATE(14), + [sym_chained_structure_declaration] = STATE(14), + [sym_field_symbol_declaration] = STATE(14), + [sym_chained_field_symbol_declaration] = STATE(14), + [sym_loop_statement] = STATE(14), + [sym_exit_statement] = STATE(14), + [sym_continue_statement] = STATE(14), + [sym_return_statement] = STATE(14), + [sym_report_statement] = STATE(14), + [sym_if_statement] = STATE(14), + [sym_check_statement] = STATE(14), + [sym__writeable_expression] = STATE(2960), + [sym_table_expression] = STATE(2960), + [sym_select_statement_obsolete] = STATE(14), + [sym_read_table_statement] = STATE(14), + [sym__data_object] = STATE(2960), + [sym_structured_data_object] = STATE(2960), + [sym_attribute_access_static] = STATE(2960), + [sym_assignment] = STATE(14), + [sym_try_catch_statement] = STATE(14), + [sym_write_statement] = STATE(14), + [sym_chained_write_statement] = STATE(14), + [sym_call_method] = STATE(14), + [sym_call_method_static] = STATE(14), + [sym_call_method_instance] = STATE(14), + [sym_call_function] = STATE(14), + [sym_raise_exception_statement] = STATE(14), + [sym_clear_statement] = STATE(14), + [sym_append_statement] = STATE(14), + [sym_append_statement_obsolete] = STATE(14), + [sym_create_object_statement] = STATE(14), + [sym_include_statement] = STATE(14), + [sym_macro_include] = STATE(14), + [sym_function_implementation] = STATE(14), + [sym_raise_statement] = STATE(14), + [aux_sym_program_repeat1] = STATE(14), + [sym_name] = ACTIONS(57), + [aux_sym_class_declaration_token1] = ACTIONS(59), + [aux_sym__create_addition_token1] = ACTIONS(61), + [aux_sym_interface_declaration_token1] = ACTIONS(63), + [aux_sym_variable_declaration_token1] = ACTIONS(65), + [aux_sym_field_symbol_declaration_token1] = ACTIONS(67), + [aux_sym_loop_statement_token1] = ACTIONS(69), + [aux_sym_exit_statement_token1] = ACTIONS(71), + [aux_sym_continue_statement_token1] = ACTIONS(73), + [aux_sym_return_statement_token1] = ACTIONS(75), + [aux_sym_report_statement_token1] = ACTIONS(77), + [aux_sym_if_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token2] = ACTIONS(199), + [aux_sym_check_statement_token1] = ACTIONS(81), + [aux_sym_select_statement_obsolete_token1] = ACTIONS(83), + [aux_sym_read_table_statement_token1] = ACTIONS(85), + [aux_sym_try_catch_statement_token1] = ACTIONS(87), + [aux_sym_write_statement_token1] = ACTIONS(93), + [aux_sym_call_function_token1] = ACTIONS(95), + [aux_sym_call_function_token2] = ACTIONS(97), + [aux_sym_raise_exception_statement_token1] = ACTIONS(99), + [aux_sym_clear_statement_token1] = ACTIONS(101), + [aux_sym_append_statement_token1] = ACTIONS(103), + [aux_sym_include_statement_token1] = ACTIONS(105), + [sym_eol_comment] = ACTIONS(3), + [sym_bol_comment] = ACTIONS(3), + [sym_field_symbol_name] = ACTIONS(55), }, [14] = { - [sym__statement] = STATE(103), - [sym__implementation_statement] = STATE(104), - [sym_class_declaration] = STATE(104), - [sym_class_implementation] = STATE(104), - [sym_class_publication] = STATE(104), - [sym_class_local_friend_publication] = STATE(104), - [sym_interface_declaration] = STATE(104), - [sym_variable_declaration] = STATE(55), - [sym_chained_variable_declaration] = STATE(55), - [sym_chained_structure_declaration] = STATE(55), - [sym_field_symbol_declaration] = STATE(55), - [sym_chained_field_symbol_declaration] = STATE(55), - [sym_loop_statement] = STATE(55), - [sym_exit_statement] = STATE(55), - [sym_continue_statement] = STATE(55), - [sym_return_statement] = STATE(55), - [sym_report_statement] = STATE(55), - [sym_if_statement] = STATE(55), - [sym_check_statement] = STATE(55), - [sym__writeable_expression] = STATE(2973), - [sym_table_expression] = STATE(2997), - [sym_select_statement_obsolete] = STATE(55), - [sym_read_table_statement] = STATE(55), - [sym__data_object] = STATE(2973), - [sym_structured_data_object] = STATE(996), - [sym_attribute_access_static] = STATE(996), - [sym_assignment] = STATE(55), - [sym_try_catch_statement] = STATE(55), - [sym_write_statement] = STATE(55), - [sym_chained_write_statement] = STATE(55), - [sym_call_method] = STATE(55), - [sym_call_method_static] = STATE(55), - [sym_call_method_instance] = STATE(55), - [sym_call_function] = STATE(55), - [sym_raise_exception_statement] = STATE(55), - [sym_clear_statement] = STATE(55), - [sym_append_statement] = STATE(55), - [sym_append_statement_obsolete] = STATE(55), - [sym_create_object_statement] = STATE(55), - [sym_include_statement] = STATE(55), - [sym_macro_include] = STATE(55), - [sym_function_implementation] = STATE(104), - [sym_raise_statement] = STATE(55), - [sym_eol_comment] = STATE(14), - [sym_bol_comment] = STATE(14), + [sym__statement] = STATE(4), + [sym__implementation_statement] = STATE(4), + [sym_class_declaration] = STATE(4), + [sym_class_implementation] = STATE(4), + [sym_class_publication] = STATE(4), + [sym_class_local_friend_publication] = STATE(4), + [sym_interface_declaration] = STATE(4), + [sym_variable_declaration] = STATE(4), + [sym_chained_variable_declaration] = STATE(4), + [sym_chained_structure_declaration] = STATE(4), + [sym_field_symbol_declaration] = STATE(4), + [sym_chained_field_symbol_declaration] = STATE(4), + [sym_loop_statement] = STATE(4), + [sym_exit_statement] = STATE(4), + [sym_continue_statement] = STATE(4), + [sym_return_statement] = STATE(4), + [sym_report_statement] = STATE(4), + [sym_if_statement] = STATE(4), + [sym_check_statement] = STATE(4), + [sym__writeable_expression] = STATE(2960), + [sym_table_expression] = STATE(2960), + [sym_select_statement_obsolete] = STATE(4), + [sym_read_table_statement] = STATE(4), + [sym__data_object] = STATE(2960), + [sym_structured_data_object] = STATE(2960), + [sym_attribute_access_static] = STATE(2960), + [sym_assignment] = STATE(4), + [sym_try_catch_statement] = STATE(4), + [sym_write_statement] = STATE(4), + [sym_chained_write_statement] = STATE(4), + [sym_call_method] = STATE(4), + [sym_call_method_static] = STATE(4), + [sym_call_method_instance] = STATE(4), + [sym_call_function] = STATE(4), + [sym_raise_exception_statement] = STATE(4), + [sym_clear_statement] = STATE(4), + [sym_append_statement] = STATE(4), + [sym_append_statement_obsolete] = STATE(4), + [sym_create_object_statement] = STATE(4), + [sym_include_statement] = STATE(4), + [sym_macro_include] = STATE(4), + [sym_function_implementation] = STATE(4), + [sym_raise_statement] = STATE(4), [aux_sym_program_repeat1] = STATE(4), - [sym_name] = ACTIONS(59), - [aux_sym_class_declaration_token1] = ACTIONS(61), - [aux_sym__create_addition_token1] = ACTIONS(63), - [aux_sym_interface_declaration_token1] = ACTIONS(65), - [aux_sym_variable_declaration_token1] = ACTIONS(67), - [aux_sym_field_symbol_declaration_token1] = ACTIONS(69), - [aux_sym_loop_statement_token1] = ACTIONS(71), - [aux_sym_loop_statement_token6] = ACTIONS(203), - [aux_sym_exit_statement_token1] = ACTIONS(73), - [aux_sym_continue_statement_token1] = ACTIONS(75), - [aux_sym_return_statement_token1] = ACTIONS(77), - [aux_sym_report_statement_token1] = ACTIONS(79), - [aux_sym_if_statement_token1] = ACTIONS(81), - [aux_sym_check_statement_token1] = ACTIONS(83), - [anon_sym_STAR] = ACTIONS(35), - [aux_sym_select_statement_obsolete_token1] = ACTIONS(85), - [aux_sym_read_table_statement_token1] = ACTIONS(87), - [aux_sym_try_catch_statement_token1] = ACTIONS(89), - [aux_sym_write_statement_token1] = ACTIONS(95), - [aux_sym_call_function_token1] = ACTIONS(97), - [aux_sym_call_function_token2] = ACTIONS(99), - [aux_sym_raise_exception_statement_token1] = ACTIONS(101), - [aux_sym_clear_statement_token1] = ACTIONS(103), - [aux_sym_append_statement_token1] = ACTIONS(105), - [aux_sym_include_statement_token1] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(5), - [sym_field_symbol_name] = ACTIONS(57), + [sym_name] = ACTIONS(57), + [aux_sym_class_declaration_token1] = ACTIONS(59), + [aux_sym__create_addition_token1] = ACTIONS(61), + [aux_sym_interface_declaration_token1] = ACTIONS(63), + [aux_sym_variable_declaration_token1] = ACTIONS(65), + [aux_sym_field_symbol_declaration_token1] = ACTIONS(67), + [aux_sym_loop_statement_token1] = ACTIONS(69), + [aux_sym_exit_statement_token1] = ACTIONS(71), + [aux_sym_continue_statement_token1] = ACTIONS(73), + [aux_sym_return_statement_token1] = ACTIONS(75), + [aux_sym_report_statement_token1] = ACTIONS(77), + [aux_sym_if_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token2] = ACTIONS(201), + [aux_sym_check_statement_token1] = ACTIONS(81), + [aux_sym_select_statement_obsolete_token1] = ACTIONS(83), + [aux_sym_read_table_statement_token1] = ACTIONS(85), + [aux_sym_try_catch_statement_token1] = ACTIONS(87), + [aux_sym_write_statement_token1] = ACTIONS(93), + [aux_sym_call_function_token1] = ACTIONS(95), + [aux_sym_call_function_token2] = ACTIONS(97), + [aux_sym_raise_exception_statement_token1] = ACTIONS(99), + [aux_sym_clear_statement_token1] = ACTIONS(101), + [aux_sym_append_statement_token1] = ACTIONS(103), + [aux_sym_include_statement_token1] = ACTIONS(105), + [sym_eol_comment] = ACTIONS(3), + [sym_bol_comment] = ACTIONS(3), + [sym_field_symbol_name] = ACTIONS(55), }, [15] = { - [sym__statement] = STATE(103), - [sym__implementation_statement] = STATE(104), - [sym_class_declaration] = STATE(104), - [sym_class_implementation] = STATE(104), - [sym_class_publication] = STATE(104), - [sym_class_local_friend_publication] = STATE(104), - [sym_interface_declaration] = STATE(104), - [sym_variable_declaration] = STATE(55), - [sym_chained_variable_declaration] = STATE(55), - [sym_chained_structure_declaration] = STATE(55), - [sym_field_symbol_declaration] = STATE(55), - [sym_chained_field_symbol_declaration] = STATE(55), - [sym_loop_statement] = STATE(55), - [sym_exit_statement] = STATE(55), - [sym_continue_statement] = STATE(55), - [sym_return_statement] = STATE(55), - [sym_report_statement] = STATE(55), - [sym_if_statement] = STATE(55), - [sym_check_statement] = STATE(55), - [sym__writeable_expression] = STATE(2973), - [sym_table_expression] = STATE(2997), - [sym_select_statement_obsolete] = STATE(55), - [sym_read_table_statement] = STATE(55), - [sym__data_object] = STATE(2973), - [sym_structured_data_object] = STATE(996), - [sym_attribute_access_static] = STATE(996), - [sym_assignment] = STATE(55), - [sym_try_catch_statement] = STATE(55), - [sym_write_statement] = STATE(55), - [sym_chained_write_statement] = STATE(55), - [sym_call_method] = STATE(55), - [sym_call_method_static] = STATE(55), - [sym_call_method_instance] = STATE(55), - [sym_call_function] = STATE(55), - [sym_raise_exception_statement] = STATE(55), - [sym_clear_statement] = STATE(55), - [sym_append_statement] = STATE(55), - [sym_append_statement_obsolete] = STATE(55), - [sym_create_object_statement] = STATE(55), - [sym_include_statement] = STATE(55), - [sym_macro_include] = STATE(55), - [sym_function_implementation] = STATE(104), - [sym_raise_statement] = STATE(55), - [sym_eol_comment] = STATE(15), - [sym_bol_comment] = STATE(15), - [aux_sym_program_repeat1] = STATE(4), - [sym_name] = ACTIONS(59), - [aux_sym_class_declaration_token1] = ACTIONS(61), - [aux_sym__create_addition_token1] = ACTIONS(63), - [aux_sym_interface_declaration_token1] = ACTIONS(65), - [aux_sym_variable_declaration_token1] = ACTIONS(67), - [aux_sym_field_symbol_declaration_token1] = ACTIONS(69), - [aux_sym_loop_statement_token1] = ACTIONS(71), - [aux_sym_exit_statement_token1] = ACTIONS(73), - [aux_sym_continue_statement_token1] = ACTIONS(75), - [aux_sym_return_statement_token1] = ACTIONS(77), - [aux_sym_report_statement_token1] = ACTIONS(79), - [aux_sym_if_statement_token1] = ACTIONS(81), - [aux_sym_if_statement_token2] = ACTIONS(205), - [aux_sym_check_statement_token1] = ACTIONS(83), - [anon_sym_STAR] = ACTIONS(35), - [aux_sym_select_statement_obsolete_token1] = ACTIONS(85), - [aux_sym_read_table_statement_token1] = ACTIONS(87), - [aux_sym_try_catch_statement_token1] = ACTIONS(89), - [aux_sym_write_statement_token1] = ACTIONS(95), - [aux_sym_call_function_token1] = ACTIONS(97), - [aux_sym_call_function_token2] = ACTIONS(99), - [aux_sym_raise_exception_statement_token1] = ACTIONS(101), - [aux_sym_clear_statement_token1] = ACTIONS(103), - [aux_sym_append_statement_token1] = ACTIONS(105), - [aux_sym_include_statement_token1] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(5), - [sym_field_symbol_name] = ACTIONS(57), + [sym__statement] = STATE(16), + [sym__implementation_statement] = STATE(16), + [sym_class_declaration] = STATE(16), + [sym_class_implementation] = STATE(16), + [sym_class_publication] = STATE(16), + [sym_class_local_friend_publication] = STATE(16), + [sym_interface_declaration] = STATE(16), + [sym_variable_declaration] = STATE(16), + [sym_chained_variable_declaration] = STATE(16), + [sym_chained_structure_declaration] = STATE(16), + [sym_field_symbol_declaration] = STATE(16), + [sym_chained_field_symbol_declaration] = STATE(16), + [sym_loop_statement] = STATE(16), + [sym_exit_statement] = STATE(16), + [sym_continue_statement] = STATE(16), + [sym_return_statement] = STATE(16), + [sym_report_statement] = STATE(16), + [sym_if_statement] = STATE(16), + [sym_check_statement] = STATE(16), + [sym__writeable_expression] = STATE(2960), + [sym_table_expression] = STATE(2960), + [sym_select_statement_obsolete] = STATE(16), + [sym_read_table_statement] = STATE(16), + [sym__data_object] = STATE(2960), + [sym_structured_data_object] = STATE(2960), + [sym_attribute_access_static] = STATE(2960), + [sym_assignment] = STATE(16), + [sym_try_catch_statement] = STATE(16), + [sym_write_statement] = STATE(16), + [sym_chained_write_statement] = STATE(16), + [sym_call_method] = STATE(16), + [sym_call_method_static] = STATE(16), + [sym_call_method_instance] = STATE(16), + [sym_call_function] = STATE(16), + [sym_raise_exception_statement] = STATE(16), + [sym_clear_statement] = STATE(16), + [sym_append_statement] = STATE(16), + [sym_append_statement_obsolete] = STATE(16), + [sym_create_object_statement] = STATE(16), + [sym_include_statement] = STATE(16), + [sym_macro_include] = STATE(16), + [sym_function_implementation] = STATE(16), + [sym_raise_statement] = STATE(16), + [aux_sym_program_repeat1] = STATE(16), + [sym_name] = ACTIONS(57), + [aux_sym_class_declaration_token1] = ACTIONS(59), + [aux_sym__create_addition_token1] = ACTIONS(61), + [aux_sym_interface_declaration_token1] = ACTIONS(63), + [aux_sym_variable_declaration_token1] = ACTIONS(65), + [aux_sym_field_symbol_declaration_token1] = ACTIONS(67), + [aux_sym_loop_statement_token1] = ACTIONS(69), + [aux_sym_loop_statement_token6] = ACTIONS(203), + [aux_sym_exit_statement_token1] = ACTIONS(71), + [aux_sym_continue_statement_token1] = ACTIONS(73), + [aux_sym_return_statement_token1] = ACTIONS(75), + [aux_sym_report_statement_token1] = ACTIONS(77), + [aux_sym_if_statement_token1] = ACTIONS(79), + [aux_sym_check_statement_token1] = ACTIONS(81), + [aux_sym_select_statement_obsolete_token1] = ACTIONS(83), + [aux_sym_read_table_statement_token1] = ACTIONS(85), + [aux_sym_try_catch_statement_token1] = ACTIONS(87), + [aux_sym_write_statement_token1] = ACTIONS(93), + [aux_sym_call_function_token1] = ACTIONS(95), + [aux_sym_call_function_token2] = ACTIONS(97), + [aux_sym_raise_exception_statement_token1] = ACTIONS(99), + [aux_sym_clear_statement_token1] = ACTIONS(101), + [aux_sym_append_statement_token1] = ACTIONS(103), + [aux_sym_include_statement_token1] = ACTIONS(105), + [sym_eol_comment] = ACTIONS(3), + [sym_bol_comment] = ACTIONS(3), + [sym_field_symbol_name] = ACTIONS(55), }, [16] = { - [sym__statement] = STATE(103), - [sym__implementation_statement] = STATE(104), - [sym_class_declaration] = STATE(104), - [sym_class_implementation] = STATE(104), - [sym_class_publication] = STATE(104), - [sym_class_local_friend_publication] = STATE(104), - [sym_interface_declaration] = STATE(104), - [sym_variable_declaration] = STATE(55), - [sym_chained_variable_declaration] = STATE(55), - [sym_chained_structure_declaration] = STATE(55), - [sym_field_symbol_declaration] = STATE(55), - [sym_chained_field_symbol_declaration] = STATE(55), - [sym_loop_statement] = STATE(55), - [sym_exit_statement] = STATE(55), - [sym_continue_statement] = STATE(55), - [sym_return_statement] = STATE(55), - [sym_report_statement] = STATE(55), - [sym_if_statement] = STATE(55), - [sym_check_statement] = STATE(55), - [sym__writeable_expression] = STATE(2973), - [sym_table_expression] = STATE(2997), - [sym_select_statement_obsolete] = STATE(55), - [sym_read_table_statement] = STATE(55), - [sym__data_object] = STATE(2973), - [sym_structured_data_object] = STATE(996), - [sym_attribute_access_static] = STATE(996), - [sym_assignment] = STATE(55), - [sym_try_catch_statement] = STATE(55), - [sym_write_statement] = STATE(55), - [sym_chained_write_statement] = STATE(55), - [sym_call_method] = STATE(55), - [sym_call_method_static] = STATE(55), - [sym_call_method_instance] = STATE(55), - [sym_call_function] = STATE(55), - [sym_raise_exception_statement] = STATE(55), - [sym_clear_statement] = STATE(55), - [sym_append_statement] = STATE(55), - [sym_append_statement_obsolete] = STATE(55), - [sym_create_object_statement] = STATE(55), - [sym_include_statement] = STATE(55), - [sym_macro_include] = STATE(55), - [sym_function_implementation] = STATE(104), - [sym_raise_statement] = STATE(55), - [sym_eol_comment] = STATE(16), - [sym_bol_comment] = STATE(16), - [aux_sym_program_repeat1] = STATE(14), - [sym_name] = ACTIONS(59), - [aux_sym_class_declaration_token1] = ACTIONS(61), - [aux_sym__create_addition_token1] = ACTIONS(63), - [aux_sym_interface_declaration_token1] = ACTIONS(65), - [aux_sym_variable_declaration_token1] = ACTIONS(67), - [aux_sym_field_symbol_declaration_token1] = ACTIONS(69), - [aux_sym_loop_statement_token1] = ACTIONS(71), - [aux_sym_loop_statement_token6] = ACTIONS(207), - [aux_sym_exit_statement_token1] = ACTIONS(73), - [aux_sym_continue_statement_token1] = ACTIONS(75), - [aux_sym_return_statement_token1] = ACTIONS(77), - [aux_sym_report_statement_token1] = ACTIONS(79), - [aux_sym_if_statement_token1] = ACTIONS(81), - [aux_sym_check_statement_token1] = ACTIONS(83), - [anon_sym_STAR] = ACTIONS(35), - [aux_sym_select_statement_obsolete_token1] = ACTIONS(85), - [aux_sym_read_table_statement_token1] = ACTIONS(87), - [aux_sym_try_catch_statement_token1] = ACTIONS(89), - [aux_sym_write_statement_token1] = ACTIONS(95), - [aux_sym_call_function_token1] = ACTIONS(97), - [aux_sym_call_function_token2] = ACTIONS(99), - [aux_sym_raise_exception_statement_token1] = ACTIONS(101), - [aux_sym_clear_statement_token1] = ACTIONS(103), - [aux_sym_append_statement_token1] = ACTIONS(105), - [aux_sym_include_statement_token1] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(5), - [sym_field_symbol_name] = ACTIONS(57), + [sym__statement] = STATE(4), + [sym__implementation_statement] = STATE(4), + [sym_class_declaration] = STATE(4), + [sym_class_implementation] = STATE(4), + [sym_class_publication] = STATE(4), + [sym_class_local_friend_publication] = STATE(4), + [sym_interface_declaration] = STATE(4), + [sym_variable_declaration] = STATE(4), + [sym_chained_variable_declaration] = STATE(4), + [sym_chained_structure_declaration] = STATE(4), + [sym_field_symbol_declaration] = STATE(4), + [sym_chained_field_symbol_declaration] = STATE(4), + [sym_loop_statement] = STATE(4), + [sym_exit_statement] = STATE(4), + [sym_continue_statement] = STATE(4), + [sym_return_statement] = STATE(4), + [sym_report_statement] = STATE(4), + [sym_if_statement] = STATE(4), + [sym_check_statement] = STATE(4), + [sym__writeable_expression] = STATE(2960), + [sym_table_expression] = STATE(2960), + [sym_select_statement_obsolete] = STATE(4), + [sym_read_table_statement] = STATE(4), + [sym__data_object] = STATE(2960), + [sym_structured_data_object] = STATE(2960), + [sym_attribute_access_static] = STATE(2960), + [sym_assignment] = STATE(4), + [sym_try_catch_statement] = STATE(4), + [sym_write_statement] = STATE(4), + [sym_chained_write_statement] = STATE(4), + [sym_call_method] = STATE(4), + [sym_call_method_static] = STATE(4), + [sym_call_method_instance] = STATE(4), + [sym_call_function] = STATE(4), + [sym_raise_exception_statement] = STATE(4), + [sym_clear_statement] = STATE(4), + [sym_append_statement] = STATE(4), + [sym_append_statement_obsolete] = STATE(4), + [sym_create_object_statement] = STATE(4), + [sym_include_statement] = STATE(4), + [sym_macro_include] = STATE(4), + [sym_function_implementation] = STATE(4), + [sym_raise_statement] = STATE(4), + [aux_sym_program_repeat1] = STATE(4), + [sym_name] = ACTIONS(57), + [aux_sym_class_declaration_token1] = ACTIONS(59), + [aux_sym__create_addition_token1] = ACTIONS(61), + [aux_sym_interface_declaration_token1] = ACTIONS(63), + [aux_sym_variable_declaration_token1] = ACTIONS(65), + [aux_sym_field_symbol_declaration_token1] = ACTIONS(67), + [aux_sym_loop_statement_token1] = ACTIONS(69), + [aux_sym_loop_statement_token6] = ACTIONS(205), + [aux_sym_exit_statement_token1] = ACTIONS(71), + [aux_sym_continue_statement_token1] = ACTIONS(73), + [aux_sym_return_statement_token1] = ACTIONS(75), + [aux_sym_report_statement_token1] = ACTIONS(77), + [aux_sym_if_statement_token1] = ACTIONS(79), + [aux_sym_check_statement_token1] = ACTIONS(81), + [aux_sym_select_statement_obsolete_token1] = ACTIONS(83), + [aux_sym_read_table_statement_token1] = ACTIONS(85), + [aux_sym_try_catch_statement_token1] = ACTIONS(87), + [aux_sym_write_statement_token1] = ACTIONS(93), + [aux_sym_call_function_token1] = ACTIONS(95), + [aux_sym_call_function_token2] = ACTIONS(97), + [aux_sym_raise_exception_statement_token1] = ACTIONS(99), + [aux_sym_clear_statement_token1] = ACTIONS(101), + [aux_sym_append_statement_token1] = ACTIONS(103), + [aux_sym_include_statement_token1] = ACTIONS(105), + [sym_eol_comment] = ACTIONS(3), + [sym_bol_comment] = ACTIONS(3), + [sym_field_symbol_name] = ACTIONS(55), }, [17] = { - [sym__statement] = STATE(103), - [sym__implementation_statement] = STATE(104), - [sym_class_declaration] = STATE(104), - [sym_class_implementation] = STATE(104), - [sym_class_publication] = STATE(104), - [sym_class_local_friend_publication] = STATE(104), - [sym_interface_declaration] = STATE(104), - [sym_variable_declaration] = STATE(55), - [sym_chained_variable_declaration] = STATE(55), - [sym_chained_structure_declaration] = STATE(55), - [sym_field_symbol_declaration] = STATE(55), - [sym_chained_field_symbol_declaration] = STATE(55), - [sym_loop_statement] = STATE(55), - [sym_exit_statement] = STATE(55), - [sym_continue_statement] = STATE(55), - [sym_return_statement] = STATE(55), - [sym_report_statement] = STATE(55), - [sym_if_statement] = STATE(55), - [sym_check_statement] = STATE(55), - [sym__writeable_expression] = STATE(2973), - [sym_table_expression] = STATE(2997), - [sym_select_statement_obsolete] = STATE(55), - [sym_read_table_statement] = STATE(55), - [sym__data_object] = STATE(2973), - [sym_structured_data_object] = STATE(996), - [sym_attribute_access_static] = STATE(996), - [sym_assignment] = STATE(55), - [sym_try_catch_statement] = STATE(55), - [sym_write_statement] = STATE(55), - [sym_chained_write_statement] = STATE(55), - [sym_call_method] = STATE(55), - [sym_call_method_static] = STATE(55), - [sym_call_method_instance] = STATE(55), - [sym_call_function] = STATE(55), - [sym_raise_exception_statement] = STATE(55), - [sym_clear_statement] = STATE(55), - [sym_append_statement] = STATE(55), - [sym_append_statement_obsolete] = STATE(55), - [sym_create_object_statement] = STATE(55), - [sym_include_statement] = STATE(55), - [sym_macro_include] = STATE(55), - [sym_function_implementation] = STATE(104), - [sym_raise_statement] = STATE(55), - [sym_eol_comment] = STATE(17), - [sym_bol_comment] = STATE(17), + [sym__statement] = STATE(4), + [sym__implementation_statement] = STATE(4), + [sym_class_declaration] = STATE(4), + [sym_class_implementation] = STATE(4), + [sym_class_publication] = STATE(4), + [sym_class_local_friend_publication] = STATE(4), + [sym_interface_declaration] = STATE(4), + [sym_variable_declaration] = STATE(4), + [sym_chained_variable_declaration] = STATE(4), + [sym_chained_structure_declaration] = STATE(4), + [sym_field_symbol_declaration] = STATE(4), + [sym_chained_field_symbol_declaration] = STATE(4), + [sym_loop_statement] = STATE(4), + [sym_exit_statement] = STATE(4), + [sym_continue_statement] = STATE(4), + [sym_return_statement] = STATE(4), + [sym_report_statement] = STATE(4), + [sym_if_statement] = STATE(4), + [sym_check_statement] = STATE(4), + [sym__writeable_expression] = STATE(2960), + [sym_table_expression] = STATE(2960), + [sym_select_statement_obsolete] = STATE(4), + [sym_read_table_statement] = STATE(4), + [sym__data_object] = STATE(2960), + [sym_structured_data_object] = STATE(2960), + [sym_attribute_access_static] = STATE(2960), + [sym_assignment] = STATE(4), + [sym_try_catch_statement] = STATE(4), + [sym_write_statement] = STATE(4), + [sym_chained_write_statement] = STATE(4), + [sym_call_method] = STATE(4), + [sym_call_method_static] = STATE(4), + [sym_call_method_instance] = STATE(4), + [sym_call_function] = STATE(4), + [sym_raise_exception_statement] = STATE(4), + [sym_clear_statement] = STATE(4), + [sym_append_statement] = STATE(4), + [sym_append_statement_obsolete] = STATE(4), + [sym_create_object_statement] = STATE(4), + [sym_include_statement] = STATE(4), + [sym_macro_include] = STATE(4), + [sym_function_implementation] = STATE(4), + [sym_raise_statement] = STATE(4), [aux_sym_program_repeat1] = STATE(4), - [sym_name] = ACTIONS(59), - [aux_sym_class_declaration_token1] = ACTIONS(61), - [aux_sym__create_addition_token1] = ACTIONS(63), - [aux_sym_interface_declaration_token1] = ACTIONS(65), - [aux_sym_variable_declaration_token1] = ACTIONS(67), - [aux_sym_field_symbol_declaration_token1] = ACTIONS(69), - [aux_sym_loop_statement_token1] = ACTIONS(71), - [aux_sym_loop_statement_token6] = ACTIONS(209), - [aux_sym_exit_statement_token1] = ACTIONS(73), - [aux_sym_continue_statement_token1] = ACTIONS(75), - [aux_sym_return_statement_token1] = ACTIONS(77), - [aux_sym_report_statement_token1] = ACTIONS(79), - [aux_sym_if_statement_token1] = ACTIONS(81), - [aux_sym_check_statement_token1] = ACTIONS(83), - [anon_sym_STAR] = ACTIONS(35), - [aux_sym_select_statement_obsolete_token1] = ACTIONS(85), - [aux_sym_read_table_statement_token1] = ACTIONS(87), - [aux_sym_try_catch_statement_token1] = ACTIONS(89), - [aux_sym_write_statement_token1] = ACTIONS(95), - [aux_sym_call_function_token1] = ACTIONS(97), - [aux_sym_call_function_token2] = ACTIONS(99), - [aux_sym_raise_exception_statement_token1] = ACTIONS(101), - [aux_sym_clear_statement_token1] = ACTIONS(103), - [aux_sym_append_statement_token1] = ACTIONS(105), - [aux_sym_include_statement_token1] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(5), - [sym_field_symbol_name] = ACTIONS(57), + [sym_name] = ACTIONS(57), + [aux_sym_class_declaration_token1] = ACTIONS(59), + [aux_sym__create_addition_token1] = ACTIONS(61), + [aux_sym_interface_declaration_token1] = ACTIONS(63), + [aux_sym_variable_declaration_token1] = ACTIONS(65), + [aux_sym_field_symbol_declaration_token1] = ACTIONS(67), + [aux_sym_loop_statement_token1] = ACTIONS(69), + [aux_sym_loop_statement_token6] = ACTIONS(207), + [aux_sym_exit_statement_token1] = ACTIONS(71), + [aux_sym_continue_statement_token1] = ACTIONS(73), + [aux_sym_return_statement_token1] = ACTIONS(75), + [aux_sym_report_statement_token1] = ACTIONS(77), + [aux_sym_if_statement_token1] = ACTIONS(79), + [aux_sym_check_statement_token1] = ACTIONS(81), + [aux_sym_select_statement_obsolete_token1] = ACTIONS(83), + [aux_sym_read_table_statement_token1] = ACTIONS(85), + [aux_sym_try_catch_statement_token1] = ACTIONS(87), + [aux_sym_write_statement_token1] = ACTIONS(93), + [aux_sym_call_function_token1] = ACTIONS(95), + [aux_sym_call_function_token2] = ACTIONS(97), + [aux_sym_raise_exception_statement_token1] = ACTIONS(99), + [aux_sym_clear_statement_token1] = ACTIONS(101), + [aux_sym_append_statement_token1] = ACTIONS(103), + [aux_sym_include_statement_token1] = ACTIONS(105), + [sym_eol_comment] = ACTIONS(3), + [sym_bol_comment] = ACTIONS(3), + [sym_field_symbol_name] = ACTIONS(55), }, [18] = { - [sym__statement] = STATE(103), - [sym__implementation_statement] = STATE(104), - [sym_class_declaration] = STATE(104), - [sym_class_implementation] = STATE(104), - [sym_class_publication] = STATE(104), - [sym_class_local_friend_publication] = STATE(104), - [sym_interface_declaration] = STATE(104), - [sym_variable_declaration] = STATE(55), - [sym_chained_variable_declaration] = STATE(55), - [sym_chained_structure_declaration] = STATE(55), - [sym_field_symbol_declaration] = STATE(55), - [sym_chained_field_symbol_declaration] = STATE(55), - [sym_loop_statement] = STATE(55), - [sym_exit_statement] = STATE(55), - [sym_continue_statement] = STATE(55), - [sym_return_statement] = STATE(55), - [sym_report_statement] = STATE(55), - [sym_if_statement] = STATE(55), - [sym_check_statement] = STATE(55), - [sym__writeable_expression] = STATE(2973), - [sym_table_expression] = STATE(2997), - [sym_select_statement_obsolete] = STATE(55), - [sym_read_table_statement] = STATE(55), - [sym__data_object] = STATE(2973), - [sym_structured_data_object] = STATE(996), - [sym_attribute_access_static] = STATE(996), - [sym_assignment] = STATE(55), - [sym_try_catch_statement] = STATE(55), - [sym_write_statement] = STATE(55), - [sym_chained_write_statement] = STATE(55), - [sym_call_method] = STATE(55), - [sym_call_method_static] = STATE(55), - [sym_call_method_instance] = STATE(55), - [sym_call_function] = STATE(55), - [sym_raise_exception_statement] = STATE(55), - [sym_clear_statement] = STATE(55), - [sym_append_statement] = STATE(55), - [sym_append_statement_obsolete] = STATE(55), - [sym_create_object_statement] = STATE(55), - [sym_include_statement] = STATE(55), - [sym_macro_include] = STATE(55), - [sym_function_implementation] = STATE(104), - [sym_raise_statement] = STATE(55), - [sym_eol_comment] = STATE(18), - [sym_bol_comment] = STATE(18), - [aux_sym_program_repeat1] = STATE(15), - [sym_name] = ACTIONS(59), - [aux_sym_class_declaration_token1] = ACTIONS(61), - [aux_sym__create_addition_token1] = ACTIONS(63), - [aux_sym_interface_declaration_token1] = ACTIONS(65), - [aux_sym_variable_declaration_token1] = ACTIONS(67), - [aux_sym_field_symbol_declaration_token1] = ACTIONS(69), - [aux_sym_loop_statement_token1] = ACTIONS(71), - [aux_sym_exit_statement_token1] = ACTIONS(73), - [aux_sym_continue_statement_token1] = ACTIONS(75), - [aux_sym_return_statement_token1] = ACTIONS(77), - [aux_sym_report_statement_token1] = ACTIONS(79), - [aux_sym_if_statement_token1] = ACTIONS(81), - [aux_sym_if_statement_token2] = ACTIONS(211), - [aux_sym_check_statement_token1] = ACTIONS(83), - [anon_sym_STAR] = ACTIONS(35), - [aux_sym_select_statement_obsolete_token1] = ACTIONS(85), - [aux_sym_read_table_statement_token1] = ACTIONS(87), - [aux_sym_try_catch_statement_token1] = ACTIONS(89), - [aux_sym_write_statement_token1] = ACTIONS(95), - [aux_sym_call_function_token1] = ACTIONS(97), - [aux_sym_call_function_token2] = ACTIONS(99), - [aux_sym_raise_exception_statement_token1] = ACTIONS(101), - [aux_sym_clear_statement_token1] = ACTIONS(103), - [aux_sym_append_statement_token1] = ACTIONS(105), - [aux_sym_include_statement_token1] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(5), - [sym_field_symbol_name] = ACTIONS(57), + [sym__statement] = STATE(4), + [sym__implementation_statement] = STATE(4), + [sym_class_declaration] = STATE(4), + [sym_class_implementation] = STATE(4), + [sym_class_publication] = STATE(4), + [sym_class_local_friend_publication] = STATE(4), + [sym_interface_declaration] = STATE(4), + [sym_variable_declaration] = STATE(4), + [sym_chained_variable_declaration] = STATE(4), + [sym_chained_structure_declaration] = STATE(4), + [sym_field_symbol_declaration] = STATE(4), + [sym_chained_field_symbol_declaration] = STATE(4), + [sym_loop_statement] = STATE(4), + [sym_exit_statement] = STATE(4), + [sym_continue_statement] = STATE(4), + [sym_return_statement] = STATE(4), + [sym_report_statement] = STATE(4), + [sym_if_statement] = STATE(4), + [sym_check_statement] = STATE(4), + [sym__writeable_expression] = STATE(2960), + [sym_table_expression] = STATE(2960), + [sym_select_statement_obsolete] = STATE(4), + [sym_read_table_statement] = STATE(4), + [sym__data_object] = STATE(2960), + [sym_structured_data_object] = STATE(2960), + [sym_attribute_access_static] = STATE(2960), + [sym_assignment] = STATE(4), + [sym_try_catch_statement] = STATE(4), + [sym_write_statement] = STATE(4), + [sym_chained_write_statement] = STATE(4), + [sym_call_method] = STATE(4), + [sym_call_method_static] = STATE(4), + [sym_call_method_instance] = STATE(4), + [sym_call_function] = STATE(4), + [sym_raise_exception_statement] = STATE(4), + [sym_clear_statement] = STATE(4), + [sym_append_statement] = STATE(4), + [sym_append_statement_obsolete] = STATE(4), + [sym_create_object_statement] = STATE(4), + [sym_include_statement] = STATE(4), + [sym_macro_include] = STATE(4), + [sym_function_implementation] = STATE(4), + [sym_raise_statement] = STATE(4), + [aux_sym_program_repeat1] = STATE(4), + [sym_name] = ACTIONS(57), + [aux_sym_class_declaration_token1] = ACTIONS(59), + [aux_sym__create_addition_token1] = ACTIONS(61), + [aux_sym_interface_declaration_token1] = ACTIONS(63), + [aux_sym_variable_declaration_token1] = ACTIONS(65), + [aux_sym_field_symbol_declaration_token1] = ACTIONS(67), + [aux_sym_loop_statement_token1] = ACTIONS(69), + [aux_sym_loop_statement_token6] = ACTIONS(209), + [aux_sym_exit_statement_token1] = ACTIONS(71), + [aux_sym_continue_statement_token1] = ACTIONS(73), + [aux_sym_return_statement_token1] = ACTIONS(75), + [aux_sym_report_statement_token1] = ACTIONS(77), + [aux_sym_if_statement_token1] = ACTIONS(79), + [aux_sym_check_statement_token1] = ACTIONS(81), + [aux_sym_select_statement_obsolete_token1] = ACTIONS(83), + [aux_sym_read_table_statement_token1] = ACTIONS(85), + [aux_sym_try_catch_statement_token1] = ACTIONS(87), + [aux_sym_write_statement_token1] = ACTIONS(93), + [aux_sym_call_function_token1] = ACTIONS(95), + [aux_sym_call_function_token2] = ACTIONS(97), + [aux_sym_raise_exception_statement_token1] = ACTIONS(99), + [aux_sym_clear_statement_token1] = ACTIONS(101), + [aux_sym_append_statement_token1] = ACTIONS(103), + [aux_sym_include_statement_token1] = ACTIONS(105), + [sym_eol_comment] = ACTIONS(3), + [sym_bol_comment] = ACTIONS(3), + [sym_field_symbol_name] = ACTIONS(55), }, [19] = { - [sym__statement] = STATE(339), - [sym__implementation_statement] = STATE(340), - [sym_class_declaration] = STATE(340), - [sym_class_implementation] = STATE(340), - [sym_class_publication] = STATE(340), - [sym_class_local_friend_publication] = STATE(340), - [sym_interface_declaration] = STATE(340), - [sym_variable_declaration] = STATE(341), - [sym_chained_variable_declaration] = STATE(341), - [sym_chained_structure_declaration] = STATE(341), - [sym_field_symbol_declaration] = STATE(341), - [sym_chained_field_symbol_declaration] = STATE(341), - [sym_loop_statement] = STATE(341), - [sym_exit_statement] = STATE(341), - [sym_continue_statement] = STATE(341), - [sym_return_statement] = STATE(341), - [sym_report_statement] = STATE(341), - [sym_if_statement] = STATE(341), - [sym_check_statement] = STATE(341), - [sym__writeable_expression] = STATE(2999), - [sym_table_expression] = STATE(2997), - [sym_select_statement_obsolete] = STATE(341), - [sym_read_table_statement] = STATE(341), - [sym__data_object] = STATE(2999), - [sym_structured_data_object] = STATE(996), - [sym_attribute_access_static] = STATE(996), - [sym_assignment] = STATE(341), - [sym_try_catch_statement] = STATE(341), - [sym_write_statement] = STATE(341), - [sym_chained_write_statement] = STATE(341), - [sym_call_method] = STATE(341), - [sym_call_method_static] = STATE(341), - [sym_call_method_instance] = STATE(341), - [sym_call_function] = STATE(341), - [sym_raise_exception_statement] = STATE(341), - [sym_clear_statement] = STATE(341), - [sym_append_statement] = STATE(341), - [sym_append_statement_obsolete] = STATE(341), - [sym_create_object_statement] = STATE(341), - [sym_include_statement] = STATE(341), - [sym_macro_include] = STATE(341), - [sym_function_implementation] = STATE(340), - [sym_raise_statement] = STATE(341), - [sym_eol_comment] = STATE(19), - [sym_bol_comment] = STATE(19), - [aux_sym_program_repeat1] = STATE(19), - [ts_builtin_sym_end] = ACTIONS(213), - [sym_name] = ACTIONS(215), - [aux_sym_class_declaration_token1] = ACTIONS(218), - [aux_sym__create_addition_token1] = ACTIONS(221), - [aux_sym_interface_declaration_token1] = ACTIONS(224), - [aux_sym_variable_declaration_token1] = ACTIONS(227), - [aux_sym_field_symbol_declaration_token1] = ACTIONS(230), - [aux_sym_loop_statement_token1] = ACTIONS(233), - [aux_sym_exit_statement_token1] = ACTIONS(236), - [aux_sym_continue_statement_token1] = ACTIONS(239), - [aux_sym_return_statement_token1] = ACTIONS(242), - [aux_sym_report_statement_token1] = ACTIONS(245), - [aux_sym_if_statement_token1] = ACTIONS(248), - [aux_sym_check_statement_token1] = ACTIONS(251), - [anon_sym_STAR] = ACTIONS(35), - [aux_sym_select_statement_obsolete_token1] = ACTIONS(254), - [aux_sym_read_table_statement_token1] = ACTIONS(257), - [aux_sym_try_catch_statement_token1] = ACTIONS(260), - [aux_sym_write_statement_token1] = ACTIONS(263), - [aux_sym_call_function_token1] = ACTIONS(266), - [aux_sym_call_function_token2] = ACTIONS(269), - [aux_sym_raise_exception_statement_token1] = ACTIONS(272), - [aux_sym_clear_statement_token1] = ACTIONS(275), - [aux_sym_append_statement_token1] = ACTIONS(278), - [aux_sym_include_statement_token1] = ACTIONS(281), - [anon_sym_DQUOTE] = ACTIONS(5), - [sym_field_symbol_name] = ACTIONS(182), + [sym__statement] = STATE(9), + [sym__implementation_statement] = STATE(9), + [sym_class_declaration] = STATE(9), + [sym_class_implementation] = STATE(9), + [sym_class_publication] = STATE(9), + [sym_class_local_friend_publication] = STATE(9), + [sym_interface_declaration] = STATE(9), + [sym_variable_declaration] = STATE(9), + [sym_chained_variable_declaration] = STATE(9), + [sym_chained_structure_declaration] = STATE(9), + [sym_field_symbol_declaration] = STATE(9), + [sym_chained_field_symbol_declaration] = STATE(9), + [sym_loop_statement] = STATE(9), + [sym_exit_statement] = STATE(9), + [sym_continue_statement] = STATE(9), + [sym_return_statement] = STATE(9), + [sym_report_statement] = STATE(9), + [sym_if_statement] = STATE(9), + [sym_check_statement] = STATE(9), + [sym__writeable_expression] = STATE(2960), + [sym_table_expression] = STATE(2960), + [sym_select_statement_obsolete] = STATE(9), + [sym_read_table_statement] = STATE(9), + [sym__data_object] = STATE(2960), + [sym_structured_data_object] = STATE(2960), + [sym_attribute_access_static] = STATE(2960), + [sym_assignment] = STATE(9), + [sym_try_catch_statement] = STATE(9), + [sym_write_statement] = STATE(9), + [sym_chained_write_statement] = STATE(9), + [sym_call_method] = STATE(9), + [sym_call_method_static] = STATE(9), + [sym_call_method_instance] = STATE(9), + [sym_call_function] = STATE(9), + [sym_raise_exception_statement] = STATE(9), + [sym_clear_statement] = STATE(9), + [sym_append_statement] = STATE(9), + [sym_append_statement_obsolete] = STATE(9), + [sym_create_object_statement] = STATE(9), + [sym_include_statement] = STATE(9), + [sym_macro_include] = STATE(9), + [sym_function_implementation] = STATE(9), + [sym_raise_statement] = STATE(9), + [aux_sym_program_repeat1] = STATE(9), + [sym_name] = ACTIONS(57), + [aux_sym_class_declaration_token1] = ACTIONS(59), + [aux_sym__create_addition_token1] = ACTIONS(61), + [aux_sym_interface_declaration_token1] = ACTIONS(63), + [aux_sym_variable_declaration_token1] = ACTIONS(65), + [aux_sym_field_symbol_declaration_token1] = ACTIONS(67), + [aux_sym_loop_statement_token1] = ACTIONS(69), + [aux_sym_loop_statement_token6] = ACTIONS(211), + [aux_sym_exit_statement_token1] = ACTIONS(71), + [aux_sym_continue_statement_token1] = ACTIONS(73), + [aux_sym_return_statement_token1] = ACTIONS(75), + [aux_sym_report_statement_token1] = ACTIONS(77), + [aux_sym_if_statement_token1] = ACTIONS(79), + [aux_sym_check_statement_token1] = ACTIONS(81), + [aux_sym_select_statement_obsolete_token1] = ACTIONS(83), + [aux_sym_read_table_statement_token1] = ACTIONS(85), + [aux_sym_try_catch_statement_token1] = ACTIONS(87), + [aux_sym_write_statement_token1] = ACTIONS(93), + [aux_sym_call_function_token1] = ACTIONS(95), + [aux_sym_call_function_token2] = ACTIONS(97), + [aux_sym_raise_exception_statement_token1] = ACTIONS(99), + [aux_sym_clear_statement_token1] = ACTIONS(101), + [aux_sym_append_statement_token1] = ACTIONS(103), + [aux_sym_include_statement_token1] = ACTIONS(105), + [sym_eol_comment] = ACTIONS(3), + [sym_bol_comment] = ACTIONS(3), + [sym_field_symbol_name] = ACTIONS(55), }, [20] = { - [sym__statement] = STATE(103), - [sym__implementation_statement] = STATE(104), - [sym_class_declaration] = STATE(104), - [sym_class_implementation] = STATE(104), - [sym_class_publication] = STATE(104), - [sym_class_local_friend_publication] = STATE(104), - [sym_interface_declaration] = STATE(104), - [sym_variable_declaration] = STATE(55), - [sym_chained_variable_declaration] = STATE(55), - [sym_chained_structure_declaration] = STATE(55), - [sym_field_symbol_declaration] = STATE(55), - [sym_chained_field_symbol_declaration] = STATE(55), - [sym_loop_statement] = STATE(55), - [sym_exit_statement] = STATE(55), - [sym_continue_statement] = STATE(55), - [sym_return_statement] = STATE(55), - [sym_report_statement] = STATE(55), - [sym_if_statement] = STATE(55), - [sym_check_statement] = STATE(55), - [sym__writeable_expression] = STATE(2973), - [sym_table_expression] = STATE(2997), - [sym_select_statement_obsolete] = STATE(55), - [sym_read_table_statement] = STATE(55), - [sym__data_object] = STATE(2973), - [sym_structured_data_object] = STATE(996), - [sym_attribute_access_static] = STATE(996), - [sym_assignment] = STATE(55), - [sym_try_catch_statement] = STATE(55), - [sym_write_statement] = STATE(55), - [sym_chained_write_statement] = STATE(55), - [sym_call_method] = STATE(55), - [sym_call_method_static] = STATE(55), - [sym_call_method_instance] = STATE(55), - [sym_call_function] = STATE(55), - [sym_raise_exception_statement] = STATE(55), - [sym_clear_statement] = STATE(55), - [sym_append_statement] = STATE(55), - [sym_append_statement_obsolete] = STATE(55), - [sym_create_object_statement] = STATE(55), - [sym_include_statement] = STATE(55), - [sym_macro_include] = STATE(55), - [sym_function_implementation] = STATE(104), - [sym_raise_statement] = STATE(55), - [sym_eol_comment] = STATE(20), - [sym_bol_comment] = STATE(20), - [aux_sym_program_repeat1] = STATE(4), - [sym_name] = ACTIONS(59), - [aux_sym_class_declaration_token1] = ACTIONS(61), - [aux_sym__create_addition_token1] = ACTIONS(63), - [aux_sym_interface_declaration_token1] = ACTIONS(65), - [aux_sym_variable_declaration_token1] = ACTIONS(67), - [aux_sym_field_symbol_declaration_token1] = ACTIONS(69), - [aux_sym_loop_statement_token1] = ACTIONS(71), - [aux_sym_loop_statement_token6] = ACTIONS(284), - [aux_sym_exit_statement_token1] = ACTIONS(73), - [aux_sym_continue_statement_token1] = ACTIONS(75), - [aux_sym_return_statement_token1] = ACTIONS(77), - [aux_sym_report_statement_token1] = ACTIONS(79), - [aux_sym_if_statement_token1] = ACTIONS(81), - [aux_sym_check_statement_token1] = ACTIONS(83), - [anon_sym_STAR] = ACTIONS(35), - [aux_sym_select_statement_obsolete_token1] = ACTIONS(85), - [aux_sym_read_table_statement_token1] = ACTIONS(87), - [aux_sym_try_catch_statement_token1] = ACTIONS(89), - [aux_sym_write_statement_token1] = ACTIONS(95), - [aux_sym_call_function_token1] = ACTIONS(97), - [aux_sym_call_function_token2] = ACTIONS(99), - [aux_sym_raise_exception_statement_token1] = ACTIONS(101), - [aux_sym_clear_statement_token1] = ACTIONS(103), - [aux_sym_append_statement_token1] = ACTIONS(105), - [aux_sym_include_statement_token1] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(5), - [sym_field_symbol_name] = ACTIONS(57), + [sym__statement] = STATE(20), + [sym__implementation_statement] = STATE(20), + [sym_class_declaration] = STATE(20), + [sym_class_implementation] = STATE(20), + [sym_class_publication] = STATE(20), + [sym_class_local_friend_publication] = STATE(20), + [sym_interface_declaration] = STATE(20), + [sym_variable_declaration] = STATE(20), + [sym_chained_variable_declaration] = STATE(20), + [sym_chained_structure_declaration] = STATE(20), + [sym_field_symbol_declaration] = STATE(20), + [sym_chained_field_symbol_declaration] = STATE(20), + [sym_loop_statement] = STATE(20), + [sym_exit_statement] = STATE(20), + [sym_continue_statement] = STATE(20), + [sym_return_statement] = STATE(20), + [sym_report_statement] = STATE(20), + [sym_if_statement] = STATE(20), + [sym_check_statement] = STATE(20), + [sym__writeable_expression] = STATE(2993), + [sym_table_expression] = STATE(2993), + [sym_select_statement_obsolete] = STATE(20), + [sym_read_table_statement] = STATE(20), + [sym__data_object] = STATE(2993), + [sym_structured_data_object] = STATE(2993), + [sym_attribute_access_static] = STATE(2993), + [sym_assignment] = STATE(20), + [sym_try_catch_statement] = STATE(20), + [sym_write_statement] = STATE(20), + [sym_chained_write_statement] = STATE(20), + [sym_call_method] = STATE(20), + [sym_call_method_static] = STATE(20), + [sym_call_method_instance] = STATE(20), + [sym_call_function] = STATE(20), + [sym_raise_exception_statement] = STATE(20), + [sym_clear_statement] = STATE(20), + [sym_append_statement] = STATE(20), + [sym_append_statement_obsolete] = STATE(20), + [sym_create_object_statement] = STATE(20), + [sym_include_statement] = STATE(20), + [sym_macro_include] = STATE(20), + [sym_function_implementation] = STATE(20), + [sym_raise_statement] = STATE(20), + [aux_sym_program_repeat1] = STATE(20), + [ts_builtin_sym_end] = ACTIONS(130), + [sym_name] = ACTIONS(213), + [aux_sym_class_declaration_token1] = ACTIONS(216), + [aux_sym__create_addition_token1] = ACTIONS(219), + [aux_sym_interface_declaration_token1] = ACTIONS(222), + [aux_sym_variable_declaration_token1] = ACTIONS(225), + [aux_sym_field_symbol_declaration_token1] = ACTIONS(228), + [aux_sym_loop_statement_token1] = ACTIONS(231), + [aux_sym_exit_statement_token1] = ACTIONS(234), + [aux_sym_continue_statement_token1] = ACTIONS(237), + [aux_sym_return_statement_token1] = ACTIONS(240), + [aux_sym_report_statement_token1] = ACTIONS(243), + [aux_sym_if_statement_token1] = ACTIONS(246), + [aux_sym_check_statement_token1] = ACTIONS(249), + [aux_sym_select_statement_obsolete_token1] = ACTIONS(252), + [aux_sym_read_table_statement_token1] = ACTIONS(255), + [aux_sym_try_catch_statement_token1] = ACTIONS(258), + [aux_sym_write_statement_token1] = ACTIONS(261), + [aux_sym_call_function_token1] = ACTIONS(264), + [aux_sym_call_function_token2] = ACTIONS(267), + [aux_sym_raise_exception_statement_token1] = ACTIONS(270), + [aux_sym_clear_statement_token1] = ACTIONS(273), + [aux_sym_append_statement_token1] = ACTIONS(276), + [aux_sym_include_statement_token1] = ACTIONS(279), + [sym_eol_comment] = ACTIONS(3), + [sym_bol_comment] = ACTIONS(3), + [sym_field_symbol_name] = ACTIONS(180), }, [21] = { - [sym__statement] = STATE(103), - [sym__implementation_statement] = STATE(104), - [sym_class_declaration] = STATE(104), - [sym_class_implementation] = STATE(104), - [sym_class_publication] = STATE(104), - [sym_class_local_friend_publication] = STATE(104), - [sym_interface_declaration] = STATE(104), - [sym_variable_declaration] = STATE(55), - [sym_chained_variable_declaration] = STATE(55), - [sym_chained_structure_declaration] = STATE(55), - [sym_field_symbol_declaration] = STATE(55), - [sym_chained_field_symbol_declaration] = STATE(55), - [sym_loop_statement] = STATE(55), - [sym_exit_statement] = STATE(55), - [sym_continue_statement] = STATE(55), - [sym_return_statement] = STATE(55), - [sym_report_statement] = STATE(55), - [sym_if_statement] = STATE(55), - [sym_check_statement] = STATE(55), - [sym__writeable_expression] = STATE(2973), - [sym_table_expression] = STATE(2997), - [sym_select_statement_obsolete] = STATE(55), - [sym_read_table_statement] = STATE(55), - [sym__data_object] = STATE(2973), - [sym_structured_data_object] = STATE(996), - [sym_attribute_access_static] = STATE(996), - [sym_assignment] = STATE(55), - [sym_try_catch_statement] = STATE(55), - [sym_write_statement] = STATE(55), - [sym_chained_write_statement] = STATE(55), - [sym_call_method] = STATE(55), - [sym_call_method_static] = STATE(55), - [sym_call_method_instance] = STATE(55), - [sym_call_function] = STATE(55), - [sym_raise_exception_statement] = STATE(55), - [sym_clear_statement] = STATE(55), - [sym_append_statement] = STATE(55), - [sym_append_statement_obsolete] = STATE(55), - [sym_create_object_statement] = STATE(55), - [sym_include_statement] = STATE(55), - [sym_macro_include] = STATE(55), - [sym_function_implementation] = STATE(104), - [sym_raise_statement] = STATE(55), - [sym_eol_comment] = STATE(21), - [sym_bol_comment] = STATE(21), + [sym__statement] = STATE(4), + [sym__implementation_statement] = STATE(4), + [sym_class_declaration] = STATE(4), + [sym_class_implementation] = STATE(4), + [sym_class_publication] = STATE(4), + [sym_class_local_friend_publication] = STATE(4), + [sym_interface_declaration] = STATE(4), + [sym_variable_declaration] = STATE(4), + [sym_chained_variable_declaration] = STATE(4), + [sym_chained_structure_declaration] = STATE(4), + [sym_field_symbol_declaration] = STATE(4), + [sym_chained_field_symbol_declaration] = STATE(4), + [sym_loop_statement] = STATE(4), + [sym_exit_statement] = STATE(4), + [sym_continue_statement] = STATE(4), + [sym_return_statement] = STATE(4), + [sym_report_statement] = STATE(4), + [sym_if_statement] = STATE(4), + [sym_check_statement] = STATE(4), + [sym__writeable_expression] = STATE(2960), + [sym_table_expression] = STATE(2960), + [sym_select_statement_obsolete] = STATE(4), + [sym_read_table_statement] = STATE(4), + [sym__data_object] = STATE(2960), + [sym_structured_data_object] = STATE(2960), + [sym_attribute_access_static] = STATE(2960), + [sym_assignment] = STATE(4), + [sym_try_catch_statement] = STATE(4), + [sym_write_statement] = STATE(4), + [sym_chained_write_statement] = STATE(4), + [sym_call_method] = STATE(4), + [sym_call_method_static] = STATE(4), + [sym_call_method_instance] = STATE(4), + [sym_call_function] = STATE(4), + [sym_raise_exception_statement] = STATE(4), + [sym_clear_statement] = STATE(4), + [sym_append_statement] = STATE(4), + [sym_append_statement_obsolete] = STATE(4), + [sym_create_object_statement] = STATE(4), + [sym_include_statement] = STATE(4), + [sym_macro_include] = STATE(4), + [sym_function_implementation] = STATE(4), + [sym_raise_statement] = STATE(4), [aux_sym_program_repeat1] = STATE(4), - [sym_name] = ACTIONS(59), - [aux_sym_class_declaration_token1] = ACTIONS(61), - [aux_sym__create_addition_token1] = ACTIONS(63), - [aux_sym_interface_declaration_token1] = ACTIONS(65), - [aux_sym_variable_declaration_token1] = ACTIONS(67), - [aux_sym_field_symbol_declaration_token1] = ACTIONS(69), - [aux_sym_loop_statement_token1] = ACTIONS(71), - [aux_sym_loop_statement_token6] = ACTIONS(286), - [aux_sym_exit_statement_token1] = ACTIONS(73), - [aux_sym_continue_statement_token1] = ACTIONS(75), - [aux_sym_return_statement_token1] = ACTIONS(77), - [aux_sym_report_statement_token1] = ACTIONS(79), - [aux_sym_if_statement_token1] = ACTIONS(81), - [aux_sym_check_statement_token1] = ACTIONS(83), - [anon_sym_STAR] = ACTIONS(35), - [aux_sym_select_statement_obsolete_token1] = ACTIONS(85), - [aux_sym_read_table_statement_token1] = ACTIONS(87), - [aux_sym_try_catch_statement_token1] = ACTIONS(89), - [aux_sym_write_statement_token1] = ACTIONS(95), - [aux_sym_call_function_token1] = ACTIONS(97), - [aux_sym_call_function_token2] = ACTIONS(99), - [aux_sym_raise_exception_statement_token1] = ACTIONS(101), - [aux_sym_clear_statement_token1] = ACTIONS(103), - [aux_sym_append_statement_token1] = ACTIONS(105), - [aux_sym_include_statement_token1] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(5), - [sym_field_symbol_name] = ACTIONS(57), + [sym_name] = ACTIONS(57), + [aux_sym_class_declaration_token1] = ACTIONS(59), + [aux_sym__create_addition_token1] = ACTIONS(61), + [aux_sym_interface_declaration_token1] = ACTIONS(63), + [aux_sym_variable_declaration_token1] = ACTIONS(65), + [aux_sym_field_symbol_declaration_token1] = ACTIONS(67), + [aux_sym_loop_statement_token1] = ACTIONS(69), + [aux_sym_loop_statement_token6] = ACTIONS(282), + [aux_sym_exit_statement_token1] = ACTIONS(71), + [aux_sym_continue_statement_token1] = ACTIONS(73), + [aux_sym_return_statement_token1] = ACTIONS(75), + [aux_sym_report_statement_token1] = ACTIONS(77), + [aux_sym_if_statement_token1] = ACTIONS(79), + [aux_sym_check_statement_token1] = ACTIONS(81), + [aux_sym_select_statement_obsolete_token1] = ACTIONS(83), + [aux_sym_read_table_statement_token1] = ACTIONS(85), + [aux_sym_try_catch_statement_token1] = ACTIONS(87), + [aux_sym_write_statement_token1] = ACTIONS(93), + [aux_sym_call_function_token1] = ACTIONS(95), + [aux_sym_call_function_token2] = ACTIONS(97), + [aux_sym_raise_exception_statement_token1] = ACTIONS(99), + [aux_sym_clear_statement_token1] = ACTIONS(101), + [aux_sym_append_statement_token1] = ACTIONS(103), + [aux_sym_include_statement_token1] = ACTIONS(105), + [sym_eol_comment] = ACTIONS(3), + [sym_bol_comment] = ACTIONS(3), + [sym_field_symbol_name] = ACTIONS(55), }, [22] = { - [sym__statement] = STATE(103), - [sym__implementation_statement] = STATE(104), - [sym_class_declaration] = STATE(104), - [sym_class_implementation] = STATE(104), - [sym_class_publication] = STATE(104), - [sym_class_local_friend_publication] = STATE(104), - [sym_interface_declaration] = STATE(104), - [sym_variable_declaration] = STATE(55), - [sym_chained_variable_declaration] = STATE(55), - [sym_chained_structure_declaration] = STATE(55), - [sym_field_symbol_declaration] = STATE(55), - [sym_chained_field_symbol_declaration] = STATE(55), - [sym_loop_statement] = STATE(55), - [sym_exit_statement] = STATE(55), - [sym_continue_statement] = STATE(55), - [sym_return_statement] = STATE(55), - [sym_report_statement] = STATE(55), - [sym_if_statement] = STATE(55), - [sym_check_statement] = STATE(55), - [sym__writeable_expression] = STATE(2973), - [sym_table_expression] = STATE(2997), - [sym_select_statement_obsolete] = STATE(55), - [sym_read_table_statement] = STATE(55), - [sym__data_object] = STATE(2973), - [sym_structured_data_object] = STATE(996), - [sym_attribute_access_static] = STATE(996), - [sym_assignment] = STATE(55), - [sym_try_catch_statement] = STATE(55), - [sym_write_statement] = STATE(55), - [sym_chained_write_statement] = STATE(55), - [sym_call_method] = STATE(55), - [sym_call_method_static] = STATE(55), - [sym_call_method_instance] = STATE(55), - [sym_call_function] = STATE(55), - [sym_raise_exception_statement] = STATE(55), - [sym_clear_statement] = STATE(55), - [sym_append_statement] = STATE(55), - [sym_append_statement_obsolete] = STATE(55), - [sym_create_object_statement] = STATE(55), - [sym_include_statement] = STATE(55), - [sym_macro_include] = STATE(55), - [sym_function_implementation] = STATE(104), - [sym_raise_statement] = STATE(55), - [sym_eol_comment] = STATE(22), - [sym_bol_comment] = STATE(22), + [sym__statement] = STATE(4), + [sym__implementation_statement] = STATE(4), + [sym_class_declaration] = STATE(4), + [sym_class_implementation] = STATE(4), + [sym_class_publication] = STATE(4), + [sym_class_local_friend_publication] = STATE(4), + [sym_interface_declaration] = STATE(4), + [sym_variable_declaration] = STATE(4), + [sym_chained_variable_declaration] = STATE(4), + [sym_chained_structure_declaration] = STATE(4), + [sym_field_symbol_declaration] = STATE(4), + [sym_chained_field_symbol_declaration] = STATE(4), + [sym_loop_statement] = STATE(4), + [sym_exit_statement] = STATE(4), + [sym_continue_statement] = STATE(4), + [sym_return_statement] = STATE(4), + [sym_report_statement] = STATE(4), + [sym_if_statement] = STATE(4), + [sym_check_statement] = STATE(4), + [sym__writeable_expression] = STATE(2960), + [sym_table_expression] = STATE(2960), + [sym_select_statement_obsolete] = STATE(4), + [sym_read_table_statement] = STATE(4), + [sym__data_object] = STATE(2960), + [sym_structured_data_object] = STATE(2960), + [sym_attribute_access_static] = STATE(2960), + [sym_assignment] = STATE(4), + [sym_try_catch_statement] = STATE(4), + [sym_write_statement] = STATE(4), + [sym_chained_write_statement] = STATE(4), + [sym_call_method] = STATE(4), + [sym_call_method_static] = STATE(4), + [sym_call_method_instance] = STATE(4), + [sym_call_function] = STATE(4), + [sym_raise_exception_statement] = STATE(4), + [sym_clear_statement] = STATE(4), + [sym_append_statement] = STATE(4), + [sym_append_statement_obsolete] = STATE(4), + [sym_create_object_statement] = STATE(4), + [sym_include_statement] = STATE(4), + [sym_macro_include] = STATE(4), + [sym_function_implementation] = STATE(4), + [sym_raise_statement] = STATE(4), [aux_sym_program_repeat1] = STATE(4), - [sym_name] = ACTIONS(59), - [aux_sym_class_declaration_token1] = ACTIONS(61), - [aux_sym__create_addition_token1] = ACTIONS(63), - [aux_sym_interface_declaration_token1] = ACTIONS(65), - [aux_sym_variable_declaration_token1] = ACTIONS(67), - [aux_sym_field_symbol_declaration_token1] = ACTIONS(69), - [aux_sym_loop_statement_token1] = ACTIONS(71), - [aux_sym_exit_statement_token1] = ACTIONS(73), - [aux_sym_continue_statement_token1] = ACTIONS(75), - [aux_sym_return_statement_token1] = ACTIONS(77), - [aux_sym_report_statement_token1] = ACTIONS(79), - [aux_sym_if_statement_token1] = ACTIONS(81), - [aux_sym_if_statement_token2] = ACTIONS(288), - [aux_sym_check_statement_token1] = ACTIONS(83), - [anon_sym_STAR] = ACTIONS(35), - [aux_sym_select_statement_obsolete_token1] = ACTIONS(85), - [aux_sym_read_table_statement_token1] = ACTIONS(87), - [aux_sym_try_catch_statement_token1] = ACTIONS(89), - [aux_sym_write_statement_token1] = ACTIONS(95), - [aux_sym_call_function_token1] = ACTIONS(97), - [aux_sym_call_function_token2] = ACTIONS(99), - [aux_sym_raise_exception_statement_token1] = ACTIONS(101), - [aux_sym_clear_statement_token1] = ACTIONS(103), - [aux_sym_append_statement_token1] = ACTIONS(105), - [aux_sym_include_statement_token1] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(5), - [sym_field_symbol_name] = ACTIONS(57), + [sym_name] = ACTIONS(57), + [aux_sym_class_declaration_token1] = ACTIONS(59), + [aux_sym__create_addition_token1] = ACTIONS(61), + [aux_sym_interface_declaration_token1] = ACTIONS(63), + [aux_sym_variable_declaration_token1] = ACTIONS(65), + [aux_sym_field_symbol_declaration_token1] = ACTIONS(67), + [aux_sym_loop_statement_token1] = ACTIONS(69), + [aux_sym_exit_statement_token1] = ACTIONS(71), + [aux_sym_continue_statement_token1] = ACTIONS(73), + [aux_sym_return_statement_token1] = ACTIONS(75), + [aux_sym_report_statement_token1] = ACTIONS(77), + [aux_sym_if_statement_token1] = ACTIONS(79), + [aux_sym_if_statement_token2] = ACTIONS(284), + [aux_sym_check_statement_token1] = ACTIONS(81), + [aux_sym_select_statement_obsolete_token1] = ACTIONS(83), + [aux_sym_read_table_statement_token1] = ACTIONS(85), + [aux_sym_try_catch_statement_token1] = ACTIONS(87), + [aux_sym_write_statement_token1] = ACTIONS(93), + [aux_sym_call_function_token1] = ACTIONS(95), + [aux_sym_call_function_token2] = ACTIONS(97), + [aux_sym_raise_exception_statement_token1] = ACTIONS(99), + [aux_sym_clear_statement_token1] = ACTIONS(101), + [aux_sym_append_statement_token1] = ACTIONS(103), + [aux_sym_include_statement_token1] = ACTIONS(105), + [sym_eol_comment] = ACTIONS(3), + [sym_bol_comment] = ACTIONS(3), + [sym_field_symbol_name] = ACTIONS(55), }, [23] = { - [sym__statement] = STATE(339), - [sym__implementation_statement] = STATE(340), - [sym_class_declaration] = STATE(340), - [sym_class_implementation] = STATE(340), - [sym_class_publication] = STATE(340), - [sym_class_local_friend_publication] = STATE(340), - [sym_interface_declaration] = STATE(340), - [sym_variable_declaration] = STATE(341), - [sym_chained_variable_declaration] = STATE(341), - [sym_chained_structure_declaration] = STATE(341), - [sym_field_symbol_declaration] = STATE(341), - [sym_chained_field_symbol_declaration] = STATE(341), - [sym_loop_statement] = STATE(341), - [sym_exit_statement] = STATE(341), - [sym_continue_statement] = STATE(341), - [sym_return_statement] = STATE(341), - [sym_report_statement] = STATE(341), - [sym_if_statement] = STATE(341), - [sym_check_statement] = STATE(341), - [sym__writeable_expression] = STATE(2999), - [sym_table_expression] = STATE(2997), - [sym_select_statement_obsolete] = STATE(341), - [sym_read_table_statement] = STATE(341), - [sym__data_object] = STATE(2999), - [sym_structured_data_object] = STATE(996), - [sym_attribute_access_static] = STATE(996), - [sym_assignment] = STATE(341), - [sym_try_catch_statement] = STATE(341), - [sym_write_statement] = STATE(341), - [sym_chained_write_statement] = STATE(341), - [sym_call_method] = STATE(341), - [sym_call_method_static] = STATE(341), - [sym_call_method_instance] = STATE(341), - [sym_call_function] = STATE(341), - [sym_raise_exception_statement] = STATE(341), - [sym_clear_statement] = STATE(341), - [sym_append_statement] = STATE(341), - [sym_append_statement_obsolete] = STATE(341), - [sym_create_object_statement] = STATE(341), - [sym_include_statement] = STATE(341), - [sym_macro_include] = STATE(341), - [sym_function_implementation] = STATE(340), - [sym_raise_statement] = STATE(341), - [sym_eol_comment] = STATE(23), - [sym_bol_comment] = STATE(23), - [aux_sym_program_repeat1] = STATE(19), - [ts_builtin_sym_end] = ACTIONS(290), + [sym__statement] = STATE(24), + [sym__implementation_statement] = STATE(24), + [sym_class_declaration] = STATE(24), + [sym_class_implementation] = STATE(24), + [sym_class_publication] = STATE(24), + [sym_class_local_friend_publication] = STATE(24), + [sym_interface_declaration] = STATE(24), + [sym_variable_declaration] = STATE(24), + [sym_chained_variable_declaration] = STATE(24), + [sym_chained_structure_declaration] = STATE(24), + [sym_field_symbol_declaration] = STATE(24), + [sym_chained_field_symbol_declaration] = STATE(24), + [sym_loop_statement] = STATE(24), + [sym_exit_statement] = STATE(24), + [sym_continue_statement] = STATE(24), + [sym_return_statement] = STATE(24), + [sym_report_statement] = STATE(24), + [sym_if_statement] = STATE(24), + [sym_check_statement] = STATE(24), + [sym__writeable_expression] = STATE(2960), + [sym_table_expression] = STATE(2960), + [sym_select_statement_obsolete] = STATE(24), + [sym_read_table_statement] = STATE(24), + [sym__data_object] = STATE(2960), + [sym_structured_data_object] = STATE(2960), + [sym_attribute_access_static] = STATE(2960), + [sym_assignment] = STATE(24), + [sym_try_catch_statement] = STATE(24), + [sym_write_statement] = STATE(24), + [sym_chained_write_statement] = STATE(24), + [sym_call_method] = STATE(24), + [sym_call_method_static] = STATE(24), + [sym_call_method_instance] = STATE(24), + [sym_call_function] = STATE(24), + [sym_raise_exception_statement] = STATE(24), + [sym_clear_statement] = STATE(24), + [sym_append_statement] = STATE(24), + [sym_append_statement_obsolete] = STATE(24), + [sym_create_object_statement] = STATE(24), + [sym_include_statement] = STATE(24), + [sym_macro_include] = STATE(24), + [sym_function_implementation] = STATE(24), + [sym_raise_statement] = STATE(24), + [aux_sym_program_repeat1] = STATE(24), + [sym_name] = ACTIONS(57), + [aux_sym_class_declaration_token1] = ACTIONS(59), + [aux_sym__create_addition_token1] = ACTIONS(61), + [aux_sym_interface_declaration_token1] = ACTIONS(63), + [aux_sym_variable_declaration_token1] = ACTIONS(65), + [aux_sym_field_symbol_declaration_token1] = ACTIONS(67), + [aux_sym_loop_statement_token1] = ACTIONS(69), + [aux_sym_loop_statement_token6] = ACTIONS(286), + [aux_sym_exit_statement_token1] = ACTIONS(71), + [aux_sym_continue_statement_token1] = ACTIONS(73), + [aux_sym_return_statement_token1] = ACTIONS(75), + [aux_sym_report_statement_token1] = ACTIONS(77), + [aux_sym_if_statement_token1] = ACTIONS(79), + [aux_sym_check_statement_token1] = ACTIONS(81), + [aux_sym_select_statement_obsolete_token1] = ACTIONS(83), + [aux_sym_read_table_statement_token1] = ACTIONS(85), + [aux_sym_try_catch_statement_token1] = ACTIONS(87), + [aux_sym_write_statement_token1] = ACTIONS(93), + [aux_sym_call_function_token1] = ACTIONS(95), + [aux_sym_call_function_token2] = ACTIONS(97), + [aux_sym_raise_exception_statement_token1] = ACTIONS(99), + [aux_sym_clear_statement_token1] = ACTIONS(101), + [aux_sym_append_statement_token1] = ACTIONS(103), + [aux_sym_include_statement_token1] = ACTIONS(105), + [sym_eol_comment] = ACTIONS(3), + [sym_bol_comment] = ACTIONS(3), + [sym_field_symbol_name] = ACTIONS(55), + }, + [24] = { + [sym__statement] = STATE(4), + [sym__implementation_statement] = STATE(4), + [sym_class_declaration] = STATE(4), + [sym_class_implementation] = STATE(4), + [sym_class_publication] = STATE(4), + [sym_class_local_friend_publication] = STATE(4), + [sym_interface_declaration] = STATE(4), + [sym_variable_declaration] = STATE(4), + [sym_chained_variable_declaration] = STATE(4), + [sym_chained_structure_declaration] = STATE(4), + [sym_field_symbol_declaration] = STATE(4), + [sym_chained_field_symbol_declaration] = STATE(4), + [sym_loop_statement] = STATE(4), + [sym_exit_statement] = STATE(4), + [sym_continue_statement] = STATE(4), + [sym_return_statement] = STATE(4), + [sym_report_statement] = STATE(4), + [sym_if_statement] = STATE(4), + [sym_check_statement] = STATE(4), + [sym__writeable_expression] = STATE(2960), + [sym_table_expression] = STATE(2960), + [sym_select_statement_obsolete] = STATE(4), + [sym_read_table_statement] = STATE(4), + [sym__data_object] = STATE(2960), + [sym_structured_data_object] = STATE(2960), + [sym_attribute_access_static] = STATE(2960), + [sym_assignment] = STATE(4), + [sym_try_catch_statement] = STATE(4), + [sym_write_statement] = STATE(4), + [sym_chained_write_statement] = STATE(4), + [sym_call_method] = STATE(4), + [sym_call_method_static] = STATE(4), + [sym_call_method_instance] = STATE(4), + [sym_call_function] = STATE(4), + [sym_raise_exception_statement] = STATE(4), + [sym_clear_statement] = STATE(4), + [sym_append_statement] = STATE(4), + [sym_append_statement_obsolete] = STATE(4), + [sym_create_object_statement] = STATE(4), + [sym_include_statement] = STATE(4), + [sym_macro_include] = STATE(4), + [sym_function_implementation] = STATE(4), + [sym_raise_statement] = STATE(4), + [aux_sym_program_repeat1] = STATE(4), + [sym_name] = ACTIONS(57), + [aux_sym_class_declaration_token1] = ACTIONS(59), + [aux_sym__create_addition_token1] = ACTIONS(61), + [aux_sym_interface_declaration_token1] = ACTIONS(63), + [aux_sym_variable_declaration_token1] = ACTIONS(65), + [aux_sym_field_symbol_declaration_token1] = ACTIONS(67), + [aux_sym_loop_statement_token1] = ACTIONS(69), + [aux_sym_loop_statement_token6] = ACTIONS(288), + [aux_sym_exit_statement_token1] = ACTIONS(71), + [aux_sym_continue_statement_token1] = ACTIONS(73), + [aux_sym_return_statement_token1] = ACTIONS(75), + [aux_sym_report_statement_token1] = ACTIONS(77), + [aux_sym_if_statement_token1] = ACTIONS(79), + [aux_sym_check_statement_token1] = ACTIONS(81), + [aux_sym_select_statement_obsolete_token1] = ACTIONS(83), + [aux_sym_read_table_statement_token1] = ACTIONS(85), + [aux_sym_try_catch_statement_token1] = ACTIONS(87), + [aux_sym_write_statement_token1] = ACTIONS(93), + [aux_sym_call_function_token1] = ACTIONS(95), + [aux_sym_call_function_token2] = ACTIONS(97), + [aux_sym_raise_exception_statement_token1] = ACTIONS(99), + [aux_sym_clear_statement_token1] = ACTIONS(101), + [aux_sym_append_statement_token1] = ACTIONS(103), + [aux_sym_include_statement_token1] = ACTIONS(105), + [sym_eol_comment] = ACTIONS(3), + [sym_bol_comment] = ACTIONS(3), + [sym_field_symbol_name] = ACTIONS(55), + }, + [25] = { + [sym__statement] = STATE(17), + [sym__implementation_statement] = STATE(17), + [sym_class_declaration] = STATE(17), + [sym_class_implementation] = STATE(17), + [sym_class_publication] = STATE(17), + [sym_class_local_friend_publication] = STATE(17), + [sym_interface_declaration] = STATE(17), + [sym_variable_declaration] = STATE(17), + [sym_chained_variable_declaration] = STATE(17), + [sym_chained_structure_declaration] = STATE(17), + [sym_field_symbol_declaration] = STATE(17), + [sym_chained_field_symbol_declaration] = STATE(17), + [sym_loop_statement] = STATE(17), + [sym_exit_statement] = STATE(17), + [sym_continue_statement] = STATE(17), + [sym_return_statement] = STATE(17), + [sym_report_statement] = STATE(17), + [sym_if_statement] = STATE(17), + [sym_check_statement] = STATE(17), + [sym__writeable_expression] = STATE(2960), + [sym_table_expression] = STATE(2960), + [sym_select_statement_obsolete] = STATE(17), + [sym_read_table_statement] = STATE(17), + [sym__data_object] = STATE(2960), + [sym_structured_data_object] = STATE(2960), + [sym_attribute_access_static] = STATE(2960), + [sym_assignment] = STATE(17), + [sym_try_catch_statement] = STATE(17), + [sym_write_statement] = STATE(17), + [sym_chained_write_statement] = STATE(17), + [sym_call_method] = STATE(17), + [sym_call_method_static] = STATE(17), + [sym_call_method_instance] = STATE(17), + [sym_call_function] = STATE(17), + [sym_raise_exception_statement] = STATE(17), + [sym_clear_statement] = STATE(17), + [sym_append_statement] = STATE(17), + [sym_append_statement_obsolete] = STATE(17), + [sym_create_object_statement] = STATE(17), + [sym_include_statement] = STATE(17), + [sym_macro_include] = STATE(17), + [sym_function_implementation] = STATE(17), + [sym_raise_statement] = STATE(17), + [aux_sym_program_repeat1] = STATE(17), + [sym_name] = ACTIONS(57), + [aux_sym_class_declaration_token1] = ACTIONS(59), + [aux_sym__create_addition_token1] = ACTIONS(61), + [aux_sym_interface_declaration_token1] = ACTIONS(63), + [aux_sym_variable_declaration_token1] = ACTIONS(65), + [aux_sym_field_symbol_declaration_token1] = ACTIONS(67), + [aux_sym_loop_statement_token1] = ACTIONS(69), + [aux_sym_loop_statement_token6] = ACTIONS(290), + [aux_sym_exit_statement_token1] = ACTIONS(71), + [aux_sym_continue_statement_token1] = ACTIONS(73), + [aux_sym_return_statement_token1] = ACTIONS(75), + [aux_sym_report_statement_token1] = ACTIONS(77), + [aux_sym_if_statement_token1] = ACTIONS(79), + [aux_sym_check_statement_token1] = ACTIONS(81), + [aux_sym_select_statement_obsolete_token1] = ACTIONS(83), + [aux_sym_read_table_statement_token1] = ACTIONS(85), + [aux_sym_try_catch_statement_token1] = ACTIONS(87), + [aux_sym_write_statement_token1] = ACTIONS(93), + [aux_sym_call_function_token1] = ACTIONS(95), + [aux_sym_call_function_token2] = ACTIONS(97), + [aux_sym_raise_exception_statement_token1] = ACTIONS(99), + [aux_sym_clear_statement_token1] = ACTIONS(101), + [aux_sym_append_statement_token1] = ACTIONS(103), + [aux_sym_include_statement_token1] = ACTIONS(105), + [sym_eol_comment] = ACTIONS(3), + [sym_bol_comment] = ACTIONS(3), + [sym_field_symbol_name] = ACTIONS(55), + }, + [26] = { + [sym__statement] = STATE(21), + [sym__implementation_statement] = STATE(21), + [sym_class_declaration] = STATE(21), + [sym_class_implementation] = STATE(21), + [sym_class_publication] = STATE(21), + [sym_class_local_friend_publication] = STATE(21), + [sym_interface_declaration] = STATE(21), + [sym_variable_declaration] = STATE(21), + [sym_chained_variable_declaration] = STATE(21), + [sym_chained_structure_declaration] = STATE(21), + [sym_field_symbol_declaration] = STATE(21), + [sym_chained_field_symbol_declaration] = STATE(21), + [sym_loop_statement] = STATE(21), + [sym_exit_statement] = STATE(21), + [sym_continue_statement] = STATE(21), + [sym_return_statement] = STATE(21), + [sym_report_statement] = STATE(21), + [sym_if_statement] = STATE(21), + [sym_check_statement] = STATE(21), + [sym__writeable_expression] = STATE(2960), + [sym_table_expression] = STATE(2960), + [sym_select_statement_obsolete] = STATE(21), + [sym_read_table_statement] = STATE(21), + [sym__data_object] = STATE(2960), + [sym_structured_data_object] = STATE(2960), + [sym_attribute_access_static] = STATE(2960), + [sym_assignment] = STATE(21), + [sym_try_catch_statement] = STATE(21), + [sym_write_statement] = STATE(21), + [sym_chained_write_statement] = STATE(21), + [sym_call_method] = STATE(21), + [sym_call_method_static] = STATE(21), + [sym_call_method_instance] = STATE(21), + [sym_call_function] = STATE(21), + [sym_raise_exception_statement] = STATE(21), + [sym_clear_statement] = STATE(21), + [sym_append_statement] = STATE(21), + [sym_append_statement_obsolete] = STATE(21), + [sym_create_object_statement] = STATE(21), + [sym_include_statement] = STATE(21), + [sym_macro_include] = STATE(21), + [sym_function_implementation] = STATE(21), + [sym_raise_statement] = STATE(21), + [aux_sym_program_repeat1] = STATE(21), + [sym_name] = ACTIONS(57), + [aux_sym_class_declaration_token1] = ACTIONS(59), + [aux_sym__create_addition_token1] = ACTIONS(61), + [aux_sym_interface_declaration_token1] = ACTIONS(63), + [aux_sym_variable_declaration_token1] = ACTIONS(65), + [aux_sym_field_symbol_declaration_token1] = ACTIONS(67), + [aux_sym_loop_statement_token1] = ACTIONS(69), + [aux_sym_loop_statement_token6] = ACTIONS(292), + [aux_sym_exit_statement_token1] = ACTIONS(71), + [aux_sym_continue_statement_token1] = ACTIONS(73), + [aux_sym_return_statement_token1] = ACTIONS(75), + [aux_sym_report_statement_token1] = ACTIONS(77), + [aux_sym_if_statement_token1] = ACTIONS(79), + [aux_sym_check_statement_token1] = ACTIONS(81), + [aux_sym_select_statement_obsolete_token1] = ACTIONS(83), + [aux_sym_read_table_statement_token1] = ACTIONS(85), + [aux_sym_try_catch_statement_token1] = ACTIONS(87), + [aux_sym_write_statement_token1] = ACTIONS(93), + [aux_sym_call_function_token1] = ACTIONS(95), + [aux_sym_call_function_token2] = ACTIONS(97), + [aux_sym_raise_exception_statement_token1] = ACTIONS(99), + [aux_sym_clear_statement_token1] = ACTIONS(101), + [aux_sym_append_statement_token1] = ACTIONS(103), + [aux_sym_include_statement_token1] = ACTIONS(105), + [sym_eol_comment] = ACTIONS(3), + [sym_bol_comment] = ACTIONS(3), + [sym_field_symbol_name] = ACTIONS(55), + }, + [27] = { + [sym__statement] = STATE(30), + [sym__implementation_statement] = STATE(30), + [sym_class_declaration] = STATE(30), + [sym_class_implementation] = STATE(30), + [sym_class_publication] = STATE(30), + [sym_class_local_friend_publication] = STATE(30), + [sym_interface_declaration] = STATE(30), + [sym_variable_declaration] = STATE(30), + [sym_chained_variable_declaration] = STATE(30), + [sym_chained_structure_declaration] = STATE(30), + [sym_field_symbol_declaration] = STATE(30), + [sym_chained_field_symbol_declaration] = STATE(30), + [sym_loop_statement] = STATE(30), + [sym_exit_statement] = STATE(30), + [sym_continue_statement] = STATE(30), + [sym_return_statement] = STATE(30), + [sym_report_statement] = STATE(30), + [sym_if_statement] = STATE(30), + [sym_check_statement] = STATE(30), + [sym__writeable_expression] = STATE(2960), + [sym_table_expression] = STATE(2960), + [sym_select_statement_obsolete] = STATE(30), + [sym_read_table_statement] = STATE(30), + [sym__data_object] = STATE(2960), + [sym_structured_data_object] = STATE(2960), + [sym_attribute_access_static] = STATE(2960), + [sym_assignment] = STATE(30), + [sym_try_catch_statement] = STATE(30), + [sym_write_statement] = STATE(30), + [sym_chained_write_statement] = STATE(30), + [sym_call_method] = STATE(30), + [sym_call_method_static] = STATE(30), + [sym_call_method_instance] = STATE(30), + [sym_call_function] = STATE(30), + [sym_raise_exception_statement] = STATE(30), + [sym_clear_statement] = STATE(30), + [sym_append_statement] = STATE(30), + [sym_append_statement_obsolete] = STATE(30), + [sym_create_object_statement] = STATE(30), + [sym_include_statement] = STATE(30), + [sym_macro_include] = STATE(30), + [sym_function_implementation] = STATE(30), + [sym_raise_statement] = STATE(30), + [aux_sym_program_repeat1] = STATE(30), + [sym_name] = ACTIONS(57), + [aux_sym_class_declaration_token1] = ACTIONS(59), + [aux_sym__create_addition_token1] = ACTIONS(61), + [aux_sym_interface_declaration_token1] = ACTIONS(63), + [aux_sym_variable_declaration_token1] = ACTIONS(65), + [aux_sym_field_symbol_declaration_token1] = ACTIONS(67), + [aux_sym_loop_statement_token1] = ACTIONS(69), + [aux_sym_loop_statement_token6] = ACTIONS(294), + [aux_sym_exit_statement_token1] = ACTIONS(71), + [aux_sym_continue_statement_token1] = ACTIONS(73), + [aux_sym_return_statement_token1] = ACTIONS(75), + [aux_sym_report_statement_token1] = ACTIONS(77), + [aux_sym_if_statement_token1] = ACTIONS(79), + [aux_sym_check_statement_token1] = ACTIONS(81), + [aux_sym_select_statement_obsolete_token1] = ACTIONS(83), + [aux_sym_read_table_statement_token1] = ACTIONS(85), + [aux_sym_try_catch_statement_token1] = ACTIONS(87), + [aux_sym_write_statement_token1] = ACTIONS(93), + [aux_sym_call_function_token1] = ACTIONS(95), + [aux_sym_call_function_token2] = ACTIONS(97), + [aux_sym_raise_exception_statement_token1] = ACTIONS(99), + [aux_sym_clear_statement_token1] = ACTIONS(101), + [aux_sym_append_statement_token1] = ACTIONS(103), + [aux_sym_include_statement_token1] = ACTIONS(105), + [sym_eol_comment] = ACTIONS(3), + [sym_bol_comment] = ACTIONS(3), + [sym_field_symbol_name] = ACTIONS(55), + }, + [28] = { + [sym__statement] = STATE(20), + [sym__implementation_statement] = STATE(20), + [sym_class_declaration] = STATE(20), + [sym_class_implementation] = STATE(20), + [sym_class_publication] = STATE(20), + [sym_class_local_friend_publication] = STATE(20), + [sym_interface_declaration] = STATE(20), + [sym_variable_declaration] = STATE(20), + [sym_chained_variable_declaration] = STATE(20), + [sym_chained_structure_declaration] = STATE(20), + [sym_field_symbol_declaration] = STATE(20), + [sym_chained_field_symbol_declaration] = STATE(20), + [sym_loop_statement] = STATE(20), + [sym_exit_statement] = STATE(20), + [sym_continue_statement] = STATE(20), + [sym_return_statement] = STATE(20), + [sym_report_statement] = STATE(20), + [sym_if_statement] = STATE(20), + [sym_check_statement] = STATE(20), + [sym__writeable_expression] = STATE(2993), + [sym_table_expression] = STATE(2993), + [sym_select_statement_obsolete] = STATE(20), + [sym_read_table_statement] = STATE(20), + [sym__data_object] = STATE(2993), + [sym_structured_data_object] = STATE(2993), + [sym_attribute_access_static] = STATE(2993), + [sym_assignment] = STATE(20), + [sym_try_catch_statement] = STATE(20), + [sym_write_statement] = STATE(20), + [sym_chained_write_statement] = STATE(20), + [sym_call_method] = STATE(20), + [sym_call_method_static] = STATE(20), + [sym_call_method_instance] = STATE(20), + [sym_call_function] = STATE(20), + [sym_raise_exception_statement] = STATE(20), + [sym_clear_statement] = STATE(20), + [sym_append_statement] = STATE(20), + [sym_append_statement_obsolete] = STATE(20), + [sym_create_object_statement] = STATE(20), + [sym_include_statement] = STATE(20), + [sym_macro_include] = STATE(20), + [sym_function_implementation] = STATE(20), + [sym_raise_statement] = STATE(20), + [aux_sym_program_repeat1] = STATE(20), + [ts_builtin_sym_end] = ACTIONS(296), [sym_name] = ACTIONS(9), [aux_sym_class_declaration_token1] = ACTIONS(11), [aux_sym__create_addition_token1] = ACTIONS(13), @@ -14720,710 +14557,227 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_report_statement_token1] = ACTIONS(29), [aux_sym_if_statement_token1] = ACTIONS(31), [aux_sym_check_statement_token1] = ACTIONS(33), - [anon_sym_STAR] = ACTIONS(35), - [aux_sym_select_statement_obsolete_token1] = ACTIONS(37), - [aux_sym_read_table_statement_token1] = ACTIONS(39), - [aux_sym_try_catch_statement_token1] = ACTIONS(41), - [aux_sym_write_statement_token1] = ACTIONS(43), - [aux_sym_call_function_token1] = ACTIONS(45), - [aux_sym_call_function_token2] = ACTIONS(47), - [aux_sym_raise_exception_statement_token1] = ACTIONS(49), - [aux_sym_clear_statement_token1] = ACTIONS(51), - [aux_sym_append_statement_token1] = ACTIONS(53), - [aux_sym_include_statement_token1] = ACTIONS(55), - [anon_sym_DQUOTE] = ACTIONS(5), - [sym_field_symbol_name] = ACTIONS(57), - }, - [24] = { - [sym__statement] = STATE(103), - [sym__implementation_statement] = STATE(104), - [sym_class_declaration] = STATE(104), - [sym_class_implementation] = STATE(104), - [sym_class_publication] = STATE(104), - [sym_class_local_friend_publication] = STATE(104), - [sym_interface_declaration] = STATE(104), - [sym_variable_declaration] = STATE(55), - [sym_chained_variable_declaration] = STATE(55), - [sym_chained_structure_declaration] = STATE(55), - [sym_field_symbol_declaration] = STATE(55), - [sym_chained_field_symbol_declaration] = STATE(55), - [sym_loop_statement] = STATE(55), - [sym_exit_statement] = STATE(55), - [sym_continue_statement] = STATE(55), - [sym_return_statement] = STATE(55), - [sym_report_statement] = STATE(55), - [sym_if_statement] = STATE(55), - [sym_check_statement] = STATE(55), - [sym__writeable_expression] = STATE(2973), - [sym_table_expression] = STATE(2997), - [sym_select_statement_obsolete] = STATE(55), - [sym_read_table_statement] = STATE(55), - [sym__data_object] = STATE(2973), - [sym_structured_data_object] = STATE(996), - [sym_attribute_access_static] = STATE(996), - [sym_assignment] = STATE(55), - [sym_try_catch_statement] = STATE(55), - [sym_write_statement] = STATE(55), - [sym_chained_write_statement] = STATE(55), - [sym_call_method] = STATE(55), - [sym_call_method_static] = STATE(55), - [sym_call_method_instance] = STATE(55), - [sym_call_function] = STATE(55), - [sym_raise_exception_statement] = STATE(55), - [sym_clear_statement] = STATE(55), - [sym_append_statement] = STATE(55), - [sym_append_statement_obsolete] = STATE(55), - [sym_create_object_statement] = STATE(55), - [sym_include_statement] = STATE(55), - [sym_macro_include] = STATE(55), - [sym_function_implementation] = STATE(104), - [sym_raise_statement] = STATE(55), - [sym_eol_comment] = STATE(24), - [sym_bol_comment] = STATE(24), - [aux_sym_program_repeat1] = STATE(4), - [sym_name] = ACTIONS(59), - [aux_sym_class_declaration_token1] = ACTIONS(61), - [aux_sym__create_addition_token1] = ACTIONS(63), - [aux_sym_interface_declaration_token1] = ACTIONS(65), - [aux_sym_variable_declaration_token1] = ACTIONS(67), - [aux_sym_field_symbol_declaration_token1] = ACTIONS(69), - [aux_sym_loop_statement_token1] = ACTIONS(71), - [aux_sym_loop_statement_token6] = ACTIONS(292), - [aux_sym_exit_statement_token1] = ACTIONS(73), - [aux_sym_continue_statement_token1] = ACTIONS(75), - [aux_sym_return_statement_token1] = ACTIONS(77), - [aux_sym_report_statement_token1] = ACTIONS(79), - [aux_sym_if_statement_token1] = ACTIONS(81), - [aux_sym_check_statement_token1] = ACTIONS(83), - [anon_sym_STAR] = ACTIONS(35), - [aux_sym_select_statement_obsolete_token1] = ACTIONS(85), - [aux_sym_read_table_statement_token1] = ACTIONS(87), - [aux_sym_try_catch_statement_token1] = ACTIONS(89), - [aux_sym_write_statement_token1] = ACTIONS(95), - [aux_sym_call_function_token1] = ACTIONS(97), - [aux_sym_call_function_token2] = ACTIONS(99), - [aux_sym_raise_exception_statement_token1] = ACTIONS(101), - [aux_sym_clear_statement_token1] = ACTIONS(103), - [aux_sym_append_statement_token1] = ACTIONS(105), - [aux_sym_include_statement_token1] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(5), - [sym_field_symbol_name] = ACTIONS(57), - }, - [25] = { - [sym__statement] = STATE(103), - [sym__implementation_statement] = STATE(104), - [sym_class_declaration] = STATE(104), - [sym_class_implementation] = STATE(104), - [sym_class_publication] = STATE(104), - [sym_class_local_friend_publication] = STATE(104), - [sym_interface_declaration] = STATE(104), - [sym_variable_declaration] = STATE(55), - [sym_chained_variable_declaration] = STATE(55), - [sym_chained_structure_declaration] = STATE(55), - [sym_field_symbol_declaration] = STATE(55), - [sym_chained_field_symbol_declaration] = STATE(55), - [sym_loop_statement] = STATE(55), - [sym_exit_statement] = STATE(55), - [sym_continue_statement] = STATE(55), - [sym_return_statement] = STATE(55), - [sym_report_statement] = STATE(55), - [sym_if_statement] = STATE(55), - [sym_check_statement] = STATE(55), - [sym__writeable_expression] = STATE(2973), - [sym_table_expression] = STATE(2997), - [sym_select_statement_obsolete] = STATE(55), - [sym_read_table_statement] = STATE(55), - [sym__data_object] = STATE(2973), - [sym_structured_data_object] = STATE(996), - [sym_attribute_access_static] = STATE(996), - [sym_assignment] = STATE(55), - [sym_try_catch_statement] = STATE(55), - [sym_write_statement] = STATE(55), - [sym_chained_write_statement] = STATE(55), - [sym_call_method] = STATE(55), - [sym_call_method_static] = STATE(55), - [sym_call_method_instance] = STATE(55), - [sym_call_function] = STATE(55), - [sym_raise_exception_statement] = STATE(55), - [sym_clear_statement] = STATE(55), - [sym_append_statement] = STATE(55), - [sym_append_statement_obsolete] = STATE(55), - [sym_create_object_statement] = STATE(55), - [sym_include_statement] = STATE(55), - [sym_macro_include] = STATE(55), - [sym_function_implementation] = STATE(104), - [sym_raise_statement] = STATE(55), - [sym_eol_comment] = STATE(25), - [sym_bol_comment] = STATE(25), - [aux_sym_program_repeat1] = STATE(4), - [sym_name] = ACTIONS(59), - [aux_sym_class_declaration_token1] = ACTIONS(61), - [aux_sym__create_addition_token1] = ACTIONS(63), - [aux_sym_interface_declaration_token1] = ACTIONS(65), - [aux_sym_variable_declaration_token1] = ACTIONS(67), - [aux_sym_field_symbol_declaration_token1] = ACTIONS(69), - [aux_sym_loop_statement_token1] = ACTIONS(71), - [aux_sym_loop_statement_token6] = ACTIONS(294), - [aux_sym_exit_statement_token1] = ACTIONS(73), - [aux_sym_continue_statement_token1] = ACTIONS(75), - [aux_sym_return_statement_token1] = ACTIONS(77), - [aux_sym_report_statement_token1] = ACTIONS(79), - [aux_sym_if_statement_token1] = ACTIONS(81), - [aux_sym_check_statement_token1] = ACTIONS(83), - [anon_sym_STAR] = ACTIONS(35), - [aux_sym_select_statement_obsolete_token1] = ACTIONS(85), - [aux_sym_read_table_statement_token1] = ACTIONS(87), - [aux_sym_try_catch_statement_token1] = ACTIONS(89), - [aux_sym_write_statement_token1] = ACTIONS(95), - [aux_sym_call_function_token1] = ACTIONS(97), - [aux_sym_call_function_token2] = ACTIONS(99), - [aux_sym_raise_exception_statement_token1] = ACTIONS(101), - [aux_sym_clear_statement_token1] = ACTIONS(103), - [aux_sym_append_statement_token1] = ACTIONS(105), - [aux_sym_include_statement_token1] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(5), - [sym_field_symbol_name] = ACTIONS(57), - }, - [26] = { - [sym__statement] = STATE(103), - [sym__implementation_statement] = STATE(104), - [sym_class_declaration] = STATE(104), - [sym_class_implementation] = STATE(104), - [sym_class_publication] = STATE(104), - [sym_class_local_friend_publication] = STATE(104), - [sym_interface_declaration] = STATE(104), - [sym_variable_declaration] = STATE(55), - [sym_chained_variable_declaration] = STATE(55), - [sym_chained_structure_declaration] = STATE(55), - [sym_field_symbol_declaration] = STATE(55), - [sym_chained_field_symbol_declaration] = STATE(55), - [sym_loop_statement] = STATE(55), - [sym_exit_statement] = STATE(55), - [sym_continue_statement] = STATE(55), - [sym_return_statement] = STATE(55), - [sym_report_statement] = STATE(55), - [sym_if_statement] = STATE(55), - [sym_check_statement] = STATE(55), - [sym__writeable_expression] = STATE(2973), - [sym_table_expression] = STATE(2997), - [sym_select_statement_obsolete] = STATE(55), - [sym_read_table_statement] = STATE(55), - [sym__data_object] = STATE(2973), - [sym_structured_data_object] = STATE(996), - [sym_attribute_access_static] = STATE(996), - [sym_assignment] = STATE(55), - [sym_try_catch_statement] = STATE(55), - [sym_write_statement] = STATE(55), - [sym_chained_write_statement] = STATE(55), - [sym_call_method] = STATE(55), - [sym_call_method_static] = STATE(55), - [sym_call_method_instance] = STATE(55), - [sym_call_function] = STATE(55), - [sym_raise_exception_statement] = STATE(55), - [sym_clear_statement] = STATE(55), - [sym_append_statement] = STATE(55), - [sym_append_statement_obsolete] = STATE(55), - [sym_create_object_statement] = STATE(55), - [sym_include_statement] = STATE(55), - [sym_macro_include] = STATE(55), - [sym_function_implementation] = STATE(104), - [sym_raise_statement] = STATE(55), - [sym_eol_comment] = STATE(26), - [sym_bol_comment] = STATE(26), - [aux_sym_program_repeat1] = STATE(24), - [sym_name] = ACTIONS(59), - [aux_sym_class_declaration_token1] = ACTIONS(61), - [aux_sym__create_addition_token1] = ACTIONS(63), - [aux_sym_interface_declaration_token1] = ACTIONS(65), - [aux_sym_variable_declaration_token1] = ACTIONS(67), - [aux_sym_field_symbol_declaration_token1] = ACTIONS(69), - [aux_sym_loop_statement_token1] = ACTIONS(71), - [aux_sym_loop_statement_token6] = ACTIONS(296), - [aux_sym_exit_statement_token1] = ACTIONS(73), - [aux_sym_continue_statement_token1] = ACTIONS(75), - [aux_sym_return_statement_token1] = ACTIONS(77), - [aux_sym_report_statement_token1] = ACTIONS(79), - [aux_sym_if_statement_token1] = ACTIONS(81), - [aux_sym_check_statement_token1] = ACTIONS(83), - [anon_sym_STAR] = ACTIONS(35), - [aux_sym_select_statement_obsolete_token1] = ACTIONS(85), - [aux_sym_read_table_statement_token1] = ACTIONS(87), - [aux_sym_try_catch_statement_token1] = ACTIONS(89), - [aux_sym_write_statement_token1] = ACTIONS(95), - [aux_sym_call_function_token1] = ACTIONS(97), - [aux_sym_call_function_token2] = ACTIONS(99), - [aux_sym_raise_exception_statement_token1] = ACTIONS(101), - [aux_sym_clear_statement_token1] = ACTIONS(103), - [aux_sym_append_statement_token1] = ACTIONS(105), - [aux_sym_include_statement_token1] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(5), - [sym_field_symbol_name] = ACTIONS(57), - }, - [27] = { - [sym__statement] = STATE(103), - [sym__implementation_statement] = STATE(104), - [sym_class_declaration] = STATE(104), - [sym_class_implementation] = STATE(104), - [sym_class_publication] = STATE(104), - [sym_class_local_friend_publication] = STATE(104), - [sym_interface_declaration] = STATE(104), - [sym_variable_declaration] = STATE(55), - [sym_chained_variable_declaration] = STATE(55), - [sym_chained_structure_declaration] = STATE(55), - [sym_field_symbol_declaration] = STATE(55), - [sym_chained_field_symbol_declaration] = STATE(55), - [sym_loop_statement] = STATE(55), - [sym_exit_statement] = STATE(55), - [sym_continue_statement] = STATE(55), - [sym_return_statement] = STATE(55), - [sym_report_statement] = STATE(55), - [sym_if_statement] = STATE(55), - [sym_check_statement] = STATE(55), - [sym__writeable_expression] = STATE(2973), - [sym_table_expression] = STATE(2997), - [sym_select_statement_obsolete] = STATE(55), - [sym_read_table_statement] = STATE(55), - [sym__data_object] = STATE(2973), - [sym_structured_data_object] = STATE(996), - [sym_attribute_access_static] = STATE(996), - [sym_assignment] = STATE(55), - [sym_try_catch_statement] = STATE(55), - [sym_write_statement] = STATE(55), - [sym_chained_write_statement] = STATE(55), - [sym_call_method] = STATE(55), - [sym_call_method_static] = STATE(55), - [sym_call_method_instance] = STATE(55), - [sym_call_function] = STATE(55), - [sym_raise_exception_statement] = STATE(55), - [sym_clear_statement] = STATE(55), - [sym_append_statement] = STATE(55), - [sym_append_statement_obsolete] = STATE(55), - [sym_create_object_statement] = STATE(55), - [sym_include_statement] = STATE(55), - [sym_macro_include] = STATE(55), - [sym_function_implementation] = STATE(104), - [sym_raise_statement] = STATE(55), - [sym_eol_comment] = STATE(27), - [sym_bol_comment] = STATE(27), - [aux_sym_program_repeat1] = STATE(4), - [sym_name] = ACTIONS(59), - [aux_sym_class_declaration_token1] = ACTIONS(61), - [aux_sym__create_addition_token1] = ACTIONS(63), - [aux_sym_interface_declaration_token1] = ACTIONS(65), - [aux_sym_variable_declaration_token1] = ACTIONS(67), - [aux_sym_field_symbol_declaration_token1] = ACTIONS(69), - [aux_sym_loop_statement_token1] = ACTIONS(71), - [aux_sym_loop_statement_token6] = ACTIONS(298), - [aux_sym_exit_statement_token1] = ACTIONS(73), - [aux_sym_continue_statement_token1] = ACTIONS(75), - [aux_sym_return_statement_token1] = ACTIONS(77), - [aux_sym_report_statement_token1] = ACTIONS(79), - [aux_sym_if_statement_token1] = ACTIONS(81), - [aux_sym_check_statement_token1] = ACTIONS(83), - [anon_sym_STAR] = ACTIONS(35), - [aux_sym_select_statement_obsolete_token1] = ACTIONS(85), - [aux_sym_read_table_statement_token1] = ACTIONS(87), - [aux_sym_try_catch_statement_token1] = ACTIONS(89), - [aux_sym_write_statement_token1] = ACTIONS(95), - [aux_sym_call_function_token1] = ACTIONS(97), - [aux_sym_call_function_token2] = ACTIONS(99), - [aux_sym_raise_exception_statement_token1] = ACTIONS(101), - [aux_sym_clear_statement_token1] = ACTIONS(103), - [aux_sym_append_statement_token1] = ACTIONS(105), - [aux_sym_include_statement_token1] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(5), - [sym_field_symbol_name] = ACTIONS(57), - }, - [28] = { - [sym__statement] = STATE(103), - [sym__implementation_statement] = STATE(104), - [sym_class_declaration] = STATE(104), - [sym_class_implementation] = STATE(104), - [sym_class_publication] = STATE(104), - [sym_class_local_friend_publication] = STATE(104), - [sym_interface_declaration] = STATE(104), - [sym_variable_declaration] = STATE(55), - [sym_chained_variable_declaration] = STATE(55), - [sym_chained_structure_declaration] = STATE(55), - [sym_field_symbol_declaration] = STATE(55), - [sym_chained_field_symbol_declaration] = STATE(55), - [sym_loop_statement] = STATE(55), - [sym_exit_statement] = STATE(55), - [sym_continue_statement] = STATE(55), - [sym_return_statement] = STATE(55), - [sym_report_statement] = STATE(55), - [sym_if_statement] = STATE(55), - [sym_check_statement] = STATE(55), - [sym__writeable_expression] = STATE(2973), - [sym_table_expression] = STATE(2997), - [sym_select_statement_obsolete] = STATE(55), - [sym_read_table_statement] = STATE(55), - [sym__data_object] = STATE(2973), - [sym_structured_data_object] = STATE(996), - [sym_attribute_access_static] = STATE(996), - [sym_assignment] = STATE(55), - [sym_try_catch_statement] = STATE(55), - [sym_write_statement] = STATE(55), - [sym_chained_write_statement] = STATE(55), - [sym_call_method] = STATE(55), - [sym_call_method_static] = STATE(55), - [sym_call_method_instance] = STATE(55), - [sym_call_function] = STATE(55), - [sym_raise_exception_statement] = STATE(55), - [sym_clear_statement] = STATE(55), - [sym_append_statement] = STATE(55), - [sym_append_statement_obsolete] = STATE(55), - [sym_create_object_statement] = STATE(55), - [sym_include_statement] = STATE(55), - [sym_macro_include] = STATE(55), - [sym_function_implementation] = STATE(104), - [sym_raise_statement] = STATE(55), - [sym_eol_comment] = STATE(28), - [sym_bol_comment] = STATE(28), - [aux_sym_program_repeat1] = STATE(21), - [sym_name] = ACTIONS(59), - [aux_sym_class_declaration_token1] = ACTIONS(61), - [aux_sym__create_addition_token1] = ACTIONS(63), - [aux_sym_interface_declaration_token1] = ACTIONS(65), - [aux_sym_variable_declaration_token1] = ACTIONS(67), - [aux_sym_field_symbol_declaration_token1] = ACTIONS(69), - [aux_sym_loop_statement_token1] = ACTIONS(71), - [aux_sym_loop_statement_token6] = ACTIONS(300), - [aux_sym_exit_statement_token1] = ACTIONS(73), - [aux_sym_continue_statement_token1] = ACTIONS(75), - [aux_sym_return_statement_token1] = ACTIONS(77), - [aux_sym_report_statement_token1] = ACTIONS(79), - [aux_sym_if_statement_token1] = ACTIONS(81), - [aux_sym_check_statement_token1] = ACTIONS(83), - [anon_sym_STAR] = ACTIONS(35), - [aux_sym_select_statement_obsolete_token1] = ACTIONS(85), - [aux_sym_read_table_statement_token1] = ACTIONS(87), - [aux_sym_try_catch_statement_token1] = ACTIONS(89), - [aux_sym_write_statement_token1] = ACTIONS(95), - [aux_sym_call_function_token1] = ACTIONS(97), - [aux_sym_call_function_token2] = ACTIONS(99), - [aux_sym_raise_exception_statement_token1] = ACTIONS(101), - [aux_sym_clear_statement_token1] = ACTIONS(103), - [aux_sym_append_statement_token1] = ACTIONS(105), - [aux_sym_include_statement_token1] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(5), - [sym_field_symbol_name] = ACTIONS(57), + [aux_sym_select_statement_obsolete_token1] = ACTIONS(35), + [aux_sym_read_table_statement_token1] = ACTIONS(37), + [aux_sym_try_catch_statement_token1] = ACTIONS(39), + [aux_sym_write_statement_token1] = ACTIONS(41), + [aux_sym_call_function_token1] = ACTIONS(43), + [aux_sym_call_function_token2] = ACTIONS(45), + [aux_sym_raise_exception_statement_token1] = ACTIONS(47), + [aux_sym_clear_statement_token1] = ACTIONS(49), + [aux_sym_append_statement_token1] = ACTIONS(51), + [aux_sym_include_statement_token1] = ACTIONS(53), + [sym_eol_comment] = ACTIONS(3), + [sym_bol_comment] = ACTIONS(3), + [sym_field_symbol_name] = ACTIONS(55), }, [29] = { - [sym__statement] = STATE(103), - [sym__implementation_statement] = STATE(104), - [sym_class_declaration] = STATE(104), - [sym_class_implementation] = STATE(104), - [sym_class_publication] = STATE(104), - [sym_class_local_friend_publication] = STATE(104), - [sym_interface_declaration] = STATE(104), - [sym_variable_declaration] = STATE(55), - [sym_chained_variable_declaration] = STATE(55), - [sym_chained_structure_declaration] = STATE(55), - [sym_field_symbol_declaration] = STATE(55), - [sym_chained_field_symbol_declaration] = STATE(55), - [sym_loop_statement] = STATE(55), - [sym_exit_statement] = STATE(55), - [sym_continue_statement] = STATE(55), - [sym_return_statement] = STATE(55), - [sym_report_statement] = STATE(55), - [sym_if_statement] = STATE(55), - [sym_check_statement] = STATE(55), - [sym__writeable_expression] = STATE(2973), - [sym_table_expression] = STATE(2997), - [sym_select_statement_obsolete] = STATE(55), - [sym_read_table_statement] = STATE(55), - [sym__data_object] = STATE(2973), - [sym_structured_data_object] = STATE(996), - [sym_attribute_access_static] = STATE(996), - [sym_assignment] = STATE(55), - [sym_try_catch_statement] = STATE(55), - [sym_write_statement] = STATE(55), - [sym_chained_write_statement] = STATE(55), - [sym_call_method] = STATE(55), - [sym_call_method_static] = STATE(55), - [sym_call_method_instance] = STATE(55), - [sym_call_function] = STATE(55), - [sym_raise_exception_statement] = STATE(55), - [sym_clear_statement] = STATE(55), - [sym_append_statement] = STATE(55), - [sym_append_statement_obsolete] = STATE(55), - [sym_create_object_statement] = STATE(55), - [sym_include_statement] = STATE(55), - [sym_macro_include] = STATE(55), - [sym_function_implementation] = STATE(104), - [sym_raise_statement] = STATE(55), - [sym_eol_comment] = STATE(29), - [sym_bol_comment] = STATE(29), - [aux_sym_program_repeat1] = STATE(20), - [sym_name] = ACTIONS(59), - [aux_sym_class_declaration_token1] = ACTIONS(61), - [aux_sym__create_addition_token1] = ACTIONS(63), - [aux_sym_interface_declaration_token1] = ACTIONS(65), - [aux_sym_variable_declaration_token1] = ACTIONS(67), - [aux_sym_field_symbol_declaration_token1] = ACTIONS(69), - [aux_sym_loop_statement_token1] = ACTIONS(71), - [aux_sym_loop_statement_token6] = ACTIONS(302), - [aux_sym_exit_statement_token1] = ACTIONS(73), - [aux_sym_continue_statement_token1] = ACTIONS(75), - [aux_sym_return_statement_token1] = ACTIONS(77), - [aux_sym_report_statement_token1] = ACTIONS(79), - [aux_sym_if_statement_token1] = ACTIONS(81), - [aux_sym_check_statement_token1] = ACTIONS(83), - [anon_sym_STAR] = ACTIONS(35), - [aux_sym_select_statement_obsolete_token1] = ACTIONS(85), - [aux_sym_read_table_statement_token1] = ACTIONS(87), - [aux_sym_try_catch_statement_token1] = ACTIONS(89), - [aux_sym_write_statement_token1] = ACTIONS(95), - [aux_sym_call_function_token1] = ACTIONS(97), - [aux_sym_call_function_token2] = ACTIONS(99), - [aux_sym_raise_exception_statement_token1] = ACTIONS(101), - [aux_sym_clear_statement_token1] = ACTIONS(103), - [aux_sym_append_statement_token1] = ACTIONS(105), - [aux_sym_include_statement_token1] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(5), - [sym_field_symbol_name] = ACTIONS(57), + [sym__statement] = STATE(12), + [sym__implementation_statement] = STATE(12), + [sym_class_declaration] = STATE(12), + [sym_class_implementation] = STATE(12), + [sym_class_publication] = STATE(12), + [sym_class_local_friend_publication] = STATE(12), + [sym_interface_declaration] = STATE(12), + [sym_variable_declaration] = STATE(12), + [sym_chained_variable_declaration] = STATE(12), + [sym_chained_structure_declaration] = STATE(12), + [sym_field_symbol_declaration] = STATE(12), + [sym_chained_field_symbol_declaration] = STATE(12), + [sym_loop_statement] = STATE(12), + [sym_exit_statement] = STATE(12), + [sym_continue_statement] = STATE(12), + [sym_return_statement] = STATE(12), + [sym_report_statement] = STATE(12), + [sym_if_statement] = STATE(12), + [sym_check_statement] = STATE(12), + [sym__writeable_expression] = STATE(2960), + [sym_table_expression] = STATE(2960), + [sym_select_statement_obsolete] = STATE(12), + [sym_read_table_statement] = STATE(12), + [sym__data_object] = STATE(2960), + [sym_structured_data_object] = STATE(2960), + [sym_attribute_access_static] = STATE(2960), + [sym_assignment] = STATE(12), + [sym_try_catch_statement] = STATE(12), + [sym_write_statement] = STATE(12), + [sym_chained_write_statement] = STATE(12), + [sym_call_method] = STATE(12), + [sym_call_method_static] = STATE(12), + [sym_call_method_instance] = STATE(12), + [sym_call_function] = STATE(12), + [sym_raise_exception_statement] = STATE(12), + [sym_clear_statement] = STATE(12), + [sym_append_statement] = STATE(12), + [sym_append_statement_obsolete] = STATE(12), + [sym_create_object_statement] = STATE(12), + [sym_include_statement] = STATE(12), + [sym_macro_include] = STATE(12), + [sym_function_implementation] = STATE(12), + [sym_raise_statement] = STATE(12), + [aux_sym_program_repeat1] = STATE(12), + [sym_name] = ACTIONS(57), + [aux_sym_class_declaration_token1] = ACTIONS(59), + [aux_sym__create_addition_token1] = ACTIONS(61), + [aux_sym_interface_declaration_token1] = ACTIONS(63), + [aux_sym_variable_declaration_token1] = ACTIONS(65), + [aux_sym_field_symbol_declaration_token1] = ACTIONS(67), + [aux_sym_loop_statement_token1] = ACTIONS(69), + [aux_sym_loop_statement_token6] = ACTIONS(298), + [aux_sym_exit_statement_token1] = ACTIONS(71), + [aux_sym_continue_statement_token1] = ACTIONS(73), + [aux_sym_return_statement_token1] = ACTIONS(75), + [aux_sym_report_statement_token1] = ACTIONS(77), + [aux_sym_if_statement_token1] = ACTIONS(79), + [aux_sym_check_statement_token1] = ACTIONS(81), + [aux_sym_select_statement_obsolete_token1] = ACTIONS(83), + [aux_sym_read_table_statement_token1] = ACTIONS(85), + [aux_sym_try_catch_statement_token1] = ACTIONS(87), + [aux_sym_write_statement_token1] = ACTIONS(93), + [aux_sym_call_function_token1] = ACTIONS(95), + [aux_sym_call_function_token2] = ACTIONS(97), + [aux_sym_raise_exception_statement_token1] = ACTIONS(99), + [aux_sym_clear_statement_token1] = ACTIONS(101), + [aux_sym_append_statement_token1] = ACTIONS(103), + [aux_sym_include_statement_token1] = ACTIONS(105), + [sym_eol_comment] = ACTIONS(3), + [sym_bol_comment] = ACTIONS(3), + [sym_field_symbol_name] = ACTIONS(55), }, [30] = { - [sym__statement] = STATE(103), - [sym__implementation_statement] = STATE(104), - [sym_class_declaration] = STATE(104), - [sym_class_implementation] = STATE(104), - [sym_class_publication] = STATE(104), - [sym_class_local_friend_publication] = STATE(104), - [sym_interface_declaration] = STATE(104), - [sym_variable_declaration] = STATE(55), - [sym_chained_variable_declaration] = STATE(55), - [sym_chained_structure_declaration] = STATE(55), - [sym_field_symbol_declaration] = STATE(55), - [sym_chained_field_symbol_declaration] = STATE(55), - [sym_loop_statement] = STATE(55), - [sym_exit_statement] = STATE(55), - [sym_continue_statement] = STATE(55), - [sym_return_statement] = STATE(55), - [sym_report_statement] = STATE(55), - [sym_if_statement] = STATE(55), - [sym_check_statement] = STATE(55), - [sym__writeable_expression] = STATE(2973), - [sym_table_expression] = STATE(2997), - [sym_select_statement_obsolete] = STATE(55), - [sym_read_table_statement] = STATE(55), - [sym__data_object] = STATE(2973), - [sym_structured_data_object] = STATE(996), - [sym_attribute_access_static] = STATE(996), - [sym_assignment] = STATE(55), - [sym_try_catch_statement] = STATE(55), - [sym_write_statement] = STATE(55), - [sym_chained_write_statement] = STATE(55), - [sym_call_method] = STATE(55), - [sym_call_method_static] = STATE(55), - [sym_call_method_instance] = STATE(55), - [sym_call_function] = STATE(55), - [sym_raise_exception_statement] = STATE(55), - [sym_clear_statement] = STATE(55), - [sym_append_statement] = STATE(55), - [sym_append_statement_obsolete] = STATE(55), - [sym_create_object_statement] = STATE(55), - [sym_include_statement] = STATE(55), - [sym_macro_include] = STATE(55), - [sym_function_implementation] = STATE(104), - [sym_raise_statement] = STATE(55), - [sym_eol_comment] = STATE(30), - [sym_bol_comment] = STATE(30), - [aux_sym_program_repeat1] = STATE(27), - [sym_name] = ACTIONS(59), - [aux_sym_class_declaration_token1] = ACTIONS(61), - [aux_sym__create_addition_token1] = ACTIONS(63), - [aux_sym_interface_declaration_token1] = ACTIONS(65), - [aux_sym_variable_declaration_token1] = ACTIONS(67), - [aux_sym_field_symbol_declaration_token1] = ACTIONS(69), - [aux_sym_loop_statement_token1] = ACTIONS(71), - [aux_sym_loop_statement_token6] = ACTIONS(304), - [aux_sym_exit_statement_token1] = ACTIONS(73), - [aux_sym_continue_statement_token1] = ACTIONS(75), - [aux_sym_return_statement_token1] = ACTIONS(77), - [aux_sym_report_statement_token1] = ACTIONS(79), - [aux_sym_if_statement_token1] = ACTIONS(81), - [aux_sym_check_statement_token1] = ACTIONS(83), - [anon_sym_STAR] = ACTIONS(35), - [aux_sym_select_statement_obsolete_token1] = ACTIONS(85), - [aux_sym_read_table_statement_token1] = ACTIONS(87), - [aux_sym_try_catch_statement_token1] = ACTIONS(89), - [aux_sym_write_statement_token1] = ACTIONS(95), - [aux_sym_call_function_token1] = ACTIONS(97), - [aux_sym_call_function_token2] = ACTIONS(99), - [aux_sym_raise_exception_statement_token1] = ACTIONS(101), - [aux_sym_clear_statement_token1] = ACTIONS(103), - [aux_sym_append_statement_token1] = ACTIONS(105), - [aux_sym_include_statement_token1] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(5), - [sym_field_symbol_name] = ACTIONS(57), + [sym__statement] = STATE(4), + [sym__implementation_statement] = STATE(4), + [sym_class_declaration] = STATE(4), + [sym_class_implementation] = STATE(4), + [sym_class_publication] = STATE(4), + [sym_class_local_friend_publication] = STATE(4), + [sym_interface_declaration] = STATE(4), + [sym_variable_declaration] = STATE(4), + [sym_chained_variable_declaration] = STATE(4), + [sym_chained_structure_declaration] = STATE(4), + [sym_field_symbol_declaration] = STATE(4), + [sym_chained_field_symbol_declaration] = STATE(4), + [sym_loop_statement] = STATE(4), + [sym_exit_statement] = STATE(4), + [sym_continue_statement] = STATE(4), + [sym_return_statement] = STATE(4), + [sym_report_statement] = STATE(4), + [sym_if_statement] = STATE(4), + [sym_check_statement] = STATE(4), + [sym__writeable_expression] = STATE(2960), + [sym_table_expression] = STATE(2960), + [sym_select_statement_obsolete] = STATE(4), + [sym_read_table_statement] = STATE(4), + [sym__data_object] = STATE(2960), + [sym_structured_data_object] = STATE(2960), + [sym_attribute_access_static] = STATE(2960), + [sym_assignment] = STATE(4), + [sym_try_catch_statement] = STATE(4), + [sym_write_statement] = STATE(4), + [sym_chained_write_statement] = STATE(4), + [sym_call_method] = STATE(4), + [sym_call_method_static] = STATE(4), + [sym_call_method_instance] = STATE(4), + [sym_call_function] = STATE(4), + [sym_raise_exception_statement] = STATE(4), + [sym_clear_statement] = STATE(4), + [sym_append_statement] = STATE(4), + [sym_append_statement_obsolete] = STATE(4), + [sym_create_object_statement] = STATE(4), + [sym_include_statement] = STATE(4), + [sym_macro_include] = STATE(4), + [sym_function_implementation] = STATE(4), + [sym_raise_statement] = STATE(4), + [aux_sym_program_repeat1] = STATE(4), + [sym_name] = ACTIONS(57), + [aux_sym_class_declaration_token1] = ACTIONS(59), + [aux_sym__create_addition_token1] = ACTIONS(61), + [aux_sym_interface_declaration_token1] = ACTIONS(63), + [aux_sym_variable_declaration_token1] = ACTIONS(65), + [aux_sym_field_symbol_declaration_token1] = ACTIONS(67), + [aux_sym_loop_statement_token1] = ACTIONS(69), + [aux_sym_loop_statement_token6] = ACTIONS(300), + [aux_sym_exit_statement_token1] = ACTIONS(71), + [aux_sym_continue_statement_token1] = ACTIONS(73), + [aux_sym_return_statement_token1] = ACTIONS(75), + [aux_sym_report_statement_token1] = ACTIONS(77), + [aux_sym_if_statement_token1] = ACTIONS(79), + [aux_sym_check_statement_token1] = ACTIONS(81), + [aux_sym_select_statement_obsolete_token1] = ACTIONS(83), + [aux_sym_read_table_statement_token1] = ACTIONS(85), + [aux_sym_try_catch_statement_token1] = ACTIONS(87), + [aux_sym_write_statement_token1] = ACTIONS(93), + [aux_sym_call_function_token1] = ACTIONS(95), + [aux_sym_call_function_token2] = ACTIONS(97), + [aux_sym_raise_exception_statement_token1] = ACTIONS(99), + [aux_sym_clear_statement_token1] = ACTIONS(101), + [aux_sym_append_statement_token1] = ACTIONS(103), + [aux_sym_include_statement_token1] = ACTIONS(105), + [sym_eol_comment] = ACTIONS(3), + [sym_bol_comment] = ACTIONS(3), + [sym_field_symbol_name] = ACTIONS(55), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 30, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(306), 1, - sym_name, - ACTIONS(309), 1, - aux_sym__create_addition_token1, - ACTIONS(314), 1, - aux_sym_variable_declaration_token1, - ACTIONS(317), 1, - aux_sym_field_symbol_declaration_token1, - ACTIONS(320), 1, - aux_sym_loop_statement_token1, - ACTIONS(323), 1, - aux_sym_exit_statement_token1, - ACTIONS(326), 1, - aux_sym_continue_statement_token1, - ACTIONS(329), 1, - aux_sym_return_statement_token1, - ACTIONS(332), 1, - aux_sym_report_statement_token1, - ACTIONS(335), 1, - aux_sym_if_statement_token1, - ACTIONS(338), 1, - aux_sym_check_statement_token1, - ACTIONS(341), 1, - aux_sym_select_statement_obsolete_token1, - ACTIONS(344), 1, - aux_sym_read_table_statement_token1, - ACTIONS(347), 1, - aux_sym_try_catch_statement_token1, - ACTIONS(350), 1, - aux_sym_write_statement_token1, - ACTIONS(353), 1, - aux_sym_call_function_token1, - ACTIONS(356), 1, - aux_sym_raise_exception_statement_token1, - ACTIONS(359), 1, - aux_sym_clear_statement_token1, - ACTIONS(362), 1, - aux_sym_append_statement_token1, - ACTIONS(365), 1, - aux_sym_include_statement_token1, - ACTIONS(368), 1, + [0] = 26, + ACTIONS(55), 1, sym_field_symbol_name, - STATE(455), 1, - sym__implementation_statement, - STATE(2997), 1, - sym_table_expression, - ACTIONS(312), 2, - aux_sym_method_implementation_token2, - aux_sym_function_implementation_token1, - STATE(996), 2, - sym_structured_data_object, - sym_attribute_access_static, - STATE(2973), 2, - sym__writeable_expression, - sym__data_object, - STATE(31), 3, - sym_eol_comment, - sym_bol_comment, - aux_sym_method_body_repeat1, - STATE(55), 30, - sym_variable_declaration, - sym_chained_variable_declaration, - sym_chained_structure_declaration, - sym_field_symbol_declaration, - sym_chained_field_symbol_declaration, - sym_loop_statement, - sym_exit_statement, - sym_continue_statement, - sym_return_statement, - sym_report_statement, - sym_if_statement, - sym_check_statement, - sym_select_statement_obsolete, - sym_read_table_statement, - sym_assignment, - sym_try_catch_statement, - sym_write_statement, - sym_chained_write_statement, - sym_call_method, - sym_call_method_static, - sym_call_method_instance, - sym_call_function, - sym_raise_exception_statement, - sym_clear_statement, - sym_append_statement, - sym_append_statement_obsolete, - sym_create_object_statement, - sym_include_statement, - sym_macro_include, - sym_raise_statement, - [125] = 32, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, ACTIONS(57), 1, - sym_field_symbol_name, - ACTIONS(59), 1, sym_name, - ACTIONS(63), 1, + ACTIONS(61), 1, aux_sym__create_addition_token1, - ACTIONS(67), 1, + ACTIONS(65), 1, aux_sym_variable_declaration_token1, - ACTIONS(69), 1, + ACTIONS(67), 1, aux_sym_field_symbol_declaration_token1, - ACTIONS(71), 1, + ACTIONS(69), 1, aux_sym_loop_statement_token1, - ACTIONS(73), 1, + ACTIONS(71), 1, aux_sym_exit_statement_token1, - ACTIONS(75), 1, + ACTIONS(73), 1, aux_sym_continue_statement_token1, - ACTIONS(77), 1, + ACTIONS(75), 1, aux_sym_return_statement_token1, - ACTIONS(79), 1, + ACTIONS(77), 1, aux_sym_report_statement_token1, - ACTIONS(81), 1, + ACTIONS(79), 1, aux_sym_if_statement_token1, - ACTIONS(83), 1, + ACTIONS(81), 1, aux_sym_check_statement_token1, - ACTIONS(85), 1, + ACTIONS(83), 1, aux_sym_select_statement_obsolete_token1, - ACTIONS(87), 1, + ACTIONS(85), 1, aux_sym_read_table_statement_token1, - ACTIONS(89), 1, + ACTIONS(87), 1, aux_sym_try_catch_statement_token1, - ACTIONS(95), 1, + ACTIONS(93), 1, aux_sym_write_statement_token1, - ACTIONS(97), 1, + ACTIONS(95), 1, aux_sym_call_function_token1, - ACTIONS(101), 1, + ACTIONS(99), 1, aux_sym_raise_exception_statement_token1, - ACTIONS(103), 1, + ACTIONS(101), 1, aux_sym_clear_statement_token1, - ACTIONS(105), 1, + ACTIONS(103), 1, aux_sym_append_statement_token1, - ACTIONS(107), 1, + ACTIONS(105), 1, aux_sym_include_statement_token1, - ACTIONS(371), 1, + ACTIONS(302), 1, aux_sym_method_implementation_token2, - STATE(35), 1, - aux_sym_method_body_repeat1, - STATE(455), 1, - sym__implementation_statement, - STATE(2359), 1, + STATE(2197), 1, sym_method_body, - STATE(2997), 1, - sym_table_expression, - STATE(32), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - STATE(996), 2, - sym_structured_data_object, - sym_attribute_access_static, - STATE(2973), 2, + STATE(2960), 5, sym__writeable_expression, + sym_table_expression, sym__data_object, - STATE(55), 30, + sym_structured_data_object, + sym_attribute_access_static, + STATE(35), 32, + sym__implementation_statement, sym_variable_declaration, sym_chained_variable_declaration, sym_chained_structure_declaration, @@ -15454,71 +14808,64 @@ static const uint16_t ts_small_parse_table[] = { sym_include_statement, sym_macro_include, sym_raise_statement, - [254] = 31, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(57), 1, - sym_field_symbol_name, - ACTIONS(59), 1, + aux_sym_method_body_repeat1, + [115] = 25, + ACTIONS(304), 1, sym_name, - ACTIONS(63), 1, + ACTIONS(307), 1, aux_sym__create_addition_token1, - ACTIONS(67), 1, + ACTIONS(312), 1, aux_sym_variable_declaration_token1, - ACTIONS(69), 1, + ACTIONS(315), 1, aux_sym_field_symbol_declaration_token1, - ACTIONS(71), 1, + ACTIONS(318), 1, aux_sym_loop_statement_token1, - ACTIONS(73), 1, + ACTIONS(321), 1, aux_sym_exit_statement_token1, - ACTIONS(75), 1, + ACTIONS(324), 1, aux_sym_continue_statement_token1, - ACTIONS(77), 1, + ACTIONS(327), 1, aux_sym_return_statement_token1, - ACTIONS(79), 1, + ACTIONS(330), 1, aux_sym_report_statement_token1, - ACTIONS(81), 1, + ACTIONS(333), 1, aux_sym_if_statement_token1, - ACTIONS(83), 1, + ACTIONS(336), 1, aux_sym_check_statement_token1, - ACTIONS(85), 1, + ACTIONS(339), 1, aux_sym_select_statement_obsolete_token1, - ACTIONS(87), 1, + ACTIONS(342), 1, aux_sym_read_table_statement_token1, - ACTIONS(89), 1, + ACTIONS(345), 1, aux_sym_try_catch_statement_token1, - ACTIONS(95), 1, + ACTIONS(348), 1, aux_sym_write_statement_token1, - ACTIONS(97), 1, + ACTIONS(351), 1, aux_sym_call_function_token1, - ACTIONS(101), 1, + ACTIONS(354), 1, aux_sym_raise_exception_statement_token1, - ACTIONS(103), 1, + ACTIONS(357), 1, aux_sym_clear_statement_token1, - ACTIONS(105), 1, + ACTIONS(360), 1, aux_sym_append_statement_token1, - ACTIONS(107), 1, + ACTIONS(363), 1, aux_sym_include_statement_token1, - ACTIONS(373), 1, - aux_sym_function_implementation_token1, - STATE(37), 1, - aux_sym_method_body_repeat1, - STATE(455), 1, - sym__implementation_statement, - STATE(2997), 1, - sym_table_expression, - STATE(33), 2, + ACTIONS(366), 1, + sym_field_symbol_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - STATE(996), 2, - sym_structured_data_object, - sym_attribute_access_static, - STATE(2973), 2, + ACTIONS(310), 2, + aux_sym_method_implementation_token2, + aux_sym_function_implementation_token1, + STATE(2960), 5, sym__writeable_expression, + sym_table_expression, sym__data_object, - STATE(55), 30, + sym_structured_data_object, + sym_attribute_access_static, + STATE(32), 32, + sym__implementation_statement, sym_variable_declaration, sym_chained_variable_declaration, sym_chained_structure_declaration, @@ -15549,71 +14896,63 @@ static const uint16_t ts_small_parse_table[] = { sym_include_statement, sym_macro_include, sym_raise_statement, - [380] = 31, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(57), 1, + aux_sym_method_body_repeat1, + [228] = 25, + ACTIONS(55), 1, sym_field_symbol_name, - ACTIONS(59), 1, + ACTIONS(57), 1, sym_name, - ACTIONS(63), 1, + ACTIONS(61), 1, aux_sym__create_addition_token1, - ACTIONS(67), 1, + ACTIONS(65), 1, aux_sym_variable_declaration_token1, - ACTIONS(69), 1, + ACTIONS(67), 1, aux_sym_field_symbol_declaration_token1, - ACTIONS(71), 1, + ACTIONS(69), 1, aux_sym_loop_statement_token1, - ACTIONS(73), 1, + ACTIONS(71), 1, aux_sym_exit_statement_token1, - ACTIONS(75), 1, + ACTIONS(73), 1, aux_sym_continue_statement_token1, - ACTIONS(77), 1, + ACTIONS(75), 1, aux_sym_return_statement_token1, - ACTIONS(79), 1, + ACTIONS(77), 1, aux_sym_report_statement_token1, - ACTIONS(81), 1, + ACTIONS(79), 1, aux_sym_if_statement_token1, - ACTIONS(83), 1, + ACTIONS(81), 1, aux_sym_check_statement_token1, - ACTIONS(85), 1, + ACTIONS(83), 1, aux_sym_select_statement_obsolete_token1, - ACTIONS(87), 1, + ACTIONS(85), 1, aux_sym_read_table_statement_token1, - ACTIONS(89), 1, + ACTIONS(87), 1, aux_sym_try_catch_statement_token1, - ACTIONS(95), 1, + ACTIONS(93), 1, aux_sym_write_statement_token1, - ACTIONS(97), 1, + ACTIONS(95), 1, aux_sym_call_function_token1, - ACTIONS(101), 1, + ACTIONS(99), 1, aux_sym_raise_exception_statement_token1, - ACTIONS(103), 1, + ACTIONS(101), 1, aux_sym_clear_statement_token1, - ACTIONS(105), 1, + ACTIONS(103), 1, aux_sym_append_statement_token1, - ACTIONS(107), 1, + ACTIONS(105), 1, aux_sym_include_statement_token1, - ACTIONS(375), 1, + ACTIONS(369), 1, aux_sym_function_implementation_token1, - STATE(36), 1, - aux_sym_method_body_repeat1, - STATE(455), 1, - sym__implementation_statement, - STATE(2997), 1, - sym_table_expression, - STATE(34), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - STATE(996), 2, - sym_structured_data_object, - sym_attribute_access_static, - STATE(2973), 2, + STATE(2960), 5, sym__writeable_expression, + sym_table_expression, sym__data_object, - STATE(55), 30, + sym_structured_data_object, + sym_attribute_access_static, + STATE(32), 32, + sym__implementation_statement, sym_variable_declaration, sym_chained_variable_declaration, sym_chained_structure_declaration, @@ -15644,71 +14983,63 @@ static const uint16_t ts_small_parse_table[] = { sym_include_statement, sym_macro_include, sym_raise_statement, - [506] = 31, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(57), 1, + aux_sym_method_body_repeat1, + [340] = 25, + ACTIONS(55), 1, sym_field_symbol_name, - ACTIONS(59), 1, + ACTIONS(57), 1, sym_name, - ACTIONS(63), 1, + ACTIONS(61), 1, aux_sym__create_addition_token1, - ACTIONS(67), 1, + ACTIONS(65), 1, aux_sym_variable_declaration_token1, - ACTIONS(69), 1, + ACTIONS(67), 1, aux_sym_field_symbol_declaration_token1, - ACTIONS(71), 1, + ACTIONS(69), 1, aux_sym_loop_statement_token1, - ACTIONS(73), 1, + ACTIONS(71), 1, aux_sym_exit_statement_token1, - ACTIONS(75), 1, + ACTIONS(73), 1, aux_sym_continue_statement_token1, - ACTIONS(77), 1, + ACTIONS(75), 1, aux_sym_return_statement_token1, - ACTIONS(79), 1, + ACTIONS(77), 1, aux_sym_report_statement_token1, - ACTIONS(81), 1, + ACTIONS(79), 1, aux_sym_if_statement_token1, - ACTIONS(83), 1, + ACTIONS(81), 1, aux_sym_check_statement_token1, - ACTIONS(85), 1, + ACTIONS(83), 1, aux_sym_select_statement_obsolete_token1, - ACTIONS(87), 1, + ACTIONS(85), 1, aux_sym_read_table_statement_token1, - ACTIONS(89), 1, + ACTIONS(87), 1, aux_sym_try_catch_statement_token1, - ACTIONS(95), 1, + ACTIONS(93), 1, aux_sym_write_statement_token1, - ACTIONS(97), 1, + ACTIONS(95), 1, aux_sym_call_function_token1, - ACTIONS(101), 1, + ACTIONS(99), 1, aux_sym_raise_exception_statement_token1, - ACTIONS(103), 1, + ACTIONS(101), 1, aux_sym_clear_statement_token1, - ACTIONS(105), 1, + ACTIONS(103), 1, aux_sym_append_statement_token1, - ACTIONS(107), 1, + ACTIONS(105), 1, aux_sym_include_statement_token1, - ACTIONS(377), 1, - aux_sym_method_implementation_token2, - STATE(31), 1, - aux_sym_method_body_repeat1, - STATE(455), 1, - sym__implementation_statement, - STATE(2997), 1, - sym_table_expression, - STATE(35), 2, + ACTIONS(371), 1, + aux_sym_function_implementation_token1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - STATE(996), 2, - sym_structured_data_object, - sym_attribute_access_static, - STATE(2973), 2, + STATE(2960), 5, sym__writeable_expression, + sym_table_expression, sym__data_object, - STATE(55), 30, + sym_structured_data_object, + sym_attribute_access_static, + STATE(33), 32, + sym__implementation_statement, sym_variable_declaration, sym_chained_variable_declaration, sym_chained_structure_declaration, @@ -15739,71 +15070,63 @@ static const uint16_t ts_small_parse_table[] = { sym_include_statement, sym_macro_include, sym_raise_statement, - [632] = 31, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(57), 1, + aux_sym_method_body_repeat1, + [452] = 25, + ACTIONS(55), 1, sym_field_symbol_name, - ACTIONS(59), 1, + ACTIONS(57), 1, sym_name, - ACTIONS(63), 1, + ACTIONS(61), 1, aux_sym__create_addition_token1, - ACTIONS(67), 1, + ACTIONS(65), 1, aux_sym_variable_declaration_token1, - ACTIONS(69), 1, + ACTIONS(67), 1, aux_sym_field_symbol_declaration_token1, - ACTIONS(71), 1, + ACTIONS(69), 1, aux_sym_loop_statement_token1, - ACTIONS(73), 1, + ACTIONS(71), 1, aux_sym_exit_statement_token1, - ACTIONS(75), 1, + ACTIONS(73), 1, aux_sym_continue_statement_token1, - ACTIONS(77), 1, + ACTIONS(75), 1, aux_sym_return_statement_token1, - ACTIONS(79), 1, + ACTIONS(77), 1, aux_sym_report_statement_token1, - ACTIONS(81), 1, + ACTIONS(79), 1, aux_sym_if_statement_token1, - ACTIONS(83), 1, + ACTIONS(81), 1, aux_sym_check_statement_token1, - ACTIONS(85), 1, + ACTIONS(83), 1, aux_sym_select_statement_obsolete_token1, - ACTIONS(87), 1, + ACTIONS(85), 1, aux_sym_read_table_statement_token1, - ACTIONS(89), 1, + ACTIONS(87), 1, aux_sym_try_catch_statement_token1, - ACTIONS(95), 1, + ACTIONS(93), 1, aux_sym_write_statement_token1, - ACTIONS(97), 1, + ACTIONS(95), 1, aux_sym_call_function_token1, - ACTIONS(101), 1, + ACTIONS(99), 1, aux_sym_raise_exception_statement_token1, - ACTIONS(103), 1, + ACTIONS(101), 1, aux_sym_clear_statement_token1, - ACTIONS(105), 1, + ACTIONS(103), 1, aux_sym_append_statement_token1, - ACTIONS(107), 1, + ACTIONS(105), 1, aux_sym_include_statement_token1, - ACTIONS(379), 1, - aux_sym_function_implementation_token1, - STATE(31), 1, - aux_sym_method_body_repeat1, - STATE(455), 1, - sym__implementation_statement, - STATE(2997), 1, - sym_table_expression, - STATE(36), 2, + ACTIONS(373), 1, + aux_sym_method_implementation_token2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - STATE(996), 2, - sym_structured_data_object, - sym_attribute_access_static, - STATE(2973), 2, + STATE(2960), 5, sym__writeable_expression, + sym_table_expression, sym__data_object, - STATE(55), 30, + sym_structured_data_object, + sym_attribute_access_static, + STATE(32), 32, + sym__implementation_statement, sym_variable_declaration, sym_chained_variable_declaration, sym_chained_structure_declaration, @@ -15834,71 +15157,63 @@ static const uint16_t ts_small_parse_table[] = { sym_include_statement, sym_macro_include, sym_raise_statement, - [758] = 31, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(57), 1, + aux_sym_method_body_repeat1, + [564] = 25, + ACTIONS(55), 1, sym_field_symbol_name, - ACTIONS(59), 1, + ACTIONS(57), 1, sym_name, - ACTIONS(63), 1, + ACTIONS(61), 1, aux_sym__create_addition_token1, - ACTIONS(67), 1, + ACTIONS(65), 1, aux_sym_variable_declaration_token1, - ACTIONS(69), 1, + ACTIONS(67), 1, aux_sym_field_symbol_declaration_token1, - ACTIONS(71), 1, + ACTIONS(69), 1, aux_sym_loop_statement_token1, - ACTIONS(73), 1, + ACTIONS(71), 1, aux_sym_exit_statement_token1, - ACTIONS(75), 1, + ACTIONS(73), 1, aux_sym_continue_statement_token1, - ACTIONS(77), 1, + ACTIONS(75), 1, aux_sym_return_statement_token1, - ACTIONS(79), 1, + ACTIONS(77), 1, aux_sym_report_statement_token1, - ACTIONS(81), 1, + ACTIONS(79), 1, aux_sym_if_statement_token1, - ACTIONS(83), 1, + ACTIONS(81), 1, aux_sym_check_statement_token1, - ACTIONS(85), 1, + ACTIONS(83), 1, aux_sym_select_statement_obsolete_token1, - ACTIONS(87), 1, + ACTIONS(85), 1, aux_sym_read_table_statement_token1, - ACTIONS(89), 1, + ACTIONS(87), 1, aux_sym_try_catch_statement_token1, - ACTIONS(95), 1, + ACTIONS(93), 1, aux_sym_write_statement_token1, - ACTIONS(97), 1, + ACTIONS(95), 1, aux_sym_call_function_token1, - ACTIONS(101), 1, + ACTIONS(99), 1, aux_sym_raise_exception_statement_token1, - ACTIONS(103), 1, + ACTIONS(101), 1, aux_sym_clear_statement_token1, - ACTIONS(105), 1, + ACTIONS(103), 1, aux_sym_append_statement_token1, - ACTIONS(107), 1, + ACTIONS(105), 1, aux_sym_include_statement_token1, - ACTIONS(381), 1, + ACTIONS(375), 1, aux_sym_function_implementation_token1, - STATE(31), 1, - aux_sym_method_body_repeat1, - STATE(455), 1, - sym__implementation_statement, - STATE(2997), 1, - sym_table_expression, - STATE(37), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - STATE(996), 2, - sym_structured_data_object, - sym_attribute_access_static, - STATE(2973), 2, + STATE(2960), 5, sym__writeable_expression, + sym_table_expression, sym__data_object, - STATE(55), 30, + sym_structured_data_object, + sym_attribute_access_static, + STATE(32), 32, + sym__implementation_statement, sym_variable_declaration, sym_chained_variable_declaration, sym_chained_structure_declaration, @@ -15929,63 +15244,227 @@ static const uint16_t ts_small_parse_table[] = { sym_include_statement, sym_macro_include, sym_raise_statement, - [884] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(385), 2, - aux_sym_field_symbol_declaration_token1, + aux_sym_method_body_repeat1, + [676] = 25, + ACTIONS(55), 1, sym_field_symbol_name, - STATE(38), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(383), 28, - aux_sym_class_declaration_token1, + ACTIONS(57), 1, + sym_name, + ACTIONS(61), 1, aux_sym__create_addition_token1, - aux_sym_method_implementation_token2, - aux_sym_interface_declaration_token1, + ACTIONS(65), 1, aux_sym_variable_declaration_token1, + ACTIONS(67), 1, + aux_sym_field_symbol_declaration_token1, + ACTIONS(69), 1, aux_sym_loop_statement_token1, - aux_sym_loop_statement_token6, + ACTIONS(71), 1, aux_sym_exit_statement_token1, + ACTIONS(73), 1, aux_sym_continue_statement_token1, + ACTIONS(75), 1, aux_sym_return_statement_token1, + ACTIONS(77), 1, aux_sym_report_statement_token1, + ACTIONS(79), 1, aux_sym_if_statement_token1, - aux_sym_if_statement_token2, + ACTIONS(81), 1, aux_sym_check_statement_token1, + ACTIONS(83), 1, aux_sym_select_statement_obsolete_token1, + ACTIONS(85), 1, aux_sym_read_table_statement_token1, + ACTIONS(87), 1, aux_sym_try_catch_statement_token1, - aux_sym_try_catch_statement_token2, - aux_sym_catch_statement_token1, + ACTIONS(93), 1, aux_sym_write_statement_token1, + ACTIONS(95), 1, aux_sym_call_function_token1, - aux_sym_call_function_token2, + ACTIONS(99), 1, aux_sym_raise_exception_statement_token1, + ACTIONS(101), 1, aux_sym_clear_statement_token1, + ACTIONS(103), 1, aux_sym_append_statement_token1, + ACTIONS(105), 1, aux_sym_include_statement_token1, + ACTIONS(377), 1, aux_sym_function_implementation_token1, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + STATE(2960), 5, + sym__writeable_expression, + sym_table_expression, + sym__data_object, + sym_structured_data_object, + sym_attribute_access_static, + STATE(36), 32, + sym__implementation_statement, + sym_variable_declaration, + sym_chained_variable_declaration, + sym_chained_structure_declaration, + sym_field_symbol_declaration, + sym_chained_field_symbol_declaration, + sym_loop_statement, + sym_exit_statement, + sym_continue_statement, + sym_return_statement, + sym_report_statement, + sym_if_statement, + sym_check_statement, + sym_select_statement_obsolete, + sym_read_table_statement, + sym_assignment, + sym_try_catch_statement, + sym_write_statement, + sym_chained_write_statement, + sym_call_method, + sym_call_method_static, + sym_call_method_instance, + sym_call_function, + sym_raise_exception_statement, + sym_clear_statement, + sym_append_statement, + sym_append_statement_obsolete, + sym_create_object_statement, + sym_include_statement, + sym_macro_include, + sym_raise_statement, + aux_sym_method_body_repeat1, + [788] = 6, + ACTIONS(3), 1, + sym_eol_comment, + ACTIONS(5), 1, + sym_bol_comment, + ACTIONS(383), 1, + anon_sym_DASH2, + STATE(40), 1, + aux_sym_structured_data_object_repeat1, + ACTIONS(379), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_STAR_STAR, sym_name, - [929] = 5, + ACTIONS(381), 25, + anon_sym_DOT, + aux_sym__method_declaration_importing_token1, + aux_sym__method_declaration_exporting_token1, + aux_sym__method_declaration_changing_token1, + anon_sym_RPAREN, + aux_sym__method_declaration_exceptions_token1, + anon_sym_COMMA, + aux_sym_complete_typing_token2, + aux_sym_loop_statement_token3, + aux_sym_loop_statement_token5, + aux_sym__logical_expression_token2, + aux_sym__logical_expression_token3, + anon_sym_EQ, + aux_sym_comparison_expression_token1, + anon_sym_LT_GT, + aux_sym_comparison_expression_token2, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DIV, + anon_sym_MOD, + anon_sym_RBRACK, + aux_sym_select_statement_obsolete_token3, + aux_sym_line_spec_token3, + aux_sym__read_table_result_token1, + aux_sym__explicit_parameter_list_token1, + [834] = 6, + ACTIONS(3), 1, + sym_eol_comment, ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, + sym_bol_comment, + ACTIONS(389), 1, + anon_sym_DASH2, + STATE(39), 1, + aux_sym_structured_data_object_repeat1, + ACTIONS(385), 4, + anon_sym_DASH, anon_sym_STAR, - ACTIONS(389), 2, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - STATE(39), 2, + anon_sym_STAR_STAR, + sym_name, + ACTIONS(387), 25, + anon_sym_DOT, + aux_sym__method_declaration_importing_token1, + aux_sym__method_declaration_exporting_token1, + aux_sym__method_declaration_changing_token1, + anon_sym_RPAREN, + aux_sym__method_declaration_exceptions_token1, + anon_sym_COMMA, + aux_sym_complete_typing_token2, + aux_sym_loop_statement_token3, + aux_sym_loop_statement_token5, + aux_sym__logical_expression_token2, + aux_sym__logical_expression_token3, + anon_sym_EQ, + aux_sym_comparison_expression_token1, + anon_sym_LT_GT, + aux_sym_comparison_expression_token2, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DIV, + anon_sym_MOD, + anon_sym_RBRACK, + aux_sym_select_statement_obsolete_token3, + aux_sym_line_spec_token3, + aux_sym__read_table_result_token1, + aux_sym__explicit_parameter_list_token1, + [880] = 6, + ACTIONS(3), 1, + sym_eol_comment, + ACTIONS(5), 1, + sym_bol_comment, + ACTIONS(383), 1, + anon_sym_DASH2, + STATE(39), 1, + aux_sym_structured_data_object_repeat1, + ACTIONS(392), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_STAR_STAR, + sym_name, + ACTIONS(394), 25, + anon_sym_DOT, + aux_sym__method_declaration_importing_token1, + aux_sym__method_declaration_exporting_token1, + aux_sym__method_declaration_changing_token1, + anon_sym_RPAREN, + aux_sym__method_declaration_exceptions_token1, + anon_sym_COMMA, + aux_sym_complete_typing_token2, + aux_sym_loop_statement_token3, + aux_sym_loop_statement_token5, + aux_sym__logical_expression_token2, + aux_sym__logical_expression_token3, + anon_sym_EQ, + aux_sym_comparison_expression_token1, + anon_sym_LT_GT, + aux_sym_comparison_expression_token2, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DIV, + anon_sym_MOD, + anon_sym_RBRACK, + aux_sym_select_statement_obsolete_token3, + aux_sym_line_spec_token3, + aux_sym__read_table_result_token1, + aux_sym__explicit_parameter_list_token1, + [926] = 3, + ACTIONS(396), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(387), 28, + ACTIONS(398), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -16008,24 +15487,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, aux_sym_function_implementation_token1, - sym_name, - [974] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(393), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(40), 2, + [965] = 3, + ACTIONS(400), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(391), 28, + ACTIONS(402), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -16048,24 +15523,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, aux_sym_function_implementation_token1, - sym_name, - [1019] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(397), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(41), 2, + [1004] = 3, + ACTIONS(404), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(395), 28, + ACTIONS(406), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -16088,24 +15559,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, aux_sym_function_implementation_token1, - sym_name, - [1064] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(401), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(42), 2, + [1043] = 3, + ACTIONS(408), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(399), 28, + ACTIONS(410), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -16128,24 +15595,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, aux_sym_function_implementation_token1, - sym_name, - [1109] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(405), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(43), 2, + [1082] = 3, + ACTIONS(412), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(403), 28, + ACTIONS(414), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -16168,24 +15631,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, aux_sym_function_implementation_token1, - sym_name, - [1154] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(409), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(44), 2, + [1121] = 3, + ACTIONS(416), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(407), 28, + ACTIONS(418), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -16208,24 +15667,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, aux_sym_function_implementation_token1, - sym_name, - [1199] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(413), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(45), 2, + [1160] = 3, + ACTIONS(420), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(411), 28, + ACTIONS(422), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -16248,24 +15703,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, aux_sym_function_implementation_token1, - sym_name, - [1244] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(417), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(46), 2, + [1199] = 3, + ACTIONS(424), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(415), 28, + ACTIONS(426), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -16288,24 +15739,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, aux_sym_function_implementation_token1, - sym_name, - [1289] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(421), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(47), 2, + [1238] = 3, + ACTIONS(428), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(419), 28, + ACTIONS(430), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -16328,24 +15775,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, aux_sym_function_implementation_token1, - sym_name, - [1334] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(425), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(48), 2, + [1277] = 3, + ACTIONS(432), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(423), 28, + ACTIONS(434), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -16368,24 +15811,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, aux_sym_function_implementation_token1, - sym_name, - [1379] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(429), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(49), 2, + [1316] = 3, + ACTIONS(436), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(427), 28, + ACTIONS(438), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -16408,24 +15847,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, aux_sym_function_implementation_token1, - sym_name, - [1424] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(433), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(50), 2, + [1355] = 3, + ACTIONS(440), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(431), 28, + ACTIONS(442), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -16448,24 +15883,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, aux_sym_function_implementation_token1, - sym_name, - [1469] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(437), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(51), 2, + [1394] = 3, + ACTIONS(444), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(435), 28, + ACTIONS(446), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -16488,24 +15919,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, aux_sym_function_implementation_token1, - sym_name, - [1514] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(441), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(52), 2, + [1433] = 3, + ACTIONS(448), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(439), 28, + ACTIONS(450), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -16528,24 +15955,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, aux_sym_function_implementation_token1, - sym_name, - [1559] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(445), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(53), 2, + [1472] = 3, + ACTIONS(452), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(443), 28, + ACTIONS(454), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -16568,24 +15991,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, aux_sym_function_implementation_token1, - sym_name, - [1604] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(449), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(54), 2, + [1511] = 3, + ACTIONS(456), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(447), 28, + ACTIONS(458), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -16608,24 +16027,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, aux_sym_function_implementation_token1, - sym_name, - [1649] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(453), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(55), 2, + [1550] = 3, + ACTIONS(460), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(451), 28, + ACTIONS(462), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -16648,24 +16063,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, aux_sym_function_implementation_token1, - sym_name, - [1694] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(457), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(56), 2, + [1589] = 3, + ACTIONS(464), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(455), 28, + ACTIONS(466), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -16688,24 +16099,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, aux_sym_function_implementation_token1, - sym_name, - [1739] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(461), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(57), 2, + [1628] = 3, + ACTIONS(468), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(459), 28, + ACTIONS(470), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -16728,24 +16135,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, aux_sym_function_implementation_token1, - sym_name, - [1784] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(465), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(58), 2, + [1667] = 3, + ACTIONS(472), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(463), 28, + ACTIONS(474), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -16768,24 +16171,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, aux_sym_function_implementation_token1, - sym_name, - [1829] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(469), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(59), 2, + [1706] = 3, + ACTIONS(476), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(467), 28, + ACTIONS(478), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -16808,24 +16207,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, aux_sym_function_implementation_token1, - sym_name, - [1874] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(473), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(60), 2, + [1745] = 3, + ACTIONS(480), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(471), 28, + ACTIONS(482), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -16848,24 +16243,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, aux_sym_function_implementation_token1, - sym_name, - [1919] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(477), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(61), 2, + [1784] = 3, + ACTIONS(484), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(475), 28, + ACTIONS(486), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -16888,24 +16279,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, aux_sym_function_implementation_token1, - sym_name, - [1964] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(481), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(62), 2, + [1823] = 3, + ACTIONS(488), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(479), 28, + ACTIONS(490), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -16928,24 +16315,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, aux_sym_function_implementation_token1, - sym_name, - [2009] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(485), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(63), 2, + [1862] = 3, + ACTIONS(492), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(483), 28, + ACTIONS(494), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -16968,24 +16351,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, aux_sym_function_implementation_token1, - sym_name, - [2054] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(489), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(64), 2, + [1901] = 3, + ACTIONS(496), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(487), 28, + ACTIONS(498), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -17008,24 +16387,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, aux_sym_function_implementation_token1, - sym_name, - [2099] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(493), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(65), 2, + [1940] = 3, + ACTIONS(500), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(491), 28, + ACTIONS(502), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -17048,24 +16423,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, aux_sym_function_implementation_token1, - sym_name, - [2144] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(497), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(66), 2, + [1979] = 3, + ACTIONS(504), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(495), 28, + ACTIONS(506), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -17088,24 +16459,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, aux_sym_function_implementation_token1, - sym_name, - [2189] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(501), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(67), 2, + [2018] = 3, + ACTIONS(508), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(499), 28, + ACTIONS(510), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -17128,24 +16495,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, aux_sym_function_implementation_token1, - sym_name, - [2234] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(505), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(68), 2, + [2057] = 3, + ACTIONS(512), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(503), 28, + ACTIONS(514), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -17168,24 +16531,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, aux_sym_function_implementation_token1, - sym_name, - [2279] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(509), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(69), 2, + [2096] = 3, + ACTIONS(516), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(507), 28, + ACTIONS(518), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -17208,24 +16567,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, aux_sym_function_implementation_token1, - sym_name, - [2324] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(513), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(70), 2, + [2135] = 3, + ACTIONS(520), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(511), 28, + ACTIONS(522), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -17248,24 +16603,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, aux_sym_function_implementation_token1, - sym_name, - [2369] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(517), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(71), 2, + [2174] = 3, + ACTIONS(524), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(515), 28, + ACTIONS(526), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -17288,24 +16639,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, aux_sym_function_implementation_token1, - sym_name, - [2414] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(521), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(72), 2, + [2213] = 3, + ACTIONS(528), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(519), 28, + ACTIONS(530), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -17328,24 +16675,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, aux_sym_function_implementation_token1, - sym_name, - [2459] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(525), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(73), 2, + [2252] = 3, + ACTIONS(532), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(523), 28, + ACTIONS(534), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -17368,24 +16711,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, aux_sym_function_implementation_token1, - sym_name, - [2504] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(529), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(74), 2, + [2291] = 3, + ACTIONS(536), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(527), 28, + ACTIONS(538), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -17408,24 +16747,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, aux_sym_function_implementation_token1, - sym_name, - [2549] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(533), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(75), 2, + [2330] = 3, + ACTIONS(540), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(531), 28, + ACTIONS(542), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -17448,24 +16783,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, aux_sym_function_implementation_token1, - sym_name, - [2594] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(537), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(76), 2, + [2369] = 3, + ACTIONS(544), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(535), 28, + ACTIONS(546), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -17488,24 +16819,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, aux_sym_function_implementation_token1, - sym_name, - [2639] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(541), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(77), 2, + [2408] = 3, + ACTIONS(548), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(539), 28, + ACTIONS(550), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -17528,24 +16855,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, aux_sym_function_implementation_token1, - sym_name, - [2684] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(545), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(78), 2, + [2447] = 3, + ACTIONS(552), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(543), 28, + ACTIONS(554), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -17568,24 +16891,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, aux_sym_function_implementation_token1, - sym_name, - [2729] = 5, + sym_field_symbol_name, + [2486] = 4, + ACTIONS(3), 1, + sym_eol_comment, ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, + sym_bol_comment, + ACTIONS(556), 4, + anon_sym_DASH, anon_sym_STAR, - ACTIONS(549), 2, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - STATE(79), 2, + anon_sym_STAR_STAR, + sym_name, + ACTIONS(558), 26, + anon_sym_DOT, + aux_sym__method_declaration_importing_token1, + aux_sym__method_declaration_exporting_token1, + aux_sym__method_declaration_changing_token1, + anon_sym_RPAREN, + aux_sym__method_declaration_exceptions_token1, + anon_sym_COMMA, + aux_sym_complete_typing_token2, + aux_sym_loop_statement_token3, + aux_sym_loop_statement_token5, + aux_sym__logical_expression_token2, + aux_sym__logical_expression_token3, + anon_sym_EQ, + aux_sym_comparison_expression_token1, + anon_sym_LT_GT, + aux_sym_comparison_expression_token2, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DIV, + anon_sym_MOD, + anon_sym_RBRACK, + aux_sym_select_statement_obsolete_token3, + aux_sym_line_spec_token3, + aux_sym__read_table_result_token1, + anon_sym_DASH2, + aux_sym__explicit_parameter_list_token1, + [2527] = 3, + ACTIONS(560), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(547), 28, + ACTIONS(562), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -17608,24 +16964,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, aux_sym_function_implementation_token1, - sym_name, - [2774] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(553), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(80), 2, + [2566] = 3, + ACTIONS(564), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(551), 28, + ACTIONS(566), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -17648,24 +17000,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, aux_sym_function_implementation_token1, - sym_name, - [2819] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(557), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(81), 2, + [2605] = 3, + ACTIONS(568), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(555), 28, + ACTIONS(570), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -17688,24 +17036,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, aux_sym_function_implementation_token1, - sym_name, - [2864] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(561), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(82), 2, + [2644] = 3, + ACTIONS(572), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(559), 28, + ACTIONS(574), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -17728,24 +17072,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, aux_sym_function_implementation_token1, - sym_name, - [2909] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(565), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(83), 2, + [2683] = 3, + ACTIONS(576), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(563), 28, + ACTIONS(578), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -17768,24 +17108,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, aux_sym_function_implementation_token1, - sym_name, - [2954] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(569), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(84), 2, + [2722] = 3, + ACTIONS(580), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(567), 28, + ACTIONS(582), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -17808,24 +17144,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, aux_sym_function_implementation_token1, - sym_name, - [2999] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(573), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(85), 2, + [2761] = 3, + ACTIONS(584), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(571), 28, + ACTIONS(586), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -17848,24 +17180,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, aux_sym_function_implementation_token1, - sym_name, - [3044] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(577), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(86), 2, + [2800] = 3, + ACTIONS(588), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(575), 28, + ACTIONS(590), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -17888,24 +17216,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, aux_sym_function_implementation_token1, - sym_name, - [3089] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(581), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(87), 2, + [2839] = 3, + ACTIONS(592), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(579), 28, + ACTIONS(594), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -17928,24 +17252,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, aux_sym_function_implementation_token1, + sym_field_symbol_name, + [2878] = 3, + ACTIONS(596), 1, sym_name, - [3134] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(585), 2, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(598), 29, + aux_sym_class_declaration_token1, + aux_sym__create_addition_token1, + aux_sym_method_implementation_token2, + aux_sym_interface_declaration_token1, + aux_sym_variable_declaration_token1, aux_sym_field_symbol_declaration_token1, + aux_sym_loop_statement_token1, + aux_sym_loop_statement_token6, + aux_sym_exit_statement_token1, + aux_sym_continue_statement_token1, + aux_sym_return_statement_token1, + aux_sym_report_statement_token1, + aux_sym_if_statement_token1, + aux_sym_if_statement_token2, + aux_sym_check_statement_token1, + aux_sym_select_statement_obsolete_token1, + aux_sym_read_table_statement_token1, + aux_sym_try_catch_statement_token1, + aux_sym_try_catch_statement_token2, + aux_sym_catch_statement_token1, + aux_sym_write_statement_token1, + aux_sym_call_function_token1, + aux_sym_call_function_token2, + aux_sym_raise_exception_statement_token1, + aux_sym_clear_statement_token1, + aux_sym_append_statement_token1, + aux_sym_include_statement_token1, + aux_sym_function_implementation_token1, sym_field_symbol_name, - STATE(88), 2, + [2917] = 3, + ACTIONS(600), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(583), 28, + ACTIONS(602), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -17968,24 +17324,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, aux_sym_function_implementation_token1, - sym_name, - [3179] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(589), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(89), 2, + [2956] = 3, + ACTIONS(604), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(587), 28, + ACTIONS(606), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -18008,24 +17360,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, aux_sym_function_implementation_token1, - sym_name, - [3224] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(593), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(90), 2, + [2995] = 3, + ACTIONS(608), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(591), 28, + ACTIONS(610), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -18048,24 +17396,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, aux_sym_function_implementation_token1, - sym_name, - [3269] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(597), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(91), 2, + [3034] = 3, + ACTIONS(612), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(595), 28, + ACTIONS(614), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -18088,24 +17432,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, aux_sym_function_implementation_token1, - sym_name, - [3314] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(601), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(92), 2, + [3073] = 3, + ACTIONS(616), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(599), 28, + ACTIONS(618), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -18128,24 +17468,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, aux_sym_function_implementation_token1, - sym_name, - [3359] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(605), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(93), 2, + [3112] = 3, + ACTIONS(620), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(603), 28, + ACTIONS(622), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -18168,24 +17504,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, aux_sym_function_implementation_token1, - sym_name, - [3404] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(609), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(94), 2, + [3151] = 3, + ACTIONS(624), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(607), 28, + ACTIONS(626), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -18208,24 +17540,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, aux_sym_function_implementation_token1, - sym_name, - [3449] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(613), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(95), 2, + [3190] = 3, + ACTIONS(628), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(611), 28, + ACTIONS(630), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -18248,24 +17576,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, aux_sym_function_implementation_token1, + sym_field_symbol_name, + [3229] = 3, + ACTIONS(632), 1, sym_name, - [3494] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(617), 2, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(634), 29, + aux_sym_class_declaration_token1, + aux_sym__create_addition_token1, + aux_sym_method_implementation_token2, + aux_sym_interface_declaration_token1, + aux_sym_variable_declaration_token1, aux_sym_field_symbol_declaration_token1, + aux_sym_loop_statement_token1, + aux_sym_loop_statement_token6, + aux_sym_exit_statement_token1, + aux_sym_continue_statement_token1, + aux_sym_return_statement_token1, + aux_sym_report_statement_token1, + aux_sym_if_statement_token1, + aux_sym_if_statement_token2, + aux_sym_check_statement_token1, + aux_sym_select_statement_obsolete_token1, + aux_sym_read_table_statement_token1, + aux_sym_try_catch_statement_token1, + aux_sym_try_catch_statement_token2, + aux_sym_catch_statement_token1, + aux_sym_write_statement_token1, + aux_sym_call_function_token1, + aux_sym_call_function_token2, + aux_sym_raise_exception_statement_token1, + aux_sym_clear_statement_token1, + aux_sym_append_statement_token1, + aux_sym_include_statement_token1, + aux_sym_function_implementation_token1, sym_field_symbol_name, - STATE(96), 2, + [3268] = 3, + ACTIONS(636), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(615), 28, + ACTIONS(638), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -18288,24 +17648,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, aux_sym_function_implementation_token1, + sym_field_symbol_name, + [3307] = 3, + ACTIONS(640), 1, sym_name, - [3539] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(621), 2, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(642), 29, + aux_sym_class_declaration_token1, + aux_sym__create_addition_token1, + aux_sym_method_implementation_token2, + aux_sym_interface_declaration_token1, + aux_sym_variable_declaration_token1, aux_sym_field_symbol_declaration_token1, + aux_sym_loop_statement_token1, + aux_sym_loop_statement_token6, + aux_sym_exit_statement_token1, + aux_sym_continue_statement_token1, + aux_sym_return_statement_token1, + aux_sym_report_statement_token1, + aux_sym_if_statement_token1, + aux_sym_if_statement_token2, + aux_sym_check_statement_token1, + aux_sym_select_statement_obsolete_token1, + aux_sym_read_table_statement_token1, + aux_sym_try_catch_statement_token1, + aux_sym_try_catch_statement_token2, + aux_sym_catch_statement_token1, + aux_sym_write_statement_token1, + aux_sym_call_function_token1, + aux_sym_call_function_token2, + aux_sym_raise_exception_statement_token1, + aux_sym_clear_statement_token1, + aux_sym_append_statement_token1, + aux_sym_include_statement_token1, + aux_sym_function_implementation_token1, sym_field_symbol_name, - STATE(97), 2, + [3346] = 3, + ACTIONS(644), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(619), 28, + ACTIONS(646), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -18328,142 +17720,91 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, aux_sym_function_implementation_token1, - sym_name, - [3584] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(627), 1, - anon_sym_DASH2, - STATE(99), 1, - aux_sym_structured_data_object_repeat1, - STATE(98), 2, + sym_field_symbol_name, + [3385] = 4, + ACTIONS(3), 1, sym_eol_comment, + ACTIONS(5), 1, sym_bol_comment, - ACTIONS(625), 8, - anon_sym_DOT, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - ACTIONS(623), 20, - aux_sym__method_declaration_importing_token1, - aux_sym__method_declaration_exporting_token1, - aux_sym__method_declaration_changing_token1, - aux_sym__method_declaration_exceptions_token1, - aux_sym_complete_typing_token2, - aux_sym_loop_statement_token3, - aux_sym_loop_statement_token5, - aux_sym__logical_expression_token2, - aux_sym__logical_expression_token3, - aux_sym_comparison_expression_token1, - aux_sym_comparison_expression_token2, - anon_sym_DASH, + ACTIONS(648), 3, anon_sym_STAR, - anon_sym_DIV, - anon_sym_MOD, - aux_sym_select_statement_obsolete_token3, - aux_sym_line_spec_token3, - aux_sym__read_table_result_token1, - aux_sym__explicit_parameter_list_token1, + anon_sym_STAR_STAR, sym_name, - [3630] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(633), 1, - anon_sym_DASH2, - STATE(99), 3, - sym_eol_comment, - sym_bol_comment, - aux_sym_structured_data_object_repeat1, - ACTIONS(631), 8, + ACTIONS(650), 26, anon_sym_DOT, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - ACTIONS(629), 20, aux_sym__method_declaration_importing_token1, aux_sym__method_declaration_exporting_token1, aux_sym__method_declaration_changing_token1, + anon_sym_RPAREN, aux_sym__method_declaration_exceptions_token1, + anon_sym_COMMA, aux_sym_complete_typing_token2, aux_sym_loop_statement_token3, aux_sym_loop_statement_token5, aux_sym__logical_expression_token2, aux_sym__logical_expression_token3, + anon_sym_EQ, aux_sym_comparison_expression_token1, + anon_sym_LT_GT, aux_sym_comparison_expression_token2, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, + anon_sym_SLASH, anon_sym_DIV, anon_sym_MOD, + anon_sym_RBRACK, aux_sym_select_statement_obsolete_token3, aux_sym_line_spec_token3, aux_sym__read_table_result_token1, aux_sym__explicit_parameter_list_token1, - sym_name, - [3674] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(627), 1, - anon_sym_DASH2, - STATE(98), 1, - aux_sym_structured_data_object_repeat1, - STATE(100), 2, + [3425] = 4, + ACTIONS(3), 1, sym_eol_comment, + ACTIONS(5), 1, sym_bol_comment, - ACTIONS(638), 8, - anon_sym_DOT, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_SLASH, + ACTIONS(652), 3, + anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_RBRACK, - ACTIONS(636), 20, + sym_name, + ACTIONS(654), 26, + anon_sym_DOT, aux_sym__method_declaration_importing_token1, aux_sym__method_declaration_exporting_token1, aux_sym__method_declaration_changing_token1, + anon_sym_RPAREN, aux_sym__method_declaration_exceptions_token1, + anon_sym_COMMA, aux_sym_complete_typing_token2, aux_sym_loop_statement_token3, aux_sym_loop_statement_token5, aux_sym__logical_expression_token2, aux_sym__logical_expression_token3, + anon_sym_EQ, aux_sym_comparison_expression_token1, + anon_sym_LT_GT, aux_sym_comparison_expression_token2, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, + anon_sym_SLASH, anon_sym_DIV, anon_sym_MOD, + anon_sym_RBRACK, aux_sym_select_statement_obsolete_token3, aux_sym_line_spec_token3, aux_sym__read_table_result_token1, aux_sym__explicit_parameter_list_token1, + [3465] = 3, + ACTIONS(656), 1, sym_name, - [3720] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(642), 2, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - STATE(101), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(640), 26, + ACTIONS(658), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -18485,23 +17826,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [3763] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(646), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(102), 2, + [3502] = 3, + ACTIONS(660), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(644), 26, + ACTIONS(662), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -18523,23 +17860,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [3806] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(650), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(103), 2, + [3539] = 3, + ACTIONS(664), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(648), 26, + ACTIONS(666), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -18561,23 +17894,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [3849] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(654), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(104), 2, + [3576] = 3, + ACTIONS(668), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(652), 26, + ACTIONS(670), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -18599,60 +17928,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [3892] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - STATE(105), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(658), 9, - anon_sym_DOT, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_DASH2, - ACTIONS(656), 20, - aux_sym__method_declaration_importing_token1, - aux_sym__method_declaration_exporting_token1, - aux_sym__method_declaration_changing_token1, - aux_sym__method_declaration_exceptions_token1, - aux_sym_complete_typing_token2, - aux_sym_loop_statement_token3, - aux_sym_loop_statement_token5, - aux_sym__logical_expression_token2, - aux_sym__logical_expression_token3, - aux_sym_comparison_expression_token1, - aux_sym_comparison_expression_token2, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_DIV, - anon_sym_MOD, - aux_sym_select_statement_obsolete_token3, - aux_sym_line_spec_token3, - aux_sym__read_table_result_token1, - aux_sym__explicit_parameter_list_token1, - sym_name, - [3933] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(662), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(106), 2, + [3613] = 3, + ACTIONS(672), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(660), 26, + ACTIONS(674), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -18674,23 +17962,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [3976] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(666), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(107), 2, + [3650] = 3, + ACTIONS(676), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(664), 26, + ACTIONS(678), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -18712,23 +17996,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [4019] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(670), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(108), 2, + [3687] = 3, + ACTIONS(680), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(668), 26, + ACTIONS(682), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -18750,23 +18030,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [4062] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(674), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(109), 2, + [3724] = 3, + ACTIONS(684), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(672), 26, + ACTIONS(686), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -18788,23 +18064,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [4105] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(678), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(110), 2, + [3761] = 3, + ACTIONS(688), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(676), 26, + ACTIONS(690), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -18826,23 +18098,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [4148] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(682), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(111), 2, + [3798] = 3, + ACTIONS(692), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(680), 26, + ACTIONS(694), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -18864,23 +18132,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [4191] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(686), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(112), 2, + [3835] = 3, + ACTIONS(696), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(684), 26, + ACTIONS(698), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -18902,23 +18166,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [4234] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(690), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(113), 2, + [3872] = 3, + ACTIONS(700), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(688), 26, + ACTIONS(702), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -18940,23 +18200,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [4277] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(694), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(114), 2, + [3909] = 3, + ACTIONS(704), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(692), 26, + ACTIONS(706), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -18978,23 +18234,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [4320] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(698), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(115), 2, + [3946] = 3, + ACTIONS(708), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(696), 26, + ACTIONS(710), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -19016,23 +18268,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [4363] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(702), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(116), 2, + [3983] = 3, + ACTIONS(712), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(700), 26, + ACTIONS(714), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -19054,23 +18302,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [4406] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(706), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(117), 2, + [4020] = 3, + ACTIONS(716), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(704), 26, + ACTIONS(718), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -19092,23 +18336,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [4449] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(710), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(118), 2, + [4057] = 3, + ACTIONS(720), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(708), 26, + ACTIONS(722), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -19130,23 +18370,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [4492] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(714), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(119), 2, + [4094] = 3, + ACTIONS(724), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(712), 26, + ACTIONS(726), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -19168,23 +18404,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [4535] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(718), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(120), 2, + [4131] = 3, + ACTIONS(728), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(716), 26, + ACTIONS(730), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -19206,23 +18438,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [4578] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(722), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(121), 2, + [4168] = 3, + ACTIONS(732), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(720), 26, + ACTIONS(734), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -19244,23 +18472,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [4621] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(726), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(122), 2, + [4205] = 3, + ACTIONS(736), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(724), 26, + ACTIONS(738), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -19282,23 +18506,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [4664] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(730), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(123), 2, + [4242] = 3, + ACTIONS(740), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(728), 26, + ACTIONS(742), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -19320,23 +18540,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [4707] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(734), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(124), 2, + [4279] = 3, + ACTIONS(744), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(732), 26, + ACTIONS(746), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -19358,23 +18574,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [4750] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(738), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(125), 2, + [4316] = 3, + ACTIONS(748), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(736), 26, + ACTIONS(750), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -19396,23 +18608,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [4793] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(742), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(126), 2, + [4353] = 3, + ACTIONS(752), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(740), 26, + ACTIONS(754), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -19434,23 +18642,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [4836] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(746), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(127), 2, + [4390] = 3, + ACTIONS(756), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(744), 26, + ACTIONS(758), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -19472,23 +18676,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [4879] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(750), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(128), 2, + [4427] = 3, + ACTIONS(760), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(748), 26, + ACTIONS(762), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -19510,23 +18710,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [4922] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(754), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(129), 2, + [4464] = 3, + ACTIONS(764), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(752), 26, + ACTIONS(766), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -19548,23 +18744,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [4965] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(758), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(130), 2, + [4501] = 3, + ACTIONS(768), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(756), 26, + ACTIONS(770), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -19586,23 +18778,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [5008] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(762), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(131), 2, + [4538] = 3, + ACTIONS(772), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(760), 26, + ACTIONS(774), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -19624,23 +18812,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [5051] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(766), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(132), 2, + [4575] = 3, + ACTIONS(776), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(764), 26, + ACTIONS(778), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -19662,23 +18846,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [5094] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(770), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(133), 2, + [4612] = 3, + ACTIONS(780), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(768), 26, + ACTIONS(782), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -19700,23 +18880,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [5137] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(774), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(134), 2, + [4649] = 3, + ACTIONS(784), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(772), 26, + ACTIONS(786), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -19738,23 +18914,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [5180] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(778), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(135), 2, + [4686] = 3, + ACTIONS(788), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(776), 26, + ACTIONS(790), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -19776,23 +18948,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [5223] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(782), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(136), 2, + [4723] = 3, + ACTIONS(792), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(780), 26, + ACTIONS(794), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -19814,23 +18982,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [5266] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(786), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(137), 2, + [4760] = 3, + ACTIONS(796), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(784), 26, + ACTIONS(798), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -19852,23 +19016,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [5309] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(790), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(138), 2, + [4797] = 3, + ACTIONS(800), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(788), 26, + ACTIONS(802), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -19890,23 +19050,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [5352] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(794), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(139), 2, + [4834] = 3, + ACTIONS(804), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(792), 26, + ACTIONS(806), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -19928,23 +19084,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [5395] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(798), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(140), 2, + [4871] = 3, + ACTIONS(808), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(796), 26, + ACTIONS(810), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -19966,23 +19118,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [5438] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(802), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(141), 2, + [4908] = 3, + ACTIONS(812), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(800), 26, + ACTIONS(814), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -20004,23 +19152,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [5481] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(806), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(142), 2, + [4945] = 3, + ACTIONS(816), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(804), 26, + ACTIONS(818), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -20042,23 +19186,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [5524] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(810), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(143), 2, + [4982] = 3, + ACTIONS(820), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(808), 26, + ACTIONS(822), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -20080,23 +19220,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [5567] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(814), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(144), 2, + [5019] = 3, + ACTIONS(824), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(812), 26, + ACTIONS(826), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -20118,23 +19254,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [5610] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(818), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(145), 2, + [5056] = 3, + ACTIONS(828), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(816), 26, + ACTIONS(830), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -20156,23 +19288,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [5653] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(822), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(146), 2, + [5093] = 3, + ACTIONS(832), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(820), 26, + ACTIONS(834), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -20194,23 +19322,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [5696] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(826), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(147), 2, + [5130] = 3, + ACTIONS(836), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(824), 26, + ACTIONS(838), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -20232,23 +19356,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [5739] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(830), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(148), 2, + [5167] = 3, + ACTIONS(840), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(828), 26, + ACTIONS(842), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -20270,23 +19390,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [5782] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(834), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(149), 2, + [5204] = 3, + ACTIONS(844), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(832), 26, + ACTIONS(846), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -20308,23 +19424,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [5825] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(838), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(150), 2, + [5241] = 3, + ACTIONS(848), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(836), 26, + ACTIONS(850), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -20346,23 +19458,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [5868] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(842), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(151), 2, + [5278] = 3, + ACTIONS(852), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(840), 26, + ACTIONS(854), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -20384,23 +19492,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [5911] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(846), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(152), 2, + [5315] = 3, + ACTIONS(856), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(844), 26, + ACTIONS(858), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -20422,23 +19526,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [5954] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(850), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(153), 2, + [5352] = 3, + ACTIONS(860), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(848), 26, + ACTIONS(862), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -20460,23 +19560,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [5997] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(854), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(154), 2, + [5389] = 3, + ACTIONS(864), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(852), 26, + ACTIONS(866), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -20498,23 +19594,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [6040] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(858), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(155), 2, + [5426] = 3, + ACTIONS(868), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(856), 26, + ACTIONS(870), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -20536,23 +19628,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [6083] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(862), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(156), 2, + [5463] = 3, + ACTIONS(872), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(860), 26, + ACTIONS(874), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -20574,23 +19662,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [6126] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(866), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(157), 2, + [5500] = 3, + ACTIONS(876), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(864), 26, + ACTIONS(878), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -20612,23 +19696,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [6169] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(870), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(158), 2, + [5537] = 3, + ACTIONS(880), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(868), 26, + ACTIONS(882), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -20650,23 +19730,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [6212] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(874), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(159), 2, + [5574] = 3, + ACTIONS(884), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(872), 26, + ACTIONS(886), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -20688,23 +19764,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [6255] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(878), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(160), 2, + [5611] = 3, + ACTIONS(888), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(876), 26, + ACTIONS(890), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -20726,23 +19798,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [6298] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(882), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(161), 2, + [5648] = 3, + ACTIONS(892), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(880), 26, + ACTIONS(894), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -20764,23 +19832,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [6341] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(886), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(162), 2, + [5685] = 3, + ACTIONS(896), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(884), 26, + ACTIONS(898), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -20802,23 +19866,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [6384] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(890), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(163), 2, + [5722] = 3, + ACTIONS(900), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(888), 26, + ACTIONS(902), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -20840,23 +19900,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [6427] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(894), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(164), 2, + [5759] = 3, + ACTIONS(904), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(892), 26, + ACTIONS(906), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -20878,23 +19934,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [6470] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(898), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(165), 2, + [5796] = 3, + ACTIONS(908), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(896), 26, + ACTIONS(910), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -20916,23 +19968,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [6513] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(902), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(166), 2, + [5833] = 3, + ACTIONS(912), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(900), 26, + ACTIONS(914), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -20954,23 +20002,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [6556] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(906), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(167), 2, + [5870] = 3, + ACTIONS(916), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(904), 26, + ACTIONS(918), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -20992,23 +20036,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [6599] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(910), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(168), 2, + [5907] = 3, + ACTIONS(920), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(908), 26, + ACTIONS(922), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -21030,23 +20070,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [6642] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(914), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(169), 2, + [5944] = 3, + ACTIONS(924), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(912), 26, + ACTIONS(926), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -21068,23 +20104,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [6685] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(918), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(170), 2, + [5981] = 3, + ACTIONS(928), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(916), 26, + ACTIONS(930), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -21106,23 +20138,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [6728] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(922), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(171), 2, + [6018] = 3, + ACTIONS(932), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(920), 26, + ACTIONS(934), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -21144,23 +20172,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [6771] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(926), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(172), 2, + [6055] = 3, + ACTIONS(936), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(924), 26, + ACTIONS(938), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -21182,23 +20206,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [6814] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(930), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(173), 2, + [6092] = 3, + ACTIONS(940), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(928), 26, + ACTIONS(942), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -21220,23 +20240,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [6857] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(934), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(174), 2, + [6129] = 3, + ACTIONS(944), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(932), 26, + ACTIONS(946), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -21258,23 +20274,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [6900] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(938), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(175), 2, + [6166] = 3, + ACTIONS(948), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(936), 26, + ACTIONS(950), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -21296,23 +20308,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [6943] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(942), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(176), 2, + [6203] = 3, + ACTIONS(952), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(940), 26, + ACTIONS(954), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -21334,23 +20342,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [6986] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(946), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(177), 2, + [6240] = 3, + ACTIONS(956), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(944), 26, + ACTIONS(958), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -21372,23 +20376,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [7029] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(950), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(178), 2, + [6277] = 3, + ACTIONS(960), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(948), 26, + ACTIONS(962), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -21410,23 +20410,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [7072] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(954), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(179), 2, + [6314] = 3, + ACTIONS(964), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(952), 26, + ACTIONS(966), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -21448,23 +20444,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [7115] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(958), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(180), 2, + [6351] = 3, + ACTIONS(968), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(956), 26, + ACTIONS(970), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -21486,23 +20478,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [7158] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(962), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(181), 2, + [6388] = 3, + ACTIONS(972), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(960), 26, + ACTIONS(974), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -21524,23 +20512,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [7201] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(966), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(182), 2, + [6425] = 3, + ACTIONS(976), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(964), 26, + ACTIONS(978), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -21562,23 +20546,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [7244] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(970), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(183), 2, + [6462] = 3, + ACTIONS(980), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(968), 26, + ACTIONS(982), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -21600,23 +20580,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [7287] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(974), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(184), 2, + [6499] = 3, + ACTIONS(984), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(972), 26, + ACTIONS(986), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -21638,23 +20614,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [7330] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(978), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(185), 2, + [6536] = 3, + ACTIONS(988), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(976), 26, + ACTIONS(990), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -21676,23 +20648,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [7373] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(982), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(186), 2, + [6573] = 3, + ACTIONS(992), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(980), 26, + ACTIONS(994), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -21714,23 +20682,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [7416] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(986), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(187), 2, + [6610] = 3, + ACTIONS(996), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(984), 26, + ACTIONS(998), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -21752,23 +20716,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [7459] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(990), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(188), 2, + [6647] = 3, + ACTIONS(1000), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(988), 26, + ACTIONS(1002), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -21790,23 +20750,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [7502] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(994), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(189), 2, + [6684] = 3, + ACTIONS(1004), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(992), 26, + ACTIONS(1006), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -21828,23 +20784,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [7545] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(998), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(190), 2, + [6721] = 3, + ACTIONS(1008), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(996), 26, + ACTIONS(1010), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -21866,23 +20818,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [7588] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1002), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(191), 2, + [6758] = 3, + ACTIONS(1012), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1000), 26, + ACTIONS(1014), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -21904,23 +20852,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [7631] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1006), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(192), 2, + [6795] = 3, + ACTIONS(1016), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1004), 26, + ACTIONS(1018), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -21942,23 +20886,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [7674] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1010), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(193), 2, + [6832] = 3, + ACTIONS(1020), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1008), 26, + ACTIONS(1022), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -21980,23 +20920,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [7717] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1014), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(194), 2, + [6869] = 3, + ACTIONS(1024), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1012), 26, + ACTIONS(1026), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -22018,61 +20954,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [7760] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1018), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(195), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1016), 26, - aux_sym_class_declaration_token1, - aux_sym__create_addition_token1, - aux_sym_interface_declaration_token1, - aux_sym_variable_declaration_token1, - aux_sym_loop_statement_token1, - aux_sym_loop_statement_token6, - aux_sym_exit_statement_token1, - aux_sym_continue_statement_token1, - aux_sym_return_statement_token1, - aux_sym_report_statement_token1, - aux_sym_if_statement_token1, - aux_sym_if_statement_token2, - aux_sym_check_statement_token1, - aux_sym_select_statement_obsolete_token1, - aux_sym_read_table_statement_token1, - aux_sym_try_catch_statement_token1, - aux_sym_try_catch_statement_token2, - aux_sym_catch_statement_token1, - aux_sym_write_statement_token1, - aux_sym_call_function_token1, - aux_sym_call_function_token2, - aux_sym_raise_exception_statement_token1, - aux_sym_clear_statement_token1, - aux_sym_append_statement_token1, - aux_sym_include_statement_token1, + [6906] = 3, + ACTIONS(1028), 1, sym_name, - [7803] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1022), 2, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - STATE(196), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1020), 26, + ACTIONS(1030), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -22094,23 +20988,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [7846] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1026), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(197), 2, + [6943] = 3, + ACTIONS(1032), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1024), 26, + ACTIONS(1034), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -22132,23 +21022,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [7889] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1030), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(198), 2, + [6980] = 3, + ACTIONS(1036), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1028), 26, + ACTIONS(1038), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -22170,23 +21056,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [7932] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1034), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(199), 2, + [7017] = 3, + ACTIONS(1040), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1032), 26, + ACTIONS(1042), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -22208,23 +21090,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [7975] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1038), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(200), 2, + [7054] = 3, + ACTIONS(1044), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1036), 26, + ACTIONS(1046), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -22246,23 +21124,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [8018] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1042), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(201), 2, + [7091] = 3, + ACTIONS(1048), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1040), 26, + ACTIONS(1050), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -22284,23 +21158,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [8061] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1046), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(202), 2, + [7128] = 3, + ACTIONS(1052), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1044), 26, + ACTIONS(1054), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -22322,23 +21192,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [8104] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1050), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(203), 2, + [7165] = 3, + ACTIONS(1056), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1048), 26, + ACTIONS(1058), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -22360,23 +21226,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [8147] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1054), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(204), 2, + [7202] = 3, + ACTIONS(1060), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1052), 26, + ACTIONS(1062), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -22398,23 +21260,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [8190] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1058), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(205), 2, + [7239] = 3, + ACTIONS(1064), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1056), 26, + ACTIONS(1066), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -22436,23 +21294,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [8233] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1062), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(206), 2, + [7276] = 3, + ACTIONS(1068), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1060), 26, + ACTIONS(1070), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -22474,23 +21328,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [8276] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1066), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(207), 2, + [7313] = 3, + ACTIONS(1072), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1064), 26, + ACTIONS(1074), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -22512,23 +21362,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [8319] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1070), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(208), 2, + [7350] = 3, + ACTIONS(1076), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1068), 26, + ACTIONS(1078), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -22550,23 +21396,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [8362] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1074), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(209), 2, + [7387] = 3, + ACTIONS(1080), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1072), 26, + ACTIONS(1082), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -22588,23 +21430,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [8405] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1078), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(210), 2, + [7424] = 3, + ACTIONS(1084), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1076), 26, + ACTIONS(1086), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -22626,23 +21464,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [8448] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1082), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(211), 2, + [7461] = 3, + ACTIONS(1088), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1080), 26, + ACTIONS(1090), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -22664,23 +21498,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [8491] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1086), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(212), 2, + [7498] = 3, + ACTIONS(1092), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1084), 26, + ACTIONS(1094), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -22702,23 +21532,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [8534] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1090), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(213), 2, + [7535] = 3, + ACTIONS(1096), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1088), 26, + ACTIONS(1098), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -22740,23 +21566,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [8577] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1094), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(214), 2, + [7572] = 3, + ACTIONS(1100), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1092), 26, + ACTIONS(1102), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -22778,23 +21600,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [8620] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1098), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(215), 2, + [7609] = 3, + ACTIONS(1104), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1096), 26, + ACTIONS(1106), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -22816,23 +21634,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [8663] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1102), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(216), 2, + [7646] = 3, + ACTIONS(1108), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1100), 26, + ACTIONS(1110), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -22854,23 +21668,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [8706] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1106), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(217), 2, + [7683] = 3, + ACTIONS(1112), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1104), 26, + ACTIONS(1114), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -22892,23 +21702,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [8749] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1110), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(218), 2, + [7720] = 3, + ACTIONS(1116), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1108), 26, + ACTIONS(1118), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -22930,23 +21736,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [8792] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1114), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(219), 2, + [7757] = 3, + ACTIONS(1120), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1112), 26, + ACTIONS(1122), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -22968,23 +21770,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [8835] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1118), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(220), 2, + [7794] = 3, + ACTIONS(1124), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1116), 26, + ACTIONS(1126), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -23006,23 +21804,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [8878] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1122), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(221), 2, + [7831] = 3, + ACTIONS(1128), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1120), 26, + ACTIONS(1130), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -23044,23 +21838,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [8921] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1126), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(222), 2, + [7868] = 3, + ACTIONS(1132), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1124), 26, + ACTIONS(1134), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -23082,23 +21872,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [8964] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1130), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(223), 2, + [7905] = 3, + ACTIONS(1136), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1128), 26, + ACTIONS(1138), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -23120,23 +21906,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [9007] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1134), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(224), 2, + [7942] = 3, + ACTIONS(1140), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1132), 26, + ACTIONS(1142), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -23158,23 +21940,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [9050] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1138), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(225), 2, + [7979] = 3, + ACTIONS(1144), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1136), 26, + ACTIONS(1146), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -23196,23 +21974,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [9093] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1142), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(226), 2, + [8016] = 3, + ACTIONS(1148), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1140), 26, + ACTIONS(1150), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -23234,23 +22008,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [9136] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1146), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(227), 2, + [8053] = 3, + ACTIONS(1152), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1144), 26, + ACTIONS(1154), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -23272,23 +22042,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [9179] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1150), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(228), 2, + [8090] = 3, + ACTIONS(1156), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1148), 26, + ACTIONS(1158), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -23310,23 +22076,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [9222] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1154), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(229), 2, + [8127] = 3, + ACTIONS(1160), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1152), 26, + ACTIONS(1162), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -23348,23 +22110,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [9265] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1158), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(230), 2, + [8164] = 3, + ACTIONS(1164), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1156), 26, + ACTIONS(1166), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -23386,23 +22144,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [9308] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1162), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(231), 2, + [8201] = 3, + ACTIONS(1168), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1160), 26, + ACTIONS(1170), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -23424,23 +22178,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [9351] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1166), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(232), 2, + [8238] = 3, + ACTIONS(1172), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1164), 26, + ACTIONS(1174), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -23462,23 +22212,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [9394] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1170), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(233), 2, + [8275] = 3, + ACTIONS(1176), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1168), 26, + ACTIONS(1178), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -23500,23 +22246,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [9437] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1174), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(234), 2, + [8312] = 3, + ACTIONS(1180), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1172), 26, + ACTIONS(1182), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -23538,23 +22280,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [9480] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1178), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(235), 2, + [8349] = 3, + ACTIONS(1184), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1176), 26, + ACTIONS(1186), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -23576,23 +22314,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [9523] = 5, + sym_field_symbol_name, + [8386] = 7, + ACTIONS(3), 1, + sym_eol_comment, ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, + sym_bol_comment, + ACTIONS(383), 1, + anon_sym_DASH2, + ACTIONS(1188), 1, + anon_sym_EQ_GT, + STATE(40), 1, + aux_sym_structured_data_object_repeat1, + ACTIONS(379), 4, + anon_sym_DASH, anon_sym_STAR, - ACTIONS(1182), 2, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - STATE(236), 2, + anon_sym_STAR_STAR, + sym_name, + ACTIONS(381), 21, + anon_sym_DOT, + aux_sym__method_declaration_importing_token1, + aux_sym__method_declaration_exporting_token1, + aux_sym__method_declaration_changing_token1, + anon_sym_RPAREN, + aux_sym__method_declaration_exceptions_token1, + anon_sym_COMMA, + aux_sym_complete_typing_token2, + aux_sym_loop_statement_token3, + aux_sym_loop_statement_token5, + aux_sym__logical_expression_token2, + aux_sym__logical_expression_token3, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DIV, + anon_sym_MOD, + anon_sym_RBRACK, + aux_sym_select_statement_obsolete_token3, + aux_sym_line_spec_token3, + aux_sym__read_table_result_token1, + aux_sym__explicit_parameter_list_token1, + [8431] = 3, + ACTIONS(1190), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1180), 26, + ACTIONS(1192), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -23614,23 +22386,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [9566] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1186), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(237), 2, + [8468] = 3, + ACTIONS(1194), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1184), 26, + ACTIONS(1196), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -23652,23 +22420,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [9609] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1190), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(238), 2, + [8505] = 3, + ACTIONS(1198), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1188), 26, + ACTIONS(1200), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -23690,23 +22454,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [9652] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1194), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(239), 2, + [8542] = 3, + ACTIONS(1202), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1192), 26, + ACTIONS(1204), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -23728,23 +22488,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [9695] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1198), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(240), 2, + [8579] = 3, + ACTIONS(1206), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1196), 26, + ACTIONS(1208), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -23766,23 +22522,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [9738] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1202), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(241), 2, + [8616] = 3, + ACTIONS(1210), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1200), 26, + ACTIONS(1212), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -23804,23 +22556,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [9781] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1206), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(242), 2, + [8653] = 3, + ACTIONS(1214), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1204), 26, + ACTIONS(1216), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -23842,23 +22590,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [9824] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1210), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(243), 2, + [8690] = 3, + ACTIONS(1218), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1208), 26, + ACTIONS(1220), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, @@ -23880,37 +22624,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - sym_name, - [9867] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1214), 2, - aux_sym_field_symbol_declaration_token1, sym_field_symbol_name, - STATE(244), 2, + [8727] = 3, + ACTIONS(824), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1212), 26, + ACTIONS(826), 24, + ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, - aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, aux_sym_return_statement_token1, aux_sym_report_statement_token1, aux_sym_if_statement_token1, - aux_sym_if_statement_token2, aux_sym_check_statement_token1, aux_sym_select_statement_obsolete_token1, aux_sym_read_table_statement_token1, aux_sym_try_catch_statement_token1, - aux_sym_try_catch_statement_token2, - aux_sym_catch_statement_token1, aux_sym_write_statement_token1, aux_sym_call_function_token1, aux_sym_call_function_token2, @@ -23918,242 +22655,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [8761] = 3, + ACTIONS(544), 1, sym_name, - [9910] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - STATE(245), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1218), 9, - anon_sym_DOT, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - ACTIONS(1216), 19, - aux_sym__method_declaration_importing_token1, - aux_sym__method_declaration_exporting_token1, - aux_sym__method_declaration_changing_token1, - aux_sym__method_declaration_exceptions_token1, - aux_sym_complete_typing_token2, - aux_sym_loop_statement_token3, - aux_sym_loop_statement_token5, - aux_sym__logical_expression_token2, - aux_sym__logical_expression_token3, - aux_sym_comparison_expression_token1, - aux_sym_comparison_expression_token2, - anon_sym_STAR, - anon_sym_DIV, - anon_sym_MOD, - aux_sym_select_statement_obsolete_token3, - aux_sym_line_spec_token3, - aux_sym__read_table_result_token1, - aux_sym__explicit_parameter_list_token1, - sym_name, - [9950] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - STATE(246), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1222), 9, - anon_sym_DOT, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - ACTIONS(1220), 19, - aux_sym__method_declaration_importing_token1, - aux_sym__method_declaration_exporting_token1, - aux_sym__method_declaration_changing_token1, - aux_sym__method_declaration_exceptions_token1, - aux_sym_complete_typing_token2, - aux_sym_loop_statement_token3, - aux_sym_loop_statement_token5, - aux_sym__logical_expression_token2, - aux_sym__logical_expression_token3, - aux_sym_comparison_expression_token1, - aux_sym_comparison_expression_token2, - anon_sym_STAR, - anon_sym_DIV, - anon_sym_MOD, - aux_sym_select_statement_obsolete_token3, - aux_sym_line_spec_token3, - aux_sym__read_table_result_token1, - aux_sym__explicit_parameter_list_token1, - sym_name, - [9990] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - STATE(247), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1226), 9, - anon_sym_DOT, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - ACTIONS(1224), 19, - aux_sym__method_declaration_importing_token1, - aux_sym__method_declaration_exporting_token1, - aux_sym__method_declaration_changing_token1, - aux_sym__method_declaration_exceptions_token1, - aux_sym_complete_typing_token2, - aux_sym_loop_statement_token3, - aux_sym_loop_statement_token5, - aux_sym__logical_expression_token2, - aux_sym__logical_expression_token3, - aux_sym_comparison_expression_token1, - aux_sym_comparison_expression_token2, - anon_sym_STAR, - anon_sym_DIV, - anon_sym_MOD, - aux_sym_select_statement_obsolete_token3, - aux_sym_line_spec_token3, - aux_sym__read_table_result_token1, - aux_sym__explicit_parameter_list_token1, - sym_name, - [10030] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - STATE(248), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1230), 9, - anon_sym_DOT, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - ACTIONS(1228), 19, - aux_sym__method_declaration_importing_token1, - aux_sym__method_declaration_exporting_token1, - aux_sym__method_declaration_changing_token1, - aux_sym__method_declaration_exceptions_token1, - aux_sym_complete_typing_token2, - aux_sym_loop_statement_token3, - aux_sym_loop_statement_token5, - aux_sym__logical_expression_token2, - aux_sym__logical_expression_token3, - aux_sym_comparison_expression_token1, - aux_sym_comparison_expression_token2, - anon_sym_STAR, - anon_sym_DIV, - anon_sym_MOD, - aux_sym_select_statement_obsolete_token3, - aux_sym_line_spec_token3, - aux_sym__read_table_result_token1, - aux_sym__explicit_parameter_list_token1, - sym_name, - [10070] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - STATE(249), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(638), 9, - anon_sym_DOT, - anon_sym_RPAREN, - anon_sym_EQ, - anon_sym_LT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - ACTIONS(636), 19, - aux_sym__method_declaration_importing_token1, - aux_sym__method_declaration_exporting_token1, - aux_sym__method_declaration_changing_token1, - aux_sym__method_declaration_exceptions_token1, - aux_sym_complete_typing_token2, - aux_sym_loop_statement_token3, - aux_sym_loop_statement_token5, - aux_sym__logical_expression_token2, - aux_sym__logical_expression_token3, - aux_sym_comparison_expression_token1, - aux_sym_comparison_expression_token2, - anon_sym_STAR, - anon_sym_DIV, - anon_sym_MOD, - aux_sym_select_statement_obsolete_token3, - aux_sym_line_spec_token3, - aux_sym__read_table_result_token1, - aux_sym__explicit_parameter_list_token1, - sym_name, - [10110] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(627), 1, - anon_sym_DASH2, - ACTIONS(1232), 1, - anon_sym_EQ_GT, - STATE(98), 1, - aux_sym_structured_data_object_repeat1, - STATE(250), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(638), 6, - anon_sym_DOT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - ACTIONS(636), 18, - aux_sym__method_declaration_importing_token1, - aux_sym__method_declaration_exporting_token1, - aux_sym__method_declaration_changing_token1, - aux_sym__method_declaration_exceptions_token1, - aux_sym_complete_typing_token2, - aux_sym_loop_statement_token3, - aux_sym_loop_statement_token5, - aux_sym__logical_expression_token2, - aux_sym__logical_expression_token3, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_DIV, - anon_sym_MOD, - aux_sym_select_statement_obsolete_token3, - aux_sym_line_spec_token3, - aux_sym__read_table_result_token1, - aux_sym__explicit_parameter_list_token1, - sym_name, - [10155] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(251), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1002), 3, + ACTIONS(546), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(1000), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -24171,24 +22686,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [8795] = 3, + ACTIONS(684), 1, sym_name, - [10195] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(252), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(874), 3, + ACTIONS(686), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(872), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -24206,24 +22717,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [8829] = 3, + ACTIONS(708), 1, sym_name, - [10235] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(253), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1106), 3, + ACTIONS(710), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(1104), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -24241,24 +22748,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [8863] = 3, + ACTIONS(1210), 1, sym_name, - [10275] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(254), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(537), 3, + ACTIONS(1212), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(535), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -24276,24 +22779,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [8897] = 3, + ACTIONS(1206), 1, sym_name, - [10315] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(255), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(489), 3, + ACTIONS(1208), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(487), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -24311,24 +22810,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [8931] = 3, + ACTIONS(1202), 1, sym_name, - [10355] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(256), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(517), 3, + ACTIONS(1204), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(515), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -24346,24 +22841,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [8965] = 3, + ACTIONS(1198), 1, sym_name, - [10395] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(257), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(545), 3, + ACTIONS(1200), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(543), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -24381,24 +22872,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [8999] = 3, + ACTIONS(944), 1, sym_name, - [10435] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(258), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(469), 3, + ACTIONS(946), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(467), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -24416,24 +22903,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [9033] = 3, + ACTIONS(1194), 1, sym_name, - [10475] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(259), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(465), 3, + ACTIONS(1196), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(463), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -24451,24 +22934,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [9067] = 3, + ACTIONS(1190), 1, sym_name, - [10515] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(260), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(461), 3, + ACTIONS(1192), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(459), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -24486,24 +22965,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [9101] = 3, + ACTIONS(1184), 1, sym_name, - [10555] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(261), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1114), 3, + ACTIONS(1186), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(1112), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -24521,24 +22996,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [9135] = 3, + ACTIONS(700), 1, sym_name, - [10595] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(262), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(541), 3, + ACTIONS(702), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(539), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -24556,24 +23027,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [9169] = 3, + ACTIONS(704), 1, sym_name, - [10635] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(263), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1118), 3, + ACTIONS(706), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(1116), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -24591,24 +23058,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [9203] = 3, + ACTIONS(696), 1, sym_name, - [10675] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(264), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(457), 3, + ACTIONS(698), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(455), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -24626,24 +23089,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [9237] = 3, + ACTIONS(680), 1, sym_name, - [10715] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(265), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1130), 3, + ACTIONS(682), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(1128), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -24661,24 +23120,88 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [9271] = 7, + ACTIONS(3), 1, + sym_eol_comment, + ACTIONS(5), 1, + sym_bol_comment, + ACTIONS(648), 1, sym_name, - [10755] = 5, + ACTIONS(1222), 1, + anon_sym_STAR, + ACTIONS(1226), 1, + anon_sym_STAR_STAR, + ACTIONS(1224), 3, + anon_sym_SLASH, + anon_sym_DIV, + anon_sym_MOD, + ACTIONS(650), 19, + anon_sym_DOT, + aux_sym__method_declaration_importing_token1, + aux_sym__method_declaration_exporting_token1, + aux_sym__method_declaration_changing_token1, + anon_sym_RPAREN, + aux_sym__method_declaration_exceptions_token1, + anon_sym_COMMA, + aux_sym_complete_typing_token2, + aux_sym_loop_statement_token3, + aux_sym_loop_statement_token5, + aux_sym__logical_expression_token2, + aux_sym__logical_expression_token3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_RBRACK, + aux_sym_select_statement_obsolete_token3, + aux_sym_line_spec_token3, + aux_sym__read_table_result_token1, + aux_sym__explicit_parameter_list_token1, + [9313] = 5, + ACTIONS(3), 1, + sym_eol_comment, ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, + sym_bol_comment, + ACTIONS(1226), 1, + anon_sym_STAR_STAR, + ACTIONS(648), 2, anon_sym_STAR, - STATE(266), 2, + sym_name, + ACTIONS(650), 22, + anon_sym_DOT, + aux_sym__method_declaration_importing_token1, + aux_sym__method_declaration_exporting_token1, + aux_sym__method_declaration_changing_token1, + anon_sym_RPAREN, + aux_sym__method_declaration_exceptions_token1, + anon_sym_COMMA, + aux_sym_complete_typing_token2, + aux_sym_loop_statement_token3, + aux_sym_loop_statement_token5, + aux_sym__logical_expression_token2, + aux_sym__logical_expression_token3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_DIV, + anon_sym_MOD, + anon_sym_RBRACK, + aux_sym_select_statement_obsolete_token3, + aux_sym_line_spec_token3, + aux_sym__read_table_result_token1, + aux_sym__explicit_parameter_list_token1, + [9351] = 3, + ACTIONS(1172), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(485), 3, + ACTIONS(1174), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(483), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -24696,24 +23219,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [9385] = 3, + ACTIONS(844), 1, sym_name, - [10795] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(267), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1134), 3, + ACTIONS(846), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(1132), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -24731,24 +23250,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [9419] = 3, + ACTIONS(1168), 1, sym_name, - [10835] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(268), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1138), 3, + ACTIONS(1170), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(1136), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -24766,24 +23281,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [9453] = 3, + ACTIONS(692), 1, sym_name, - [10875] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(269), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1154), 3, + ACTIONS(694), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(1152), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -24801,24 +23312,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [9487] = 3, + ACTIONS(1164), 1, sym_name, - [10915] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(270), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(557), 3, + ACTIONS(1166), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(555), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -24836,24 +23343,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [9521] = 3, + ACTIONS(640), 1, sym_name, - [10955] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(271), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(942), 3, + ACTIONS(642), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(940), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -24871,24 +23374,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [9555] = 3, + ACTIONS(1160), 1, sym_name, - [10995] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(272), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(473), 3, + ACTIONS(1162), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(471), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -24906,24 +23405,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [9589] = 3, + ACTIONS(628), 1, sym_name, - [11035] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(273), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(678), 3, + ACTIONS(630), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(676), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -24941,24 +23436,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [9623] = 3, + ACTIONS(1156), 1, sym_name, - [11075] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(274), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(694), 3, + ACTIONS(1158), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(692), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -24976,24 +23467,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [9657] = 3, + ACTIONS(436), 1, sym_name, - [11115] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(275), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(718), 3, + ACTIONS(438), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(716), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -25011,24 +23498,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [9691] = 3, + ACTIONS(440), 1, sym_name, - [11155] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(276), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(766), 3, + ACTIONS(442), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(764), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -25046,24 +23529,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [9725] = 3, + ACTIONS(1152), 1, sym_name, - [11195] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(277), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(870), 3, + ACTIONS(1154), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(868), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -25081,24 +23560,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [9759] = 3, + ACTIONS(1218), 1, sym_name, - [11235] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(278), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(529), 3, + ACTIONS(1220), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(527), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -25116,24 +23591,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [9793] = 3, + ACTIONS(1148), 1, sym_name, - [11275] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(279), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1006), 3, + ACTIONS(1150), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(1004), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -25151,24 +23622,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [9827] = 3, + ACTIONS(1008), 1, sym_name, - [11315] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(280), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1110), 3, + ACTIONS(1010), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(1108), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -25186,24 +23653,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [9861] = 3, + ACTIONS(1140), 1, sym_name, - [11355] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(281), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1142), 3, + ACTIONS(1142), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(1140), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -25221,24 +23684,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [9895] = 3, + ACTIONS(444), 1, sym_name, - [11395] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(282), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1214), 3, + ACTIONS(446), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(1212), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -25256,24 +23715,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [9929] = 3, + ACTIONS(1132), 1, sym_name, - [11435] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(283), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(549), 3, + ACTIONS(1134), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(547), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -25291,24 +23746,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [9963] = 3, + ACTIONS(1128), 1, sym_name, - [11475] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(284), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1210), 3, + ACTIONS(1130), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(1208), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -25326,24 +23777,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [9997] = 3, + ACTIONS(1124), 1, sym_name, - [11515] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(285), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1206), 3, + ACTIONS(1126), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(1204), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -25361,24 +23808,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [10031] = 3, + ACTIONS(1120), 1, sym_name, - [11555] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(286), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1202), 3, + ACTIONS(1122), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(1200), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -25396,24 +23839,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [10065] = 3, + ACTIONS(1116), 1, sym_name, - [11595] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(287), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1198), 3, + ACTIONS(1118), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(1196), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -25431,24 +23870,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [10099] = 3, + ACTIONS(1112), 1, sym_name, - [11635] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(288), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1194), 3, + ACTIONS(1114), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(1192), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -25466,24 +23901,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [10133] = 3, + ACTIONS(1104), 1, sym_name, - [11675] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(289), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(561), 3, + ACTIONS(1106), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(559), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -25501,24 +23932,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [10167] = 3, + ACTIONS(1100), 1, sym_name, - [11715] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(290), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1190), 3, + ACTIONS(1102), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(1188), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -25536,24 +23963,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [10201] = 3, + ACTIONS(1096), 1, sym_name, - [11755] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(291), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1186), 3, + ACTIONS(1098), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(1184), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -25571,24 +23994,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [10235] = 3, + ACTIONS(572), 1, sym_name, - [11795] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(292), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(565), 3, + ACTIONS(574), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(563), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -25606,24 +24025,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [10269] = 3, + ACTIONS(568), 1, sym_name, - [11835] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(293), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1182), 3, + ACTIONS(570), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(1180), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -25641,24 +24056,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [10303] = 3, + ACTIONS(564), 1, sym_name, - [11875] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(294), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(662), 3, + ACTIONS(566), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(660), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -25676,24 +24087,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [10337] = 3, + ACTIONS(1092), 1, sym_name, - [11915] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(295), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1178), 3, + ACTIONS(1094), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(1176), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -25711,24 +24118,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [10371] = 3, + ACTIONS(1088), 1, sym_name, - [11955] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(296), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(998), 3, + ACTIONS(1090), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(996), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -25746,24 +24149,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [10405] = 3, + ACTIONS(448), 1, sym_name, - [11995] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(297), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1174), 3, + ACTIONS(450), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(1172), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -25781,24 +24180,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [10439] = 3, + ACTIONS(1084), 1, sym_name, - [12035] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(298), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1170), 3, + ACTIONS(1086), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(1168), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -25816,24 +24211,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [10473] = 3, + ACTIONS(1080), 1, sym_name, - [12075] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(299), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1166), 3, + ACTIONS(1082), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(1164), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -25851,24 +24242,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [10507] = 3, + ACTIONS(1076), 1, sym_name, - [12115] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(300), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1162), 3, + ACTIONS(1078), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(1160), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -25886,24 +24273,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [10541] = 3, + ACTIONS(1072), 1, sym_name, - [12155] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(301), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1158), 3, + ACTIONS(1074), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(1156), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -25921,24 +24304,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [10575] = 3, + ACTIONS(452), 1, sym_name, - [12195] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(302), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(842), 3, + ACTIONS(454), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(840), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -25956,24 +24335,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [10609] = 3, + ACTIONS(560), 1, sym_name, - [12235] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(303), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1150), 3, + ACTIONS(562), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(1148), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -25991,24 +24366,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [10643] = 3, + ACTIONS(1064), 1, sym_name, - [12275] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(304), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1146), 3, + ACTIONS(1066), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(1144), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -26026,24 +24397,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [10677] = 3, + ACTIONS(636), 1, sym_name, - [12315] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(305), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(666), 3, + ACTIONS(638), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(664), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -26061,24 +24428,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [10711] = 3, + ACTIONS(1060), 1, sym_name, - [12355] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(306), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1010), 3, + ACTIONS(1062), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(1008), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -26096,24 +24459,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [10745] = 3, + ACTIONS(1056), 1, sym_name, - [12395] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(307), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(994), 3, + ACTIONS(1058), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(992), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -26131,24 +24490,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [10779] = 3, + ACTIONS(472), 1, sym_name, - [12435] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(308), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1126), 3, + ACTIONS(474), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(1124), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -26166,24 +24521,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [10813] = 3, + ACTIONS(1052), 1, sym_name, - [12475] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(309), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1122), 3, + ACTIONS(1054), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(1120), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -26201,24 +24552,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [10847] = 3, + ACTIONS(1048), 1, sym_name, - [12515] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(310), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(569), 3, + ACTIONS(1050), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(567), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -26236,24 +24583,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [10881] = 3, + ACTIONS(428), 1, sym_name, - [12555] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(311), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(990), 3, + ACTIONS(430), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(988), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -26271,24 +24614,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [10915] = 3, + ACTIONS(1044), 1, sym_name, - [12595] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(312), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(878), 3, + ACTIONS(1046), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(876), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -26306,24 +24645,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [10949] = 3, + ACTIONS(1036), 1, sym_name, - [12635] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(313), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(986), 3, + ACTIONS(1038), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(984), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -26341,24 +24676,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [10983] = 3, + ACTIONS(456), 1, sym_name, - [12675] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(314), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(982), 3, + ACTIONS(458), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(980), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -26376,24 +24707,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [11017] = 3, + ACTIONS(1032), 1, sym_name, - [12715] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(315), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(978), 3, + ACTIONS(1034), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(976), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -26411,24 +24738,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [11051] = 3, + ACTIONS(460), 1, sym_name, - [12755] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(316), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(882), 3, + ACTIONS(462), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(880), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -26446,24 +24769,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [11085] = 3, + ACTIONS(1028), 1, sym_name, - [12795] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(317), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(974), 3, + ACTIONS(1030), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(972), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -26481,24 +24800,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [11119] = 3, + ACTIONS(1024), 1, sym_name, - [12835] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(318), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(762), 3, + ACTIONS(1026), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(760), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -26516,24 +24831,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [11153] = 3, + ACTIONS(1020), 1, sym_name, - [12875] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(319), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(497), 3, + ACTIONS(1022), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(495), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -26551,24 +24862,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [11187] = 3, + ACTIONS(400), 1, sym_name, - [12915] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(320), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(970), 3, + ACTIONS(402), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(968), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -26586,24 +24893,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [11221] = 3, + ACTIONS(1004), 1, sym_name, - [12955] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(321), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(886), 3, + ACTIONS(1006), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(884), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -26621,24 +24924,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [11255] = 3, + ACTIONS(1000), 1, sym_name, - [12995] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(322), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(758), 3, + ACTIONS(1002), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(756), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -26656,24 +24955,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [11289] = 3, + ACTIONS(616), 1, sym_name, - [13035] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(323), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(509), 3, + ACTIONS(618), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(507), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -26691,24 +24986,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [11323] = 3, + ACTIONS(432), 1, sym_name, - [13075] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(324), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(966), 3, + ACTIONS(434), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(964), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -26726,24 +25017,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [11357] = 3, + ACTIONS(464), 1, sym_name, - [13115] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(325), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(501), 3, + ACTIONS(466), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(499), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -26761,24 +25048,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [11391] = 3, + ACTIONS(996), 1, sym_name, - [13155] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(326), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(573), 3, + ACTIONS(998), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(571), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -26796,24 +25079,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [11425] = 3, + ACTIONS(424), 1, sym_name, - [13195] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(327), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(770), 3, + ACTIONS(426), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(768), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -26831,24 +25110,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [11459] = 3, + ACTIONS(468), 1, sym_name, - [13235] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(328), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1014), 3, + ACTIONS(470), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(1012), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -26866,24 +25141,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [11493] = 3, + ACTIONS(1214), 1, sym_name, - [13275] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(329), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(774), 3, + ACTIONS(1216), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(772), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -26901,24 +25172,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [11527] = 3, + ACTIONS(992), 1, sym_name, - [13315] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(330), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(778), 3, + ACTIONS(994), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(776), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -26936,24 +25203,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [11561] = 3, + ACTIONS(988), 1, sym_name, - [13355] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(331), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(802), 3, + ACTIONS(990), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(800), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -26971,24 +25234,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [11595] = 3, + ACTIONS(476), 1, sym_name, - [13395] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(332), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1098), 3, + ACTIONS(478), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(1096), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -27006,24 +25265,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [11629] = 3, + ACTIONS(984), 1, sym_name, - [13435] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(333), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(782), 3, + ACTIONS(986), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(780), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -27041,24 +25296,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [11663] = 3, + ACTIONS(480), 1, sym_name, - [13475] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(334), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(962), 3, + ACTIONS(482), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(960), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -27076,24 +25327,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [11697] = 3, + ACTIONS(484), 1, sym_name, - [13515] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(335), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(393), 3, + ACTIONS(486), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(391), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -27111,24 +25358,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [11731] = 3, + ACTIONS(980), 1, sym_name, - [13555] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(336), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(958), 3, + ACTIONS(982), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(956), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -27146,24 +25389,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [11765] = 3, + ACTIONS(620), 1, sym_name, - [13595] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(337), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(397), 3, + ACTIONS(622), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(395), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -27181,24 +25420,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [11799] = 3, + ACTIONS(976), 1, sym_name, - [13635] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(338), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(846), 3, + ACTIONS(978), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(844), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -27216,24 +25451,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [11833] = 3, + ACTIONS(712), 1, sym_name, - [13675] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(339), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(650), 3, + ACTIONS(714), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(648), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -27251,24 +25482,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [11867] = 3, + ACTIONS(972), 1, sym_name, - [13715] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(340), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(654), 3, + ACTIONS(974), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(652), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -27286,24 +25513,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [11901] = 3, + ACTIONS(492), 1, sym_name, - [13755] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(341), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(453), 3, + ACTIONS(494), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(451), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -27321,24 +25544,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [11935] = 3, + ACTIONS(716), 1, sym_name, - [13795] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(342), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(850), 3, + ACTIONS(718), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(848), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -27356,24 +25575,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [11969] = 3, + ACTIONS(968), 1, sym_name, - [13835] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(343), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(786), 3, + ACTIONS(970), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(784), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -27391,24 +25606,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [12003] = 3, + ACTIONS(720), 1, sym_name, - [13875] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(344), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(954), 3, + ACTIONS(722), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(952), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -27426,24 +25637,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [12037] = 3, + ACTIONS(420), 1, sym_name, - [13915] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(345), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(401), 3, + ACTIONS(422), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(399), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -27461,24 +25668,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [12071] = 3, + ACTIONS(724), 1, sym_name, - [13955] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(346), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(754), 3, + ACTIONS(726), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(752), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -27496,24 +25699,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [12105] = 3, + ACTIONS(416), 1, sym_name, - [13995] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(347), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(950), 3, + ACTIONS(418), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(948), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -27531,24 +25730,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [12139] = 3, + ACTIONS(488), 1, sym_name, - [14035] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(348), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(405), 3, + ACTIONS(490), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(403), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -27566,24 +25761,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [12173] = 3, + ACTIONS(412), 1, sym_name, - [14075] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(349), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(670), 3, + ACTIONS(414), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(668), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -27601,24 +25792,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [12207] = 3, + ACTIONS(728), 1, sym_name, - [14115] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(350), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(946), 3, + ACTIONS(730), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(944), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -27636,24 +25823,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [12241] = 3, + ACTIONS(964), 1, sym_name, - [14155] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(351), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(714), 3, + ACTIONS(966), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(712), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -27671,24 +25854,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [12275] = 3, + ACTIONS(732), 1, sym_name, - [14195] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(352), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(409), 3, + ACTIONS(734), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(407), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -27706,24 +25885,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [12309] = 3, + ACTIONS(736), 1, sym_name, - [14235] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(353), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(553), 3, + ACTIONS(738), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(551), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -27741,24 +25916,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [12343] = 3, + ACTIONS(740), 1, sym_name, - [14275] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(354), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(413), 3, + ACTIONS(742), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(411), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -27776,24 +25947,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [12377] = 3, + ACTIONS(744), 1, sym_name, - [14315] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(355), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(417), 3, + ACTIONS(746), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(415), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -27811,24 +25978,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [12411] = 3, + ACTIONS(748), 1, sym_name, - [14355] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(356), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1018), 3, + ACTIONS(750), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(1016), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -27846,24 +26009,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [12445] = 3, + ACTIONS(408), 1, sym_name, - [14395] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(357), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(710), 3, + ACTIONS(410), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(708), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -27881,24 +26040,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [12479] = 3, + ACTIONS(960), 1, sym_name, - [14435] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(358), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1022), 3, + ACTIONS(962), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(1020), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -27916,24 +26071,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [12513] = 3, + ACTIONS(956), 1, sym_name, - [14475] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(359), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(577), 3, + ACTIONS(958), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(575), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -27951,24 +26102,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [12547] = 3, + ACTIONS(584), 1, sym_name, - [14515] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(360), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(790), 3, + ACTIONS(586), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(788), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -27986,24 +26133,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [12581] = 3, + ACTIONS(952), 1, sym_name, - [14555] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(361), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(421), 3, + ACTIONS(954), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(419), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -28021,24 +26164,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [12615] = 3, + ACTIONS(632), 1, sym_name, - [14595] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(362), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(854), 3, + ACTIONS(634), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(852), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -28056,24 +26195,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [12649] = 3, + ACTIONS(1180), 1, sym_name, - [14635] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(363), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1026), 3, + ACTIONS(1182), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(1024), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -28091,24 +26226,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [12683] = 3, + ACTIONS(396), 1, sym_name, - [14675] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(364), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(617), 3, + ACTIONS(398), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(615), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -28126,24 +26257,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [12717] = 3, + ACTIONS(496), 1, sym_name, - [14715] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(365), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(706), 3, + ACTIONS(498), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(704), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -28161,24 +26288,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [12751] = 3, + ACTIONS(1176), 1, sym_name, - [14755] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(366), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1030), 3, + ACTIONS(1178), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(1028), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -28196,24 +26319,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [12785] = 3, + ACTIONS(948), 1, sym_name, - [14795] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(367), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(794), 3, + ACTIONS(950), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(792), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -28231,24 +26350,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [12819] = 3, + ACTIONS(1144), 1, sym_name, - [14835] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(368), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(750), 3, + ACTIONS(1146), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(748), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -28266,24 +26381,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [12853] = 3, + ACTIONS(644), 1, sym_name, - [14875] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(369), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(477), 3, + ACTIONS(646), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(475), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -28301,24 +26412,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [12887] = 3, + ACTIONS(660), 1, sym_name, - [14915] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(370), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1034), 3, + ACTIONS(662), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(1032), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -28336,24 +26443,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [12921] = 3, + ACTIONS(936), 1, sym_name, - [14955] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(371), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(646), 3, + ACTIONS(938), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(644), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -28371,24 +26474,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [12955] = 3, + ACTIONS(508), 1, sym_name, - [14995] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(372), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(938), 3, + ACTIONS(510), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(936), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -28406,24 +26505,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [12989] = 3, + ACTIONS(1136), 1, sym_name, - [15035] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(373), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(798), 3, + ACTIONS(1138), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(796), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -28441,24 +26536,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [13023] = 3, + ACTIONS(580), 1, sym_name, - [15075] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(374), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(481), 3, + ACTIONS(582), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(479), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -28476,24 +26567,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [13057] = 3, + ACTIONS(752), 1, sym_name, - [15115] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(375), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(858), 3, + ACTIONS(754), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(856), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -28511,24 +26598,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [13091] = 3, + ACTIONS(588), 1, sym_name, - [15155] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(376), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(862), 3, + ACTIONS(590), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(860), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -28546,24 +26629,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [13125] = 3, + ACTIONS(932), 1, sym_name, - [15195] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(377), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1094), 3, + ACTIONS(934), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(1092), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -28581,24 +26660,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [13159] = 3, + ACTIONS(656), 1, sym_name, - [15235] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(378), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(642), 3, + ACTIONS(658), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(640), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -28616,24 +26691,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [13193] = 3, + ACTIONS(500), 1, sym_name, - [15275] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(379), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(934), 3, + ACTIONS(502), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(932), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -28651,24 +26722,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [13227] = 3, + ACTIONS(756), 1, sym_name, - [15315] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(380), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1038), 3, + ACTIONS(758), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(1036), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -28686,24 +26753,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [13261] = 3, + ACTIONS(760), 1, sym_name, - [15355] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(381), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(525), 3, + ACTIONS(762), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(523), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -28721,24 +26784,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [13295] = 3, + ACTIONS(404), 1, sym_name, - [15395] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(382), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(521), 3, + ACTIONS(406), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(519), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -28756,24 +26815,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [13329] = 3, + ACTIONS(928), 1, sym_name, - [15435] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(383), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(674), 3, + ACTIONS(930), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(672), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -28791,24 +26846,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [13363] = 3, + ACTIONS(924), 1, sym_name, - [15475] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(384), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(746), 3, + ACTIONS(926), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(744), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -28826,24 +26877,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [13397] = 3, + ACTIONS(764), 1, sym_name, - [15515] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(385), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(742), 3, + ACTIONS(766), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(740), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -28861,24 +26908,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [13431] = 3, + ACTIONS(920), 1, sym_name, - [15555] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(386), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(682), 3, + ACTIONS(922), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(680), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -28896,24 +26939,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [13465] = 3, + ACTIONS(916), 1, sym_name, - [15595] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(387), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1090), 3, + ACTIONS(918), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(1088), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -28931,24 +26970,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [13499] = 3, + ACTIONS(912), 1, sym_name, - [15635] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(388), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(686), 3, + ACTIONS(914), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(684), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -28966,24 +27001,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [13533] = 3, + ACTIONS(908), 1, sym_name, - [15675] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(389), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(930), 3, + ACTIONS(910), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(928), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -29001,24 +27032,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [13567] = 3, + ACTIONS(504), 1, sym_name, - [15715] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(390), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1086), 3, + ACTIONS(506), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(1084), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -29036,24 +27063,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [13601] = 3, + ACTIONS(512), 1, sym_name, - [15755] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(391), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(926), 3, + ACTIONS(514), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(924), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -29071,24 +27094,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [13635] = 3, + ACTIONS(900), 1, sym_name, - [15795] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(392), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(425), 3, + ACTIONS(902), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(423), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -29106,24 +27125,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [13669] = 3, + ACTIONS(768), 1, sym_name, - [15835] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(393), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(690), 3, + ACTIONS(770), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(688), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -29141,24 +27156,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [13703] = 3, + ACTIONS(772), 1, sym_name, - [15875] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(394), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(585), 3, + ACTIONS(774), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(583), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -29176,24 +27187,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [13737] = 3, + ACTIONS(540), 1, sym_name, - [15915] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(395), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(922), 3, + ACTIONS(542), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(920), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -29211,24 +27218,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [13771] = 3, + ACTIONS(888), 1, sym_name, - [15955] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(396), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1042), 3, + ACTIONS(890), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(1040), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -29246,24 +27249,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [13805] = 3, + ACTIONS(596), 1, sym_name, - [15995] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(397), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1046), 3, + ACTIONS(598), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(1044), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -29281,24 +27280,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [13839] = 3, + ACTIONS(776), 1, sym_name, - [16035] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(398), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1050), 3, + ACTIONS(778), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(1048), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -29316,24 +27311,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [13873] = 3, + ACTIONS(612), 1, sym_name, - [16075] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(399), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(589), 3, + ACTIONS(614), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(587), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -29351,24 +27342,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [13907] = 3, + ACTIONS(552), 1, sym_name, - [16115] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(400), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(593), 3, + ACTIONS(554), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(591), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -29386,24 +27373,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [13941] = 3, + ACTIONS(904), 1, sym_name, - [16155] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(401), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(597), 3, + ACTIONS(906), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(595), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -29421,24 +27404,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [13975] = 3, + ACTIONS(780), 1, sym_name, - [16195] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(402), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(838), 3, + ACTIONS(782), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(836), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -29456,24 +27435,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [14009] = 3, + ACTIONS(676), 1, sym_name, - [16235] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(403), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(702), 3, + ACTIONS(678), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(700), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -29491,24 +27466,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [14043] = 3, + ACTIONS(784), 1, sym_name, - [16275] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(404), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1054), 3, + ACTIONS(786), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(1052), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -29526,24 +27497,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [14077] = 3, + ACTIONS(788), 1, sym_name, - [16315] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(405), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1058), 3, + ACTIONS(790), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(1056), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -29561,24 +27528,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [14111] = 3, + ACTIONS(672), 1, sym_name, - [16355] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(406), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(834), 3, + ACTIONS(674), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(832), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -29596,24 +27559,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [14145] = 3, + ACTIONS(792), 1, sym_name, - [16395] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(407), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(830), 3, + ACTIONS(794), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(828), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -29631,24 +27590,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [14179] = 3, + ACTIONS(796), 1, sym_name, - [16435] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(408), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(918), 3, + ACTIONS(798), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(916), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -29666,24 +27621,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [14213] = 3, + ACTIONS(668), 1, sym_name, - [16475] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(409), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(914), 3, + ACTIONS(670), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(912), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -29701,24 +27652,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [14247] = 3, + ACTIONS(664), 1, sym_name, - [16515] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(410), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(866), 3, + ACTIONS(666), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(864), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -29736,24 +27683,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [14281] = 3, + ACTIONS(600), 1, sym_name, - [16555] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(411), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1082), 3, + ACTIONS(602), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(1080), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -29771,24 +27714,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [14315] = 3, + ACTIONS(896), 1, sym_name, - [16595] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(412), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1062), 3, + ACTIONS(898), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(1060), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -29806,24 +27745,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [14349] = 3, + ACTIONS(1012), 1, sym_name, - [16635] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(413), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(722), 3, + ACTIONS(1014), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(720), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -29841,24 +27776,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [14383] = 3, + ACTIONS(940), 1, sym_name, - [16675] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(414), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(910), 3, + ACTIONS(942), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(908), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -29876,24 +27807,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [14417] = 3, + ACTIONS(1016), 1, sym_name, - [16715] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(415), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(601), 3, + ACTIONS(1018), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(599), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -29911,24 +27838,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [14451] = 3, + ACTIONS(1040), 1, sym_name, - [16755] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(416), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(906), 3, + ACTIONS(1042), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(904), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -29946,24 +27869,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [14485] = 3, + ACTIONS(516), 1, sym_name, - [16795] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(417), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(505), 3, + ACTIONS(518), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(503), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -29981,24 +27900,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [14519] = 3, + ACTIONS(860), 1, sym_name, - [16835] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(418), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(493), 3, + ACTIONS(862), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(491), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -30016,24 +27931,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [14553] = 3, + ACTIONS(892), 1, sym_name, - [16875] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(419), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(826), 3, + ACTIONS(894), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(824), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -30051,24 +27962,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [14587] = 3, + ACTIONS(608), 1, sym_name, - [16915] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(420), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(581), 3, + ACTIONS(610), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(579), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -30086,24 +27993,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [14621] = 3, + ACTIONS(884), 1, sym_name, - [16955] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(421), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(738), 3, + ACTIONS(886), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(736), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -30121,24 +28024,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [14655] = 3, + ACTIONS(880), 1, sym_name, - [16995] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(422), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(902), 3, + ACTIONS(882), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(900), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -30156,24 +28055,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [14689] = 3, + ACTIONS(520), 1, sym_name, - [17035] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(423), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(734), 3, + ACTIONS(522), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(732), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -30191,24 +28086,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [14723] = 3, + ACTIONS(876), 1, sym_name, - [17075] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(424), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(898), 3, + ACTIONS(878), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(896), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -30226,24 +28117,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [14757] = 3, + ACTIONS(872), 1, sym_name, - [17115] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(425), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(894), 3, + ACTIONS(874), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(892), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -30261,24 +28148,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [14791] = 3, + ACTIONS(868), 1, sym_name, - [17155] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(426), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(726), 3, + ACTIONS(870), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(724), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -30296,24 +28179,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [14825] = 3, + ACTIONS(592), 1, sym_name, - [17195] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(427), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1078), 3, + ACTIONS(594), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(1076), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -30331,24 +28210,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [14859] = 3, + ACTIONS(1068), 1, sym_name, - [17235] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(428), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(890), 3, + ACTIONS(1070), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(888), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -30366,24 +28241,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [14893] = 3, + ACTIONS(624), 1, sym_name, - [17275] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(429), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(605), 3, + ACTIONS(626), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(603), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -30401,24 +28272,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [14927] = 3, + ACTIONS(864), 1, sym_name, - [17315] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(430), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(533), 3, + ACTIONS(866), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(531), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -30436,24 +28303,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [14961] = 3, + ACTIONS(800), 1, sym_name, - [17355] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(431), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(613), 3, + ACTIONS(802), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(611), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -30471,24 +28334,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [14995] = 3, + ACTIONS(524), 1, sym_name, - [17395] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(432), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(621), 3, + ACTIONS(526), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(619), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -30506,24 +28365,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [15029] = 3, + ACTIONS(804), 1, sym_name, - [17435] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(433), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1074), 3, + ACTIONS(806), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(1072), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -30541,24 +28396,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [15063] = 3, + ACTIONS(808), 1, sym_name, - [17475] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(434), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(389), 3, + ACTIONS(810), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(387), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -30576,24 +28427,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [15097] = 3, + ACTIONS(812), 1, sym_name, - [17515] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(435), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(449), 3, + ACTIONS(814), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(447), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -30611,24 +28458,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [15131] = 3, + ACTIONS(528), 1, sym_name, - [17555] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(436), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(445), 3, + ACTIONS(530), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(443), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -30646,24 +28489,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [15165] = 3, + ACTIONS(532), 1, sym_name, - [17595] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(437), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(429), 3, + ACTIONS(534), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(427), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -30681,24 +28520,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [15199] = 3, + ACTIONS(816), 1, sym_name, - [17635] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(438), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(822), 3, + ACTIONS(818), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(820), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -30716,24 +28551,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [15233] = 3, + ACTIONS(604), 1, sym_name, - [17675] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(439), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(818), 3, + ACTIONS(606), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(816), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -30751,24 +28582,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [15267] = 3, + ACTIONS(820), 1, sym_name, - [17715] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(440), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1102), 3, + ACTIONS(822), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(1100), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -30786,24 +28613,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [15301] = 3, + ACTIONS(828), 1, sym_name, - [17755] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(441), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(730), 3, + ACTIONS(830), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(728), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -30821,24 +28644,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [15335] = 3, + ACTIONS(536), 1, sym_name, - [17795] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(442), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(814), 3, + ACTIONS(538), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(812), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -30856,24 +28675,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [15369] = 3, + ACTIONS(1108), 1, sym_name, - [17835] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(443), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(433), 3, + ACTIONS(1110), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(431), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -30891,24 +28706,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [15403] = 3, + ACTIONS(832), 1, sym_name, - [17875] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(444), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(810), 3, + ACTIONS(834), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(808), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -30926,24 +28737,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [15437] = 3, + ACTIONS(688), 1, sym_name, - [17915] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(445), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(698), 3, + ACTIONS(690), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(696), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -30961,24 +28768,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [15471] = 3, + ACTIONS(836), 1, sym_name, - [17955] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(446), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(806), 3, + ACTIONS(838), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(804), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -30996,24 +28799,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [15505] = 3, + ACTIONS(548), 1, sym_name, - [17995] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(447), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(441), 3, + ACTIONS(550), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(439), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -31031,24 +28830,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [15539] = 3, + ACTIONS(840), 1, sym_name, - [18035] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(448), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(609), 3, + ACTIONS(842), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(607), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -31066,59 +28861,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [15573] = 3, + ACTIONS(856), 1, sym_name, - [18075] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(449), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1070), 3, + ACTIONS(858), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(1068), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, - aux_sym_loop_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_continue_statement_token1, - aux_sym_return_statement_token1, - aux_sym_report_statement_token1, - aux_sym_if_statement_token1, - aux_sym_check_statement_token1, - aux_sym_select_statement_obsolete_token1, - aux_sym_read_table_statement_token1, - aux_sym_try_catch_statement_token1, - aux_sym_write_statement_token1, - aux_sym_call_function_token1, - aux_sym_call_function_token2, - aux_sym_raise_exception_statement_token1, - aux_sym_clear_statement_token1, - aux_sym_append_statement_token1, - aux_sym_include_statement_token1, - sym_name, - [18115] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(450), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1066), 3, - ts_builtin_sym_end, aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(1064), 22, - aux_sym_class_declaration_token1, - aux_sym__create_addition_token1, - aux_sym_interface_declaration_token1, - aux_sym_variable_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -31136,24 +28892,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [15607] = 3, + ACTIONS(852), 1, sym_name, - [18155] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(451), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(513), 3, + ACTIONS(854), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(511), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -31171,24 +28923,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [15641] = 3, + ACTIONS(576), 1, sym_name, - [18195] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(452), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(385), 3, + ACTIONS(578), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(383), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -31206,24 +28954,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [15675] = 3, + ACTIONS(848), 1, sym_name, - [18235] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(453), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(437), 3, + ACTIONS(850), 24, ts_builtin_sym_end, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - ACTIONS(435), 22, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, @@ -31241,945 +28985,718 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, + sym_field_symbol_name, + [15709] = 11, + ACTIONS(1228), 1, sym_name, - [18275] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(1236), 1, - anon_sym_SLASH, - ACTIONS(1238), 1, - anon_sym_STAR_STAR, - STATE(454), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1234), 3, - anon_sym_STAR, - anon_sym_DIV, - anon_sym_MOD, - ACTIONS(1218), 5, - anon_sym_DOT, + ACTIONS(1232), 1, anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - ACTIONS(1216), 14, - aux_sym__method_declaration_importing_token1, - aux_sym__method_declaration_exporting_token1, - aux_sym__method_declaration_changing_token1, - aux_sym__method_declaration_exceptions_token1, - aux_sym_complete_typing_token2, - aux_sym_loop_statement_token3, - aux_sym_loop_statement_token5, - aux_sym__logical_expression_token2, - aux_sym__logical_expression_token3, - aux_sym_select_statement_obsolete_token3, - aux_sym_line_spec_token3, - aux_sym__read_table_result_token1, + ACTIONS(1234), 1, aux_sym__explicit_parameter_list_token1, - sym_name, - [18317] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1242), 2, - aux_sym_field_symbol_declaration_token1, - sym_field_symbol_name, - STATE(455), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1240), 21, - aux_sym__create_addition_token1, - aux_sym_method_implementation_token2, - aux_sym_variable_declaration_token1, - aux_sym_loop_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_continue_statement_token1, - aux_sym_return_statement_token1, - aux_sym_report_statement_token1, - aux_sym_if_statement_token1, - aux_sym_check_statement_token1, - aux_sym_select_statement_obsolete_token1, - aux_sym_read_table_statement_token1, - aux_sym_try_catch_statement_token1, - aux_sym_write_statement_token1, - aux_sym_call_function_token1, - aux_sym_raise_exception_statement_token1, - aux_sym_clear_statement_token1, - aux_sym_append_statement_token1, - aux_sym_include_statement_token1, - aux_sym_function_implementation_token1, - sym_name, - [18355] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, ACTIONS(1238), 1, - anon_sym_STAR_STAR, - STATE(456), 2, + sym_field_symbol_name, + STATE(991), 1, + aux_sym__explicit_parameter_list_repeat1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1218), 6, - anon_sym_DOT, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_RBRACK, - ACTIONS(1216), 17, + ACTIONS(1236), 2, + sym_numeric_literal, + sym_character_literal, + STATE(562), 2, + sym_parameter_binding, + aux_sym_parameter_list_repeat1, + STATE(2673), 2, + sym_parameter_list, + sym__explicit_parameter_list, + ACTIONS(1230), 3, aux_sym__method_declaration_importing_token1, aux_sym__method_declaration_exporting_token1, aux_sym__method_declaration_changing_token1, - aux_sym__method_declaration_exceptions_token1, - aux_sym_complete_typing_token2, - aux_sym_loop_statement_token3, - aux_sym_loop_statement_token5, - aux_sym__logical_expression_token2, - aux_sym__logical_expression_token3, - anon_sym_STAR, - anon_sym_DIV, - anon_sym_MOD, - aux_sym_select_statement_obsolete_token3, - aux_sym_line_spec_token3, - aux_sym__read_table_result_token1, - aux_sym__explicit_parameter_list_token1, - sym_name, - [18393] = 17, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1244), 1, - sym_name, - ACTIONS(1248), 1, - anon_sym_RPAREN, - ACTIONS(1250), 1, - aux_sym__explicit_parameter_list_token1, - ACTIONS(1254), 1, - sym_field_symbol_name, - STATE(247), 1, - sym_arithmetic_expression, - STATE(557), 1, - aux_sym_parameter_list_repeat1, - STATE(629), 1, - sym_parameter_binding, - STATE(764), 1, + STATE(619), 6, sym__general_expression_position, - STATE(797), 1, - aux_sym__explicit_parameter_list_repeat1, - ACTIONS(1252), 2, - sym_numeric_literal, - sym_character_literal, - STATE(248), 2, sym__calculation_expression, + sym_arithmetic_expression, sym__data_object, - STATE(249), 2, sym_structured_data_object, sym_attribute_access_static, - STATE(457), 2, - sym_eol_comment, - sym_bol_comment, - STATE(2666), 2, - sym_parameter_list, - sym__explicit_parameter_list, - ACTIONS(1246), 3, - aux_sym__method_declaration_importing_token1, - aux_sym__method_declaration_exporting_token1, - aux_sym__method_declaration_changing_token1, - [18452] = 17, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1244), 1, + [15754] = 11, + ACTIONS(1228), 1, sym_name, - ACTIONS(1250), 1, + ACTIONS(1234), 1, aux_sym__explicit_parameter_list_token1, - ACTIONS(1254), 1, + ACTIONS(1238), 1, sym_field_symbol_name, - ACTIONS(1256), 1, + ACTIONS(1240), 1, anon_sym_RPAREN, - STATE(247), 1, - sym_arithmetic_expression, - STATE(557), 1, - aux_sym_parameter_list_repeat1, - STATE(629), 1, - sym_parameter_binding, - STATE(656), 1, - sym__general_expression_position, - STATE(797), 1, + STATE(991), 1, aux_sym__explicit_parameter_list_repeat1, - ACTIONS(1252), 2, - sym_numeric_literal, - sym_character_literal, - STATE(248), 2, - sym__calculation_expression, - sym__data_object, - STATE(249), 2, - sym_structured_data_object, - sym_attribute_access_static, - STATE(458), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - STATE(2325), 2, + ACTIONS(1242), 2, + sym_numeric_literal, + sym_character_literal, + STATE(562), 2, + sym_parameter_binding, + aux_sym_parameter_list_repeat1, + STATE(2671), 2, sym_parameter_list, sym__explicit_parameter_list, - ACTIONS(1246), 3, + ACTIONS(1230), 3, aux_sym__method_declaration_importing_token1, aux_sym__method_declaration_exporting_token1, aux_sym__method_declaration_changing_token1, - [18511] = 17, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1244), 1, - sym_name, - ACTIONS(1250), 1, - aux_sym__explicit_parameter_list_token1, - ACTIONS(1254), 1, - sym_field_symbol_name, - ACTIONS(1258), 1, - anon_sym_RPAREN, - STATE(247), 1, - sym_arithmetic_expression, - STATE(557), 1, - aux_sym_parameter_list_repeat1, - STATE(629), 1, - sym_parameter_binding, - STATE(703), 1, + STATE(618), 6, sym__general_expression_position, - STATE(797), 1, - aux_sym__explicit_parameter_list_repeat1, - ACTIONS(1252), 2, - sym_numeric_literal, - sym_character_literal, - STATE(248), 2, sym__calculation_expression, + sym_arithmetic_expression, sym__data_object, - STATE(249), 2, sym_structured_data_object, sym_attribute_access_static, - STATE(459), 2, + [15799] = 11, + ACTIONS(1228), 1, + sym_name, + ACTIONS(1234), 1, + aux_sym__explicit_parameter_list_token1, + ACTIONS(1238), 1, + sym_field_symbol_name, + ACTIONS(1244), 1, + anon_sym_RPAREN, + STATE(991), 1, + aux_sym__explicit_parameter_list_repeat1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - STATE(2661), 2, + ACTIONS(1246), 2, + sym_numeric_literal, + sym_character_literal, + STATE(562), 2, + sym_parameter_binding, + aux_sym_parameter_list_repeat1, + STATE(2379), 2, sym_parameter_list, sym__explicit_parameter_list, - ACTIONS(1246), 3, + ACTIONS(1230), 3, aux_sym__method_declaration_importing_token1, aux_sym__method_declaration_exporting_token1, aux_sym__method_declaration_changing_token1, - [18570] = 17, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1244), 1, - sym_name, - ACTIONS(1250), 1, - aux_sym__explicit_parameter_list_token1, - ACTIONS(1254), 1, - sym_field_symbol_name, - ACTIONS(1260), 1, - anon_sym_RPAREN, - STATE(247), 1, - sym_arithmetic_expression, - STATE(557), 1, - aux_sym_parameter_list_repeat1, - STATE(629), 1, - sym_parameter_binding, - STATE(655), 1, + STATE(621), 6, sym__general_expression_position, - STATE(797), 1, - aux_sym__explicit_parameter_list_repeat1, - ACTIONS(1252), 2, - sym_numeric_literal, - sym_character_literal, - STATE(248), 2, sym__calculation_expression, + sym_arithmetic_expression, sym__data_object, - STATE(249), 2, sym_structured_data_object, sym_attribute_access_static, - STATE(460), 2, + [15844] = 11, + ACTIONS(1228), 1, + sym_name, + ACTIONS(1234), 1, + aux_sym__explicit_parameter_list_token1, + ACTIONS(1238), 1, + sym_field_symbol_name, + ACTIONS(1248), 1, + anon_sym_RPAREN, + STATE(991), 1, + aux_sym__explicit_parameter_list_repeat1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - STATE(2323), 2, + ACTIONS(1250), 2, + sym_numeric_literal, + sym_character_literal, + STATE(562), 2, + sym_parameter_binding, + aux_sym_parameter_list_repeat1, + STATE(2648), 2, sym_parameter_list, sym__explicit_parameter_list, - ACTIONS(1246), 3, + ACTIONS(1230), 3, aux_sym__method_declaration_importing_token1, aux_sym__method_declaration_exporting_token1, aux_sym__method_declaration_changing_token1, - [18629] = 17, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1244), 1, - sym_name, - ACTIONS(1250), 1, - aux_sym__explicit_parameter_list_token1, - ACTIONS(1254), 1, - sym_field_symbol_name, - ACTIONS(1262), 1, - anon_sym_RPAREN, - STATE(247), 1, - sym_arithmetic_expression, - STATE(557), 1, - aux_sym_parameter_list_repeat1, - STATE(629), 1, - sym_parameter_binding, - STATE(775), 1, + STATE(611), 6, sym__general_expression_position, - STATE(797), 1, - aux_sym__explicit_parameter_list_repeat1, - ACTIONS(1252), 2, - sym_numeric_literal, - sym_character_literal, - STATE(248), 2, sym__calculation_expression, + sym_arithmetic_expression, sym__data_object, - STATE(249), 2, sym_structured_data_object, sym_attribute_access_static, - STATE(461), 2, + [15889] = 11, + ACTIONS(1228), 1, + sym_name, + ACTIONS(1234), 1, + aux_sym__explicit_parameter_list_token1, + ACTIONS(1238), 1, + sym_field_symbol_name, + ACTIONS(1252), 1, + anon_sym_RPAREN, + STATE(991), 1, + aux_sym__explicit_parameter_list_repeat1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - STATE(2686), 2, + ACTIONS(1254), 2, + sym_numeric_literal, + sym_character_literal, + STATE(562), 2, + sym_parameter_binding, + aux_sym_parameter_list_repeat1, + STATE(2790), 2, sym_parameter_list, sym__explicit_parameter_list, - ACTIONS(1246), 3, + ACTIONS(1230), 3, aux_sym__method_declaration_importing_token1, aux_sym__method_declaration_exporting_token1, aux_sym__method_declaration_changing_token1, - [18688] = 17, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1244), 1, - sym_name, - ACTIONS(1250), 1, - aux_sym__explicit_parameter_list_token1, - ACTIONS(1254), 1, - sym_field_symbol_name, - ACTIONS(1264), 1, - anon_sym_RPAREN, - STATE(247), 1, - sym_arithmetic_expression, - STATE(557), 1, - aux_sym_parameter_list_repeat1, - STATE(629), 1, - sym_parameter_binding, - STATE(774), 1, + STATE(623), 6, sym__general_expression_position, - STATE(797), 1, - aux_sym__explicit_parameter_list_repeat1, - ACTIONS(1252), 2, - sym_numeric_literal, - sym_character_literal, - STATE(248), 2, sym__calculation_expression, + sym_arithmetic_expression, sym__data_object, - STATE(249), 2, sym_structured_data_object, sym_attribute_access_static, - STATE(462), 2, + [15934] = 11, + ACTIONS(1228), 1, + sym_name, + ACTIONS(1234), 1, + aux_sym__explicit_parameter_list_token1, + ACTIONS(1238), 1, + sym_field_symbol_name, + ACTIONS(1256), 1, + anon_sym_RPAREN, + STATE(991), 1, + aux_sym__explicit_parameter_list_repeat1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - STATE(2684), 2, + ACTIONS(1258), 2, + sym_numeric_literal, + sym_character_literal, + STATE(562), 2, + sym_parameter_binding, + aux_sym_parameter_list_repeat1, + STATE(2377), 2, sym_parameter_list, sym__explicit_parameter_list, - ACTIONS(1246), 3, + ACTIONS(1230), 3, aux_sym__method_declaration_importing_token1, aux_sym__method_declaration_exporting_token1, aux_sym__method_declaration_changing_token1, - [18747] = 19, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(636), 1, + STATE(622), 6, + sym__general_expression_position, + sym__calculation_expression, + sym_arithmetic_expression, + sym__data_object, + sym_structured_data_object, + sym_attribute_access_static, + [15979] = 14, + ACTIONS(379), 1, anon_sym_EQ, - ACTIONS(1266), 1, + ACTIONS(1260), 1, sym_name, - ACTIONS(1268), 1, + ACTIONS(1262), 1, anon_sym_DOT, - ACTIONS(1270), 1, + ACTIONS(1264), 1, anon_sym_LBRACK, - ACTIONS(1272), 1, + ACTIONS(1266), 1, anon_sym_DASH2, - ACTIONS(1274), 1, + ACTIONS(1268), 1, anon_sym_EQ_GT, - ACTIONS(1276), 1, - anon_sym_LPAREN3, - ACTIONS(1278), 1, + ACTIONS(1270), 1, + anon_sym_LPAREN2, + ACTIONS(1272), 1, anon_sym_DASH_GT, - ACTIONS(1282), 1, + ACTIONS(1276), 1, sym_field_symbol_name, - STATE(527), 1, + STATE(515), 1, aux_sym_macro_include_repeat1, - STATE(532), 1, - sym_arithmetic_expression, - STATE(535), 1, - sym__general_expression_position, - STATE(627), 1, + STATE(702), 1, aux_sym_structured_data_object_repeat1, - ACTIONS(1280), 2, - sym_numeric_literal, - sym_character_literal, - STATE(463), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - STATE(519), 2, - sym_structured_data_object, - sym_attribute_access_static, - STATE(533), 2, + ACTIONS(1274), 2, + sym_numeric_literal, + sym_character_literal, + STATE(516), 6, + sym__general_expression_position, sym__calculation_expression, + sym_arithmetic_expression, sym__data_object, - [18809] = 19, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(636), 1, + sym_structured_data_object, + sym_attribute_access_static, + [16029] = 14, + ACTIONS(379), 1, anon_sym_EQ, - ACTIONS(1266), 1, + ACTIONS(1260), 1, sym_name, - ACTIONS(1270), 1, + ACTIONS(1264), 1, anon_sym_LBRACK, - ACTIONS(1272), 1, + ACTIONS(1266), 1, anon_sym_DASH2, - ACTIONS(1282), 1, + ACTIONS(1276), 1, sym_field_symbol_name, - ACTIONS(1284), 1, + ACTIONS(1278), 1, anon_sym_DOT, - ACTIONS(1286), 1, + ACTIONS(1280), 1, anon_sym_EQ_GT, - ACTIONS(1288), 1, - anon_sym_LPAREN3, - ACTIONS(1290), 1, + ACTIONS(1282), 1, + anon_sym_LPAREN2, + ACTIONS(1284), 1, anon_sym_DASH_GT, - STATE(511), 1, + STATE(500), 1, aux_sym_macro_include_repeat1, - STATE(532), 1, - sym_arithmetic_expression, - STATE(535), 1, - sym__general_expression_position, - STATE(627), 1, + STATE(702), 1, aux_sym_structured_data_object_repeat1, - ACTIONS(1280), 2, - sym_numeric_literal, - sym_character_literal, - STATE(464), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - STATE(519), 2, - sym_structured_data_object, - sym_attribute_access_static, - STATE(533), 2, - sym__calculation_expression, - sym__data_object, - [18871] = 17, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1254), 1, - sym_field_symbol_name, - ACTIONS(1292), 1, - sym_name, - ACTIONS(1294), 1, - aux_sym__logical_expression_token1, - ACTIONS(1296), 1, - anon_sym_BANG, - STATE(247), 1, - sym_arithmetic_expression, - STATE(559), 1, - sym__general_expression_position, - STATE(1708), 1, - sym__escaped_operand, - STATE(1716), 1, - sym_comparison_expression, - STATE(1821), 1, - sym__logical_expression, - STATE(2342), 1, - sym__sql_condition, - STATE(2880), 1, - sym__operand, - ACTIONS(1252), 2, + ACTIONS(1274), 2, sym_numeric_literal, sym_character_literal, - STATE(248), 2, + STATE(516), 6, + sym__general_expression_position, sym__calculation_expression, + sym_arithmetic_expression, sym__data_object, - STATE(249), 2, sym_structured_data_object, sym_attribute_access_static, - STATE(465), 2, - sym_eol_comment, - sym_bol_comment, - [18927] = 16, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1254), 1, + [16079] = 10, + ACTIONS(1238), 1, sym_field_symbol_name, - ACTIONS(1292), 1, + ACTIONS(1286), 1, sym_name, - ACTIONS(1294), 1, + ACTIONS(1288), 1, aux_sym__logical_expression_token1, - ACTIONS(1296), 1, + ACTIONS(1290), 1, anon_sym_BANG, - STATE(247), 1, - sym_arithmetic_expression, - STATE(559), 1, - sym__general_expression_position, - STATE(1619), 1, + STATE(2235), 1, + sym__sql_condition, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(1292), 2, + sym_numeric_literal, + sym_character_literal, + STATE(1806), 2, sym__logical_expression, - STATE(1708), 1, - sym__escaped_operand, - STATE(1716), 1, sym_comparison_expression, - STATE(2880), 1, + STATE(2971), 2, sym__operand, - ACTIONS(1252), 2, - sym_numeric_literal, - sym_character_literal, - STATE(248), 2, + sym__escaped_operand, + STATE(524), 6, + sym__general_expression_position, sym__calculation_expression, + sym_arithmetic_expression, sym__data_object, - STATE(249), 2, sym_structured_data_object, sym_attribute_access_static, - STATE(466), 2, + [16119] = 7, + ACTIONS(1296), 1, + aux_sym_method_declaration_class_token1, + ACTIONS(1298), 1, + aux_sym_class_constructor_declaration_token1, + ACTIONS(1300), 1, + aux_sym_chained_interface_declaration_token1, + ACTIONS(1302), 1, + aux_sym_variable_declaration_token1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [18980] = 16, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1254), 1, + ACTIONS(1294), 3, + aux_sym_class_declaration_token13, + aux_sym__create_addition_token2, + aux_sym__create_addition_token3, + STATE(472), 9, + sym__class_components, + sym_method_declaration_class, + sym_constructor_declaration, + sym_class_constructor_declaration, + sym_method_redefinition, + sym_class_method_declaration_class, + sym_chained_interface_declaration, + sym_variable_declaration, + aux_sym_public_section_repeat1, + [16152] = 9, + ACTIONS(1238), 1, sym_field_symbol_name, - ACTIONS(1292), 1, + ACTIONS(1286), 1, sym_name, - ACTIONS(1294), 1, + ACTIONS(1288), 1, aux_sym__logical_expression_token1, - ACTIONS(1296), 1, + ACTIONS(1290), 1, anon_sym_BANG, - STATE(247), 1, - sym_arithmetic_expression, - STATE(559), 1, - sym__general_expression_position, - STATE(1706), 1, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(1292), 2, + sym_numeric_literal, + sym_character_literal, + STATE(1714), 2, sym__logical_expression, - STATE(1708), 1, - sym__escaped_operand, - STATE(1716), 1, sym_comparison_expression, - STATE(2880), 1, + STATE(2971), 2, sym__operand, - ACTIONS(1252), 2, - sym_numeric_literal, - sym_character_literal, - STATE(248), 2, + sym__escaped_operand, + STATE(524), 6, + sym__general_expression_position, sym__calculation_expression, + sym_arithmetic_expression, sym__data_object, - STATE(249), 2, sym_structured_data_object, sym_attribute_access_static, - STATE(467), 2, - sym_eol_comment, - sym_bol_comment, - [19033] = 16, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1254), 1, + [16189] = 9, + ACTIONS(1238), 1, sym_field_symbol_name, - ACTIONS(1292), 1, + ACTIONS(1286), 1, sym_name, - ACTIONS(1294), 1, + ACTIONS(1288), 1, aux_sym__logical_expression_token1, - ACTIONS(1296), 1, + ACTIONS(1290), 1, anon_sym_BANG, - STATE(247), 1, - sym_arithmetic_expression, - STATE(559), 1, - sym__general_expression_position, - STATE(1602), 1, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(1292), 2, + sym_numeric_literal, + sym_character_literal, + STATE(1718), 2, sym__logical_expression, - STATE(1708), 1, - sym__escaped_operand, - STATE(1716), 1, sym_comparison_expression, - STATE(2880), 1, + STATE(2971), 2, sym__operand, - ACTIONS(1252), 2, - sym_numeric_literal, - sym_character_literal, - STATE(248), 2, + sym__escaped_operand, + STATE(524), 6, + sym__general_expression_position, sym__calculation_expression, + sym_arithmetic_expression, sym__data_object, - STATE(249), 2, sym_structured_data_object, sym_attribute_access_static, - STATE(468), 2, - sym_eol_comment, - sym_bol_comment, - [19086] = 16, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1254), 1, + [16226] = 9, + ACTIONS(1238), 1, sym_field_symbol_name, - ACTIONS(1292), 1, + ACTIONS(1286), 1, sym_name, - ACTIONS(1294), 1, + ACTIONS(1288), 1, aux_sym__logical_expression_token1, - ACTIONS(1296), 1, + ACTIONS(1290), 1, anon_sym_BANG, - STATE(247), 1, - sym_arithmetic_expression, - STATE(559), 1, - sym__general_expression_position, - STATE(1583), 1, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(1292), 2, + sym_numeric_literal, + sym_character_literal, + STATE(1789), 2, sym__logical_expression, - STATE(1708), 1, - sym__escaped_operand, - STATE(1716), 1, sym_comparison_expression, - STATE(2880), 1, + STATE(2971), 2, sym__operand, - ACTIONS(1252), 2, - sym_numeric_literal, - sym_character_literal, - STATE(248), 2, + sym__escaped_operand, + STATE(524), 6, + sym__general_expression_position, sym__calculation_expression, + sym_arithmetic_expression, sym__data_object, - STATE(249), 2, sym_structured_data_object, sym_attribute_access_static, - STATE(469), 2, - sym_eol_comment, - sym_bol_comment, - [19139] = 16, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1254), 1, + [16263] = 9, + ACTIONS(1238), 1, sym_field_symbol_name, - ACTIONS(1292), 1, + ACTIONS(1286), 1, sym_name, - ACTIONS(1294), 1, + ACTIONS(1288), 1, aux_sym__logical_expression_token1, - ACTIONS(1296), 1, + ACTIONS(1290), 1, anon_sym_BANG, - STATE(247), 1, - sym_arithmetic_expression, - STATE(559), 1, - sym__general_expression_position, - STATE(1708), 1, - sym__escaped_operand, - STATE(1716), 1, - sym_comparison_expression, - STATE(1796), 1, - sym__logical_expression, - STATE(2880), 1, - sym__operand, - ACTIONS(1252), 2, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(1292), 2, sym_numeric_literal, sym_character_literal, - STATE(248), 2, + STATE(1661), 2, + sym__logical_expression, + sym_comparison_expression, + STATE(2971), 2, + sym__operand, + sym__escaped_operand, + STATE(524), 6, + sym__general_expression_position, sym__calculation_expression, + sym_arithmetic_expression, sym__data_object, - STATE(249), 2, sym_structured_data_object, sym_attribute_access_static, - STATE(470), 2, - sym_eol_comment, - sym_bol_comment, - [19192] = 16, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1254), 1, + [16300] = 9, + ACTIONS(1238), 1, sym_field_symbol_name, - ACTIONS(1292), 1, + ACTIONS(1286), 1, sym_name, - ACTIONS(1294), 1, + ACTIONS(1288), 1, aux_sym__logical_expression_token1, - ACTIONS(1296), 1, + ACTIONS(1290), 1, anon_sym_BANG, - STATE(247), 1, - sym_arithmetic_expression, - STATE(559), 1, - sym__general_expression_position, - STATE(1617), 1, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(1292), 2, + sym_numeric_literal, + sym_character_literal, + STATE(1737), 2, sym__logical_expression, - STATE(1708), 1, - sym__escaped_operand, - STATE(1716), 1, sym_comparison_expression, - STATE(2880), 1, + STATE(2971), 2, sym__operand, - ACTIONS(1252), 2, - sym_numeric_literal, - sym_character_literal, - STATE(248), 2, + sym__escaped_operand, + STATE(524), 6, + sym__general_expression_position, sym__calculation_expression, + sym_arithmetic_expression, sym__data_object, - STATE(249), 2, sym_structured_data_object, sym_attribute_access_static, - STATE(471), 2, - sym_eol_comment, - sym_bol_comment, - [19245] = 16, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1254), 1, + [16337] = 9, + ACTIONS(1238), 1, sym_field_symbol_name, - ACTIONS(1292), 1, + ACTIONS(1286), 1, sym_name, - ACTIONS(1294), 1, + ACTIONS(1288), 1, aux_sym__logical_expression_token1, - ACTIONS(1296), 1, + ACTIONS(1290), 1, anon_sym_BANG, - STATE(247), 1, - sym_arithmetic_expression, - STATE(559), 1, - sym__general_expression_position, - STATE(1708), 1, - sym__escaped_operand, - STATE(1716), 1, - sym_comparison_expression, - STATE(1734), 1, - sym__logical_expression, - STATE(2880), 1, - sym__operand, - ACTIONS(1252), 2, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(1292), 2, sym_numeric_literal, sym_character_literal, - STATE(248), 2, + STATE(1536), 2, + sym__logical_expression, + sym_comparison_expression, + STATE(2971), 2, + sym__operand, + sym__escaped_operand, + STATE(524), 6, + sym__general_expression_position, sym__calculation_expression, + sym_arithmetic_expression, sym__data_object, - STATE(249), 2, sym_structured_data_object, sym_attribute_access_static, - STATE(472), 2, + [16374] = 9, + ACTIONS(1238), 1, + sym_field_symbol_name, + ACTIONS(1286), 1, + sym_name, + ACTIONS(1288), 1, + aux_sym__logical_expression_token1, + ACTIONS(1290), 1, + anon_sym_BANG, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [19298] = 19, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1298), 1, + ACTIONS(1292), 2, + sym_numeric_literal, + sym_character_literal, + STATE(1654), 2, + sym__logical_expression, + sym_comparison_expression, + STATE(2971), 2, + sym__operand, + sym__escaped_operand, + STATE(524), 6, + sym__general_expression_position, + sym__calculation_expression, + sym_arithmetic_expression, + sym__data_object, + sym_structured_data_object, + sym_attribute_access_static, + [16411] = 17, + ACTIONS(1304), 1, aux_sym_class_declaration_token6, - ACTIONS(1300), 1, + ACTIONS(1306), 1, aux_sym_class_declaration_token7, - ACTIONS(1302), 1, + ACTIONS(1308), 1, anon_sym_DOT, - ACTIONS(1304), 1, + ACTIONS(1310), 1, aux_sym__method_declaration_importing_token1, - ACTIONS(1306), 1, + ACTIONS(1312), 1, aux_sym__method_declaration_exporting_token1, - ACTIONS(1308), 1, + ACTIONS(1314), 1, aux_sym__method_declaration_changing_token1, - ACTIONS(1310), 1, + ACTIONS(1316), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(1314), 1, + ACTIONS(1320), 1, aux_sym_returning_parameter_token1, - ACTIONS(1316), 1, + ACTIONS(1322), 1, aux_sym_method_redefinition_token1, - STATE(537), 1, + STATE(519), 1, sym__method_declaration_importing, - STATE(592), 1, + STATE(604), 1, sym__method_declaration_exporting, - STATE(763), 1, + STATE(955), 1, sym__method_declaration_changing, - STATE(1032), 1, + STATE(1019), 1, sym_returning_parameter, - STATE(1948), 1, + STATE(1625), 1, sym__method_declaration_raising, - STATE(2634), 1, + STATE(2758), 1, sym__method_declaration_exceptions, - STATE(473), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [19357] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(1318), 1, - anon_sym_DASH2, - ACTIONS(1320), 1, - anon_sym_EQ_GT, - STATE(485), 1, - aux_sym_structured_data_object_repeat1, - STATE(474), 2, + [16464] = 7, + ACTIONS(1326), 1, + aux_sym_method_declaration_class_token1, + ACTIONS(1329), 1, + aux_sym_class_constructor_declaration_token1, + ACTIONS(1332), 1, + aux_sym_chained_interface_declaration_token1, + ACTIONS(1335), 1, + aux_sym_variable_declaration_token1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(636), 5, - anon_sym_DASH, + ACTIONS(1324), 3, + aux_sym_class_declaration_token13, + aux_sym__create_addition_token2, + aux_sym__create_addition_token3, + STATE(471), 9, + sym__class_components, + sym_method_declaration_class, + sym_constructor_declaration, + sym_class_constructor_declaration, + sym_method_redefinition, + sym_class_method_declaration_class, + sym_chained_interface_declaration, + sym_variable_declaration, + aux_sym_public_section_repeat1, + [16497] = 7, + ACTIONS(1296), 1, + aux_sym_method_declaration_class_token1, + ACTIONS(1298), 1, + aux_sym_class_constructor_declaration_token1, + ACTIONS(1300), 1, + aux_sym_chained_interface_declaration_token1, + ACTIONS(1302), 1, + aux_sym_variable_declaration_token1, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(1338), 3, + aux_sym_class_declaration_token13, + aux_sym__create_addition_token2, + aux_sym__create_addition_token3, + STATE(471), 9, + sym__class_components, + sym_method_declaration_class, + sym_constructor_declaration, + sym_class_constructor_declaration, + sym_method_redefinition, + sym_class_method_declaration_class, + sym_chained_interface_declaration, + sym_variable_declaration, + aux_sym_public_section_repeat1, + [16530] = 8, + ACTIONS(3), 1, + sym_eol_comment, + ACTIONS(5), 1, + sym_bol_comment, + ACTIONS(1222), 1, anon_sym_STAR, - anon_sym_DIV, - anon_sym_MOD, + ACTIONS(1226), 1, + anon_sym_STAR_STAR, + ACTIONS(1340), 1, sym_name, - ACTIONS(638), 8, - anon_sym_DOT, - anon_sym_COMMA, + ACTIONS(1344), 2, anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1224), 3, anon_sym_SLASH, - anon_sym_STAR_STAR, - sym_numeric_literal, - sym_character_literal, - sym_field_symbol_name, - [19391] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1326), 1, - aux_sym_generic_type_token2, - STATE(475), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1324), 4, + anon_sym_DIV, + anon_sym_MOD, + ACTIONS(1342), 7, anon_sym_DOT, - anon_sym_COMMA, - anon_sym_BANG, - sym_field_symbol_name, - ACTIONS(1322), 10, + aux_sym__method_declaration_importing_token1, aux_sym__method_declaration_exporting_token1, aux_sym__method_declaration_changing_token1, - aux_sym__method_declaration_raising_token1, + anon_sym_RPAREN, aux_sym__method_declaration_exceptions_token1, - aux_sym_method_parameters_token1, - aux_sym_method_parameters_token2, - aux_sym_method_parameters_token3, - aux_sym_method_parameters_token4, - aux_sym_returning_parameter_token1, - sym_name, - [19423] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(476), 2, + aux_sym__explicit_parameter_list_token1, + [16564] = 7, + ACTIONS(3), 1, sym_eol_comment, + ACTIONS(5), 1, sym_bol_comment, - ACTIONS(1330), 4, + ACTIONS(1346), 1, + anon_sym_DASH2, + ACTIONS(1348), 1, + anon_sym_EQ_GT, + STATE(481), 1, + aux_sym_structured_data_object_repeat1, + ACTIONS(379), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_STAR_STAR, + sym_name, + ACTIONS(381), 8, anon_sym_DOT, - anon_sym_COMMA, - anon_sym_BANG, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DIV, + anon_sym_MOD, + sym_numeric_literal, + sym_character_literal, sym_field_symbol_name, - ACTIONS(1328), 10, - aux_sym__method_declaration_exporting_token1, - aux_sym__method_declaration_changing_token1, - aux_sym__method_declaration_raising_token1, - aux_sym__method_declaration_exceptions_token1, - aux_sym_method_parameters_token1, - aux_sym_method_parameters_token2, - aux_sym_method_parameters_token3, - aux_sym_method_parameters_token4, - aux_sym_returning_parameter_token1, - sym_name, - [19452] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1334), 1, + [16596] = 7, + ACTIONS(1296), 1, aux_sym_method_declaration_class_token1, - ACTIONS(1336), 1, + ACTIONS(1298), 1, aux_sym_class_constructor_declaration_token1, - ACTIONS(1338), 1, + ACTIONS(1300), 1, + aux_sym_chained_interface_declaration_token1, + ACTIONS(1302), 1, aux_sym_variable_declaration_token1, - STATE(489), 1, - aux_sym_public_section_repeat1, - STATE(1008), 1, - sym__class_components, - STATE(477), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1332), 3, + ACTIONS(1350), 2, aux_sym_class_declaration_token13, - aux_sym__create_addition_token2, aux_sym__create_addition_token3, - STATE(1006), 6, + STATE(477), 9, + sym__class_components, sym_method_declaration_class, sym_constructor_declaration, sym_class_constructor_declaration, sym_method_redefinition, sym_class_method_declaration_class, + sym_chained_interface_declaration, sym_variable_declaration, - [19491] = 17, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1304), 1, - aux_sym__method_declaration_importing_token1, - ACTIONS(1306), 1, - aux_sym__method_declaration_exporting_token1, - ACTIONS(1308), 1, - aux_sym__method_declaration_changing_token1, - ACTIONS(1310), 1, - aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(1314), 1, - aux_sym_returning_parameter_token1, - ACTIONS(1340), 1, - anon_sym_DOT, - ACTIONS(1342), 1, - aux_sym_method_redefinition_token1, - STATE(534), 1, - sym__method_declaration_importing, - STATE(589), 1, - sym__method_declaration_exporting, - STATE(672), 1, - sym__method_declaration_changing, - STATE(1176), 1, - sym_returning_parameter, - STATE(1738), 1, - sym__method_declaration_raising, - STATE(2899), 1, - sym__method_declaration_exceptions, - STATE(478), 2, + aux_sym_public_section_repeat1, + [16628] = 8, + ACTIONS(3), 1, sym_eol_comment, - sym_bol_comment, - [19544] = 8, ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(627), 1, + sym_bol_comment, + ACTIONS(383), 1, anon_sym_DASH2, - ACTIONS(1232), 1, + ACTIONS(1188), 1, anon_sym_EQ_GT, - ACTIONS(1344), 1, + ACTIONS(1352), 1, aux_sym__data_object_typing_normal_token3, - STATE(98), 1, + STATE(40), 1, aux_sym_structured_data_object_repeat1, - STATE(479), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(636), 3, + ACTIONS(379), 4, anon_sym_EQ, anon_sym_DASH, anon_sym_STAR, - ACTIONS(638), 8, + anon_sym_STAR_STAR, + ACTIONS(381), 7, aux_sym_comparison_expression_token1, anon_sym_LT_GT, aux_sym_comparison_expression_token2, @@ -32187,99 +29704,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_DIV, anon_sym_MOD, - anon_sym_STAR_STAR, - [19579] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(480), 2, + [16662] = 7, + ACTIONS(1296), 1, + aux_sym_method_declaration_class_token1, + ACTIONS(1298), 1, + aux_sym_class_constructor_declaration_token1, + ACTIONS(1300), 1, + aux_sym_chained_interface_declaration_token1, + ACTIONS(1302), 1, + aux_sym_variable_declaration_token1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1348), 4, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_BANG, - sym_field_symbol_name, - ACTIONS(1346), 10, - aux_sym__method_declaration_exporting_token1, - aux_sym__method_declaration_changing_token1, - aux_sym__method_declaration_raising_token1, - aux_sym__method_declaration_exceptions_token1, - aux_sym_method_parameters_token1, - aux_sym_method_parameters_token2, - aux_sym_method_parameters_token3, - aux_sym_method_parameters_token4, - aux_sym_returning_parameter_token1, - sym_name, - [19608] = 11, + ACTIONS(1354), 2, + aux_sym_class_declaration_token13, + aux_sym__create_addition_token3, + STATE(471), 9, + sym__class_components, + sym_method_declaration_class, + sym_constructor_declaration, + sym_class_constructor_declaration, + sym_method_redefinition, + sym_class_method_declaration_class, + sym_chained_interface_declaration, + sym_variable_declaration, + aux_sym_public_section_repeat1, + [16694] = 6, + ACTIONS(3), 1, + sym_eol_comment, ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, + sym_bol_comment, + ACTIONS(1356), 1, + anon_sym_DASH2, + STATE(478), 1, + aux_sym_structured_data_object_repeat1, + ACTIONS(385), 4, + anon_sym_DASH, anon_sym_STAR, - ACTIONS(1350), 1, + anon_sym_STAR_STAR, sym_name, - ACTIONS(1353), 1, + ACTIONS(387), 8, anon_sym_DOT, - ACTIONS(1360), 1, - anon_sym_BANG, - STATE(553), 1, - sym_method_parameters, - STATE(1181), 1, - sym__operand, - STATE(1708), 1, - sym__escaped_operand, - ACTIONS(1357), 2, - aux_sym_method_parameters_token1, - aux_sym_method_parameters_token2, - STATE(481), 3, - sym_eol_comment, - sym_bol_comment, - aux_sym__method_declaration_importing_repeat1, - ACTIONS(1355), 5, - aux_sym__method_declaration_exporting_token1, - aux_sym__method_declaration_changing_token1, - aux_sym__method_declaration_raising_token1, - aux_sym__method_declaration_exceptions_token1, - aux_sym_returning_parameter_token1, - [19649] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(482), 2, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DIV, + anon_sym_MOD, + sym_numeric_literal, + sym_character_literal, + sym_field_symbol_name, + [16723] = 7, + ACTIONS(1296), 1, + aux_sym_method_declaration_class_token1, + ACTIONS(1298), 1, + aux_sym_class_constructor_declaration_token1, + ACTIONS(1300), 1, + aux_sym_chained_interface_declaration_token1, + ACTIONS(1302), 1, + aux_sym_variable_declaration_token1, + ACTIONS(1359), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1365), 4, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_BANG, - sym_field_symbol_name, - ACTIONS(1363), 10, - aux_sym__method_declaration_exporting_token1, - aux_sym__method_declaration_changing_token1, - aux_sym__method_declaration_raising_token1, - aux_sym__method_declaration_exceptions_token1, - aux_sym_method_parameters_token1, - aux_sym_method_parameters_token2, - aux_sym_method_parameters_token3, - aux_sym_method_parameters_token4, - aux_sym_returning_parameter_token1, + STATE(488), 9, + sym__class_components, + sym_method_declaration_class, + sym_constructor_declaration, + sym_class_constructor_declaration, + sym_method_redefinition, + sym_class_method_declaration_class, + sym_chained_interface_declaration, + sym_variable_declaration, + aux_sym_public_section_repeat1, + [16754] = 4, + ACTIONS(1361), 1, sym_name, - [19678] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(483), 2, + ACTIONS(1365), 1, + aux_sym_generic_type_token2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1369), 4, + ACTIONS(1363), 12, anon_sym_DOT, - anon_sym_COMMA, - anon_sym_BANG, - sym_field_symbol_name, - ACTIONS(1367), 10, aux_sym__method_declaration_exporting_token1, aux_sym__method_declaration_changing_token1, aux_sym__method_declaration_raising_token1, @@ -32289,1994 +29795,1347 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_parameters_token3, aux_sym_method_parameters_token4, aux_sym_returning_parameter_token1, - sym_name, - [19707] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(484), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1373), 4, - anon_sym_DOT, anon_sym_COMMA, anon_sym_BANG, - sym_field_symbol_name, - ACTIONS(1371), 10, - aux_sym__method_declaration_exporting_token1, - aux_sym__method_declaration_changing_token1, - aux_sym__method_declaration_raising_token1, - aux_sym__method_declaration_exceptions_token1, - aux_sym_method_parameters_token1, - aux_sym_method_parameters_token2, - aux_sym_method_parameters_token3, - aux_sym_method_parameters_token4, - aux_sym_returning_parameter_token1, - sym_name, - [19736] = 6, + [16779] = 6, + ACTIONS(3), 1, + sym_eol_comment, ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(1318), 1, + sym_bol_comment, + ACTIONS(1346), 1, anon_sym_DASH2, - STATE(488), 1, + STATE(478), 1, aux_sym_structured_data_object_repeat1, - STATE(485), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(623), 5, + ACTIONS(392), 4, anon_sym_DASH, anon_sym_STAR, - anon_sym_DIV, - anon_sym_MOD, + anon_sym_STAR_STAR, sym_name, - ACTIONS(625), 8, + ACTIONS(394), 8, anon_sym_DOT, - anon_sym_COMMA, anon_sym_PLUS, anon_sym_SLASH, - anon_sym_STAR_STAR, + anon_sym_DIV, + anon_sym_MOD, sym_numeric_literal, sym_character_literal, sym_field_symbol_name, - [19767] = 12, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1296), 1, - anon_sym_BANG, - ACTIONS(1375), 1, - sym_name, - ACTIONS(1377), 1, - anon_sym_DOT, - STATE(481), 1, - aux_sym__method_declaration_importing_repeat1, - STATE(553), 1, - sym_method_parameters, - STATE(1181), 1, - sym__operand, - STATE(1708), 1, - sym__escaped_operand, - ACTIONS(1381), 2, - aux_sym_method_parameters_token1, - aux_sym_method_parameters_token2, - STATE(486), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1379), 5, - aux_sym__method_declaration_exporting_token1, - aux_sym__method_declaration_changing_token1, - aux_sym__method_declaration_raising_token1, - aux_sym__method_declaration_exceptions_token1, - aux_sym_returning_parameter_token1, - [19810] = 17, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1304), 1, + [16808] = 15, + ACTIONS(1310), 1, aux_sym__method_declaration_importing_token1, - ACTIONS(1306), 1, + ACTIONS(1312), 1, aux_sym__method_declaration_exporting_token1, - ACTIONS(1308), 1, + ACTIONS(1314), 1, aux_sym__method_declaration_changing_token1, - ACTIONS(1310), 1, + ACTIONS(1316), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(1314), 1, + ACTIONS(1320), 1, aux_sym_returning_parameter_token1, - ACTIONS(1383), 1, + ACTIONS(1367), 1, anon_sym_DOT, - ACTIONS(1385), 1, + ACTIONS(1369), 1, aux_sym_method_parameters_token4, - STATE(538), 1, + STATE(525), 1, sym__method_declaration_importing, - STATE(597), 1, + STATE(582), 1, sym__method_declaration_exporting, - STATE(648), 1, + STATE(903), 1, sym__method_declaration_changing, - STATE(1140), 1, + STATE(1025), 1, sym_returning_parameter, - STATE(1695), 1, + STATE(1907), 1, sym__method_declaration_raising, - STATE(2290), 1, + STATE(2350), 1, sym__method_declaration_exceptions, - STATE(487), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [19863] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(1387), 1, - anon_sym_DASH2, - STATE(488), 3, + [16855] = 7, + ACTIONS(3), 1, sym_eol_comment, + ACTIONS(5), 1, sym_bol_comment, + ACTIONS(383), 1, + anon_sym_DASH2, + ACTIONS(1188), 1, + anon_sym_EQ_GT, + STATE(40), 1, aux_sym_structured_data_object_repeat1, - ACTIONS(629), 5, + ACTIONS(379), 4, + anon_sym_EQ, anon_sym_DASH, anon_sym_STAR, - anon_sym_DIV, - anon_sym_MOD, - sym_name, - ACTIONS(631), 8, - anon_sym_DOT, - anon_sym_COMMA, + anon_sym_STAR_STAR, + ACTIONS(381), 7, + aux_sym_comparison_expression_token1, + anon_sym_LT_GT, + aux_sym_comparison_expression_token2, anon_sym_PLUS, anon_sym_SLASH, - anon_sym_STAR_STAR, - sym_numeric_literal, - sym_character_literal, - sym_field_symbol_name, - [19892] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1334), 1, - aux_sym_method_declaration_class_token1, - ACTIONS(1336), 1, - aux_sym_class_constructor_declaration_token1, - ACTIONS(1338), 1, - aux_sym_variable_declaration_token1, - STATE(491), 1, - aux_sym_public_section_repeat1, - STATE(1008), 1, - sym__class_components, - STATE(489), 2, + anon_sym_DIV, + anon_sym_MOD, + [16886] = 6, + ACTIONS(3), 1, sym_eol_comment, - sym_bol_comment, - ACTIONS(1390), 3, - aux_sym_class_declaration_token13, - aux_sym__create_addition_token2, - aux_sym__create_addition_token3, - STATE(1006), 6, - sym_method_declaration_class, - sym_constructor_declaration, - sym_class_constructor_declaration, - sym_method_redefinition, - sym_class_method_declaration_class, - sym_variable_declaration, - [19931] = 6, ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(1318), 1, + sym_bol_comment, + ACTIONS(1346), 1, anon_sym_DASH2, - STATE(485), 1, + STATE(481), 1, aux_sym_structured_data_object_repeat1, - STATE(490), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(636), 5, + ACTIONS(379), 4, anon_sym_DASH, anon_sym_STAR, - anon_sym_DIV, - anon_sym_MOD, + anon_sym_STAR_STAR, sym_name, - ACTIONS(638), 8, + ACTIONS(381), 8, anon_sym_DOT, - anon_sym_COMMA, anon_sym_PLUS, anon_sym_SLASH, - anon_sym_STAR_STAR, + anon_sym_DIV, + anon_sym_MOD, sym_numeric_literal, sym_character_literal, sym_field_symbol_name, - [19962] = 9, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1394), 1, - aux_sym_method_declaration_class_token1, - ACTIONS(1397), 1, + [16915] = 7, + ACTIONS(1290), 1, + anon_sym_BANG, + ACTIONS(1371), 1, + sym_name, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(1375), 2, + aux_sym_method_parameters_token1, + aux_sym_method_parameters_token2, + STATE(489), 2, + sym_method_parameters, + aux_sym__method_declaration_importing_repeat1, + STATE(1067), 2, + sym__operand, + sym__escaped_operand, + ACTIONS(1373), 6, + anon_sym_DOT, + aux_sym__method_declaration_exporting_token1, + aux_sym__method_declaration_changing_token1, + aux_sym__method_declaration_raising_token1, + aux_sym__method_declaration_exceptions_token1, + aux_sym_returning_parameter_token1, + [16946] = 15, + ACTIONS(1310), 1, + aux_sym__method_declaration_importing_token1, + ACTIONS(1312), 1, + aux_sym__method_declaration_exporting_token1, + ACTIONS(1314), 1, + aux_sym__method_declaration_changing_token1, + ACTIONS(1316), 1, + aux_sym__method_declaration_raising_token1, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(1320), 1, + aux_sym_returning_parameter_token1, + ACTIONS(1377), 1, + anon_sym_DOT, + ACTIONS(1379), 1, + aux_sym_method_parameters_token4, + STATE(531), 1, + sym__method_declaration_importing, + STATE(605), 1, + sym__method_declaration_exporting, + STATE(935), 1, + sym__method_declaration_changing, + STATE(1123), 1, + sym_returning_parameter, + STATE(1840), 1, + sym__method_declaration_raising, + STATE(2346), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [16993] = 15, + ACTIONS(1310), 1, + aux_sym__method_declaration_importing_token1, + ACTIONS(1312), 1, + aux_sym__method_declaration_exporting_token1, + ACTIONS(1314), 1, + aux_sym__method_declaration_changing_token1, + ACTIONS(1316), 1, + aux_sym__method_declaration_raising_token1, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(1320), 1, + aux_sym_returning_parameter_token1, + ACTIONS(1381), 1, + anon_sym_DOT, + ACTIONS(1383), 1, + aux_sym_method_redefinition_token1, + STATE(528), 1, + sym__method_declaration_importing, + STATE(609), 1, + sym__method_declaration_exporting, + STATE(664), 1, + sym__method_declaration_changing, + STATE(1159), 1, + sym_returning_parameter, + STATE(1796), 1, + sym__method_declaration_raising, + STATE(3074), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [17040] = 7, + ACTIONS(1296), 1, + aux_sym_method_declaration_class_token1, + ACTIONS(1298), 1, aux_sym_class_constructor_declaration_token1, - ACTIONS(1400), 1, + ACTIONS(1300), 1, + aux_sym_chained_interface_declaration_token1, + ACTIONS(1302), 1, aux_sym_variable_declaration_token1, - STATE(1008), 1, - sym__class_components, - ACTIONS(1392), 3, + ACTIONS(1385), 1, aux_sym_class_declaration_token13, - aux_sym__create_addition_token2, - aux_sym__create_addition_token3, - STATE(491), 3, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - aux_sym_public_section_repeat1, - STATE(1006), 6, + STATE(471), 9, + sym__class_components, sym_method_declaration_class, sym_constructor_declaration, sym_class_constructor_declaration, sym_method_redefinition, sym_class_method_declaration_class, + sym_chained_interface_declaration, sym_variable_declaration, - [19999] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(1236), 1, - anon_sym_SLASH, - ACTIONS(1238), 1, - anon_sym_STAR_STAR, - ACTIONS(1405), 2, - anon_sym_DOT, - anon_sym_RPAREN, - ACTIONS(1407), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(492), 2, + aux_sym_public_section_repeat1, + [17071] = 7, + ACTIONS(1387), 1, + sym_name, + ACTIONS(1395), 1, + anon_sym_BANG, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1234), 3, - anon_sym_STAR, - anon_sym_DIV, - anon_sym_MOD, - ACTIONS(1403), 6, - aux_sym__method_declaration_importing_token1, + ACTIONS(1392), 2, + aux_sym_method_parameters_token1, + aux_sym_method_parameters_token2, + STATE(489), 2, + sym_method_parameters, + aux_sym__method_declaration_importing_repeat1, + STATE(1067), 2, + sym__operand, + sym__escaped_operand, + ACTIONS(1390), 6, + anon_sym_DOT, aux_sym__method_declaration_exporting_token1, aux_sym__method_declaration_changing_token1, + aux_sym__method_declaration_raising_token1, aux_sym__method_declaration_exceptions_token1, - aux_sym__explicit_parameter_list_token1, - sym_name, - [20034] = 17, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1304), 1, + aux_sym_returning_parameter_token1, + [17102] = 14, + ACTIONS(1310), 1, aux_sym__method_declaration_importing_token1, - ACTIONS(1306), 1, + ACTIONS(1312), 1, aux_sym__method_declaration_exporting_token1, - ACTIONS(1308), 1, + ACTIONS(1314), 1, aux_sym__method_declaration_changing_token1, - ACTIONS(1310), 1, + ACTIONS(1316), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(1314), 1, + ACTIONS(1320), 1, aux_sym_returning_parameter_token1, - ACTIONS(1409), 1, + ACTIONS(1398), 1, anon_sym_DOT, - ACTIONS(1411), 1, - aux_sym_method_parameters_token4, - STATE(539), 1, + STATE(530), 1, sym__method_declaration_importing, - STATE(593), 1, + STATE(585), 1, sym__method_declaration_exporting, - STATE(651), 1, + STATE(923), 1, sym__method_declaration_changing, - STATE(1136), 1, + STATE(1027), 1, sym_returning_parameter, - STATE(1688), 1, + STATE(1618), 1, sym__method_declaration_raising, - STATE(2295), 1, + STATE(2768), 1, sym__method_declaration_exceptions, - STATE(493), 2, - sym_eol_comment, - sym_bol_comment, - [20087] = 13, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1266), 1, - sym_name, - ACTIONS(1282), 1, - sym_field_symbol_name, - ACTIONS(1413), 1, - anon_sym_DOT, - ACTIONS(1415), 1, - anon_sym_COMMA, - STATE(501), 1, - aux_sym_chained_write_statement_repeat1, - STATE(522), 1, - sym__general_expression_position, - STATE(532), 1, - sym_arithmetic_expression, - ACTIONS(1280), 2, - sym_numeric_literal, - sym_character_literal, - STATE(494), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - STATE(519), 2, - sym_structured_data_object, - sym_attribute_access_static, - STATE(533), 2, - sym__calculation_expression, - sym__data_object, - [20131] = 16, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1304), 1, + [17146] = 14, + ACTIONS(1310), 1, aux_sym__method_declaration_importing_token1, - ACTIONS(1306), 1, + ACTIONS(1312), 1, aux_sym__method_declaration_exporting_token1, - ACTIONS(1308), 1, + ACTIONS(1314), 1, aux_sym__method_declaration_changing_token1, - ACTIONS(1310), 1, + ACTIONS(1316), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(1314), 1, + ACTIONS(1320), 1, aux_sym_returning_parameter_token1, - ACTIONS(1417), 1, + ACTIONS(1381), 1, anon_sym_DOT, - STATE(543), 1, + STATE(528), 1, sym__method_declaration_importing, - STATE(614), 1, + STATE(609), 1, sym__method_declaration_exporting, - STATE(640), 1, + STATE(664), 1, sym__method_declaration_changing, - STATE(1033), 1, + STATE(1159), 1, sym_returning_parameter, - STATE(1941), 1, + STATE(1796), 1, sym__method_declaration_raising, - STATE(3128), 1, + STATE(3074), 1, sym__method_declaration_exceptions, - STATE(495), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [20181] = 13, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1266), 1, + [17190] = 3, + ACTIONS(1400), 1, sym_name, - ACTIONS(1282), 1, - sym_field_symbol_name, - ACTIONS(1415), 1, - anon_sym_COMMA, - ACTIONS(1419), 1, - anon_sym_DOT, - STATE(501), 1, - aux_sym_chained_write_statement_repeat1, - STATE(522), 1, - sym__general_expression_position, - STATE(532), 1, - sym_arithmetic_expression, - ACTIONS(1280), 2, - sym_numeric_literal, - sym_character_literal, - STATE(496), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - STATE(519), 2, - sym_structured_data_object, - sym_attribute_access_static, - STATE(533), 2, - sym__calculation_expression, - sym__data_object, - [20225] = 16, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1304), 1, - aux_sym__method_declaration_importing_token1, - ACTIONS(1306), 1, + ACTIONS(1402), 12, + anon_sym_DOT, aux_sym__method_declaration_exporting_token1, - ACTIONS(1308), 1, aux_sym__method_declaration_changing_token1, - ACTIONS(1310), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, aux_sym__method_declaration_exceptions_token1, + aux_sym_method_parameters_token1, + aux_sym_method_parameters_token2, + aux_sym_method_parameters_token3, + aux_sym_method_parameters_token4, + aux_sym_returning_parameter_token1, + anon_sym_COMMA, + anon_sym_BANG, + [17212] = 14, + ACTIONS(1310), 1, + aux_sym__method_declaration_importing_token1, + ACTIONS(1312), 1, + aux_sym__method_declaration_exporting_token1, ACTIONS(1314), 1, + aux_sym__method_declaration_changing_token1, + ACTIONS(1316), 1, + aux_sym__method_declaration_raising_token1, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(1320), 1, aux_sym_returning_parameter_token1, - ACTIONS(1340), 1, + ACTIONS(1404), 1, anon_sym_DOT, - STATE(534), 1, + STATE(523), 1, sym__method_declaration_importing, - STATE(589), 1, + STATE(584), 1, sym__method_declaration_exporting, - STATE(672), 1, + STATE(649), 1, sym__method_declaration_changing, - STATE(1176), 1, + STATE(1185), 1, sym_returning_parameter, - STATE(1738), 1, + STATE(1759), 1, sym__method_declaration_raising, - STATE(2899), 1, + STATE(2192), 1, sym__method_declaration_exceptions, - STATE(497), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [20275] = 16, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1304), 1, + [17256] = 14, + ACTIONS(1310), 1, aux_sym__method_declaration_importing_token1, - ACTIONS(1306), 1, + ACTIONS(1312), 1, aux_sym__method_declaration_exporting_token1, - ACTIONS(1308), 1, + ACTIONS(1314), 1, aux_sym__method_declaration_changing_token1, - ACTIONS(1310), 1, + ACTIONS(1316), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(1314), 1, + ACTIONS(1320), 1, aux_sym_returning_parameter_token1, - ACTIONS(1421), 1, + ACTIONS(1406), 1, anon_sym_DOT, - STATE(542), 1, + STATE(529), 1, sym__method_declaration_importing, - STATE(606), 1, + STATE(583), 1, sym__method_declaration_exporting, - STATE(700), 1, + STATE(678), 1, sym__method_declaration_changing, - STATE(1046), 1, + STATE(1142), 1, sym_returning_parameter, - STATE(1943), 1, + STATE(1693), 1, sym__method_declaration_raising, - STATE(3096), 1, + STATE(2137), 1, sym__method_declaration_exceptions, - STATE(498), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [20325] = 13, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1266), 1, + [17300] = 3, + ACTIONS(1408), 1, sym_name, - ACTIONS(1282), 1, - sym_field_symbol_name, - ACTIONS(1415), 1, - anon_sym_COMMA, - ACTIONS(1423), 1, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(1410), 12, anon_sym_DOT, - STATE(501), 1, - aux_sym_chained_write_statement_repeat1, - STATE(522), 1, - sym__general_expression_position, - STATE(532), 1, - sym_arithmetic_expression, - ACTIONS(1280), 2, - sym_numeric_literal, - sym_character_literal, - STATE(499), 2, + aux_sym__method_declaration_exporting_token1, + aux_sym__method_declaration_changing_token1, + aux_sym__method_declaration_raising_token1, + aux_sym__method_declaration_exceptions_token1, + aux_sym_method_parameters_token1, + aux_sym_method_parameters_token2, + aux_sym_method_parameters_token3, + aux_sym_method_parameters_token4, + aux_sym_returning_parameter_token1, + anon_sym_COMMA, + anon_sym_BANG, + [17322] = 7, + ACTIONS(1290), 1, + anon_sym_BANG, + ACTIONS(1371), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - STATE(519), 2, - sym_structured_data_object, - sym_attribute_access_static, - STATE(533), 2, - sym__calculation_expression, - sym__data_object, - [20369] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1334), 1, - aux_sym_method_declaration_class_token1, - ACTIONS(1336), 1, - aux_sym_class_constructor_declaration_token1, - ACTIONS(1338), 1, - aux_sym_variable_declaration_token1, - STATE(507), 1, - aux_sym_public_section_repeat1, - STATE(1008), 1, - sym__class_components, - ACTIONS(1425), 2, - aux_sym_class_declaration_token13, - aux_sym__create_addition_token3, - STATE(500), 2, + ACTIONS(1375), 2, + aux_sym_method_parameters_token1, + aux_sym_method_parameters_token2, + STATE(489), 2, + sym_method_parameters, + aux_sym__method_declaration_importing_repeat1, + STATE(1067), 2, + sym__operand, + sym__escaped_operand, + ACTIONS(1412), 5, + anon_sym_DOT, + aux_sym__method_declaration_changing_token1, + aux_sym__method_declaration_raising_token1, + aux_sym__method_declaration_exceptions_token1, + aux_sym_returning_parameter_token1, + [17352] = 3, + ACTIONS(1414), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - STATE(1006), 6, - sym_method_declaration_class, - sym_constructor_declaration, - sym_class_constructor_declaration, - sym_method_redefinition, - sym_class_method_declaration_class, - sym_variable_declaration, - [20407] = 12, + ACTIONS(1416), 12, + anon_sym_DOT, + aux_sym__method_declaration_exporting_token1, + aux_sym__method_declaration_changing_token1, + aux_sym__method_declaration_raising_token1, + aux_sym__method_declaration_exceptions_token1, + aux_sym_method_parameters_token1, + aux_sym_method_parameters_token2, + aux_sym_method_parameters_token3, + aux_sym_method_parameters_token4, + aux_sym_returning_parameter_token1, + anon_sym_COMMA, + anon_sym_BANG, + [17374] = 4, + ACTIONS(3), 1, + sym_eol_comment, ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, + sym_bol_comment, + ACTIONS(556), 4, + anon_sym_DASH, anon_sym_STAR, - ACTIONS(1427), 1, + anon_sym_STAR_STAR, sym_name, - ACTIONS(1430), 1, + ACTIONS(558), 9, anon_sym_DOT, - ACTIONS(1432), 1, - anon_sym_COMMA, - ACTIONS(1438), 1, - sym_field_symbol_name, - STATE(522), 1, - sym__general_expression_position, - STATE(532), 1, - sym_arithmetic_expression, - ACTIONS(1435), 2, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DIV, + anon_sym_MOD, + anon_sym_DASH2, sym_numeric_literal, sym_character_literal, - STATE(519), 2, - sym_structured_data_object, - sym_attribute_access_static, - STATE(533), 2, - sym__calculation_expression, - sym__data_object, - STATE(501), 3, + sym_field_symbol_name, + [17398] = 3, + ACTIONS(1418), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - aux_sym_chained_write_statement_repeat1, - [20449] = 13, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1266), 1, + ACTIONS(1420), 12, + anon_sym_DOT, + aux_sym__method_declaration_exporting_token1, + aux_sym__method_declaration_changing_token1, + aux_sym__method_declaration_raising_token1, + aux_sym__method_declaration_exceptions_token1, + aux_sym_method_parameters_token1, + aux_sym_method_parameters_token2, + aux_sym_method_parameters_token3, + aux_sym_method_parameters_token4, + aux_sym_returning_parameter_token1, + anon_sym_COMMA, + anon_sym_BANG, + [17420] = 7, + ACTIONS(1260), 1, sym_name, - ACTIONS(1282), 1, + ACTIONS(1276), 1, sym_field_symbol_name, - ACTIONS(1415), 1, - anon_sym_COMMA, - ACTIONS(1441), 1, + ACTIONS(1422), 1, anon_sym_DOT, - STATE(501), 1, - aux_sym_chained_write_statement_repeat1, - STATE(522), 1, - sym__general_expression_position, - STATE(532), 1, - sym_arithmetic_expression, - ACTIONS(1280), 2, - sym_numeric_literal, - sym_character_literal, - STATE(502), 2, + STATE(518), 1, + aux_sym_macro_include_repeat1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - STATE(519), 2, - sym_structured_data_object, - sym_attribute_access_static, - STATE(533), 2, + ACTIONS(1274), 2, + sym_numeric_literal, + sym_character_literal, + STATE(516), 6, + sym__general_expression_position, sym__calculation_expression, + sym_arithmetic_expression, sym__data_object, - [20493] = 13, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1266), 1, - sym_name, - ACTIONS(1282), 1, + sym_structured_data_object, + sym_attribute_access_static, + [17449] = 7, + ACTIONS(1238), 1, sym_field_symbol_name, - ACTIONS(1415), 1, - anon_sym_COMMA, - ACTIONS(1443), 1, - anon_sym_SLASH, - STATE(494), 1, - aux_sym_chained_write_statement_repeat1, - STATE(522), 1, - sym__general_expression_position, - STATE(532), 1, - sym_arithmetic_expression, - ACTIONS(1280), 2, - sym_numeric_literal, - sym_character_literal, - STATE(503), 2, + ACTIONS(1424), 1, + sym_name, + STATE(1454), 1, + aux_sym__table_expression_free_key, + STATE(2044), 1, + sym_comp_spec, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - STATE(519), 2, - sym_structured_data_object, - sym_attribute_access_static, - STATE(533), 2, + ACTIONS(1426), 2, + sym_numeric_literal, + sym_character_literal, + STATE(634), 6, + sym__general_expression_position, sym__calculation_expression, + sym_arithmetic_expression, sym__data_object, - [20537] = 7, + sym_structured_data_object, + sym_attribute_access_static, + [17478] = 8, + ACTIONS(3), 1, + sym_eol_comment, ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(627), 1, + sym_bol_comment, + ACTIONS(383), 1, anon_sym_DASH2, - ACTIONS(1232), 1, + ACTIONS(1188), 1, anon_sym_EQ_GT, - STATE(98), 1, - aux_sym_structured_data_object_repeat1, - STATE(504), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(636), 3, + ACTIONS(1428), 1, anon_sym_EQ, + STATE(40), 1, + aux_sym_structured_data_object_repeat1, + ACTIONS(379), 3, anon_sym_DASH, anon_sym_STAR, - ACTIONS(638), 8, - aux_sym_comparison_expression_token1, - anon_sym_LT_GT, - aux_sym_comparison_expression_token2, + anon_sym_STAR_STAR, + ACTIONS(381), 5, + anon_sym_RPAREN, anon_sym_PLUS, anon_sym_SLASH, anon_sym_DIV, anon_sym_MOD, - anon_sym_STAR_STAR, - [20569] = 12, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1296), 1, - anon_sym_BANG, - ACTIONS(1375), 1, + [17509] = 5, + ACTIONS(1430), 1, sym_name, - ACTIONS(1445), 1, - anon_sym_DOT, - STATE(481), 1, - aux_sym__method_declaration_importing_repeat1, - STATE(553), 1, - sym_method_parameters, - STATE(1181), 1, - sym__operand, - STATE(1708), 1, - sym__escaped_operand, - ACTIONS(1381), 2, - aux_sym_method_parameters_token1, - aux_sym_method_parameters_token2, - STATE(505), 2, + ACTIONS(1434), 1, + aux_sym_method_parameters_token3, + ACTIONS(1436), 1, + aux_sym_method_parameters_token4, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1447), 4, + ACTIONS(1432), 9, + anon_sym_DOT, + aux_sym__method_declaration_exporting_token1, aux_sym__method_declaration_changing_token1, aux_sym__method_declaration_raising_token1, aux_sym__method_declaration_exceptions_token1, + aux_sym_method_parameters_token1, + aux_sym_method_parameters_token2, aux_sym_returning_parameter_token1, - [20611] = 13, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1266), 1, - sym_name, - ACTIONS(1282), 1, + anon_sym_BANG, + [17534] = 7, + ACTIONS(1238), 1, sym_field_symbol_name, - ACTIONS(1415), 1, - anon_sym_COMMA, - ACTIONS(1449), 1, + ACTIONS(1438), 1, + sym_name, + ACTIONS(1440), 1, + anon_sym_COLON, + ACTIONS(1442), 1, anon_sym_SLASH, - STATE(502), 1, - aux_sym_chained_write_statement_repeat1, - STATE(522), 1, - sym__general_expression_position, - STATE(532), 1, - sym_arithmetic_expression, - ACTIONS(1280), 2, - sym_numeric_literal, - sym_character_literal, - STATE(506), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - STATE(519), 2, - sym_structured_data_object, - sym_attribute_access_static, - STATE(533), 2, + ACTIONS(1444), 2, + sym_numeric_literal, + sym_character_literal, + STATE(610), 6, + sym__general_expression_position, sym__calculation_expression, + sym_arithmetic_expression, sym__data_object, - [20655] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1334), 1, - aux_sym_method_declaration_class_token1, - ACTIONS(1336), 1, - aux_sym_class_constructor_declaration_token1, - ACTIONS(1338), 1, - aux_sym_variable_declaration_token1, - STATE(491), 1, - aux_sym_public_section_repeat1, - STATE(1008), 1, - sym__class_components, - ACTIONS(1451), 2, - aux_sym_class_declaration_token13, - aux_sym__create_addition_token3, - STATE(507), 2, + sym_structured_data_object, + sym_attribute_access_static, + [17563] = 13, + ACTIONS(1446), 1, + aux_sym_class_declaration_token3, + ACTIONS(1448), 1, + aux_sym_class_declaration_token4, + ACTIONS(1450), 1, + aux_sym_class_declaration_token6, + ACTIONS(1452), 1, + aux_sym_class_declaration_token7, + ACTIONS(1454), 1, + aux_sym_class_declaration_token8, + ACTIONS(1456), 1, + aux_sym_class_declaration_token11, + ACTIONS(1458), 1, + aux_sym_class_declaration_token12, + ACTIONS(1460), 1, + anon_sym_DOT, + ACTIONS(1462), 1, + aux_sym__create_addition_token1, + ACTIONS(1464), 1, + aux_sym_class_publication_token1, + ACTIONS(1466), 1, + aux_sym_class_local_friend_publication_token1, + STATE(1406), 1, + sym__create_addition, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - STATE(1006), 6, - sym_method_declaration_class, - sym_constructor_declaration, - sym_class_constructor_declaration, - sym_method_redefinition, - sym_class_method_declaration_class, - sym_variable_declaration, - [20693] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - STATE(508), 2, + [17604] = 4, + ACTIONS(3), 1, sym_eol_comment, + ACTIONS(5), 1, sym_bol_comment, - ACTIONS(656), 5, - anon_sym_DASH, + ACTIONS(648), 3, anon_sym_STAR, - anon_sym_DIV, - anon_sym_MOD, + anon_sym_STAR_STAR, sym_name, - ACTIONS(658), 9, + ACTIONS(650), 9, anon_sym_DOT, - anon_sym_COMMA, anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, - anon_sym_STAR_STAR, - anon_sym_DASH2, + anon_sym_DIV, + anon_sym_MOD, sym_numeric_literal, sym_character_literal, sym_field_symbol_name, - [20719] = 16, + [17627] = 4, + ACTIONS(3), 1, + sym_eol_comment, ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, + sym_bol_comment, + ACTIONS(652), 3, anon_sym_STAR, - ACTIONS(1304), 1, - aux_sym__method_declaration_importing_token1, - ACTIONS(1306), 1, - aux_sym__method_declaration_exporting_token1, - ACTIONS(1308), 1, - aux_sym__method_declaration_changing_token1, - ACTIONS(1310), 1, - aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(1314), 1, - aux_sym_returning_parameter_token1, - ACTIONS(1453), 1, + anon_sym_STAR_STAR, + sym_name, + ACTIONS(654), 9, anon_sym_DOT, - STATE(536), 1, - sym__method_declaration_importing, - STATE(613), 1, - sym__method_declaration_exporting, - STATE(666), 1, - sym__method_declaration_changing, - STATE(1141), 1, - sym_returning_parameter, - STATE(1873), 1, - sym__method_declaration_raising, - STATE(2460), 1, - sym__method_declaration_exceptions, - STATE(509), 2, - sym_eol_comment, - sym_bol_comment, - [20769] = 11, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1455), 1, - sym_name, - ACTIONS(1458), 1, - anon_sym_DOT, - ACTIONS(1463), 1, - sym_field_symbol_name, - STATE(532), 1, - sym_arithmetic_expression, - STATE(535), 1, - sym__general_expression_position, - ACTIONS(1460), 2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_DIV, + anon_sym_MOD, sym_numeric_literal, sym_character_literal, - STATE(519), 2, - sym_structured_data_object, - sym_attribute_access_static, - STATE(533), 2, - sym__calculation_expression, - sym__data_object, - STATE(510), 3, + sym_field_symbol_name, + [17650] = 8, + ACTIONS(3), 1, sym_eol_comment, - sym_bol_comment, - aux_sym_macro_include_repeat1, - [20808] = 12, ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, + sym_bol_comment, + ACTIONS(383), 1, + anon_sym_DASH2, + ACTIONS(1188), 1, + anon_sym_EQ_GT, + ACTIONS(1468), 1, + anon_sym_EQ, + STATE(40), 1, + aux_sym_structured_data_object_repeat1, + ACTIONS(379), 3, + anon_sym_DASH, anon_sym_STAR, - ACTIONS(1266), 1, - sym_name, - ACTIONS(1282), 1, - sym_field_symbol_name, - ACTIONS(1466), 1, - anon_sym_DOT, - STATE(510), 1, - aux_sym_macro_include_repeat1, - STATE(532), 1, - sym_arithmetic_expression, - STATE(535), 1, - sym__general_expression_position, - ACTIONS(1280), 2, - sym_numeric_literal, - sym_character_literal, - STATE(511), 2, + anon_sym_STAR_STAR, + ACTIONS(381), 5, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DIV, + anon_sym_MOD, + anon_sym_RBRACK, + [17681] = 7, + ACTIONS(3), 1, sym_eol_comment, - sym_bol_comment, - STATE(519), 2, - sym_structured_data_object, - sym_attribute_access_static, - STATE(533), 2, - sym__calculation_expression, - sym__data_object, - [20849] = 4, ACTIONS(5), 1, - anon_sym_DQUOTE, - STATE(512), 2, - sym_eol_comment, sym_bol_comment, - ACTIONS(1216), 4, + ACTIONS(648), 1, + sym_name, + ACTIONS(1470), 1, anon_sym_STAR, + ACTIONS(1474), 1, + anon_sym_STAR_STAR, + ACTIONS(1472), 3, + anon_sym_SLASH, anon_sym_DIV, anon_sym_MOD, - sym_name, - ACTIONS(1218), 9, + ACTIONS(650), 6, anon_sym_DOT, - anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_STAR_STAR, sym_numeric_literal, sym_character_literal, sym_field_symbol_name, - [20874] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1334), 1, - aux_sym_method_declaration_class_token1, - ACTIONS(1336), 1, - aux_sym_class_constructor_declaration_token1, - ACTIONS(1338), 1, - aux_sym_variable_declaration_token1, - ACTIONS(1468), 1, - aux_sym_class_declaration_token13, - STATE(491), 1, - aux_sym_public_section_repeat1, - STATE(1008), 1, - sym__class_components, - STATE(513), 2, - sym_eol_comment, - sym_bol_comment, - STATE(1006), 6, - sym_method_declaration_class, - sym_constructor_declaration, - sym_class_constructor_declaration, - sym_method_redefinition, - sym_class_method_declaration_class, - sym_variable_declaration, - [20911] = 15, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1470), 1, - aux_sym_class_declaration_token3, - ACTIONS(1472), 1, - aux_sym_class_declaration_token4, - ACTIONS(1474), 1, - aux_sym_class_declaration_token6, - ACTIONS(1476), 1, - aux_sym_class_declaration_token7, - ACTIONS(1478), 1, - aux_sym_class_declaration_token8, - ACTIONS(1480), 1, - aux_sym_class_declaration_token11, - ACTIONS(1482), 1, - aux_sym_class_declaration_token12, - ACTIONS(1484), 1, - anon_sym_DOT, - ACTIONS(1486), 1, - aux_sym__create_addition_token1, - ACTIONS(1488), 1, - aux_sym_class_publication_token1, - ACTIONS(1490), 1, - aux_sym_class_local_friend_publication_token1, - STATE(1243), 1, - sym__create_addition, - STATE(514), 2, - sym_eol_comment, - sym_bol_comment, - [20958] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1496), 1, - aux_sym_method_parameters_token3, - ACTIONS(1498), 1, - aux_sym_method_parameters_token4, - ACTIONS(1494), 2, - anon_sym_DOT, + [17710] = 7, + ACTIONS(1290), 1, anon_sym_BANG, - STATE(515), 2, + ACTIONS(1371), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1492), 8, - aux_sym__method_declaration_exporting_token1, - aux_sym__method_declaration_changing_token1, - aux_sym__method_declaration_raising_token1, - aux_sym__method_declaration_exceptions_token1, + ACTIONS(1375), 2, aux_sym_method_parameters_token1, aux_sym_method_parameters_token2, - aux_sym_returning_parameter_token1, - sym_name, - [20989] = 15, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1486), 1, - aux_sym__create_addition_token1, - ACTIONS(1500), 1, - aux_sym_class_declaration_token3, - ACTIONS(1502), 1, - aux_sym_class_declaration_token4, - ACTIONS(1504), 1, - aux_sym_class_declaration_token6, - ACTIONS(1506), 1, - aux_sym_class_declaration_token7, - ACTIONS(1508), 1, - aux_sym_class_declaration_token8, - ACTIONS(1510), 1, - aux_sym_class_declaration_token11, - ACTIONS(1512), 1, - aux_sym_class_declaration_token12, - ACTIONS(1514), 1, - anon_sym_DOT, - ACTIONS(1516), 1, - aux_sym_class_publication_token1, - ACTIONS(1518), 1, - aux_sym_class_local_friend_publication_token1, - STATE(1492), 1, - sym__create_addition, - STATE(516), 2, - sym_eol_comment, - sym_bol_comment, - [21036] = 12, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1296), 1, - anon_sym_BANG, - ACTIONS(1375), 1, - sym_name, - ACTIONS(1520), 1, - anon_sym_DOT, - STATE(481), 1, - aux_sym__method_declaration_importing_repeat1, - STATE(553), 1, + STATE(489), 2, sym_method_parameters, - STATE(1181), 1, + aux_sym__method_declaration_importing_repeat1, + STATE(1067), 2, sym__operand, - STATE(1708), 1, sym__escaped_operand, - ACTIONS(1381), 2, - aux_sym_method_parameters_token1, - aux_sym_method_parameters_token2, - STATE(517), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1522), 3, - aux_sym__method_declaration_raising_token1, - aux_sym__method_declaration_exceptions_token1, - aux_sym_returning_parameter_token1, - [21077] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1528), 1, - aux_sym_method_parameters_token3, - ACTIONS(1530), 1, - aux_sym_method_parameters_token4, - ACTIONS(1526), 2, + ACTIONS(1476), 4, anon_sym_DOT, - anon_sym_BANG, - STATE(518), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1524), 8, - aux_sym__method_declaration_exporting_token1, - aux_sym__method_declaration_changing_token1, aux_sym__method_declaration_raising_token1, aux_sym__method_declaration_exceptions_token1, - aux_sym_method_parameters_token1, - aux_sym_method_parameters_token2, aux_sym_returning_parameter_token1, - sym_name, - [21108] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - STATE(519), 2, + [17739] = 5, + ACTIONS(3), 1, sym_eol_comment, + ACTIONS(5), 1, sym_bol_comment, - ACTIONS(636), 4, + ACTIONS(1474), 1, + anon_sym_STAR_STAR, + ACTIONS(648), 2, anon_sym_STAR, - anon_sym_DIV, - anon_sym_MOD, sym_name, - ACTIONS(638), 9, + ACTIONS(650), 9, anon_sym_DOT, - anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_STAR_STAR, - sym_numeric_literal, - sym_character_literal, - sym_field_symbol_name, - [21133] = 12, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1266), 1, - sym_name, - ACTIONS(1282), 1, - sym_field_symbol_name, - ACTIONS(1415), 1, - anon_sym_COMMA, - STATE(496), 1, - aux_sym_chained_write_statement_repeat1, - STATE(522), 1, - sym__general_expression_position, - STATE(532), 1, - sym_arithmetic_expression, - ACTIONS(1280), 2, - sym_numeric_literal, - sym_character_literal, - STATE(519), 2, - sym_structured_data_object, - sym_attribute_access_static, - STATE(520), 2, - sym_eol_comment, - sym_bol_comment, - STATE(533), 2, - sym__calculation_expression, - sym__data_object, - [21174] = 12, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1254), 1, - sym_field_symbol_name, - ACTIONS(1532), 1, - sym_name, - STATE(247), 1, - sym_arithmetic_expression, - STATE(768), 1, - sym__general_expression_position, - STATE(1511), 1, - aux_sym__table_expression_free_key, - STATE(2019), 1, - sym_comp_spec, - ACTIONS(1252), 2, - sym_numeric_literal, - sym_character_literal, - STATE(248), 2, - sym__calculation_expression, - sym__data_object, - STATE(249), 2, - sym_structured_data_object, - sym_attribute_access_static, - STATE(521), 2, - sym_eol_comment, - sym_bol_comment, - [21215] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(1534), 1, - sym_name, - ACTIONS(1542), 1, - anon_sym_SLASH, - ACTIONS(1544), 1, - anon_sym_STAR_STAR, - ACTIONS(1538), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(522), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1540), 3, - anon_sym_STAR, anon_sym_DIV, anon_sym_MOD, - ACTIONS(1536), 5, - anon_sym_DOT, - anon_sym_COMMA, sym_numeric_literal, sym_character_literal, sym_field_symbol_name, - [21248] = 12, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1254), 1, + [17764] = 7, + ACTIONS(1238), 1, sym_field_symbol_name, - ACTIONS(1546), 1, + ACTIONS(1438), 1, sym_name, - ACTIONS(1548), 1, + ACTIONS(1478), 1, anon_sym_COLON, - ACTIONS(1550), 1, + ACTIONS(1480), 1, anon_sym_SLASH, - STATE(247), 1, - sym_arithmetic_expression, - STATE(637), 1, - sym__general_expression_position, - ACTIONS(1252), 2, - sym_numeric_literal, - sym_character_literal, - STATE(248), 2, - sym__calculation_expression, - sym__data_object, - STATE(249), 2, - sym_structured_data_object, - sym_attribute_access_static, - STATE(523), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [21289] = 12, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1254), 1, - sym_field_symbol_name, - ACTIONS(1546), 1, - sym_name, - ACTIONS(1552), 1, - anon_sym_COLON, - ACTIONS(1554), 1, - anon_sym_SLASH, - STATE(247), 1, - sym_arithmetic_expression, - STATE(690), 1, - sym__general_expression_position, - ACTIONS(1252), 2, + ACTIONS(1482), 2, sym_numeric_literal, sym_character_literal, - STATE(248), 2, + STATE(629), 6, + sym__general_expression_position, sym__calculation_expression, + sym_arithmetic_expression, sym__data_object, - STATE(249), 2, sym_structured_data_object, sym_attribute_access_static, - STATE(524), 2, + [17793] = 8, + ACTIONS(3), 1, sym_eol_comment, - sym_bol_comment, - [21330] = 10, ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1334), 1, - aux_sym_method_declaration_class_token1, - ACTIONS(1336), 1, - aux_sym_class_constructor_declaration_token1, - ACTIONS(1338), 1, - aux_sym_variable_declaration_token1, - ACTIONS(1556), 1, - aux_sym_class_declaration_token13, - STATE(513), 1, - aux_sym_public_section_repeat1, - STATE(1008), 1, - sym__class_components, - STATE(525), 2, - sym_eol_comment, sym_bol_comment, - STATE(1006), 6, - sym_method_declaration_class, - sym_constructor_declaration, - sym_class_constructor_declaration, - sym_method_redefinition, - sym_class_method_declaration_class, - sym_variable_declaration, - [21367] = 12, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, + ACTIONS(1222), 1, anon_sym_STAR, - ACTIONS(1266), 1, + ACTIONS(1226), 1, + anon_sym_STAR_STAR, + ACTIONS(1484), 1, sym_name, - ACTIONS(1282), 1, - sym_field_symbol_name, - ACTIONS(1415), 1, - anon_sym_COMMA, - STATE(499), 1, - aux_sym_chained_write_statement_repeat1, - STATE(522), 1, - sym__general_expression_position, - STATE(532), 1, - sym_arithmetic_expression, - ACTIONS(1280), 2, - sym_numeric_literal, - sym_character_literal, - STATE(519), 2, - sym_structured_data_object, - sym_attribute_access_static, - STATE(526), 2, + ACTIONS(1344), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1224), 3, + anon_sym_SLASH, + anon_sym_DIV, + anon_sym_MOD, + ACTIONS(1486), 4, + anon_sym_DOT, + aux_sym_loop_statement_token3, + aux_sym_line_spec_token3, + aux_sym__read_table_result_token1, + [17824] = 13, + ACTIONS(1462), 1, + aux_sym__create_addition_token1, + ACTIONS(1488), 1, + aux_sym_class_declaration_token3, + ACTIONS(1490), 1, + aux_sym_class_declaration_token4, + ACTIONS(1492), 1, + aux_sym_class_declaration_token6, + ACTIONS(1494), 1, + aux_sym_class_declaration_token7, + ACTIONS(1496), 1, + aux_sym_class_declaration_token8, + ACTIONS(1498), 1, + aux_sym_class_declaration_token11, + ACTIONS(1500), 1, + aux_sym_class_declaration_token12, + ACTIONS(1502), 1, + anon_sym_DOT, + ACTIONS(1504), 1, + aux_sym_class_publication_token1, + ACTIONS(1506), 1, + aux_sym_class_local_friend_publication_token1, + STATE(1432), 1, + sym__create_addition, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - STATE(533), 2, - sym__calculation_expression, - sym__data_object, - [21408] = 12, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1266), 1, + [17865] = 7, + ACTIONS(1260), 1, sym_name, - ACTIONS(1282), 1, + ACTIONS(1276), 1, sym_field_symbol_name, - ACTIONS(1558), 1, + ACTIONS(1508), 1, anon_sym_DOT, - STATE(510), 1, + STATE(518), 1, aux_sym_macro_include_repeat1, - STATE(532), 1, - sym_arithmetic_expression, - STATE(535), 1, - sym__general_expression_position, - ACTIONS(1280), 2, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(1274), 2, sym_numeric_literal, sym_character_literal, - STATE(519), 2, + STATE(516), 6, + sym__general_expression_position, + sym__calculation_expression, + sym_arithmetic_expression, + sym__data_object, sym_structured_data_object, sym_attribute_access_static, - STATE(527), 2, + [17894] = 8, + ACTIONS(3), 1, sym_eol_comment, - sym_bol_comment, - STATE(533), 2, - sym__calculation_expression, - sym__data_object, - [21449] = 5, ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(1544), 1, - anon_sym_STAR_STAR, - STATE(528), 2, - sym_eol_comment, sym_bol_comment, - ACTIONS(1216), 4, + ACTIONS(1470), 1, anon_sym_STAR, - anon_sym_DIV, - anon_sym_MOD, + ACTIONS(1474), 1, + anon_sym_STAR_STAR, + ACTIONS(1510), 1, sym_name, - ACTIONS(1218), 8, - anon_sym_DOT, - anon_sym_COMMA, + ACTIONS(1514), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1472), 3, anon_sym_SLASH, - sym_numeric_literal, - sym_character_literal, - sym_field_symbol_name, - [21476] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(1216), 1, - sym_name, - ACTIONS(1542), 1, - anon_sym_SLASH, - ACTIONS(1544), 1, - anon_sym_STAR_STAR, - STATE(529), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1540), 3, - anon_sym_STAR, anon_sym_DIV, anon_sym_MOD, - ACTIONS(1218), 7, + ACTIONS(1512), 4, anon_sym_DOT, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, sym_numeric_literal, sym_character_literal, sym_field_symbol_name, - [21507] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - STATE(530), 2, + [17925] = 5, + ACTIONS(1516), 1, + sym_name, + ACTIONS(1520), 1, + aux_sym_method_parameters_token3, + ACTIONS(1522), 1, + aux_sym_method_parameters_token4, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1220), 4, - anon_sym_STAR, - anon_sym_DIV, - anon_sym_MOD, + ACTIONS(1518), 9, + anon_sym_DOT, + aux_sym__method_declaration_exporting_token1, + aux_sym__method_declaration_changing_token1, + aux_sym__method_declaration_raising_token1, + aux_sym__method_declaration_exceptions_token1, + aux_sym_method_parameters_token1, + aux_sym_method_parameters_token2, + aux_sym_returning_parameter_token1, + anon_sym_BANG, + [17950] = 7, + ACTIONS(1524), 1, sym_name, - ACTIONS(1222), 9, + ACTIONS(1527), 1, anon_sym_DOT, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_STAR_STAR, - sym_numeric_literal, - sym_character_literal, + ACTIONS(1532), 1, sym_field_symbol_name, - [21532] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(1542), 1, - anon_sym_SLASH, - ACTIONS(1544), 1, - anon_sym_STAR_STAR, - ACTIONS(1560), 1, - sym_name, - ACTIONS(1538), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(531), 2, + STATE(518), 1, + aux_sym_macro_include_repeat1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1540), 3, - anon_sym_STAR, - anon_sym_DIV, - anon_sym_MOD, - ACTIONS(1430), 5, - anon_sym_DOT, - anon_sym_COMMA, + ACTIONS(1529), 2, sym_numeric_literal, sym_character_literal, - sym_field_symbol_name, - [21565] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - STATE(532), 2, + STATE(516), 6, + sym__general_expression_position, + sym__calculation_expression, + sym_arithmetic_expression, + sym__data_object, + sym_structured_data_object, + sym_attribute_access_static, + [17979] = 12, + ACTIONS(1312), 1, + aux_sym__method_declaration_exporting_token1, + ACTIONS(1314), 1, + aux_sym__method_declaration_changing_token1, + ACTIONS(1316), 1, + aux_sym__method_declaration_raising_token1, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(1320), 1, + aux_sym_returning_parameter_token1, + ACTIONS(1535), 1, + anon_sym_DOT, + STATE(579), 1, + sym__method_declaration_exporting, + STATE(672), 1, + sym__method_declaration_changing, + STATE(1153), 1, + sym_returning_parameter, + STATE(1870), 1, + sym__method_declaration_raising, + STATE(3068), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1224), 4, + [18017] = 5, + ACTIONS(3), 1, + sym_eol_comment, + ACTIONS(5), 1, + sym_bol_comment, + ACTIONS(648), 1, anon_sym_STAR, - anon_sym_DIV, - anon_sym_MOD, - sym_name, - ACTIONS(1226), 9, - anon_sym_DOT, - anon_sym_COMMA, + ACTIONS(1537), 1, + anon_sym_STAR_STAR, + ACTIONS(650), 9, + anon_sym_EQ, + aux_sym_comparison_expression_token1, + anon_sym_LT_GT, + aux_sym_comparison_expression_token2, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_STAR_STAR, - sym_numeric_literal, - sym_character_literal, - sym_field_symbol_name, - [21590] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - STATE(533), 2, + anon_sym_DIV, + anon_sym_MOD, + [18041] = 6, + ACTIONS(3), 1, sym_eol_comment, + ACTIONS(5), 1, sym_bol_comment, - ACTIONS(1228), 4, + ACTIONS(1537), 1, + anon_sym_STAR_STAR, + ACTIONS(1539), 1, anon_sym_STAR, + ACTIONS(1541), 3, + anon_sym_SLASH, anon_sym_DIV, anon_sym_MOD, - sym_name, - ACTIONS(1230), 9, - anon_sym_DOT, - anon_sym_COMMA, + ACTIONS(650), 6, + anon_sym_EQ, + aux_sym_comparison_expression_token1, + anon_sym_LT_GT, + aux_sym_comparison_expression_token2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_STAR_STAR, - sym_numeric_literal, - sym_character_literal, + [18067] = 8, + ACTIONS(55), 1, sym_field_symbol_name, - [21615] = 14, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1306), 1, + ACTIONS(1543), 1, + sym_name, + ACTIONS(1545), 1, + aux_sym_complete_typing_token1, + ACTIONS(1547), 1, + aux_sym_generic_type_token2, + ACTIONS(1549), 1, + aux_sym__data_object_typing_normal_token1, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(1551), 3, + aux_sym__data_object_typing_itabs_token1, + aux_sym__data_object_typing_itabs_token2, + aux_sym__data_object_typing_itabs_token3, + STATE(1429), 3, + sym__data_object, + sym_structured_data_object, + sym_attribute_access_static, + [18097] = 12, + ACTIONS(1312), 1, aux_sym__method_declaration_exporting_token1, - ACTIONS(1308), 1, + ACTIONS(1314), 1, aux_sym__method_declaration_changing_token1, - ACTIONS(1310), 1, + ACTIONS(1316), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(1314), 1, + ACTIONS(1320), 1, aux_sym_returning_parameter_token1, - ACTIONS(1562), 1, + ACTIONS(1553), 1, anon_sym_DOT, - STATE(604), 1, + STATE(606), 1, sym__method_declaration_exporting, - STATE(723), 1, + STATE(810), 1, sym__method_declaration_changing, - STATE(1070), 1, + STATE(1057), 1, sym_returning_parameter, - STATE(1580), 1, + STATE(1850), 1, sym__method_declaration_raising, - STATE(2722), 1, + STATE(2268), 1, sym__method_declaration_exceptions, - STATE(534), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [21659] = 8, + [18135] = 7, + ACTIONS(3), 1, + sym_eol_comment, ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(1542), 1, - anon_sym_SLASH, - ACTIONS(1544), 1, + sym_bol_comment, + ACTIONS(1537), 1, anon_sym_STAR_STAR, - ACTIONS(1564), 1, - sym_name, - ACTIONS(1538), 2, + ACTIONS(1539), 1, + anon_sym_STAR, + ACTIONS(1557), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(535), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1540), 3, - anon_sym_STAR, + ACTIONS(1541), 3, + anon_sym_SLASH, anon_sym_DIV, anon_sym_MOD, - ACTIONS(1566), 4, - anon_sym_DOT, - sym_numeric_literal, - sym_character_literal, - sym_field_symbol_name, - [21691] = 14, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1306), 1, + ACTIONS(1555), 4, + anon_sym_EQ, + aux_sym_comparison_expression_token1, + anon_sym_LT_GT, + aux_sym_comparison_expression_token2, + [18163] = 12, + ACTIONS(1312), 1, aux_sym__method_declaration_exporting_token1, - ACTIONS(1308), 1, + ACTIONS(1314), 1, aux_sym__method_declaration_changing_token1, - ACTIONS(1310), 1, + ACTIONS(1316), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(1314), 1, + ACTIONS(1320), 1, aux_sym_returning_parameter_token1, - ACTIONS(1568), 1, + ACTIONS(1559), 1, anon_sym_DOT, - STATE(598), 1, + STATE(607), 1, sym__method_declaration_exporting, - STATE(791), 1, + STATE(793), 1, sym__method_declaration_changing, - STATE(1157), 1, + STATE(1070), 1, sym_returning_parameter, - STATE(1726), 1, + STATE(1894), 1, sym__method_declaration_raising, - STATE(2258), 1, + STATE(2288), 1, sym__method_declaration_exceptions, - STATE(536), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [21735] = 14, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1306), 1, - aux_sym__method_declaration_exporting_token1, - ACTIONS(1308), 1, - aux_sym__method_declaration_changing_token1, - ACTIONS(1310), 1, - aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(1314), 1, - aux_sym_returning_parameter_token1, - ACTIONS(1570), 1, - anon_sym_DOT, - STATE(599), 1, - sym__method_declaration_exporting, - STATE(676), 1, - sym__method_declaration_changing, - STATE(1159), 1, - sym_returning_parameter, - STATE(1729), 1, - sym__method_declaration_raising, - STATE(2890), 1, - sym__method_declaration_exceptions, - STATE(537), 2, + [18201] = 6, + ACTIONS(1238), 1, + sym_field_symbol_name, + ACTIONS(1438), 1, + sym_name, + ACTIONS(1561), 1, + anon_sym_SLASH, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [21779] = 14, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1306), 1, + ACTIONS(1563), 2, + sym_numeric_literal, + sym_character_literal, + STATE(558), 6, + sym__general_expression_position, + sym__calculation_expression, + sym_arithmetic_expression, + sym__data_object, + sym_structured_data_object, + sym_attribute_access_static, + [18227] = 6, + ACTIONS(1238), 1, + sym_field_symbol_name, + ACTIONS(1438), 1, + sym_name, + ACTIONS(1565), 1, + anon_sym_SLASH, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(1567), 2, + sym_numeric_literal, + sym_character_literal, + STATE(568), 6, + sym__general_expression_position, + sym__calculation_expression, + sym_arithmetic_expression, + sym__data_object, + sym_structured_data_object, + sym_attribute_access_static, + [18253] = 12, + ACTIONS(1312), 1, aux_sym__method_declaration_exporting_token1, - ACTIONS(1308), 1, + ACTIONS(1314), 1, aux_sym__method_declaration_changing_token1, - ACTIONS(1310), 1, + ACTIONS(1316), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(1314), 1, + ACTIONS(1320), 1, aux_sym_returning_parameter_token1, - ACTIONS(1572), 1, + ACTIONS(1569), 1, anon_sym_DOT, - STATE(591), 1, + STATE(589), 1, sym__method_declaration_exporting, - STATE(794), 1, + STATE(739), 1, sym__method_declaration_changing, - STATE(1207), 1, + STATE(1088), 1, sym_returning_parameter, - STATE(1762), 1, + STATE(1576), 1, sym__method_declaration_raising, - STATE(2207), 1, + STATE(2918), 1, sym__method_declaration_exceptions, - STATE(538), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [21823] = 14, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1306), 1, + [18291] = 12, + ACTIONS(1312), 1, aux_sym__method_declaration_exporting_token1, - ACTIONS(1308), 1, + ACTIONS(1314), 1, aux_sym__method_declaration_changing_token1, - ACTIONS(1310), 1, + ACTIONS(1316), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(1314), 1, + ACTIONS(1320), 1, aux_sym_returning_parameter_token1, - ACTIONS(1574), 1, + ACTIONS(1571), 1, anon_sym_DOT, - STATE(588), 1, + STATE(593), 1, sym__method_declaration_exporting, - STATE(759), 1, + STATE(867), 1, sym__method_declaration_changing, - STATE(1192), 1, + STATE(1052), 1, sym_returning_parameter, - STATE(1823), 1, + STATE(1851), 1, sym__method_declaration_raising, - STATE(2226), 1, + STATE(2340), 1, sym__method_declaration_exceptions, - STATE(539), 2, - sym_eol_comment, - sym_bol_comment, - [21867] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(627), 1, - anon_sym_DASH2, - ACTIONS(1232), 1, - anon_sym_EQ_GT, - ACTIONS(1576), 1, - anon_sym_EQ, - STATE(98), 1, - aux_sym_structured_data_object_repeat1, - ACTIONS(636), 2, - anon_sym_DASH, - anon_sym_STAR, - STATE(540), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(638), 6, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DIV, - anon_sym_MOD, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - [21899] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(1236), 1, - anon_sym_SLASH, - ACTIONS(1238), 1, - anon_sym_STAR_STAR, - ACTIONS(1580), 1, - anon_sym_DOT, - ACTIONS(1407), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(541), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1234), 3, - anon_sym_STAR, - anon_sym_DIV, - anon_sym_MOD, - ACTIONS(1578), 4, - aux_sym_loop_statement_token3, - aux_sym_line_spec_token3, - aux_sym__read_table_result_token1, - sym_name, - [21931] = 14, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1306), 1, + [18329] = 12, + ACTIONS(1312), 1, aux_sym__method_declaration_exporting_token1, - ACTIONS(1308), 1, + ACTIONS(1314), 1, aux_sym__method_declaration_changing_token1, - ACTIONS(1310), 1, + ACTIONS(1316), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(1314), 1, + ACTIONS(1320), 1, aux_sym_returning_parameter_token1, - ACTIONS(1582), 1, + ACTIONS(1573), 1, anon_sym_DOT, - STATE(602), 1, + STATE(590), 1, sym__method_declaration_exporting, - STATE(728), 1, + STATE(685), 1, sym__method_declaration_changing, - STATE(1038), 1, + STATE(1138), 1, sym_returning_parameter, - STATE(1549), 1, + STATE(1893), 1, sym__method_declaration_raising, - STATE(2649), 1, + STATE(3041), 1, sym__method_declaration_exceptions, - STATE(542), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [21975] = 14, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1306), 1, + [18367] = 12, + ACTIONS(1312), 1, aux_sym__method_declaration_exporting_token1, - ACTIONS(1308), 1, + ACTIONS(1314), 1, aux_sym__method_declaration_changing_token1, - ACTIONS(1310), 1, + ACTIONS(1316), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(1314), 1, + ACTIONS(1320), 1, aux_sym_returning_parameter_token1, - ACTIONS(1584), 1, + ACTIONS(1575), 1, anon_sym_DOT, - STATE(612), 1, + STATE(586), 1, sym__method_declaration_exporting, - STATE(679), 1, + STATE(737), 1, sym__method_declaration_changing, - STATE(1146), 1, + STATE(1092), 1, sym_returning_parameter, - STATE(1709), 1, + STATE(1905), 1, sym__method_declaration_raising, - STATE(2875), 1, + STATE(2273), 1, sym__method_declaration_exceptions, - STATE(543), 2, - sym_eol_comment, - sym_bol_comment, - [22019] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(627), 1, - anon_sym_DASH2, - ACTIONS(1232), 1, - anon_sym_EQ_GT, - ACTIONS(1586), 1, - anon_sym_EQ, - STATE(98), 1, - aux_sym_structured_data_object_repeat1, - ACTIONS(636), 2, - anon_sym_DASH, - anon_sym_STAR, - STATE(544), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(638), 6, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DIV, - anon_sym_MOD, - anon_sym_STAR_STAR, - [22051] = 11, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(57), 1, + [18405] = 5, + ACTIONS(1238), 1, sym_field_symbol_name, - ACTIONS(1588), 1, + ACTIONS(1438), 1, sym_name, - ACTIONS(1590), 1, - aux_sym_complete_typing_token1, - ACTIONS(1592), 1, - aux_sym_generic_type_token2, - ACTIONS(1594), 1, - aux_sym__data_object_typing_normal_token1, - STATE(1092), 1, - sym__data_object, - STATE(545), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - STATE(996), 2, - sym_structured_data_object, - sym_attribute_access_static, - ACTIONS(1596), 3, - aux_sym__data_object_typing_itabs_token1, - aux_sym__data_object_typing_itabs_token2, - aux_sym__data_object_typing_itabs_token3, - [22089] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1266), 1, - sym_name, - ACTIONS(1282), 1, - sym_field_symbol_name, - STATE(528), 1, - sym__general_expression_position, - STATE(532), 1, - sym_arithmetic_expression, - ACTIONS(1280), 2, + ACTIONS(1577), 2, sym_numeric_literal, sym_character_literal, - STATE(519), 2, - sym_structured_data_object, - sym_attribute_access_static, - STATE(533), 2, - sym__calculation_expression, - sym__data_object, - STATE(546), 2, - sym_eol_comment, - sym_bol_comment, - [22124] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1254), 1, - sym_field_symbol_name, - ACTIONS(1546), 1, - sym_name, - STATE(247), 1, - sym_arithmetic_expression, - STATE(753), 1, + STATE(548), 6, sym__general_expression_position, - ACTIONS(1252), 2, - sym_numeric_literal, - sym_character_literal, - STATE(248), 2, sym__calculation_expression, - sym__data_object, - STATE(249), 2, - sym_structured_data_object, - sym_attribute_access_static, - STATE(547), 2, - sym_eol_comment, - sym_bol_comment, - [22159] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1254), 1, - sym_field_symbol_name, - ACTIONS(1546), 1, - sym_name, - STATE(247), 1, sym_arithmetic_expression, - STATE(625), 1, - sym__general_expression_position, - ACTIONS(1252), 2, - sym_numeric_literal, - sym_character_literal, - STATE(248), 2, - sym__calculation_expression, sym__data_object, - STATE(249), 2, sym_structured_data_object, sym_attribute_access_static, - STATE(548), 2, + [18428] = 3, + ACTIONS(1579), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [22194] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1254), 1, + ACTIONS(1581), 9, + anon_sym_DOT, + aux_sym__method_declaration_exporting_token1, + aux_sym__method_declaration_changing_token1, + aux_sym__method_declaration_raising_token1, + aux_sym__method_declaration_exceptions_token1, + aux_sym_method_parameters_token1, + aux_sym_method_parameters_token2, + aux_sym_returning_parameter_token1, + anon_sym_BANG, + [18447] = 5, + ACTIONS(1238), 1, sym_field_symbol_name, - ACTIONS(1546), 1, + ACTIONS(1438), 1, sym_name, - STATE(247), 1, - sym_arithmetic_expression, - STATE(722), 1, - sym__general_expression_position, - ACTIONS(1252), 2, - sym_numeric_literal, - sym_character_literal, - STATE(248), 2, - sym__calculation_expression, - sym__data_object, - STATE(249), 2, - sym_structured_data_object, - sym_attribute_access_static, - STATE(549), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [22229] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1254), 1, - sym_field_symbol_name, - ACTIONS(1546), 1, - sym_name, - STATE(247), 1, - sym_arithmetic_expression, - STATE(721), 1, - sym__general_expression_position, - ACTIONS(1252), 2, + ACTIONS(1583), 2, sym_numeric_literal, sym_character_literal, - STATE(248), 2, + STATE(564), 6, + sym__general_expression_position, sym__calculation_expression, + sym_arithmetic_expression, sym__data_object, - STATE(249), 2, sym_structured_data_object, sym_attribute_access_static, - STATE(550), 2, - sym_eol_comment, - sym_bol_comment, - [22264] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1254), 1, + [18470] = 5, + ACTIONS(1238), 1, sym_field_symbol_name, - ACTIONS(1546), 1, + ACTIONS(1438), 1, sym_name, - STATE(247), 1, - sym_arithmetic_expression, - STATE(691), 1, - sym__general_expression_position, - ACTIONS(1252), 2, - sym_numeric_literal, - sym_character_literal, - STATE(248), 2, - sym__calculation_expression, - sym__data_object, - STATE(249), 2, - sym_structured_data_object, - sym_attribute_access_static, - STATE(551), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [22299] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1254), 1, - sym_field_symbol_name, - ACTIONS(1546), 1, - sym_name, - STATE(247), 1, - sym_arithmetic_expression, - STATE(693), 1, - sym__general_expression_position, - ACTIONS(1252), 2, + ACTIONS(1585), 2, sym_numeric_literal, sym_character_literal, - STATE(248), 2, + STATE(540), 6, + sym__general_expression_position, sym__calculation_expression, + sym_arithmetic_expression, sym__data_object, - STATE(249), 2, sym_structured_data_object, sym_attribute_access_static, - STATE(552), 2, + [18493] = 9, + ACTIONS(3), 1, sym_eol_comment, - sym_bol_comment, - [22334] = 5, ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1600), 2, - anon_sym_DOT, - anon_sym_BANG, - STATE(553), 2, - sym_eol_comment, sym_bol_comment, - ACTIONS(1598), 8, - aux_sym__method_declaration_exporting_token1, - aux_sym__method_declaration_changing_token1, - aux_sym__method_declaration_raising_token1, - aux_sym__method_declaration_exceptions_token1, - aux_sym_method_parameters_token1, - aux_sym_method_parameters_token2, - aux_sym_returning_parameter_token1, - sym_name, - [22359] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, + ACTIONS(1222), 1, anon_sym_STAR, - ACTIONS(1254), 1, + ACTIONS(1226), 1, + anon_sym_STAR_STAR, + ACTIONS(1587), 1, + anon_sym_DOT, + ACTIONS(1589), 1, + anon_sym_COMMA, + STATE(1810), 1, + aux_sym_chained_write_statement_repeat1, + ACTIONS(1344), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1224), 3, + anon_sym_SLASH, + anon_sym_DIV, + anon_sym_MOD, + [18524] = 5, + ACTIONS(1238), 1, sym_field_symbol_name, - ACTIONS(1546), 1, + ACTIONS(1438), 1, sym_name, - STATE(247), 1, - sym_arithmetic_expression, - STATE(617), 1, - sym__general_expression_position, - ACTIONS(1252), 2, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(1591), 2, sym_numeric_literal, sym_character_literal, - STATE(248), 2, + STATE(608), 6, + sym__general_expression_position, sym__calculation_expression, + sym_arithmetic_expression, sym__data_object, - STATE(249), 2, sym_structured_data_object, sym_attribute_access_static, - STATE(554), 2, - sym_eol_comment, - sym_bol_comment, - [22394] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1254), 1, + [18547] = 5, + ACTIONS(1238), 1, sym_field_symbol_name, - ACTIONS(1546), 1, + ACTIONS(1438), 1, sym_name, - STATE(247), 1, - sym_arithmetic_expression, - STATE(684), 1, - sym__general_expression_position, - ACTIONS(1252), 2, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(1593), 2, sym_numeric_literal, sym_character_literal, - STATE(248), 2, + STATE(581), 6, + sym__general_expression_position, sym__calculation_expression, + sym_arithmetic_expression, sym__data_object, - STATE(249), 2, sym_structured_data_object, sym_attribute_access_static, - STATE(555), 2, + [18570] = 3, + ACTIONS(1595), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [22429] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1604), 2, + ACTIONS(1597), 9, anon_sym_DOT, - anon_sym_BANG, - STATE(556), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1602), 8, aux_sym__method_declaration_exporting_token1, aux_sym__method_declaration_changing_token1, aux_sym__method_declaration_raising_token1, @@ -34284,742 +31143,717 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_parameters_token1, aux_sym_method_parameters_token2, aux_sym_returning_parameter_token1, - sym_name, - [22454] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1606), 1, - sym_name, - STATE(575), 1, - aux_sym_parameter_list_repeat1, - STATE(629), 1, - sym_parameter_binding, - ACTIONS(1608), 2, - anon_sym_DOT, - anon_sym_RPAREN, - STATE(557), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1610), 5, - aux_sym__method_declaration_importing_token1, - aux_sym__method_declaration_exporting_token1, - aux_sym__method_declaration_changing_token1, - aux_sym__method_declaration_exceptions_token1, - aux_sym__explicit_parameter_list_token1, - [22485] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1614), 2, - anon_sym_DOT, anon_sym_BANG, - STATE(558), 2, + [18589] = 9, + ACTIONS(3), 1, sym_eol_comment, - sym_bol_comment, - ACTIONS(1612), 8, - aux_sym__method_declaration_exporting_token1, - aux_sym__method_declaration_changing_token1, - aux_sym__method_declaration_raising_token1, - aux_sym__method_declaration_exceptions_token1, - aux_sym_method_parameters_token1, - aux_sym_method_parameters_token2, - aux_sym_returning_parameter_token1, - sym_name, - [22510] = 7, ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(1620), 1, + sym_bol_comment, + ACTIONS(1222), 1, anon_sym_STAR, - ACTIONS(1624), 1, + ACTIONS(1226), 1, anon_sym_STAR_STAR, - ACTIONS(1618), 2, + ACTIONS(1599), 1, + anon_sym_DOT, + ACTIONS(1601), 1, + aux_sym_complete_typing_token2, + ACTIONS(1603), 1, + aux_sym_loop_statement_token5, + ACTIONS(1344), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(559), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1622), 3, + ACTIONS(1224), 3, anon_sym_SLASH, anon_sym_DIV, anon_sym_MOD, - ACTIONS(1616), 4, - anon_sym_EQ, - aux_sym_comparison_expression_token1, - anon_sym_LT_GT, - aux_sym_comparison_expression_token2, - [22539] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1628), 2, - anon_sym_DOT, - anon_sym_BANG, - STATE(560), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1626), 8, - aux_sym__method_declaration_exporting_token1, - aux_sym__method_declaration_changing_token1, - aux_sym__method_declaration_raising_token1, - aux_sym__method_declaration_exceptions_token1, - aux_sym_method_parameters_token1, - aux_sym_method_parameters_token2, - aux_sym_returning_parameter_token1, - sym_name, - [22564] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1266), 1, - sym_name, - ACTIONS(1282), 1, + [18620] = 5, + ACTIONS(1238), 1, sym_field_symbol_name, - STATE(529), 1, - sym__general_expression_position, - STATE(532), 1, - sym_arithmetic_expression, - ACTIONS(1280), 2, - sym_numeric_literal, - sym_character_literal, - STATE(519), 2, - sym_structured_data_object, - sym_attribute_access_static, - STATE(533), 2, - sym__calculation_expression, - sym__data_object, - STATE(561), 2, + ACTIONS(1438), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [22599] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1254), 1, - sym_field_symbol_name, - ACTIONS(1546), 1, - sym_name, - STATE(245), 1, - sym__general_expression_position, - STATE(247), 1, - sym_arithmetic_expression, - ACTIONS(1252), 2, + ACTIONS(1605), 2, sym_numeric_literal, sym_character_literal, - STATE(248), 2, + STATE(617), 6, + sym__general_expression_position, sym__calculation_expression, + sym_arithmetic_expression, sym__data_object, - STATE(249), 2, sym_structured_data_object, sym_attribute_access_static, - STATE(562), 2, - sym_eol_comment, - sym_bol_comment, - [22634] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1254), 1, + [18643] = 5, + ACTIONS(1238), 1, sym_field_symbol_name, - ACTIONS(1546), 1, + ACTIONS(1438), 1, sym_name, - STATE(247), 1, - sym_arithmetic_expression, - STATE(623), 1, - sym__general_expression_position, - ACTIONS(1252), 2, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(1607), 2, sym_numeric_literal, sym_character_literal, - STATE(248), 2, + STATE(631), 6, + sym__general_expression_position, sym__calculation_expression, + sym_arithmetic_expression, sym__data_object, - STATE(249), 2, sym_structured_data_object, sym_attribute_access_static, - STATE(563), 2, - sym_eol_comment, - sym_bol_comment, - [22669] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1254), 1, + [18666] = 5, + ACTIONS(1238), 1, sym_field_symbol_name, - ACTIONS(1546), 1, + ACTIONS(1438), 1, sym_name, - STATE(247), 1, - sym_arithmetic_expression, - STATE(607), 1, - sym__general_expression_position, - ACTIONS(1252), 2, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(1609), 2, sym_numeric_literal, sym_character_literal, - STATE(248), 2, + STATE(625), 6, + sym__general_expression_position, sym__calculation_expression, + sym_arithmetic_expression, sym__data_object, - STATE(249), 2, sym_structured_data_object, sym_attribute_access_static, - STATE(564), 2, - sym_eol_comment, - sym_bol_comment, - [22704] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1254), 1, + [18689] = 5, + ACTIONS(1238), 1, sym_field_symbol_name, - ACTIONS(1546), 1, + ACTIONS(1438), 1, sym_name, - STATE(247), 1, - sym_arithmetic_expression, - STATE(454), 1, - sym__general_expression_position, - ACTIONS(1252), 2, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(1611), 2, sym_numeric_literal, sym_character_literal, - STATE(248), 2, + STATE(597), 6, + sym__general_expression_position, sym__calculation_expression, + sym_arithmetic_expression, sym__data_object, - STATE(249), 2, sym_structured_data_object, sym_attribute_access_static, - STATE(565), 2, + [18712] = 5, + ACTIONS(1238), 1, + sym_field_symbol_name, + ACTIONS(1438), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [22739] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1266), 1, - sym_name, - ACTIONS(1282), 1, - sym_field_symbol_name, - STATE(531), 1, - sym__general_expression_position, - STATE(532), 1, - sym_arithmetic_expression, - ACTIONS(1280), 2, + ACTIONS(1613), 2, sym_numeric_literal, sym_character_literal, - STATE(519), 2, - sym_structured_data_object, - sym_attribute_access_static, - STATE(533), 2, + STATE(264), 6, + sym__general_expression_position, sym__calculation_expression, + sym_arithmetic_expression, sym__data_object, - STATE(566), 2, - sym_eol_comment, - sym_bol_comment, - [22774] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1254), 1, + sym_structured_data_object, + sym_attribute_access_static, + [18735] = 5, + ACTIONS(1238), 1, sym_field_symbol_name, - ACTIONS(1546), 1, + ACTIONS(1615), 1, sym_name, - STATE(247), 1, - sym_arithmetic_expression, - STATE(646), 1, - sym__general_expression_position, - ACTIONS(1252), 2, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(1617), 2, sym_numeric_literal, sym_character_literal, - STATE(248), 2, + STATE(521), 6, + sym__general_expression_position, sym__calculation_expression, + sym_arithmetic_expression, sym__data_object, - STATE(249), 2, sym_structured_data_object, sym_attribute_access_static, - STATE(567), 2, - sym_eol_comment, - sym_bol_comment, - [22809] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1254), 1, + [18758] = 5, + ACTIONS(1238), 1, sym_field_symbol_name, - ACTIONS(1546), 1, + ACTIONS(1615), 1, sym_name, - STATE(247), 1, - sym_arithmetic_expression, - STATE(778), 1, - sym__general_expression_position, - ACTIONS(1252), 2, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(1619), 2, sym_numeric_literal, sym_character_literal, - STATE(248), 2, + STATE(520), 6, + sym__general_expression_position, sym__calculation_expression, + sym_arithmetic_expression, sym__data_object, - STATE(249), 2, sym_structured_data_object, sym_attribute_access_static, - STATE(568), 2, + [18781] = 9, + ACTIONS(3), 1, sym_eol_comment, - sym_bol_comment, - [22844] = 6, ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(1620), 1, + sym_bol_comment, + ACTIONS(1222), 1, anon_sym_STAR, - ACTIONS(1624), 1, + ACTIONS(1226), 1, anon_sym_STAR_STAR, - STATE(569), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1622), 3, + ACTIONS(1589), 1, + anon_sym_COMMA, + ACTIONS(1621), 1, + anon_sym_DOT, + STATE(1745), 1, + aux_sym_chained_write_statement_repeat1, + ACTIONS(1344), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1224), 3, anon_sym_SLASH, anon_sym_DIV, anon_sym_MOD, - ACTIONS(1218), 6, - anon_sym_EQ, - aux_sym_comparison_expression_token1, - anon_sym_LT_GT, - aux_sym_comparison_expression_token2, - anon_sym_PLUS, - anon_sym_DASH, - [22871] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1254), 1, + [18812] = 5, + ACTIONS(1238), 1, sym_field_symbol_name, - ACTIONS(1546), 1, + ACTIONS(1438), 1, sym_name, - STATE(247), 1, - sym_arithmetic_expression, - STATE(741), 1, - sym__general_expression_position, - ACTIONS(1252), 2, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(1623), 2, sym_numeric_literal, sym_character_literal, - STATE(248), 2, + STATE(626), 6, + sym__general_expression_position, sym__calculation_expression, + sym_arithmetic_expression, sym__data_object, - STATE(249), 2, sym_structured_data_object, sym_attribute_access_static, - STATE(570), 2, + [18835] = 5, + ACTIONS(1238), 1, + sym_field_symbol_name, + ACTIONS(1438), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [22906] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1254), 1, + ACTIONS(1625), 2, + sym_numeric_literal, + sym_character_literal, + STATE(632), 6, + sym__general_expression_position, + sym__calculation_expression, + sym_arithmetic_expression, + sym__data_object, + sym_structured_data_object, + sym_attribute_access_static, + [18858] = 5, + ACTIONS(1238), 1, sym_field_symbol_name, - ACTIONS(1630), 1, + ACTIONS(1438), 1, sym_name, - STATE(245), 1, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(1627), 2, + sym_numeric_literal, + sym_character_literal, + STATE(612), 6, sym__general_expression_position, - STATE(247), 1, + sym__calculation_expression, sym_arithmetic_expression, - ACTIONS(1252), 2, + sym__data_object, + sym_structured_data_object, + sym_attribute_access_static, + [18881] = 5, + ACTIONS(1238), 1, + sym_field_symbol_name, + ACTIONS(1615), 1, + sym_name, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(1629), 2, sym_numeric_literal, sym_character_literal, - STATE(248), 2, + STATE(104), 6, + sym__general_expression_position, sym__calculation_expression, + sym_arithmetic_expression, sym__data_object, - STATE(249), 2, sym_structured_data_object, sym_attribute_access_static, - STATE(571), 2, + [18904] = 3, + ACTIONS(1631), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [22941] = 10, + ACTIONS(1633), 9, + anon_sym_DOT, + aux_sym__method_declaration_exporting_token1, + aux_sym__method_declaration_changing_token1, + aux_sym__method_declaration_raising_token1, + aux_sym__method_declaration_exceptions_token1, + aux_sym_method_parameters_token1, + aux_sym_method_parameters_token2, + aux_sym_returning_parameter_token1, + anon_sym_BANG, + [18923] = 9, + ACTIONS(3), 1, + sym_eol_comment, ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, + sym_bol_comment, + ACTIONS(1222), 1, anon_sym_STAR, - ACTIONS(1254), 1, + ACTIONS(1226), 1, + anon_sym_STAR_STAR, + ACTIONS(1635), 1, + anon_sym_DOT, + ACTIONS(1637), 1, + aux_sym_complete_typing_token2, + ACTIONS(1639), 1, + aux_sym_loop_statement_token5, + ACTIONS(1344), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1224), 3, + anon_sym_SLASH, + anon_sym_DIV, + anon_sym_MOD, + [18954] = 5, + ACTIONS(1238), 1, sym_field_symbol_name, - ACTIONS(1546), 1, + ACTIONS(1438), 1, sym_name, - STATE(247), 1, - sym_arithmetic_expression, - STATE(590), 1, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(1641), 2, + sym_numeric_literal, + sym_character_literal, + STATE(592), 6, sym__general_expression_position, - ACTIONS(1252), 2, + sym__calculation_expression, + sym_arithmetic_expression, + sym__data_object, + sym_structured_data_object, + sym_attribute_access_static, + [18977] = 5, + ACTIONS(1238), 1, + sym_field_symbol_name, + ACTIONS(1438), 1, + sym_name, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(1643), 2, sym_numeric_literal, sym_character_literal, - STATE(248), 2, + STATE(641), 6, + sym__general_expression_position, sym__calculation_expression, + sym_arithmetic_expression, sym__data_object, - STATE(249), 2, sym_structured_data_object, sym_attribute_access_static, - STATE(572), 2, + [19000] = 5, + ACTIONS(1238), 1, + sym_field_symbol_name, + ACTIONS(1438), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [22976] = 5, + ACTIONS(1645), 2, + sym_numeric_literal, + sym_character_literal, + STATE(614), 6, + sym__general_expression_position, + sym__calculation_expression, + sym_arithmetic_expression, + sym__data_object, + sym_structured_data_object, + sym_attribute_access_static, + [19023] = 9, + ACTIONS(3), 1, + sym_eol_comment, ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(1216), 1, + sym_bol_comment, + ACTIONS(1222), 1, anon_sym_STAR, - ACTIONS(1624), 1, + ACTIONS(1226), 1, anon_sym_STAR_STAR, - STATE(573), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1218), 9, - anon_sym_EQ, - aux_sym_comparison_expression_token1, - anon_sym_LT_GT, - aux_sym_comparison_expression_token2, + ACTIONS(1589), 1, + anon_sym_COMMA, + ACTIONS(1647), 1, + anon_sym_DOT, + STATE(1752), 1, + aux_sym_chained_write_statement_repeat1, + ACTIONS(1344), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(1224), 3, anon_sym_SLASH, anon_sym_DIV, anon_sym_MOD, - [23001] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1254), 1, + [19054] = 5, + ACTIONS(1238), 1, sym_field_symbol_name, - ACTIONS(1546), 1, + ACTIONS(1438), 1, sym_name, - STATE(247), 1, - sym_arithmetic_expression, - STATE(631), 1, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(1649), 2, + sym_numeric_literal, + sym_character_literal, + STATE(627), 6, sym__general_expression_position, - ACTIONS(1252), 2, + sym__calculation_expression, + sym_arithmetic_expression, + sym__data_object, + sym_structured_data_object, + sym_attribute_access_static, + [19077] = 5, + ACTIONS(1238), 1, + sym_field_symbol_name, + ACTIONS(1438), 1, + sym_name, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(1651), 2, sym_numeric_literal, sym_character_literal, - STATE(248), 2, + STATE(473), 6, + sym__general_expression_position, sym__calculation_expression, + sym_arithmetic_expression, sym__data_object, - STATE(249), 2, sym_structured_data_object, sym_attribute_access_static, - STATE(574), 2, + [19100] = 5, + ACTIONS(1238), 1, + sym_field_symbol_name, + ACTIONS(1438), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [23036] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1632), 1, + ACTIONS(1653), 2, + sym_numeric_literal, + sym_character_literal, + STATE(640), 6, + sym__general_expression_position, + sym__calculation_expression, + sym_arithmetic_expression, + sym__data_object, + sym_structured_data_object, + sym_attribute_access_static, + [19123] = 4, + ACTIONS(1655), 1, sym_name, - STATE(629), 1, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + STATE(563), 2, sym_parameter_binding, - ACTIONS(1635), 2, + aux_sym_parameter_list_repeat1, + ACTIONS(1657), 7, anon_sym_DOT, + aux_sym__method_declaration_importing_token1, + aux_sym__method_declaration_exporting_token1, + aux_sym__method_declaration_changing_token1, anon_sym_RPAREN, - STATE(575), 3, + aux_sym__method_declaration_exceptions_token1, + aux_sym__explicit_parameter_list_token1, + [19144] = 4, + ACTIONS(1659), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, + STATE(563), 2, + sym_parameter_binding, aux_sym_parameter_list_repeat1, - ACTIONS(1637), 5, + ACTIONS(1662), 7, + anon_sym_DOT, aux_sym__method_declaration_importing_token1, aux_sym__method_declaration_exporting_token1, aux_sym__method_declaration_changing_token1, + anon_sym_RPAREN, aux_sym__method_declaration_exceptions_token1, aux_sym__explicit_parameter_list_token1, - [23065] = 10, + [19165] = 7, + ACTIONS(3), 1, + sym_eol_comment, ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, + sym_bol_comment, + ACTIONS(1222), 1, anon_sym_STAR, - ACTIONS(1254), 1, + ACTIONS(1226), 1, + anon_sym_STAR_STAR, + ACTIONS(1344), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1224), 3, + anon_sym_SLASH, + anon_sym_DIV, + anon_sym_MOD, + ACTIONS(1664), 3, + anon_sym_DOT, + aux_sym__logical_expression_token2, + aux_sym__logical_expression_token3, + [19192] = 5, + ACTIONS(1238), 1, sym_field_symbol_name, - ACTIONS(1546), 1, + ACTIONS(1438), 1, sym_name, - STATE(247), 1, - sym_arithmetic_expression, - STATE(660), 1, - sym__general_expression_position, - ACTIONS(1252), 2, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(1666), 2, sym_numeric_literal, sym_character_literal, - STATE(248), 2, + STATE(596), 6, + sym__general_expression_position, sym__calculation_expression, + sym_arithmetic_expression, sym__data_object, - STATE(249), 2, sym_structured_data_object, sym_attribute_access_static, - STATE(576), 2, - sym_eol_comment, - sym_bol_comment, - [23100] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1254), 1, + [19215] = 5, + ACTIONS(1238), 1, sym_field_symbol_name, - ACTIONS(1546), 1, + ACTIONS(1438), 1, sym_name, - STATE(247), 1, - sym_arithmetic_expression, - STATE(492), 1, - sym__general_expression_position, - ACTIONS(1252), 2, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(1668), 2, sym_numeric_literal, sym_character_literal, - STATE(248), 2, + STATE(536), 6, + sym__general_expression_position, sym__calculation_expression, + sym_arithmetic_expression, sym__data_object, - STATE(249), 2, sym_structured_data_object, sym_attribute_access_static, - STATE(577), 2, + [19238] = 5, + ACTIONS(1238), 1, + sym_field_symbol_name, + ACTIONS(1438), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [23135] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1266), 1, - sym_name, - ACTIONS(1282), 1, - sym_field_symbol_name, - STATE(512), 1, - sym__general_expression_position, - STATE(532), 1, - sym_arithmetic_expression, - ACTIONS(1280), 2, + ACTIONS(1629), 2, sym_numeric_literal, sym_character_literal, - STATE(519), 2, - sym_structured_data_object, - sym_attribute_access_static, - STATE(533), 2, + STATE(104), 6, + sym__general_expression_position, sym__calculation_expression, + sym_arithmetic_expression, sym__data_object, - STATE(578), 2, + sym_structured_data_object, + sym_attribute_access_static, + [19261] = 9, + ACTIONS(3), 1, sym_eol_comment, - sym_bol_comment, - [23170] = 10, ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, + sym_bol_comment, + ACTIONS(1222), 1, anon_sym_STAR, - ACTIONS(1254), 1, + ACTIONS(1226), 1, + anon_sym_STAR_STAR, + ACTIONS(1589), 1, + anon_sym_COMMA, + ACTIONS(1670), 1, + anon_sym_DOT, + STATE(1680), 1, + aux_sym_chained_write_statement_repeat1, + ACTIONS(1344), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1224), 3, + anon_sym_SLASH, + anon_sym_DIV, + anon_sym_MOD, + [19292] = 5, + ACTIONS(1238), 1, sym_field_symbol_name, - ACTIONS(1546), 1, + ACTIONS(1438), 1, sym_name, - STATE(247), 1, - sym_arithmetic_expression, - STATE(734), 1, - sym__general_expression_position, - ACTIONS(1252), 2, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(1672), 2, sym_numeric_literal, sym_character_literal, - STATE(248), 2, + STATE(513), 6, + sym__general_expression_position, sym__calculation_expression, + sym_arithmetic_expression, sym__data_object, - STATE(249), 2, sym_structured_data_object, sym_attribute_access_static, - STATE(579), 2, - sym_eol_comment, - sym_bol_comment, - [23205] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1254), 1, + [19315] = 5, + ACTIONS(1238), 1, sym_field_symbol_name, - ACTIONS(1546), 1, + ACTIONS(1438), 1, sym_name, - STATE(247), 1, - sym_arithmetic_expression, - STATE(541), 1, - sym__general_expression_position, - ACTIONS(1252), 2, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(1674), 2, sym_numeric_literal, sym_character_literal, - STATE(248), 2, + STATE(554), 6, + sym__general_expression_position, sym__calculation_expression, + sym_arithmetic_expression, sym__data_object, - STATE(249), 2, sym_structured_data_object, sym_attribute_access_static, - STATE(580), 2, - sym_eol_comment, - sym_bol_comment, - [23240] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1254), 1, + [19338] = 5, + ACTIONS(1238), 1, sym_field_symbol_name, - ACTIONS(1630), 1, + ACTIONS(1438), 1, sym_name, - STATE(247), 1, - sym_arithmetic_expression, - STATE(573), 1, - sym__general_expression_position, - ACTIONS(1252), 2, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(1676), 2, sym_numeric_literal, sym_character_literal, - STATE(248), 2, + STATE(599), 6, + sym__general_expression_position, sym__calculation_expression, + sym_arithmetic_expression, sym__data_object, - STATE(249), 2, sym_structured_data_object, sym_attribute_access_static, - STATE(581), 2, + [19361] = 5, + ACTIONS(1260), 1, + sym_name, + ACTIONS(1276), 1, + sym_field_symbol_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [23275] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1254), 1, - sym_field_symbol_name, - ACTIONS(1546), 1, - sym_name, - STATE(247), 1, - sym_arithmetic_expression, - STATE(695), 1, - sym__general_expression_position, - ACTIONS(1252), 2, + ACTIONS(1678), 2, sym_numeric_literal, sym_character_literal, - STATE(248), 2, + STATE(509), 6, + sym__general_expression_position, sym__calculation_expression, + sym_arithmetic_expression, sym__data_object, - STATE(249), 2, sym_structured_data_object, sym_attribute_access_static, - STATE(582), 2, + [19384] = 5, + ACTIONS(1260), 1, + sym_name, + ACTIONS(1276), 1, + sym_field_symbol_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [23310] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1254), 1, - sym_field_symbol_name, - ACTIONS(1546), 1, - sym_name, - STATE(247), 1, - sym_arithmetic_expression, - STATE(456), 1, - sym__general_expression_position, - ACTIONS(1252), 2, + ACTIONS(1680), 2, sym_numeric_literal, sym_character_literal, - STATE(248), 2, + STATE(511), 6, + sym__general_expression_position, sym__calculation_expression, + sym_arithmetic_expression, sym__data_object, - STATE(249), 2, sym_structured_data_object, sym_attribute_access_static, - STATE(583), 2, + [19407] = 5, + ACTIONS(1260), 1, + sym_name, + ACTIONS(1276), 1, + sym_field_symbol_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [23345] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1254), 1, - sym_field_symbol_name, - ACTIONS(1630), 1, - sym_name, - STATE(247), 1, - sym_arithmetic_expression, - STATE(569), 1, - sym__general_expression_position, - ACTIONS(1252), 2, + ACTIONS(1682), 2, sym_numeric_literal, sym_character_literal, - STATE(248), 2, + STATE(506), 6, + sym__general_expression_position, sym__calculation_expression, + sym_arithmetic_expression, sym__data_object, - STATE(249), 2, sym_structured_data_object, sym_attribute_access_static, - STATE(584), 2, - sym_eol_comment, - sym_bol_comment, - [23380] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1254), 1, + [19430] = 5, + ACTIONS(1238), 1, sym_field_symbol_name, - ACTIONS(1546), 1, + ACTIONS(1438), 1, sym_name, - STATE(247), 1, - sym_arithmetic_expression, - STATE(594), 1, - sym__general_expression_position, - ACTIONS(1252), 2, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(1684), 2, sym_numeric_literal, sym_character_literal, - STATE(248), 2, + STATE(620), 6, + sym__general_expression_position, sym__calculation_expression, + sym_arithmetic_expression, sym__data_object, - STATE(249), 2, sym_structured_data_object, sym_attribute_access_static, - STATE(585), 2, + [19453] = 5, + ACTIONS(1238), 1, + sym_field_symbol_name, + ACTIONS(1438), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [23415] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1254), 1, + ACTIONS(1686), 2, + sym_numeric_literal, + sym_character_literal, + STATE(265), 6, + sym__general_expression_position, + sym__calculation_expression, + sym_arithmetic_expression, + sym__data_object, + sym_structured_data_object, + sym_attribute_access_static, + [19476] = 5, + ACTIONS(1238), 1, sym_field_symbol_name, - ACTIONS(1546), 1, + ACTIONS(1438), 1, sym_name, - STATE(247), 1, - sym_arithmetic_expression, - STATE(634), 1, - sym__general_expression_position, - ACTIONS(1252), 2, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(1688), 2, sym_numeric_literal, sym_character_literal, - STATE(248), 2, + STATE(638), 6, + sym__general_expression_position, sym__calculation_expression, + sym_arithmetic_expression, sym__data_object, - STATE(249), 2, sym_structured_data_object, sym_attribute_access_static, - STATE(586), 2, + [19499] = 3, + ACTIONS(1690), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [23450] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1641), 2, + ACTIONS(1692), 9, anon_sym_DOT, - anon_sym_BANG, - STATE(587), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1639), 8, aux_sym__method_declaration_exporting_token1, aux_sym__method_declaration_changing_token1, aux_sym__method_declaration_raising_token1, @@ -35027,40251 +31861,30078 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_parameters_token1, aux_sym_method_parameters_token2, aux_sym_returning_parameter_token1, - sym_name, - [23475] = 12, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1308), 1, + anon_sym_BANG, + [19518] = 10, + ACTIONS(1314), 1, aux_sym__method_declaration_changing_token1, - ACTIONS(1310), 1, + ACTIONS(1316), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(1314), 1, + ACTIONS(1320), 1, aux_sym_returning_parameter_token1, - ACTIONS(1643), 1, + ACTIONS(1694), 1, anon_sym_DOT, - STATE(671), 1, + STATE(784), 1, sym__method_declaration_changing, - STATE(1132), 1, + STATE(1076), 1, sym_returning_parameter, - STATE(1877), 1, + STATE(1559), 1, sym__method_declaration_raising, - STATE(2667), 1, + STATE(2902), 1, sym__method_declaration_exceptions, - STATE(588), 2, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [19550] = 6, + ACTIONS(1302), 1, + aux_sym_variable_declaration_token1, + ACTIONS(1696), 1, + aux_sym_method_declaration_class_token1, + ACTIONS(1698), 1, + aux_sym_class_constructor_declaration_token1, + ACTIONS(1700), 1, + aux_sym_interface_declaration_token2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [23513] = 12, + STATE(600), 5, + sym_class_method_declaration_interface, + sym__interface_components, + sym_method_declaration_interface, + sym_variable_declaration, + aux_sym_interface_declaration_repeat1, + [19574] = 8, + ACTIONS(3), 1, + sym_eol_comment, ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, + sym_bol_comment, + ACTIONS(1222), 1, anon_sym_STAR, - ACTIONS(1308), 1, + ACTIONS(1226), 1, + anon_sym_STAR_STAR, + ACTIONS(1702), 1, + anon_sym_DOT, + ACTIONS(1704), 1, + aux_sym_loop_statement_token5, + ACTIONS(1344), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1224), 3, + anon_sym_SLASH, + anon_sym_DIV, + anon_sym_MOD, + [19602] = 10, + ACTIONS(1314), 1, aux_sym__method_declaration_changing_token1, - ACTIONS(1310), 1, + ACTIONS(1316), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(1314), 1, + ACTIONS(1320), 1, aux_sym_returning_parameter_token1, - ACTIONS(1645), 1, + ACTIONS(1706), 1, anon_sym_DOT, - STATE(724), 1, + STATE(785), 1, sym__method_declaration_changing, - STATE(1069), 1, + STATE(1078), 1, sym_returning_parameter, - STATE(1576), 1, + STATE(1899), 1, sym__method_declaration_raising, - STATE(2720), 1, + STATE(2285), 1, sym__method_declaration_exceptions, - STATE(589), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [23551] = 9, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(1234), 1, - anon_sym_STAR, - ACTIONS(1238), 1, - anon_sym_STAR_STAR, - ACTIONS(1647), 1, + [19634] = 10, + ACTIONS(1314), 1, + aux_sym__method_declaration_changing_token1, + ACTIONS(1316), 1, + aux_sym__method_declaration_raising_token1, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(1320), 1, + aux_sym_returning_parameter_token1, + ACTIONS(1708), 1, anon_sym_DOT, - ACTIONS(1649), 1, - aux_sym_complete_typing_token2, - ACTIONS(1651), 1, - aux_sym_loop_statement_token5, - ACTIONS(1407), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(590), 2, + STATE(872), 1, + sym__method_declaration_changing, + STATE(1050), 1, + sym_returning_parameter, + STATE(1847), 1, + sym__method_declaration_raising, + STATE(2345), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1236), 3, - anon_sym_SLASH, - anon_sym_DIV, - anon_sym_MOD, - [23583] = 12, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1308), 1, + [19666] = 10, + ACTIONS(1314), 1, aux_sym__method_declaration_changing_token1, - ACTIONS(1310), 1, + ACTIONS(1316), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(1314), 1, + ACTIONS(1320), 1, aux_sym_returning_parameter_token1, - ACTIONS(1653), 1, + ACTIONS(1710), 1, anon_sym_DOT, - STATE(705), 1, + STATE(815), 1, sym__method_declaration_changing, - STATE(1052), 1, + STATE(1056), 1, sym_returning_parameter, - STATE(1935), 1, + STATE(1884), 1, sym__method_declaration_raising, - STATE(3046), 1, + STATE(2271), 1, sym__method_declaration_exceptions, - STATE(591), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [23621] = 12, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1308), 1, + [19698] = 10, + ACTIONS(1314), 1, aux_sym__method_declaration_changing_token1, - ACTIONS(1310), 1, + ACTIONS(1316), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(1314), 1, + ACTIONS(1320), 1, aux_sym_returning_parameter_token1, - ACTIONS(1655), 1, + ACTIONS(1712), 1, anon_sym_DOT, - STATE(677), 1, + STATE(687), 1, sym__method_declaration_changing, - STATE(1156), 1, + STATE(1135), 1, sym_returning_parameter, - STATE(1724), 1, + STATE(1889), 1, sym__method_declaration_raising, - STATE(2886), 1, + STATE(3039), 1, sym__method_declaration_exceptions, - STATE(592), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [23659] = 12, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1308), 1, + [19730] = 10, + ACTIONS(1314), 1, aux_sym__method_declaration_changing_token1, - ACTIONS(1310), 1, + ACTIONS(1316), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(1314), 1, + ACTIONS(1320), 1, aux_sym_returning_parameter_token1, - ACTIONS(1657), 1, + ACTIONS(1714), 1, anon_sym_DOT, - STATE(762), 1, + STATE(683), 1, sym__method_declaration_changing, - STATE(1198), 1, + STATE(1137), 1, sym_returning_parameter, - STATE(1749), 1, + STATE(1689), 1, sym__method_declaration_raising, - STATE(2221), 1, + STATE(2132), 1, sym__method_declaration_exceptions, - STATE(593), 2, - sym_eol_comment, - sym_bol_comment, - [23697] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(1234), 1, - anon_sym_STAR, - ACTIONS(1238), 1, - anon_sym_STAR_STAR, - ACTIONS(1407), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(594), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1236), 3, - anon_sym_SLASH, - anon_sym_DIV, - anon_sym_MOD, - ACTIONS(1659), 3, - anon_sym_DOT, - aux_sym__logical_expression_token2, - aux_sym__logical_expression_token3, - [23725] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1338), 1, + [19762] = 6, + ACTIONS(1302), 1, aux_sym_variable_declaration_token1, - ACTIONS(1661), 1, + ACTIONS(1696), 1, aux_sym_method_declaration_class_token1, - ACTIONS(1663), 1, + ACTIONS(1698), 1, aux_sym_class_constructor_declaration_token1, - ACTIONS(1665), 1, + ACTIONS(1716), 1, aux_sym_interface_declaration_token2, - STATE(603), 1, - aux_sym_interface_declaration_repeat1, - STATE(1456), 1, - sym__interface_components, - STATE(595), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - STATE(1393), 3, + STATE(598), 5, sym_class_method_declaration_interface, + sym__interface_components, sym_method_declaration_interface, sym_variable_declaration, - [23759] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1338), 1, - aux_sym_variable_declaration_token1, - ACTIONS(1661), 1, - aux_sym_method_declaration_class_token1, - ACTIONS(1663), 1, - aux_sym_class_constructor_declaration_token1, - ACTIONS(1665), 1, - aux_sym_interface_declaration_token2, - STATE(615), 1, aux_sym_interface_declaration_repeat1, - STATE(1456), 1, - sym__interface_components, - STATE(596), 2, - sym_eol_comment, - sym_bol_comment, - STATE(1393), 3, - sym_class_method_declaration_interface, - sym_method_declaration_interface, - sym_variable_declaration, - [23793] = 12, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1308), 1, + [19786] = 10, + ACTIONS(1462), 1, + aux_sym__create_addition_token1, + ACTIONS(1718), 1, + aux_sym_class_declaration_token4, + ACTIONS(1720), 1, + aux_sym_class_declaration_token6, + ACTIONS(1722), 1, + aux_sym_class_declaration_token7, + ACTIONS(1724), 1, + aux_sym_class_declaration_token8, + ACTIONS(1726), 1, + aux_sym_class_declaration_token11, + ACTIONS(1728), 1, + aux_sym_class_declaration_token12, + ACTIONS(1730), 1, + anon_sym_DOT, + STATE(1414), 1, + sym__create_addition, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [19818] = 10, + ACTIONS(1314), 1, aux_sym__method_declaration_changing_token1, - ACTIONS(1310), 1, + ACTIONS(1316), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(1314), 1, + ACTIONS(1320), 1, aux_sym_returning_parameter_token1, - ACTIONS(1667), 1, + ACTIONS(1732), 1, anon_sym_DOT, - STATE(765), 1, + STATE(978), 1, sym__method_declaration_changing, - STATE(1211), 1, + STATE(1170), 1, sym_returning_parameter, - STATE(1767), 1, + STATE(1660), 1, sym__method_declaration_raising, - STATE(2203), 1, + STATE(2702), 1, sym__method_declaration_exceptions, - STATE(597), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [23831] = 12, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1308), 1, + [19850] = 10, + ACTIONS(1314), 1, aux_sym__method_declaration_changing_token1, - ACTIONS(1310), 1, + ACTIONS(1316), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(1314), 1, + ACTIONS(1320), 1, aux_sym_returning_parameter_token1, - ACTIONS(1669), 1, + ACTIONS(1734), 1, anon_sym_DOT, - STATE(643), 1, + STATE(806), 1, sym__method_declaration_changing, - STATE(1049), 1, + STATE(1060), 1, sym_returning_parameter, - STATE(1938), 1, + STATE(1524), 1, sym__method_declaration_raising, - STATE(3056), 1, + STATE(2865), 1, sym__method_declaration_exceptions, - STATE(598), 2, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [19882] = 10, + ACTIONS(1462), 1, + aux_sym__create_addition_token1, + ACTIONS(1736), 1, + aux_sym_class_declaration_token4, + ACTIONS(1738), 1, + aux_sym_class_declaration_token6, + ACTIONS(1740), 1, + aux_sym_class_declaration_token7, + ACTIONS(1742), 1, + aux_sym_class_declaration_token8, + ACTIONS(1744), 1, + aux_sym_class_declaration_token11, + ACTIONS(1746), 1, + aux_sym_class_declaration_token12, + ACTIONS(1748), 1, + anon_sym_DOT, + STATE(1403), 1, + sym__create_addition, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [23869] = 12, + [19914] = 8, + ACTIONS(3), 1, + sym_eol_comment, ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, + sym_bol_comment, + ACTIONS(1222), 1, anon_sym_STAR, - ACTIONS(1308), 1, + ACTIONS(1226), 1, + anon_sym_STAR_STAR, + ACTIONS(1750), 1, + anon_sym_DOT, + ACTIONS(1752), 1, + aux_sym_loop_statement_token5, + ACTIONS(1344), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1224), 3, + anon_sym_SLASH, + anon_sym_DIV, + anon_sym_MOD, + [19942] = 10, + ACTIONS(1314), 1, aux_sym__method_declaration_changing_token1, - ACTIONS(1310), 1, + ACTIONS(1316), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(1314), 1, + ACTIONS(1320), 1, aux_sym_returning_parameter_token1, - ACTIONS(1671), 1, + ACTIONS(1754), 1, anon_sym_DOT, - STATE(725), 1, + STATE(744), 1, sym__method_declaration_changing, - STATE(1061), 1, + STATE(1087), 1, sym_returning_parameter, - STATE(1567), 1, + STATE(1569), 1, sym__method_declaration_raising, - STATE(2706), 1, + STATE(2915), 1, sym__method_declaration_exceptions, - STATE(599), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [23907] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1338), 1, + [19974] = 6, + ACTIONS(1302), 1, aux_sym_variable_declaration_token1, - ACTIONS(1661), 1, + ACTIONS(1696), 1, aux_sym_method_declaration_class_token1, - ACTIONS(1663), 1, + ACTIONS(1698), 1, aux_sym_class_constructor_declaration_token1, - ACTIONS(1673), 1, + ACTIONS(1756), 1, aux_sym_interface_declaration_token2, - STATE(611), 1, - aux_sym_interface_declaration_repeat1, - STATE(1456), 1, - sym__interface_components, - STATE(600), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - STATE(1393), 3, + STATE(602), 5, sym_class_method_declaration_interface, + sym__interface_components, sym_method_declaration_interface, sym_variable_declaration, - [23941] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1338), 1, + aux_sym_interface_declaration_repeat1, + [19998] = 6, + ACTIONS(1302), 1, aux_sym_variable_declaration_token1, - ACTIONS(1661), 1, + ACTIONS(1696), 1, aux_sym_method_declaration_class_token1, - ACTIONS(1663), 1, + ACTIONS(1698), 1, aux_sym_class_constructor_declaration_token1, - ACTIONS(1675), 1, + ACTIONS(1716), 1, aux_sym_interface_declaration_token2, - STATE(603), 1, - aux_sym_interface_declaration_repeat1, - STATE(1456), 1, - sym__interface_components, - STATE(601), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - STATE(1393), 3, + STATE(601), 5, sym_class_method_declaration_interface, + sym__interface_components, sym_method_declaration_interface, sym_variable_declaration, - [23975] = 12, + aux_sym_interface_declaration_repeat1, + [20022] = 8, + ACTIONS(3), 1, + sym_eol_comment, ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, + sym_bol_comment, + ACTIONS(1222), 1, anon_sym_STAR, - ACTIONS(1308), 1, - aux_sym__method_declaration_changing_token1, - ACTIONS(1310), 1, - aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(1314), 1, - aux_sym_returning_parameter_token1, - ACTIONS(1677), 1, + ACTIONS(1226), 1, + anon_sym_STAR_STAR, + ACTIONS(1599), 1, anon_sym_DOT, - STATE(644), 1, - sym__method_declaration_changing, - STATE(1106), 1, - sym_returning_parameter, - STATE(1897), 1, - sym__method_declaration_raising, - STATE(3038), 1, - sym__method_declaration_exceptions, - STATE(602), 2, + ACTIONS(1603), 1, + aux_sym_loop_statement_token5, + ACTIONS(1344), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1224), 3, + anon_sym_SLASH, + anon_sym_DIV, + anon_sym_MOD, + [20050] = 8, + ACTIONS(3), 1, sym_eol_comment, - sym_bol_comment, - [24013] = 9, ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, + sym_bol_comment, + ACTIONS(1222), 1, anon_sym_STAR, - ACTIONS(1679), 1, + ACTIONS(1226), 1, + anon_sym_STAR_STAR, + ACTIONS(1758), 1, + sym_name, + ACTIONS(1760), 1, + anon_sym_RBRACK, + ACTIONS(1344), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1224), 3, + anon_sym_SLASH, + anon_sym_DIV, + anon_sym_MOD, + [20078] = 6, + ACTIONS(1762), 1, aux_sym_method_declaration_class_token1, - ACTIONS(1682), 1, + ACTIONS(1765), 1, aux_sym_class_constructor_declaration_token1, - ACTIONS(1685), 1, + ACTIONS(1768), 1, aux_sym_interface_declaration_token2, - ACTIONS(1687), 1, + ACTIONS(1770), 1, aux_sym_variable_declaration_token1, - STATE(1456), 1, - sym__interface_components, - STATE(603), 3, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - aux_sym_interface_declaration_repeat1, - STATE(1393), 3, + STATE(598), 5, sym_class_method_declaration_interface, + sym__interface_components, sym_method_declaration_interface, sym_variable_declaration, - [24045] = 12, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1308), 1, - aux_sym__method_declaration_changing_token1, - ACTIONS(1310), 1, - aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(1314), 1, - aux_sym_returning_parameter_token1, - ACTIONS(1690), 1, - anon_sym_DOT, - STATE(751), 1, - sym__method_declaration_changing, - STATE(1128), 1, - sym_returning_parameter, - STATE(1673), 1, - sym__method_declaration_raising, - STATE(2076), 1, - sym__method_declaration_exceptions, - STATE(604), 2, - sym_eol_comment, - sym_bol_comment, - [24083] = 12, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1486), 1, - aux_sym__create_addition_token1, - ACTIONS(1692), 1, - aux_sym_class_declaration_token4, - ACTIONS(1694), 1, - aux_sym_class_declaration_token6, - ACTIONS(1696), 1, - aux_sym_class_declaration_token7, - ACTIONS(1698), 1, - aux_sym_class_declaration_token8, - ACTIONS(1700), 1, - aux_sym_class_declaration_token11, - ACTIONS(1702), 1, - aux_sym_class_declaration_token12, - ACTIONS(1704), 1, - anon_sym_DOT, - STATE(1387), 1, - sym__create_addition, - STATE(605), 2, + aux_sym_interface_declaration_repeat1, + [20102] = 8, + ACTIONS(3), 1, sym_eol_comment, - sym_bol_comment, - [24121] = 12, ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1308), 1, - aux_sym__method_declaration_changing_token1, - ACTIONS(1310), 1, - aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(1314), 1, - aux_sym_returning_parameter_token1, - ACTIONS(1706), 1, - anon_sym_DOT, - STATE(727), 1, - sym__method_declaration_changing, - STATE(1036), 1, - sym_returning_parameter, - STATE(1546), 1, - sym__method_declaration_raising, - STATE(2663), 1, - sym__method_declaration_exceptions, - STATE(606), 2, - sym_eol_comment, sym_bol_comment, - [24159] = 9, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(1234), 1, + ACTIONS(1222), 1, anon_sym_STAR, - ACTIONS(1238), 1, + ACTIONS(1226), 1, anon_sym_STAR_STAR, - ACTIONS(1708), 1, + ACTIONS(1635), 1, anon_sym_DOT, - ACTIONS(1710), 1, - aux_sym_complete_typing_token2, - ACTIONS(1712), 1, + ACTIONS(1639), 1, aux_sym_loop_statement_token5, - ACTIONS(1407), 2, + ACTIONS(1344), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(607), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1236), 3, + ACTIONS(1224), 3, anon_sym_SLASH, anon_sym_DIV, anon_sym_MOD, - [24191] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1338), 1, + [20130] = 6, + ACTIONS(1302), 1, aux_sym_variable_declaration_token1, - ACTIONS(1661), 1, + ACTIONS(1696), 1, aux_sym_method_declaration_class_token1, - ACTIONS(1663), 1, + ACTIONS(1698), 1, aux_sym_class_constructor_declaration_token1, - ACTIONS(1714), 1, + ACTIONS(1756), 1, aux_sym_interface_declaration_token2, - STATE(595), 1, - aux_sym_interface_declaration_repeat1, - STATE(1456), 1, - sym__interface_components, - STATE(608), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - STATE(1393), 3, + STATE(598), 5, sym_class_method_declaration_interface, + sym__interface_components, sym_method_declaration_interface, sym_variable_declaration, - [24225] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1338), 1, + aux_sym_interface_declaration_repeat1, + [20154] = 6, + ACTIONS(1302), 1, aux_sym_variable_declaration_token1, - ACTIONS(1661), 1, + ACTIONS(1696), 1, aux_sym_method_declaration_class_token1, - ACTIONS(1663), 1, + ACTIONS(1698), 1, aux_sym_class_constructor_declaration_token1, - ACTIONS(1716), 1, + ACTIONS(1773), 1, aux_sym_interface_declaration_token2, - STATE(601), 1, - aux_sym_interface_declaration_repeat1, - STATE(1456), 1, - sym__interface_components, - STATE(609), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - STATE(1393), 3, + STATE(598), 5, sym_class_method_declaration_interface, + sym__interface_components, sym_method_declaration_interface, sym_variable_declaration, - [24259] = 12, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1486), 1, - aux_sym__create_addition_token1, - ACTIONS(1718), 1, - aux_sym_class_declaration_token4, - ACTIONS(1720), 1, - aux_sym_class_declaration_token6, - ACTIONS(1722), 1, - aux_sym_class_declaration_token7, - ACTIONS(1724), 1, - aux_sym_class_declaration_token8, - ACTIONS(1726), 1, - aux_sym_class_declaration_token11, - ACTIONS(1728), 1, - aux_sym_class_declaration_token12, - ACTIONS(1730), 1, - anon_sym_DOT, - STATE(1245), 1, - sym__create_addition, - STATE(610), 2, + aux_sym_interface_declaration_repeat1, + [20178] = 6, + ACTIONS(1302), 1, + aux_sym_variable_declaration_token1, + ACTIONS(1696), 1, + aux_sym_method_declaration_class_token1, + ACTIONS(1698), 1, + aux_sym_class_constructor_declaration_token1, + ACTIONS(1775), 1, + aux_sym_interface_declaration_token2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [24297] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1338), 1, + STATE(598), 5, + sym_class_method_declaration_interface, + sym__interface_components, + sym_method_declaration_interface, + sym_variable_declaration, + aux_sym_interface_declaration_repeat1, + [20202] = 6, + ACTIONS(1302), 1, aux_sym_variable_declaration_token1, - ACTIONS(1661), 1, + ACTIONS(1696), 1, aux_sym_method_declaration_class_token1, - ACTIONS(1663), 1, + ACTIONS(1698), 1, aux_sym_class_constructor_declaration_token1, - ACTIONS(1716), 1, + ACTIONS(1777), 1, aux_sym_interface_declaration_token2, - STATE(603), 1, - aux_sym_interface_declaration_repeat1, - STATE(1456), 1, - sym__interface_components, - STATE(611), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - STATE(1393), 3, + STATE(587), 5, sym_class_method_declaration_interface, + sym__interface_components, sym_method_declaration_interface, sym_variable_declaration, - [24331] = 12, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1308), 1, + aux_sym_interface_declaration_repeat1, + [20226] = 10, + ACTIONS(1314), 1, aux_sym__method_declaration_changing_token1, - ACTIONS(1310), 1, + ACTIONS(1316), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, + ACTIONS(1320), 1, + aux_sym_returning_parameter_token1, + ACTIONS(1779), 1, + anon_sym_DOT, + STATE(675), 1, + sym__method_declaration_changing, + STATE(1149), 1, + sym_returning_parameter, + STATE(1900), 1, + sym__method_declaration_raising, + STATE(3059), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [20258] = 10, ACTIONS(1314), 1, + aux_sym__method_declaration_changing_token1, + ACTIONS(1316), 1, + aux_sym__method_declaration_raising_token1, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(1320), 1, aux_sym_returning_parameter_token1, - ACTIONS(1732), 1, + ACTIONS(1781), 1, anon_sym_DOT, - STATE(726), 1, + STATE(734), 1, sym__method_declaration_changing, - STATE(1045), 1, + STATE(1093), 1, sym_returning_parameter, - STATE(1554), 1, + STATE(1898), 1, sym__method_declaration_raising, - STATE(2680), 1, + STATE(2270), 1, sym__method_declaration_exceptions, - STATE(612), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [24369] = 12, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1308), 1, + [20290] = 10, + ACTIONS(1314), 1, aux_sym__method_declaration_changing_token1, - ACTIONS(1310), 1, + ACTIONS(1316), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, + ACTIONS(1320), 1, + aux_sym_returning_parameter_token1, + ACTIONS(1783), 1, + anon_sym_DOT, + STATE(901), 1, + sym__method_declaration_changing, + STATE(1036), 1, + sym_returning_parameter, + STATE(1596), 1, + sym__method_declaration_raising, + STATE(2793), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [20322] = 10, ACTIONS(1314), 1, + aux_sym__method_declaration_changing_token1, + ACTIONS(1316), 1, + aux_sym__method_declaration_raising_token1, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(1320), 1, aux_sym_returning_parameter_token1, - ACTIONS(1734), 1, + ACTIONS(1785), 1, anon_sym_DOT, - STATE(793), 1, + STATE(646), 1, sym__method_declaration_changing, - STATE(1155), 1, + STATE(1186), 1, sym_returning_parameter, - STATE(1719), 1, + STATE(1644), 1, sym__method_declaration_raising, - STATE(2274), 1, + STATE(2188), 1, sym__method_declaration_exceptions, - STATE(613), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [24407] = 12, + [20354] = 7, + ACTIONS(3), 1, + sym_eol_comment, ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, + sym_bol_comment, + ACTIONS(1222), 1, anon_sym_STAR, - ACTIONS(1308), 1, + ACTIONS(1226), 1, + anon_sym_STAR_STAR, + ACTIONS(1344), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1787), 2, + anon_sym_DOT, + anon_sym_COMMA, + ACTIONS(1224), 3, + anon_sym_SLASH, + anon_sym_DIV, + anon_sym_MOD, + [20380] = 10, + ACTIONS(1314), 1, aux_sym__method_declaration_changing_token1, - ACTIONS(1310), 1, + ACTIONS(1316), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(1314), 1, + ACTIONS(1320), 1, aux_sym_returning_parameter_token1, - ACTIONS(1736), 1, + ACTIONS(1789), 1, anon_sym_DOT, - STATE(680), 1, + STATE(742), 1, sym__method_declaration_changing, - STATE(1143), 1, + STATE(1083), 1, sym_returning_parameter, - STATE(1704), 1, + STATE(1571), 1, sym__method_declaration_raising, - STATE(2870), 1, + STATE(2912), 1, sym__method_declaration_exceptions, - STATE(614), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [24445] = 10, + [20412] = 7, + ACTIONS(3), 1, + sym_eol_comment, ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, + sym_bol_comment, + ACTIONS(1222), 1, anon_sym_STAR, - ACTIONS(1338), 1, - aux_sym_variable_declaration_token1, - ACTIONS(1661), 1, - aux_sym_method_declaration_class_token1, - ACTIONS(1663), 1, - aux_sym_class_constructor_declaration_token1, - ACTIONS(1738), 1, - aux_sym_interface_declaration_token2, - STATE(603), 1, - aux_sym_interface_declaration_repeat1, - STATE(1456), 1, - sym__interface_components, - STATE(615), 2, + ACTIONS(1226), 1, + anon_sym_STAR_STAR, + ACTIONS(1791), 1, + anon_sym_DOT, + ACTIONS(1344), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1224), 3, + anon_sym_SLASH, + anon_sym_DIV, + anon_sym_MOD, + [20437] = 7, + ACTIONS(3), 1, sym_eol_comment, + ACTIONS(5), 1, sym_bol_comment, - STATE(1393), 3, - sym_class_method_declaration_interface, - sym_method_declaration_interface, - sym_variable_declaration, - [24479] = 7, + ACTIONS(1222), 1, + anon_sym_STAR, + ACTIONS(1226), 1, + anon_sym_STAR_STAR, + ACTIONS(1793), 1, + anon_sym_RPAREN, + ACTIONS(1344), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1224), 3, + anon_sym_SLASH, + anon_sym_DIV, + anon_sym_MOD, + [20462] = 7, + ACTIONS(3), 1, + sym_eol_comment, ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, + sym_bol_comment, + ACTIONS(1222), 1, anon_sym_STAR, - ACTIONS(1740), 1, - sym_name, - ACTIONS(1743), 1, + ACTIONS(1226), 1, + anon_sym_STAR_STAR, + ACTIONS(1795), 1, anon_sym_DOT, - STATE(1003), 1, - sym_parameter_binding_exporting, - STATE(616), 3, + ACTIONS(1344), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1224), 3, + anon_sym_SLASH, + anon_sym_DIV, + anon_sym_MOD, + [20487] = 4, + ACTIONS(1797), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, + STATE(624), 2, + sym_parameter_binding_exporting, aux_sym_parameter_list_exporting_repeat1, - ACTIONS(1745), 4, + ACTIONS(1799), 5, + anon_sym_DOT, aux_sym__method_declaration_importing_token1, aux_sym__method_declaration_exporting_token1, aux_sym__method_declaration_changing_token1, aux_sym__method_declaration_exceptions_token1, - [24506] = 8, + [20506] = 7, + ACTIONS(3), 1, + sym_eol_comment, ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(1234), 1, + sym_bol_comment, + ACTIONS(1222), 1, anon_sym_STAR, - ACTIONS(1238), 1, + ACTIONS(1226), 1, anon_sym_STAR_STAR, - ACTIONS(1747), 1, + ACTIONS(1801), 1, anon_sym_DOT, - ACTIONS(1749), 1, - aux_sym_loop_statement_token5, - ACTIONS(1407), 2, + ACTIONS(1344), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(617), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1236), 3, + ACTIONS(1224), 3, anon_sym_SLASH, anon_sym_DIV, anon_sym_MOD, - [24535] = 11, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1486), 1, + [20531] = 9, + ACTIONS(1462), 1, aux_sym__create_addition_token1, - ACTIONS(1751), 1, + ACTIONS(1803), 1, aux_sym_class_declaration_token6, - ACTIONS(1753), 1, + ACTIONS(1805), 1, aux_sym_class_declaration_token7, - ACTIONS(1755), 1, + ACTIONS(1807), 1, aux_sym_class_declaration_token8, - ACTIONS(1757), 1, + ACTIONS(1809), 1, aux_sym_class_declaration_token11, - ACTIONS(1759), 1, + ACTIONS(1811), 1, aux_sym_class_declaration_token12, - ACTIONS(1761), 1, + ACTIONS(1813), 1, anon_sym_DOT, - STATE(1254), 1, + STATE(1380), 1, sym__create_addition, - STATE(618), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [24570] = 11, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1486), 1, + [20560] = 9, + ACTIONS(1462), 1, aux_sym__create_addition_token1, - ACTIONS(1763), 1, + ACTIONS(1815), 1, aux_sym_class_declaration_token6, - ACTIONS(1765), 1, + ACTIONS(1817), 1, aux_sym_class_declaration_token7, - ACTIONS(1767), 1, + ACTIONS(1819), 1, aux_sym_class_declaration_token8, - ACTIONS(1769), 1, + ACTIONS(1821), 1, aux_sym_class_declaration_token11, - ACTIONS(1771), 1, + ACTIONS(1823), 1, aux_sym_class_declaration_token12, - ACTIONS(1773), 1, + ACTIONS(1825), 1, anon_sym_DOT, - STATE(1252), 1, + STATE(1375), 1, sym__create_addition, - STATE(619), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [24605] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1775), 1, - anon_sym_DASH2, - STATE(627), 1, - aux_sym_structured_data_object_repeat1, - ACTIONS(636), 2, - aux_sym_method_parameters_token1, - sym_name, - STATE(620), 2, + [20589] = 7, + ACTIONS(3), 1, sym_eol_comment, - sym_bol_comment, - ACTIONS(638), 4, - anon_sym_DOT, - aux_sym__data_object_typing_normal_token5, - anon_sym_COMMA, - anon_sym_EQ, - [24632] = 8, ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1777), 1, - sym_name, - ACTIONS(1779), 1, - anon_sym_DOT, - STATE(616), 1, - aux_sym_parameter_list_exporting_repeat1, - STATE(1003), 1, - sym_parameter_binding_exporting, - STATE(621), 2, - sym_eol_comment, sym_bol_comment, - ACTIONS(1781), 4, - aux_sym__method_declaration_importing_token1, - aux_sym__method_declaration_exporting_token1, - aux_sym__method_declaration_changing_token1, - aux_sym__method_declaration_exceptions_token1, - [24661] = 11, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, + ACTIONS(1222), 1, anon_sym_STAR, - ACTIONS(1486), 1, - aux_sym__create_addition_token1, - ACTIONS(1783), 1, - aux_sym_class_declaration_token6, - ACTIONS(1785), 1, - aux_sym_class_declaration_token7, - ACTIONS(1787), 1, - aux_sym_class_declaration_token8, - ACTIONS(1789), 1, - aux_sym_class_declaration_token11, - ACTIONS(1791), 1, - aux_sym_class_declaration_token12, - ACTIONS(1793), 1, + ACTIONS(1226), 1, + anon_sym_STAR_STAR, + ACTIONS(1827), 1, anon_sym_DOT, - STATE(1255), 1, - sym__create_addition, - STATE(622), 2, + ACTIONS(1344), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1224), 3, + anon_sym_SLASH, + anon_sym_DIV, + anon_sym_MOD, + [20614] = 7, + ACTIONS(3), 1, sym_eol_comment, - sym_bol_comment, - [24696] = 8, ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(1234), 1, + sym_bol_comment, + ACTIONS(1222), 1, anon_sym_STAR, - ACTIONS(1238), 1, + ACTIONS(1226), 1, anon_sym_STAR_STAR, - ACTIONS(1708), 1, - anon_sym_DOT, - ACTIONS(1712), 1, - aux_sym_loop_statement_token5, - ACTIONS(1407), 2, + ACTIONS(1829), 1, + anon_sym_RPAREN, + ACTIONS(1344), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(623), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1236), 3, + ACTIONS(1224), 3, anon_sym_SLASH, anon_sym_DIV, anon_sym_MOD, - [24725] = 11, + [20639] = 7, + ACTIONS(3), 1, + sym_eol_comment, ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, + sym_bol_comment, + ACTIONS(1222), 1, anon_sym_STAR, - ACTIONS(1486), 1, - aux_sym__create_addition_token1, - ACTIONS(1795), 1, - aux_sym_class_declaration_token6, - ACTIONS(1797), 1, - aux_sym_class_declaration_token7, - ACTIONS(1799), 1, - aux_sym_class_declaration_token8, - ACTIONS(1801), 1, - aux_sym_class_declaration_token11, - ACTIONS(1803), 1, - aux_sym_class_declaration_token12, - ACTIONS(1805), 1, - anon_sym_DOT, - STATE(1253), 1, - sym__create_addition, - STATE(624), 2, + ACTIONS(1226), 1, + anon_sym_STAR_STAR, + ACTIONS(1831), 1, + anon_sym_RPAREN, + ACTIONS(1344), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1224), 3, + anon_sym_SLASH, + anon_sym_DIV, + anon_sym_MOD, + [20664] = 7, + ACTIONS(3), 1, sym_eol_comment, - sym_bol_comment, - [24760] = 8, ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(1234), 1, + sym_bol_comment, + ACTIONS(1222), 1, anon_sym_STAR, - ACTIONS(1238), 1, + ACTIONS(1226), 1, anon_sym_STAR_STAR, - ACTIONS(1807), 1, + ACTIONS(1635), 1, anon_sym_DOT, - ACTIONS(1809), 1, - aux_sym_loop_statement_token5, - ACTIONS(1407), 2, + ACTIONS(1344), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(625), 2, + ACTIONS(1224), 3, + anon_sym_SLASH, + anon_sym_DIV, + anon_sym_MOD, + [20689] = 7, + ACTIONS(3), 1, sym_eol_comment, + ACTIONS(5), 1, sym_bol_comment, - ACTIONS(1236), 3, + ACTIONS(1222), 1, + anon_sym_STAR, + ACTIONS(1226), 1, + anon_sym_STAR_STAR, + ACTIONS(1833), 1, + anon_sym_RPAREN, + ACTIONS(1344), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1224), 3, anon_sym_SLASH, anon_sym_DIV, anon_sym_MOD, - [24789] = 10, + [20714] = 7, + ACTIONS(3), 1, + sym_eol_comment, ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, + sym_bol_comment, + ACTIONS(1222), 1, anon_sym_STAR, - ACTIONS(1296), 1, - anon_sym_BANG, - ACTIONS(1375), 1, - sym_name, - STATE(486), 1, - aux_sym__method_declaration_importing_repeat1, - STATE(553), 1, - sym_method_parameters, - STATE(1181), 1, - sym__operand, - STATE(1708), 1, - sym__escaped_operand, - ACTIONS(1381), 2, - aux_sym_method_parameters_token1, - aux_sym_method_parameters_token2, - STATE(626), 2, + ACTIONS(1226), 1, + anon_sym_STAR_STAR, + ACTIONS(1835), 1, + anon_sym_RPAREN, + ACTIONS(1344), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1224), 3, + anon_sym_SLASH, + anon_sym_DIV, + anon_sym_MOD, + [20739] = 7, + ACTIONS(3), 1, sym_eol_comment, - sym_bol_comment, - [24822] = 7, ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, + sym_bol_comment, + ACTIONS(1222), 1, anon_sym_STAR, - ACTIONS(1775), 1, - anon_sym_DASH2, - STATE(628), 1, - aux_sym_structured_data_object_repeat1, - ACTIONS(623), 2, - aux_sym_method_parameters_token1, + ACTIONS(1226), 1, + anon_sym_STAR_STAR, + ACTIONS(1837), 1, + anon_sym_RPAREN, + ACTIONS(1344), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1224), 3, + anon_sym_SLASH, + anon_sym_DIV, + anon_sym_MOD, + [20764] = 4, + ACTIONS(1839), 1, sym_name, - STATE(627), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(625), 4, + STATE(624), 2, + sym_parameter_binding_exporting, + aux_sym_parameter_list_exporting_repeat1, + ACTIONS(1842), 5, anon_sym_DOT, - aux_sym__data_object_typing_normal_token5, - anon_sym_COMMA, - anon_sym_EQ, - [24849] = 6, + aux_sym__method_declaration_importing_token1, + aux_sym__method_declaration_exporting_token1, + aux_sym__method_declaration_changing_token1, + aux_sym__method_declaration_exceptions_token1, + [20783] = 7, + ACTIONS(3), 1, + sym_eol_comment, ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, + sym_bol_comment, + ACTIONS(1222), 1, anon_sym_STAR, - ACTIONS(1811), 1, - anon_sym_DASH2, - ACTIONS(629), 2, - aux_sym_method_parameters_token1, - sym_name, - STATE(628), 3, + ACTIONS(1226), 1, + anon_sym_STAR_STAR, + ACTIONS(1844), 1, + anon_sym_DOT, + ACTIONS(1344), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1224), 3, + anon_sym_SLASH, + anon_sym_DIV, + anon_sym_MOD, + [20808] = 7, + ACTIONS(3), 1, sym_eol_comment, + ACTIONS(5), 1, sym_bol_comment, - aux_sym_structured_data_object_repeat1, - ACTIONS(631), 4, + ACTIONS(1222), 1, + anon_sym_STAR, + ACTIONS(1226), 1, + anon_sym_STAR_STAR, + ACTIONS(1599), 1, anon_sym_DOT, - aux_sym__data_object_typing_normal_token5, - anon_sym_COMMA, - anon_sym_EQ, - [24874] = 5, + ACTIONS(1344), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1224), 3, + anon_sym_SLASH, + anon_sym_DIV, + anon_sym_MOD, + [20833] = 7, + ACTIONS(3), 1, + sym_eol_comment, + ACTIONS(5), 1, + sym_bol_comment, + ACTIONS(1222), 1, + anon_sym_STAR, + ACTIONS(1226), 1, + anon_sym_STAR_STAR, + ACTIONS(1846), 1, + aux_sym_select_statement_obsolete_token3, + ACTIONS(1344), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1224), 3, + anon_sym_SLASH, + anon_sym_DIV, + anon_sym_MOD, + [20858] = 9, + ACTIONS(1462), 1, + aux_sym__create_addition_token1, + ACTIONS(1848), 1, + aux_sym_class_declaration_token6, + ACTIONS(1850), 1, + aux_sym_class_declaration_token7, + ACTIONS(1852), 1, + aux_sym_class_declaration_token8, + ACTIONS(1854), 1, + aux_sym_class_declaration_token11, + ACTIONS(1856), 1, + aux_sym_class_declaration_token12, + ACTIONS(1858), 1, + anon_sym_DOT, + STATE(1260), 1, + sym__create_addition, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [20887] = 7, + ACTIONS(3), 1, + sym_eol_comment, ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, + sym_bol_comment, + ACTIONS(1222), 1, anon_sym_STAR, - ACTIONS(1816), 2, + ACTIONS(1226), 1, + anon_sym_STAR_STAR, + ACTIONS(1860), 1, anon_sym_DOT, - anon_sym_RPAREN, - STATE(629), 2, + ACTIONS(1344), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1224), 3, + anon_sym_SLASH, + anon_sym_DIV, + anon_sym_MOD, + [20912] = 9, + ACTIONS(1462), 1, + aux_sym__create_addition_token1, + ACTIONS(1862), 1, + aux_sym_class_declaration_token6, + ACTIONS(1864), 1, + aux_sym_class_declaration_token7, + ACTIONS(1866), 1, + aux_sym_class_declaration_token8, + ACTIONS(1868), 1, + aux_sym_class_declaration_token11, + ACTIONS(1870), 1, + aux_sym_class_declaration_token12, + ACTIONS(1872), 1, + anon_sym_DOT, + STATE(1227), 1, + sym__create_addition, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1814), 6, - aux_sym__method_declaration_importing_token1, - aux_sym__method_declaration_exporting_token1, - aux_sym__method_declaration_changing_token1, - aux_sym__method_declaration_exceptions_token1, - aux_sym__explicit_parameter_list_token1, - sym_name, - [24897] = 11, + [20941] = 7, + ACTIONS(3), 1, + sym_eol_comment, ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, + sym_bol_comment, + ACTIONS(1222), 1, anon_sym_STAR, - ACTIONS(1304), 1, - aux_sym__method_declaration_importing_token1, + ACTIONS(1226), 1, + anon_sym_STAR_STAR, + ACTIONS(1874), 1, + anon_sym_DOT, + ACTIONS(1344), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1224), 3, + anon_sym_SLASH, + anon_sym_DIV, + anon_sym_MOD, + [20966] = 7, + ACTIONS(3), 1, + sym_eol_comment, + ACTIONS(5), 1, + sym_bol_comment, + ACTIONS(1222), 1, + anon_sym_STAR, + ACTIONS(1226), 1, + anon_sym_STAR_STAR, + ACTIONS(1750), 1, + anon_sym_DOT, + ACTIONS(1344), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1224), 3, + anon_sym_SLASH, + anon_sym_DIV, + anon_sym_MOD, + [20991] = 9, ACTIONS(1310), 1, + aux_sym__method_declaration_importing_token1, + ACTIONS(1316), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(1818), 1, + ACTIONS(1876), 1, aux_sym_class_declaration_token7, - ACTIONS(1820), 1, + ACTIONS(1878), 1, anon_sym_DOT, - STATE(1035), 1, + STATE(1165), 1, sym__method_declaration_importing, - STATE(1944), 1, + STATE(1637), 1, sym__method_declaration_raising, - STATE(3133), 1, + STATE(2746), 1, sym__method_declaration_exceptions, - STATE(630), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [24932] = 8, + [21020] = 7, + ACTIONS(3), 1, + sym_eol_comment, ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(1234), 1, + sym_bol_comment, + ACTIONS(1222), 1, anon_sym_STAR, - ACTIONS(1238), 1, + ACTIONS(1226), 1, anon_sym_STAR_STAR, - ACTIONS(1647), 1, - anon_sym_DOT, - ACTIONS(1651), 1, - aux_sym_loop_statement_token5, - ACTIONS(1407), 2, + ACTIONS(1880), 1, + anon_sym_RBRACK, + ACTIONS(1344), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(631), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1236), 3, + ACTIONS(1224), 3, anon_sym_SLASH, anon_sym_DIV, anon_sym_MOD, - [24961] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1296), 1, + [21045] = 6, + ACTIONS(1290), 1, anon_sym_BANG, - ACTIONS(1375), 1, + ACTIONS(1371), 1, sym_name, - STATE(517), 1, - aux_sym__method_declaration_importing_repeat1, - STATE(553), 1, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(1375), 2, + aux_sym_method_parameters_token1, + aux_sym_method_parameters_token2, + STATE(485), 2, sym_method_parameters, - STATE(1181), 1, + aux_sym__method_declaration_importing_repeat1, + STATE(1067), 2, sym__operand, - STATE(1708), 1, sym__escaped_operand, - ACTIONS(1381), 2, - aux_sym_method_parameters_token1, - aux_sym_method_parameters_token2, - STATE(632), 2, - sym_eol_comment, - sym_bol_comment, - [24994] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1296), 1, + [21068] = 6, + ACTIONS(1290), 1, anon_sym_BANG, - ACTIONS(1375), 1, + ACTIONS(1371), 1, sym_name, - STATE(505), 1, - aux_sym__method_declaration_importing_repeat1, - STATE(553), 1, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(1375), 2, + aux_sym_method_parameters_token1, + aux_sym_method_parameters_token2, + STATE(496), 2, sym_method_parameters, - STATE(1181), 1, + aux_sym__method_declaration_importing_repeat1, + STATE(1067), 2, sym__operand, - STATE(1708), 1, sym__escaped_operand, - ACTIONS(1381), 2, + [21091] = 6, + ACTIONS(1290), 1, + anon_sym_BANG, + ACTIONS(1371), 1, + sym_name, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(1375), 2, aux_sym_method_parameters_token1, aux_sym_method_parameters_token2, - STATE(633), 2, + STATE(510), 2, + sym_method_parameters, + aux_sym__method_declaration_importing_repeat1, + STATE(1067), 2, + sym__operand, + sym__escaped_operand, + [21114] = 7, + ACTIONS(3), 1, sym_eol_comment, - sym_bol_comment, - [25027] = 8, ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(1236), 1, - anon_sym_SLASH, - ACTIONS(1238), 1, + sym_bol_comment, + ACTIONS(1222), 1, + anon_sym_STAR, + ACTIONS(1226), 1, anon_sym_STAR_STAR, - ACTIONS(1822), 1, - sym_name, - ACTIONS(1824), 1, - anon_sym_RBRACK, - ACTIONS(1407), 2, + ACTIONS(1882), 1, + anon_sym_DOT, + ACTIONS(1344), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(634), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1234), 3, - anon_sym_STAR, + ACTIONS(1224), 3, + anon_sym_SLASH, anon_sym_DIV, anon_sym_MOD, - [25056] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1775), 1, - anon_sym_DASH2, - ACTIONS(1826), 1, - anon_sym_EQ_GT, - STATE(627), 1, - aux_sym_structured_data_object_repeat1, - ACTIONS(636), 2, - aux_sym_method_parameters_token1, - sym_name, - STATE(635), 2, + [21139] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(638), 3, - anon_sym_DOT, - aux_sym__data_object_typing_normal_token5, - anon_sym_COMMA, - [25085] = 9, + ACTIONS(614), 8, + aux_sym_class_declaration_token13, + aux_sym__create_addition_token2, + aux_sym__create_addition_token3, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, + aux_sym_interface_declaration_token2, + aux_sym_variable_declaration_token1, + [21154] = 7, + ACTIONS(3), 1, + sym_eol_comment, ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, + sym_bol_comment, + ACTIONS(1222), 1, anon_sym_STAR, - ACTIONS(1828), 1, - anon_sym_DOT, - ACTIONS(1832), 1, - aux_sym__method_declaration_exporting_token1, - ACTIONS(1834), 1, - aux_sym__method_declaration_exceptions_token1, - STATE(694), 1, - aux_sym__function_parameter_list, - STATE(2458), 1, - sym_exception_list, - ACTIONS(1830), 2, - aux_sym__method_declaration_importing_token1, - aux_sym__method_declaration_changing_token1, - STATE(636), 2, + ACTIONS(1226), 1, + anon_sym_STAR_STAR, + ACTIONS(1884), 1, + aux_sym_select_statement_obsolete_token3, + ACTIONS(1344), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1224), 3, + anon_sym_SLASH, + anon_sym_DIV, + anon_sym_MOD, + [21179] = 7, + ACTIONS(3), 1, sym_eol_comment, - sym_bol_comment, - [25115] = 7, ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(1234), 1, + sym_bol_comment, + ACTIONS(1222), 1, anon_sym_STAR, - ACTIONS(1238), 1, + ACTIONS(1226), 1, anon_sym_STAR_STAR, - ACTIONS(1836), 1, + ACTIONS(1702), 1, anon_sym_DOT, - ACTIONS(1407), 2, + ACTIONS(1344), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(637), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1236), 3, + ACTIONS(1224), 3, anon_sym_SLASH, anon_sym_DIV, anon_sym_MOD, - [25141] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, - aux_sym_class_declaration_token3, - ACTIONS(1840), 1, + [21204] = 2, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(1886), 7, aux_sym_class_declaration_token13, - ACTIONS(1842), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, aux_sym__create_addition_token3, - STATE(1170), 1, - sym_public_section, - STATE(1833), 1, - sym_protected_section, - STATE(2100), 1, - sym_private_section, - STATE(638), 2, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, + aux_sym_variable_declaration_token1, + [21218] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [25173] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, - aux_sym_class_declaration_token3, - ACTIONS(1842), 1, + ACTIONS(1888), 7, + aux_sym_class_declaration_token13, aux_sym__create_addition_token2, - ACTIONS(1844), 1, aux_sym__create_addition_token3, - ACTIONS(1846), 1, - aux_sym_class_declaration_token13, - STATE(1030), 1, - sym_public_section, - STATE(1803), 1, - sym_protected_section, - STATE(2189), 1, - sym_private_section, - STATE(639), 2, - sym_eol_comment, - sym_bol_comment, - [25205] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1310), 1, - aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(1314), 1, - aux_sym_returning_parameter_token1, - ACTIONS(1848), 1, - anon_sym_DOT, - STATE(1139), 1, - sym_returning_parameter, - STATE(1701), 1, - sym__method_declaration_raising, - STATE(2867), 1, - sym__method_declaration_exceptions, - STATE(640), 2, - sym_eol_comment, - sym_bol_comment, - [25237] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, + aux_sym_variable_declaration_token1, + [21232] = 8, + ACTIONS(1890), 1, aux_sym_class_declaration_token3, - ACTIONS(1842), 1, + ACTIONS(1892), 1, + aux_sym_class_declaration_token13, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(1850), 1, - aux_sym_class_declaration_token13, - STATE(1213), 1, + STATE(1102), 1, sym_public_section, - STATE(1770), 1, + STATE(1579), 1, sym_protected_section, - STATE(2202), 1, + STATE(2956), 1, sym_private_section, - STATE(641), 2, - sym_eol_comment, - sym_bol_comment, - [25269] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1304), 1, - aux_sym__method_declaration_importing_token1, - ACTIONS(1310), 1, - aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(1852), 1, - anon_sym_DOT, - STATE(1199), 1, - sym__method_declaration_importing, - STATE(1755), 1, - sym__method_declaration_raising, - STATE(2910), 1, - sym__method_declaration_exceptions, - STATE(642), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [25301] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1310), 1, - aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(1314), 1, - aux_sym_returning_parameter_token1, - ACTIONS(1854), 1, + [21258] = 8, + ACTIONS(1462), 1, + aux_sym__create_addition_token1, + ACTIONS(1898), 1, + aux_sym_class_declaration_token7, + ACTIONS(1900), 1, + aux_sym_class_declaration_token8, + ACTIONS(1902), 1, + aux_sym_class_declaration_token11, + ACTIONS(1904), 1, + aux_sym_class_declaration_token12, + ACTIONS(1906), 1, anon_sym_DOT, - STATE(1131), 1, - sym_returning_parameter, - STATE(1600), 1, - sym__method_declaration_raising, - STATE(2855), 1, - sym__method_declaration_exceptions, - STATE(643), 2, + STATE(1323), 1, + sym__create_addition, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [25333] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1310), 1, + [21284] = 8, + ACTIONS(1316), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(1314), 1, + ACTIONS(1320), 1, aux_sym_returning_parameter_token1, - ACTIONS(1856), 1, + ACTIONS(1908), 1, anon_sym_DOT, - STATE(1121), 1, + STATE(1053), 1, sym_returning_parameter, - STATE(1665), 1, + STATE(1903), 1, sym__method_declaration_raising, - STATE(2828), 1, + STATE(2284), 1, sym__method_declaration_exceptions, - STATE(644), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [25365] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1486), 1, - aux_sym__create_addition_token1, - ACTIONS(1858), 1, - aux_sym_class_declaration_token7, - ACTIONS(1860), 1, - aux_sym_class_declaration_token8, - ACTIONS(1862), 1, - aux_sym_class_declaration_token11, - ACTIONS(1864), 1, - aux_sym_class_declaration_token12, - ACTIONS(1866), 1, - anon_sym_DOT, - STATE(1266), 1, - sym__create_addition, - STATE(645), 2, + [21310] = 5, + ACTIONS(1910), 1, + anon_sym_DASH2, + ACTIONS(1912), 1, + anon_sym_EQ_GT, + STATE(702), 1, + aux_sym_structured_data_object_repeat1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [25397] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(1234), 1, - anon_sym_STAR, - ACTIONS(1238), 1, - anon_sym_STAR_STAR, - ACTIONS(1708), 1, + ACTIONS(381), 4, anon_sym_DOT, - ACTIONS(1407), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(646), 2, + aux_sym_method_parameters_token1, + anon_sym_COMMA, + aux_sym__data_object_typing_normal_token5, + [21330] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1236), 3, - anon_sym_SLASH, - anon_sym_DIV, - anon_sym_MOD, - [25423] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, - aux_sym_class_declaration_token3, - ACTIONS(1842), 1, + ACTIONS(1914), 7, + aux_sym_class_declaration_token13, aux_sym__create_addition_token2, - ACTIONS(1844), 1, aux_sym__create_addition_token3, - ACTIONS(1868), 1, - aux_sym_class_declaration_token13, - STATE(1205), 1, - sym_public_section, - STATE(1763), 1, - sym_protected_section, - STATE(2919), 1, - sym_private_section, - STATE(647), 2, - sym_eol_comment, - sym_bol_comment, - [25455] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1310), 1, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, + aux_sym_variable_declaration_token1, + [21344] = 8, + ACTIONS(1316), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(1314), 1, - aux_sym_returning_parameter_token1, - ACTIONS(1870), 1, - anon_sym_DOT, - STATE(1214), 1, - sym_returning_parameter, - STATE(1772), 1, - sym__method_declaration_raising, - STATE(2199), 1, - sym__method_declaration_exceptions, - STATE(648), 2, - sym_eol_comment, - sym_bol_comment, - [25487] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, - aux_sym_class_declaration_token3, - ACTIONS(1842), 1, - aux_sym__create_addition_token2, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(1872), 1, - aux_sym_class_declaration_token13, - STATE(1196), 1, - sym_public_section, - STATE(1747), 1, - sym_protected_section, - STATE(2224), 1, - sym_private_section, - STATE(649), 2, - sym_eol_comment, - sym_bol_comment, - [25519] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, - aux_sym_class_declaration_token3, - ACTIONS(1842), 1, - aux_sym__create_addition_token2, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(1874), 1, - aux_sym_class_declaration_token13, - STATE(1175), 1, - sym_public_section, - STATE(1825), 1, - sym_protected_section, - STATE(2126), 1, - sym_private_section, - STATE(650), 2, - sym_eol_comment, - sym_bol_comment, - [25551] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1310), 1, - aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(1314), 1, + ACTIONS(1320), 1, aux_sym_returning_parameter_token1, - ACTIONS(1876), 1, - anon_sym_DOT, - STATE(1202), 1, - sym_returning_parameter, - STATE(1753), 1, - sym__method_declaration_raising, - STATE(2217), 1, - sym__method_declaration_exceptions, - STATE(651), 2, - sym_eol_comment, - sym_bol_comment, - [25583] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, - aux_sym_class_declaration_token3, - ACTIONS(1842), 1, - aux_sym__create_addition_token2, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(1878), 1, - aux_sym_class_declaration_token13, - STATE(1174), 1, - sym_public_section, - STATE(1735), 1, - sym_protected_section, - STATE(2236), 1, - sym_private_section, - STATE(652), 2, - sym_eol_comment, - sym_bol_comment, - [25615] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, - aux_sym_class_declaration_token3, - ACTIONS(1842), 1, - aux_sym__create_addition_token2, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(1880), 1, - aux_sym_class_declaration_token13, - STATE(1172), 1, - sym_public_section, - STATE(1731), 1, - sym_protected_section, - STATE(2245), 1, - sym_private_section, - STATE(653), 2, - sym_eol_comment, - sym_bol_comment, - [25647] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, - aux_sym_class_declaration_token3, - ACTIONS(1842), 1, - aux_sym__create_addition_token2, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(1882), 1, - aux_sym_class_declaration_token13, - STATE(1209), 1, - sym_public_section, - STATE(1773), 1, - sym_protected_section, - STATE(2931), 1, - sym_private_section, - STATE(654), 2, - sym_eol_comment, - sym_bol_comment, - [25679] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(1234), 1, - anon_sym_STAR, - ACTIONS(1238), 1, - anon_sym_STAR_STAR, - ACTIONS(1884), 1, - anon_sym_RPAREN, - ACTIONS(1407), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(655), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1236), 3, - anon_sym_SLASH, - anon_sym_DIV, - anon_sym_MOD, - [25705] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(1234), 1, - anon_sym_STAR, - ACTIONS(1238), 1, - anon_sym_STAR_STAR, - ACTIONS(1886), 1, - anon_sym_RPAREN, - ACTIONS(1407), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(656), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1236), 3, - anon_sym_SLASH, - anon_sym_DIV, - anon_sym_MOD, - [25731] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, - aux_sym_class_declaration_token3, - ACTIONS(1842), 1, - aux_sym__create_addition_token2, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(1888), 1, - aux_sym_class_declaration_token13, - STATE(1102), 1, - sym_public_section, - STATE(1635), 1, - sym_protected_section, - STATE(2792), 1, - sym_private_section, - STATE(657), 2, - sym_eol_comment, - sym_bol_comment, - [25763] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, - aux_sym_class_declaration_token3, - ACTIONS(1842), 1, - aux_sym__create_addition_token2, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(1890), 1, - aux_sym_class_declaration_token13, - STATE(1100), 1, - sym_public_section, - STATE(1627), 1, - sym_protected_section, - STATE(2779), 1, - sym_private_section, - STATE(658), 2, - sym_eol_comment, - sym_bol_comment, - [25795] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1486), 1, - aux_sym__create_addition_token1, - ACTIONS(1892), 1, - aux_sym_class_declaration_token7, - ACTIONS(1894), 1, - aux_sym_class_declaration_token8, - ACTIONS(1896), 1, - aux_sym_class_declaration_token11, - ACTIONS(1898), 1, - aux_sym_class_declaration_token12, - ACTIONS(1900), 1, - anon_sym_DOT, - STATE(1258), 1, - sym__create_addition, - STATE(659), 2, - sym_eol_comment, - sym_bol_comment, - [25827] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(1234), 1, - anon_sym_STAR, - ACTIONS(1238), 1, - anon_sym_STAR_STAR, - ACTIONS(1902), 1, - aux_sym_select_statement_obsolete_token3, - ACTIONS(1407), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(660), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1236), 3, - anon_sym_SLASH, - anon_sym_DIV, - anon_sym_MOD, - [25853] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, - aux_sym_class_declaration_token3, - ACTIONS(1842), 1, - aux_sym__create_addition_token2, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(1904), 1, - aux_sym_class_declaration_token13, - STATE(1126), 1, - sym_public_section, - STATE(1674), 1, - sym_protected_section, - STATE(2312), 1, - sym_private_section, - STATE(661), 2, - sym_eol_comment, - sym_bol_comment, - [25885] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, - aux_sym_class_declaration_token3, - ACTIONS(1842), 1, - aux_sym__create_addition_token2, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(1906), 1, - aux_sym_class_declaration_token13, - STATE(1087), 1, - sym_public_section, - STATE(1609), 1, - sym_protected_section, - STATE(2771), 1, - sym_private_section, - STATE(662), 2, - sym_eol_comment, - sym_bol_comment, - [25917] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, - aux_sym_class_declaration_token3, - ACTIONS(1842), 1, - aux_sym__create_addition_token2, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(1908), 1, - aux_sym_class_declaration_token13, - STATE(1168), 1, - sym_public_section, - STATE(1837), 1, - sym_protected_section, - STATE(2093), 1, - sym_private_section, - STATE(663), 2, - sym_eol_comment, - sym_bol_comment, - [25949] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1486), 1, - aux_sym__create_addition_token1, - ACTIONS(1910), 1, - aux_sym_class_declaration_token7, - ACTIONS(1912), 1, - aux_sym_class_declaration_token8, - ACTIONS(1914), 1, - aux_sym_class_declaration_token11, ACTIONS(1916), 1, - aux_sym_class_declaration_token12, - ACTIONS(1918), 1, - anon_sym_DOT, - STATE(1325), 1, - sym__create_addition, - STATE(664), 2, - sym_eol_comment, - sym_bol_comment, - [25981] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, - aux_sym_class_declaration_token3, - ACTIONS(1842), 1, - aux_sym__create_addition_token2, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(1920), 1, - aux_sym_class_declaration_token13, - STATE(1085), 1, - sym_public_section, - STATE(1565), 1, - sym_protected_section, - STATE(2755), 1, - sym_private_section, - STATE(665), 2, - sym_eol_comment, - sym_bol_comment, - [26013] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1310), 1, - aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(1314), 1, - aux_sym_returning_parameter_token1, - ACTIONS(1922), 1, - anon_sym_DOT, - STATE(1147), 1, - sym_returning_parameter, - STATE(1712), 1, - sym__method_declaration_raising, - STATE(2280), 1, - sym__method_declaration_exceptions, - STATE(666), 2, - sym_eol_comment, - sym_bol_comment, - [26045] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, - aux_sym_class_declaration_token3, - ACTIONS(1842), 1, - aux_sym__create_addition_token2, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(1924), 1, - aux_sym_class_declaration_token13, - STATE(1080), 1, - sym_public_section, - STATE(1595), 1, - sym_protected_section, - STATE(2745), 1, - sym_private_section, - STATE(667), 2, - sym_eol_comment, - sym_bol_comment, - [26077] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, - aux_sym_class_declaration_token3, - ACTIONS(1842), 1, - aux_sym__create_addition_token2, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(1926), 1, - aux_sym_class_declaration_token13, - STATE(1077), 1, - sym_public_section, - STATE(1592), 1, - sym_protected_section, - STATE(2743), 1, - sym_private_section, - STATE(668), 2, - sym_eol_comment, - sym_bol_comment, - [26109] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1486), 1, - aux_sym__create_addition_token1, - ACTIONS(1928), 1, - aux_sym_class_declaration_token7, - ACTIONS(1930), 1, - aux_sym_class_declaration_token8, - ACTIONS(1932), 1, - aux_sym_class_declaration_token11, - ACTIONS(1934), 1, - aux_sym_class_declaration_token12, - ACTIONS(1936), 1, - anon_sym_DOT, - STATE(1249), 1, - sym__create_addition, - STATE(669), 2, - sym_eol_comment, - sym_bol_comment, - [26141] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1486), 1, - aux_sym__create_addition_token1, - ACTIONS(1722), 1, - aux_sym_class_declaration_token7, - ACTIONS(1724), 1, - aux_sym_class_declaration_token8, - ACTIONS(1726), 1, - aux_sym_class_declaration_token11, - ACTIONS(1728), 1, - aux_sym_class_declaration_token12, - ACTIONS(1730), 1, - anon_sym_DOT, - STATE(1245), 1, - sym__create_addition, - STATE(670), 2, - sym_eol_comment, - sym_bol_comment, - [26173] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1310), 1, - aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(1314), 1, - aux_sym_returning_parameter_token1, - ACTIONS(1938), 1, - anon_sym_DOT, - STATE(1133), 1, - sym_returning_parameter, - STATE(1690), 1, - sym__method_declaration_raising, - STATE(2301), 1, - sym__method_declaration_exceptions, - STATE(671), 2, - sym_eol_comment, - sym_bol_comment, - [26205] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1310), 1, - aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(1314), 1, - aux_sym_returning_parameter_token1, - ACTIONS(1940), 1, - anon_sym_DOT, - STATE(1068), 1, - sym_returning_parameter, - STATE(1573), 1, - sym__method_declaration_raising, - STATE(2717), 1, - sym__method_declaration_exceptions, - STATE(672), 2, - sym_eol_comment, - sym_bol_comment, - [26237] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, - aux_sym_class_declaration_token3, - ACTIONS(1842), 1, - aux_sym__create_addition_token2, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(1942), 1, - aux_sym_class_declaration_token13, - STATE(1197), 1, - sym_public_section, - STATE(1789), 1, - sym_protected_section, - STATE(2963), 1, - sym_private_section, - STATE(673), 2, - sym_eol_comment, - sym_bol_comment, - [26269] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, - aux_sym_class_declaration_token3, - ACTIONS(1842), 1, - aux_sym__create_addition_token2, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(1944), 1, - aux_sym_class_declaration_token13, - STATE(1193), 1, - sym_public_section, - STATE(1792), 1, - sym_protected_section, - STATE(2976), 1, - sym_private_section, - STATE(674), 2, - sym_eol_comment, - sym_bol_comment, - [26301] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, - aux_sym_class_declaration_token3, - ACTIONS(1842), 1, - aux_sym__create_addition_token2, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(1946), 1, - aux_sym_class_declaration_token13, - STATE(1187), 1, - sym_public_section, - STATE(1800), 1, - sym_protected_section, - STATE(2988), 1, - sym_private_section, - STATE(675), 2, - sym_eol_comment, - sym_bol_comment, - [26333] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1310), 1, - aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(1314), 1, - aux_sym_returning_parameter_token1, - ACTIONS(1948), 1, - anon_sym_DOT, - STATE(1057), 1, - sym_returning_parameter, - STATE(1541), 1, - sym__method_declaration_raising, - STATE(2704), 1, - sym__method_declaration_exceptions, - STATE(676), 2, - sym_eol_comment, - sym_bol_comment, - [26365] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1310), 1, - aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(1314), 1, - aux_sym_returning_parameter_token1, - ACTIONS(1950), 1, - anon_sym_DOT, - STATE(1054), 1, - sym_returning_parameter, - STATE(1562), 1, - sym__method_declaration_raising, - STATE(2698), 1, - sym__method_declaration_exceptions, - STATE(677), 2, - sym_eol_comment, - sym_bol_comment, - [26397] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, - aux_sym_class_declaration_token3, - ACTIONS(1842), 1, - aux_sym__create_addition_token2, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(1952), 1, - aux_sym_class_declaration_token13, - STATE(1177), 1, - sym_public_section, - STATE(1693), 1, - sym_protected_section, - STATE(3000), 1, - sym_private_section, - STATE(678), 2, - sym_eol_comment, - sym_bol_comment, - [26429] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1310), 1, - aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(1314), 1, - aux_sym_returning_parameter_token1, - ACTIONS(1954), 1, - anon_sym_DOT, - STATE(1040), 1, - sym_returning_parameter, - STATE(1552), 1, - sym__method_declaration_raising, - STATE(2676), 1, - sym__method_declaration_exceptions, - STATE(679), 2, - sym_eol_comment, - sym_bol_comment, - [26461] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1310), 1, - aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(1314), 1, - aux_sym_returning_parameter_token1, - ACTIONS(1956), 1, anon_sym_DOT, - STATE(1037), 1, + STATE(1055), 1, sym_returning_parameter, - STATE(1544), 1, - sym__method_declaration_raising, - STATE(2668), 1, - sym__method_declaration_exceptions, - STATE(680), 2, - sym_eol_comment, - sym_bol_comment, - [26493] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, - aux_sym_class_declaration_token3, - ACTIONS(1842), 1, - aux_sym__create_addition_token2, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(1958), 1, - aux_sym_class_declaration_token13, - STATE(1203), 1, - sym_public_section, - STATE(1786), 1, - sym_protected_section, - STATE(2958), 1, - sym_private_section, - STATE(681), 2, - sym_eol_comment, - sym_bol_comment, - [26525] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, - aux_sym_class_declaration_token3, - ACTIONS(1842), 1, - aux_sym__create_addition_token2, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(1960), 1, - aux_sym_class_declaration_token13, - STATE(1208), 1, - sym_public_section, - STATE(1782), 1, - sym_protected_section, - STATE(2952), 1, - sym_private_section, - STATE(682), 2, - sym_eol_comment, - sym_bol_comment, - [26557] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, - aux_sym_class_declaration_token3, - ACTIONS(1842), 1, - aux_sym__create_addition_token2, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(1962), 1, - aux_sym_class_declaration_token13, - STATE(1215), 1, - sym_public_section, - STATE(1778), 1, - sym_protected_section, - STATE(2940), 1, - sym_private_section, - STATE(683), 2, - sym_eol_comment, - sym_bol_comment, - [26589] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(1234), 1, - anon_sym_STAR, - ACTIONS(1238), 1, - anon_sym_STAR_STAR, - ACTIONS(1747), 1, - anon_sym_DOT, - ACTIONS(1407), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(684), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1236), 3, - anon_sym_SLASH, - anon_sym_DIV, - anon_sym_MOD, - [26615] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, - aux_sym_class_declaration_token3, - ACTIONS(1842), 1, - aux_sym__create_addition_token2, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(1964), 1, - aux_sym_class_declaration_token13, - STATE(1212), 1, - sym_public_section, - STATE(1774), 1, - sym_protected_section, - STATE(2932), 1, - sym_private_section, - STATE(685), 2, - sym_eol_comment, - sym_bol_comment, - [26647] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, - aux_sym_class_declaration_token3, - ACTIONS(1842), 1, - aux_sym__create_addition_token2, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(1966), 1, - aux_sym_class_declaration_token13, - STATE(1206), 1, - sym_public_section, - STATE(1765), 1, - sym_protected_section, - STATE(2921), 1, - sym_private_section, - STATE(686), 2, - sym_eol_comment, - sym_bol_comment, - [26679] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, - aux_sym_class_declaration_token3, - ACTIONS(1842), 1, - aux_sym__create_addition_token2, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(1968), 1, - aux_sym_class_declaration_token13, - STATE(1201), 1, - sym_public_section, - STATE(1756), 1, - sym_protected_section, - STATE(2912), 1, - sym_private_section, - STATE(687), 2, - sym_eol_comment, - sym_bol_comment, - [26711] = 9, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1832), 1, - aux_sym__method_declaration_exporting_token1, - ACTIONS(1834), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(1970), 1, - anon_sym_DOT, - STATE(1004), 1, - aux_sym__function_parameter_list, - STATE(2329), 1, - sym_exception_list, - ACTIONS(1830), 2, - aux_sym__method_declaration_importing_token1, - aux_sym__method_declaration_changing_token1, - STATE(688), 2, - sym_eol_comment, - sym_bol_comment, - [26741] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(689), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(565), 7, - aux_sym_class_declaration_token13, - aux_sym__create_addition_token2, - aux_sym__create_addition_token3, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_interface_declaration_token2, - aux_sym_variable_declaration_token1, - [26761] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(1234), 1, - anon_sym_STAR, - ACTIONS(1238), 1, - anon_sym_STAR_STAR, - ACTIONS(1972), 1, - anon_sym_DOT, - ACTIONS(1407), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(690), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1236), 3, - anon_sym_SLASH, - anon_sym_DIV, - anon_sym_MOD, - [26787] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(1234), 1, - anon_sym_STAR, - ACTIONS(1238), 1, - anon_sym_STAR_STAR, - ACTIONS(1974), 1, - anon_sym_DOT, - ACTIONS(1407), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(691), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1236), 3, - anon_sym_SLASH, - anon_sym_DIV, - anon_sym_MOD, - [26813] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, - aux_sym_class_declaration_token3, - ACTIONS(1842), 1, - aux_sym__create_addition_token2, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(1976), 1, - aux_sym_class_declaration_token13, - STATE(1161), 1, - sym_public_section, - STATE(1854), 1, - sym_protected_section, - STATE(2197), 1, - sym_private_section, - STATE(692), 2, - sym_eol_comment, - sym_bol_comment, - [26845] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(1234), 1, - anon_sym_STAR, - ACTIONS(1238), 1, - anon_sym_STAR_STAR, - ACTIONS(1978), 1, - anon_sym_DOT, - ACTIONS(1407), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(693), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1236), 3, - anon_sym_SLASH, - anon_sym_DIV, - anon_sym_MOD, - [26871] = 9, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1832), 1, - aux_sym__method_declaration_exporting_token1, - ACTIONS(1834), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(1980), 1, - anon_sym_DOT, - STATE(1004), 1, - aux_sym__function_parameter_list, - STATE(2473), 1, - sym_exception_list, - ACTIONS(1830), 2, - aux_sym__method_declaration_importing_token1, - aux_sym__method_declaration_changing_token1, - STATE(694), 2, - sym_eol_comment, - sym_bol_comment, - [26901] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(1234), 1, - anon_sym_STAR, - ACTIONS(1238), 1, - anon_sym_STAR_STAR, - ACTIONS(1982), 1, - anon_sym_DOT, - ACTIONS(1407), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(695), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1236), 3, - anon_sym_SLASH, - anon_sym_DIV, - anon_sym_MOD, - [26927] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, - aux_sym_class_declaration_token3, - ACTIONS(1842), 1, - aux_sym__create_addition_token2, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(1984), 1, - aux_sym_class_declaration_token13, - STATE(1088), 1, - sym_public_section, - STATE(1603), 1, - sym_protected_section, - STATE(2761), 1, - sym_private_section, - STATE(696), 2, - sym_eol_comment, - sym_bol_comment, - [26959] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, - aux_sym_class_declaration_token3, - ACTIONS(1842), 1, - aux_sym__create_addition_token2, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(1986), 1, - aux_sym_class_declaration_token13, - STATE(1179), 1, - sym_public_section, - STATE(1816), 1, - sym_protected_section, - STATE(2143), 1, - sym_private_section, - STATE(697), 2, - sym_eol_comment, - sym_bol_comment, - [26991] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, - aux_sym_class_declaration_token3, - ACTIONS(1842), 1, - aux_sym__create_addition_token2, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(1988), 1, - aux_sym_class_declaration_token13, - STATE(1107), 1, - sym_public_section, - STATE(1645), 1, - sym_protected_section, - STATE(2369), 1, - sym_private_section, - STATE(698), 2, - sym_eol_comment, - sym_bol_comment, - [27023] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1486), 1, - aux_sym__create_addition_token1, - ACTIONS(1990), 1, - aux_sym_class_declaration_token7, - ACTIONS(1992), 1, - aux_sym_class_declaration_token8, - ACTIONS(1994), 1, - aux_sym_class_declaration_token11, - ACTIONS(1996), 1, - aux_sym_class_declaration_token12, - ACTIONS(1998), 1, - anon_sym_DOT, - STATE(1257), 1, - sym__create_addition, - STATE(699), 2, - sym_eol_comment, - sym_bol_comment, - [27055] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1310), 1, - aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(1314), 1, - aux_sym_returning_parameter_token1, - ACTIONS(2000), 1, - anon_sym_DOT, - STATE(1039), 1, - sym_returning_parameter, - STATE(1563), 1, - sym__method_declaration_raising, - STATE(2671), 1, - sym__method_declaration_exceptions, - STATE(700), 2, - sym_eol_comment, - sym_bol_comment, - [27087] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, - aux_sym_class_declaration_token3, - ACTIONS(1842), 1, - aux_sym__create_addition_token2, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(2002), 1, - aux_sym_class_declaration_token13, - STATE(1195), 1, - sym_public_section, - STATE(1752), 1, - sym_protected_section, - STATE(2908), 1, - sym_private_section, - STATE(701), 2, - sym_eol_comment, - sym_bol_comment, - [27119] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1486), 1, - aux_sym__create_addition_token1, - ACTIONS(1696), 1, - aux_sym_class_declaration_token7, - ACTIONS(1698), 1, - aux_sym_class_declaration_token8, - ACTIONS(1700), 1, - aux_sym_class_declaration_token11, - ACTIONS(1702), 1, - aux_sym_class_declaration_token12, - ACTIONS(1704), 1, - anon_sym_DOT, - STATE(1387), 1, - sym__create_addition, - STATE(702), 2, - sym_eol_comment, - sym_bol_comment, - [27151] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(1234), 1, - anon_sym_STAR, - ACTIONS(1238), 1, - anon_sym_STAR_STAR, - ACTIONS(2004), 1, - anon_sym_RPAREN, - ACTIONS(1407), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(703), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1236), 3, - anon_sym_SLASH, - anon_sym_DIV, - anon_sym_MOD, - [27177] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, - aux_sym_class_declaration_token3, - ACTIONS(1842), 1, - aux_sym__create_addition_token2, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(2006), 1, - aux_sym_class_declaration_token13, - STATE(1158), 1, - sym_public_section, - STATE(1866), 1, - sym_protected_section, - STATE(2403), 1, - sym_private_section, - STATE(704), 2, - sym_eol_comment, - sym_bol_comment, - [27209] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1310), 1, - aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(1314), 1, - aux_sym_returning_parameter_token1, - ACTIONS(2008), 1, - anon_sym_DOT, - STATE(1050), 1, - sym_returning_parameter, - STATE(1558), 1, - sym__method_declaration_raising, - STATE(2695), 1, - sym__method_declaration_exceptions, - STATE(705), 2, - sym_eol_comment, - sym_bol_comment, - [27241] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, - aux_sym_class_declaration_token3, - ACTIONS(1842), 1, - aux_sym__create_addition_token2, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(2010), 1, - aux_sym_class_declaration_token13, - STATE(1164), 1, - sym_public_section, - STATE(1852), 1, - sym_protected_section, - STATE(2252), 1, - sym_private_section, - STATE(706), 2, - sym_eol_comment, - sym_bol_comment, - [27273] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, - aux_sym_class_declaration_token3, - ACTIONS(1842), 1, - aux_sym__create_addition_token2, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(2012), 1, - aux_sym_class_declaration_token13, - STATE(1094), 1, - sym_public_section, - STATE(1607), 1, - sym_protected_section, - STATE(2420), 1, - sym_private_section, - STATE(707), 2, - sym_eol_comment, - sym_bol_comment, - [27305] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, - aux_sym_class_declaration_token3, - ACTIONS(1842), 1, - aux_sym__create_addition_token2, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(2014), 1, - aux_sym_class_declaration_token13, - STATE(1185), 1, - sym_public_section, - STATE(1742), 1, - sym_protected_section, - STATE(2902), 1, - sym_private_section, - STATE(708), 2, - sym_eol_comment, - sym_bol_comment, - [27337] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, - aux_sym_class_declaration_token3, - ACTIONS(1842), 1, - aux_sym__create_addition_token2, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(2016), 1, - aux_sym_class_declaration_token13, - STATE(1096), 1, - sym_public_section, - STATE(1614), 1, - sym_protected_section, - STATE(2418), 1, - sym_private_section, - STATE(709), 2, - sym_eol_comment, - sym_bol_comment, - [27369] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, - aux_sym_class_declaration_token3, - ACTIONS(1842), 1, - aux_sym__create_addition_token2, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(2018), 1, - aux_sym_class_declaration_token13, - STATE(1183), 1, - sym_public_section, - STATE(1736), 1, - sym_protected_section, - STATE(2895), 1, - sym_private_section, - STATE(710), 2, - sym_eol_comment, - sym_bol_comment, - [27401] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, - aux_sym_class_declaration_token3, - ACTIONS(1842), 1, - aux_sym__create_addition_token2, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(2020), 1, - aux_sym_class_declaration_token13, - STATE(1099), 1, - sym_public_section, - STATE(1626), 1, - sym_protected_section, - STATE(2401), 1, - sym_private_section, - STATE(711), 2, - sym_eol_comment, - sym_bol_comment, - [27433] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, - aux_sym_class_declaration_token3, - ACTIONS(1842), 1, - aux_sym__create_addition_token2, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(2022), 1, - aux_sym_class_declaration_token13, - STATE(1169), 1, - sym_public_section, - STATE(1733), 1, - sym_protected_section, - STATE(2892), 1, - sym_private_section, - STATE(712), 2, - sym_eol_comment, - sym_bol_comment, - [27465] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, - aux_sym_class_declaration_token3, - ACTIONS(1842), 1, - aux_sym__create_addition_token2, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(2024), 1, - aux_sym_class_declaration_token13, - STATE(1165), 1, - sym_public_section, - STATE(1723), 1, - sym_protected_section, - STATE(2885), 1, - sym_private_section, - STATE(713), 2, - sym_eol_comment, - sym_bol_comment, - [27497] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, - aux_sym_class_declaration_token3, - ACTIONS(1842), 1, - aux_sym__create_addition_token2, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(2026), 1, - aux_sym_class_declaration_token13, - STATE(1148), 1, - sym_public_section, - STATE(1713), 1, - sym_protected_section, - STATE(2877), 1, - sym_private_section, - STATE(714), 2, - sym_eol_comment, - sym_bol_comment, - [27529] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, - aux_sym_class_declaration_token3, - ACTIONS(1842), 1, - aux_sym__create_addition_token2, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(2028), 1, - aux_sym_class_declaration_token13, - STATE(1167), 1, - sym_public_section, - STATE(1843), 1, - sym_protected_section, - STATE(2085), 1, - sym_private_section, - STATE(715), 2, - sym_eol_comment, - sym_bol_comment, - [27561] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, - aux_sym_class_declaration_token3, - ACTIONS(1842), 1, - aux_sym__create_addition_token2, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(2030), 1, - aux_sym_class_declaration_token13, - STATE(1142), 1, - sym_public_section, - STATE(1702), 1, - sym_protected_section, - STATE(2869), 1, - sym_private_section, - STATE(716), 2, - sym_eol_comment, - sym_bol_comment, - [27593] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, - aux_sym_class_declaration_token3, - ACTIONS(1842), 1, - aux_sym__create_addition_token2, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(2032), 1, - aux_sym_class_declaration_token13, - STATE(1109), 1, - sym_public_section, - STATE(1647), 1, - sym_protected_section, - STATE(2370), 1, - sym_private_section, - STATE(717), 2, - sym_eol_comment, - sym_bol_comment, - [27625] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, - aux_sym_class_declaration_token3, - ACTIONS(1842), 1, - aux_sym__create_addition_token2, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(2034), 1, - aux_sym_class_declaration_token13, - STATE(1113), 1, - sym_public_section, - STATE(1651), 1, - sym_protected_section, - STATE(2362), 1, - sym_private_section, - STATE(718), 2, - sym_eol_comment, - sym_bol_comment, - [27657] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, - aux_sym_class_declaration_token3, - ACTIONS(1842), 1, - aux_sym__create_addition_token2, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(2036), 1, - aux_sym_class_declaration_token13, - STATE(1137), 1, - sym_public_section, - STATE(1699), 1, - sym_protected_section, - STATE(2866), 1, - sym_private_section, - STATE(719), 2, - sym_eol_comment, - sym_bol_comment, - [27689] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, - aux_sym_class_declaration_token3, - ACTIONS(1842), 1, - aux_sym__create_addition_token2, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(2038), 1, - aux_sym_class_declaration_token13, - STATE(1135), 1, - sym_public_section, - STATE(1689), 1, - sym_protected_section, - STATE(2857), 1, - sym_private_section, - STATE(720), 2, - sym_eol_comment, - sym_bol_comment, - [27721] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(1234), 1, - anon_sym_STAR, - ACTIONS(1238), 1, - anon_sym_STAR_STAR, - ACTIONS(2040), 1, - aux_sym_select_statement_obsolete_token3, - ACTIONS(1407), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(721), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1236), 3, - anon_sym_SLASH, - anon_sym_DIV, - anon_sym_MOD, - [27747] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(1234), 1, - anon_sym_STAR, - ACTIONS(1238), 1, - anon_sym_STAR_STAR, - ACTIONS(1807), 1, - anon_sym_DOT, - ACTIONS(1407), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(722), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1236), 3, - anon_sym_SLASH, - anon_sym_DIV, - anon_sym_MOD, - [27773] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1310), 1, - aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(1314), 1, - aux_sym_returning_parameter_token1, - ACTIONS(2042), 1, - anon_sym_DOT, - STATE(1129), 1, - sym_returning_parameter, - STATE(1677), 1, - sym__method_declaration_raising, - STATE(2313), 1, - sym__method_declaration_exceptions, - STATE(723), 2, - sym_eol_comment, - sym_bol_comment, - [27805] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1310), 1, - aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(1314), 1, - aux_sym_returning_parameter_token1, - ACTIONS(2044), 1, - anon_sym_DOT, - STATE(1134), 1, - sym_returning_parameter, - STATE(1687), 1, - sym__method_declaration_raising, - STATE(2300), 1, - sym__method_declaration_exceptions, - STATE(724), 2, - sym_eol_comment, - sym_bol_comment, - [27837] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1310), 1, - aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(1314), 1, - aux_sym_returning_parameter_token1, - ACTIONS(2046), 1, - anon_sym_DOT, - STATE(1150), 1, - sym_returning_parameter, - STATE(1707), 1, - sym__method_declaration_raising, - STATE(2283), 1, - sym__method_declaration_exceptions, - STATE(725), 2, - sym_eol_comment, - sym_bol_comment, - [27869] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1310), 1, - aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(1314), 1, - aux_sym_returning_parameter_token1, - ACTIONS(2048), 1, - anon_sym_DOT, - STATE(1188), 1, - sym_returning_parameter, - STATE(1741), 1, - sym__method_declaration_raising, - STATE(2228), 1, - sym__method_declaration_exceptions, - STATE(726), 2, - sym_eol_comment, - sym_bol_comment, - [27901] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1310), 1, - aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(1314), 1, - aux_sym_returning_parameter_token1, - ACTIONS(2050), 1, - anon_sym_DOT, - STATE(1120), 1, - sym_returning_parameter, - STATE(1887), 1, - sym__method_declaration_raising, - STATE(3034), 1, - sym__method_declaration_exceptions, - STATE(727), 2, - sym_eol_comment, - sym_bol_comment, - [27933] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1310), 1, - aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(1314), 1, - aux_sym_returning_parameter_token1, - ACTIONS(2052), 1, - anon_sym_DOT, - STATE(1110), 1, - sym_returning_parameter, - STATE(1894), 1, - sym__method_declaration_raising, - STATE(3037), 1, - sym__method_declaration_exceptions, - STATE(728), 2, - sym_eol_comment, - sym_bol_comment, - [27965] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, - aux_sym_class_declaration_token3, - ACTIONS(1842), 1, - aux_sym__create_addition_token2, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(2054), 1, - aux_sym_class_declaration_token13, - STATE(1178), 1, - sym_public_section, - STATE(1814), 1, - sym_protected_section, - STATE(2160), 1, - sym_private_section, - STATE(729), 2, - sym_eol_comment, - sym_bol_comment, - [27997] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, - aux_sym_class_declaration_token3, - ACTIONS(1842), 1, - aux_sym__create_addition_token2, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(2056), 1, - aux_sym_class_declaration_token13, - STATE(1127), 1, - sym_public_section, - STATE(1676), 1, - sym_protected_section, - STATE(2846), 1, - sym_private_section, - STATE(730), 2, - sym_eol_comment, - sym_bol_comment, - [28029] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, - aux_sym_class_declaration_token3, - ACTIONS(1842), 1, - aux_sym__create_addition_token2, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(2058), 1, - aux_sym_class_declaration_token13, - STATE(1125), 1, - sym_public_section, - STATE(1670), 1, - sym_protected_section, - STATE(2837), 1, - sym_private_section, - STATE(731), 2, - sym_eol_comment, - sym_bol_comment, - [28061] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, - aux_sym_class_declaration_token3, - ACTIONS(1842), 1, - aux_sym__create_addition_token2, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(2060), 1, - aux_sym_class_declaration_token13, - STATE(1124), 1, - sym_public_section, - STATE(1669), 1, - sym_protected_section, - STATE(2836), 1, - sym_private_section, - STATE(732), 2, - sym_eol_comment, - sym_bol_comment, - [28093] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, - aux_sym_class_declaration_token3, - ACTIONS(1842), 1, - aux_sym__create_addition_token2, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(2062), 1, - aux_sym_class_declaration_token13, - STATE(1123), 1, - sym_public_section, - STATE(1664), 1, - sym_protected_section, - STATE(2825), 1, - sym_private_section, - STATE(733), 2, - sym_eol_comment, - sym_bol_comment, - [28125] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(1234), 1, - anon_sym_STAR, - ACTIONS(1238), 1, - anon_sym_STAR_STAR, - ACTIONS(1647), 1, - anon_sym_DOT, - ACTIONS(1407), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(734), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1236), 3, - anon_sym_SLASH, - anon_sym_DIV, - anon_sym_MOD, - [28151] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, - aux_sym_class_declaration_token3, - ACTIONS(1842), 1, - aux_sym__create_addition_token2, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(2064), 1, - aux_sym_class_declaration_token13, - STATE(1191), 1, - sym_public_section, - STATE(1797), 1, - sym_protected_section, - STATE(2176), 1, - sym_private_section, - STATE(735), 2, - sym_eol_comment, - sym_bol_comment, - [28183] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, - aux_sym_class_declaration_token3, - ACTIONS(1842), 1, - aux_sym__create_addition_token2, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(2066), 1, - aux_sym_class_declaration_token13, - STATE(1184), 1, - sym_public_section, - STATE(1801), 1, - sym_protected_section, - STATE(2114), 1, - sym_private_section, - STATE(736), 2, - sym_eol_comment, - sym_bol_comment, - [28215] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, - aux_sym_class_declaration_token3, - ACTIONS(1842), 1, - aux_sym__create_addition_token2, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(2068), 1, - aux_sym_class_declaration_token13, - STATE(1117), 1, - sym_public_section, - STATE(1662), 1, - sym_protected_section, - STATE(2824), 1, - sym_private_section, - STATE(737), 2, - sym_eol_comment, - sym_bol_comment, - [28247] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, - aux_sym_class_declaration_token3, - ACTIONS(1842), 1, - aux_sym__create_addition_token2, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(2070), 1, - aux_sym_class_declaration_token13, - STATE(1116), 1, - sym_public_section, - STATE(1659), 1, - sym_protected_section, - STATE(2819), 1, - sym_private_section, - STATE(738), 2, - sym_eol_comment, - sym_bol_comment, - [28279] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, - aux_sym_class_declaration_token3, - ACTIONS(1842), 1, - aux_sym__create_addition_token2, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(2072), 1, - aux_sym_class_declaration_token13, - STATE(1115), 1, - sym_public_section, - STATE(1656), 1, - sym_protected_section, - STATE(2812), 1, - sym_private_section, - STATE(739), 2, - sym_eol_comment, - sym_bol_comment, - [28311] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, - aux_sym_class_declaration_token3, - ACTIONS(1842), 1, - aux_sym__create_addition_token2, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(2074), 1, - aux_sym_class_declaration_token13, - STATE(1180), 1, - sym_public_section, - STATE(1818), 1, - sym_protected_section, - STATE(2142), 1, - sym_private_section, - STATE(740), 2, - sym_eol_comment, - sym_bol_comment, - [28343] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(1234), 1, - anon_sym_STAR, - ACTIONS(1238), 1, - anon_sym_STAR_STAR, - ACTIONS(2076), 1, - anon_sym_DOT, - ACTIONS(1407), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(741), 2, + STATE(1897), 1, + sym__method_declaration_raising, + STATE(2274), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1236), 3, - anon_sym_SLASH, - anon_sym_DIV, - anon_sym_MOD, - [28369] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, + [21370] = 8, + ACTIONS(1890), 1, aux_sym_class_declaration_token3, - ACTIONS(1842), 1, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2078), 1, + ACTIONS(1918), 1, aux_sym_class_declaration_token13, - STATE(1112), 1, + STATE(1103), 1, sym_public_section, - STATE(1650), 1, + STATE(1820), 1, sym_protected_section, - STATE(2807), 1, + STATE(2367), 1, sym_private_section, - STATE(742), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [28401] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, + [21396] = 2, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(1920), 7, + aux_sym_class_declaration_token13, + aux_sym__create_addition_token2, + aux_sym__create_addition_token3, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, + aux_sym_variable_declaration_token1, + [21410] = 8, + ACTIONS(1890), 1, aux_sym_class_declaration_token3, - ACTIONS(1842), 1, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2080), 1, + ACTIONS(1922), 1, aux_sym_class_declaration_token13, - STATE(1111), 1, + STATE(1179), 1, sym_public_section, - STATE(1649), 1, + STATE(1640), 1, sym_protected_section, - STATE(2802), 1, + STATE(2733), 1, sym_private_section, - STATE(743), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [28433] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, + [21436] = 8, + ACTIONS(1462), 1, + aux_sym__create_addition_token1, + ACTIONS(1924), 1, + aux_sym_class_declaration_token7, + ACTIONS(1926), 1, + aux_sym_class_declaration_token8, + ACTIONS(1928), 1, + aux_sym_class_declaration_token11, + ACTIONS(1930), 1, + aux_sym_class_declaration_token12, + ACTIONS(1932), 1, + anon_sym_DOT, + STATE(1358), 1, + sym__create_addition, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [21462] = 2, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(1934), 7, + aux_sym_class_declaration_token13, + aux_sym__create_addition_token2, + aux_sym__create_addition_token3, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, + aux_sym_variable_declaration_token1, + [21476] = 4, + ACTIONS(1910), 1, + anon_sym_DASH2, + STATE(702), 1, + aux_sym_structured_data_object_repeat1, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(381), 5, + anon_sym_DOT, + aux_sym_method_parameters_token1, + anon_sym_COMMA, + aux_sym__data_object_typing_normal_token5, + anon_sym_EQ, + [21494] = 8, + ACTIONS(1890), 1, aux_sym_class_declaration_token3, - ACTIONS(1842), 1, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2082), 1, + ACTIONS(1936), 1, aux_sym_class_declaration_token13, - STATE(1105), 1, + STATE(1104), 1, sym_public_section, - STATE(1646), 1, + STATE(1703), 1, sym_protected_section, - STATE(2796), 1, + STATE(2961), 1, sym_private_section, - STATE(744), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [28465] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2084), 1, - sym_name, - ACTIONS(2086), 1, - aux_sym_complete_typing_token1, - ACTIONS(2088), 1, - aux_sym_generic_type_token2, - ACTIONS(2090), 1, - aux_sym__data_object_typing_normal_token1, - STATE(745), 2, + [21520] = 8, + ACTIONS(1462), 1, + aux_sym__create_addition_token1, + ACTIONS(1938), 1, + aux_sym_class_declaration_token7, + ACTIONS(1940), 1, + aux_sym_class_declaration_token8, + ACTIONS(1942), 1, + aux_sym_class_declaration_token11, + ACTIONS(1944), 1, + aux_sym_class_declaration_token12, + ACTIONS(1946), 1, + anon_sym_DOT, + STATE(1366), 1, + sym__create_addition, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2092), 3, - aux_sym__data_object_typing_itabs_token1, - aux_sym__data_object_typing_itabs_token2, - aux_sym__data_object_typing_itabs_token3, - [28493] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, - aux_sym_class_declaration_token3, - ACTIONS(1842), 1, + [21546] = 2, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(1948), 7, + aux_sym_class_declaration_token13, aux_sym__create_addition_token2, - ACTIONS(1844), 1, aux_sym__create_addition_token3, - ACTIONS(2094), 1, - aux_sym_class_declaration_token13, - STATE(1103), 1, - sym_public_section, - STATE(1634), 1, - sym_protected_section, - STATE(2791), 1, - sym_private_section, - STATE(746), 2, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, + aux_sym_variable_declaration_token1, + [21560] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [28525] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, + ACTIONS(1950), 7, + aux_sym_class_declaration_token13, + aux_sym__create_addition_token2, + aux_sym__create_addition_token3, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, + aux_sym_variable_declaration_token1, + [21574] = 8, + ACTIONS(1890), 1, aux_sym_class_declaration_token3, - ACTIONS(1842), 1, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2096), 1, + ACTIONS(1952), 1, aux_sym_class_declaration_token13, - STATE(1163), 1, + STATE(1116), 1, sym_public_section, - STATE(1838), 1, + STATE(1766), 1, sym_protected_section, - STATE(2092), 1, + STATE(2989), 1, sym_private_section, - STATE(747), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [28557] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, + [21600] = 8, + ACTIONS(1890), 1, aux_sym_class_declaration_token3, - ACTIONS(1842), 1, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2098), 1, + ACTIONS(1954), 1, aux_sym_class_declaration_token13, - STATE(1162), 1, + STATE(1118), 1, sym_public_section, - STATE(1851), 1, + STATE(1773), 1, sym_protected_section, - STATE(2179), 1, + STATE(2999), 1, sym_private_section, - STATE(748), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [28589] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, + [21626] = 8, + ACTIONS(1890), 1, aux_sym_class_declaration_token3, - ACTIONS(1842), 1, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2100), 1, + ACTIONS(1956), 1, aux_sym_class_declaration_token13, - STATE(1101), 1, + STATE(1109), 1, sym_public_section, - STATE(1631), 1, + STATE(1504), 1, sym_protected_section, - STATE(2783), 1, + STATE(2975), 1, sym_private_section, - STATE(749), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [28621] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, + [21652] = 8, + ACTIONS(1890), 1, aux_sym_class_declaration_token3, - ACTIONS(1842), 1, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2102), 1, + ACTIONS(1958), 1, aux_sym_class_declaration_token13, - STATE(1098), 1, + STATE(1073), 1, sym_public_section, - STATE(1629), 1, + STATE(1793), 1, sym_protected_section, - STATE(2780), 1, + STATE(2227), 1, sym_private_section, - STATE(750), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [28653] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1310), 1, + [21678] = 8, + ACTIONS(1316), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(1314), 1, + ACTIONS(1320), 1, aux_sym_returning_parameter_token1, - ACTIONS(2104), 1, + ACTIONS(1960), 1, anon_sym_DOT, - STATE(1160), 1, + STATE(1082), 1, sym_returning_parameter, - STATE(1858), 1, + STATE(1568), 1, sym__method_declaration_raising, - STATE(2282), 1, + STATE(2911), 1, sym__method_declaration_exceptions, - STATE(751), 2, - sym_eol_comment, - sym_bol_comment, - [28685] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, - aux_sym_class_declaration_token3, - ACTIONS(1842), 1, - aux_sym__create_addition_token2, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(2106), 1, - aux_sym_class_declaration_token13, - STATE(1097), 1, - sym_public_section, - STATE(1625), 1, - sym_protected_section, - STATE(2777), 1, - sym_private_section, - STATE(752), 2, - sym_eol_comment, - sym_bol_comment, - [28717] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(1234), 1, - anon_sym_STAR, - ACTIONS(1238), 1, - anon_sym_STAR_STAR, - ACTIONS(2108), 1, - anon_sym_DOT, - ACTIONS(1407), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(753), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1236), 3, - anon_sym_SLASH, - anon_sym_DIV, - anon_sym_MOD, - [28743] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1486), 1, + [21704] = 8, + ACTIONS(1462), 1, aux_sym__create_addition_token1, - ACTIONS(2110), 1, + ACTIONS(1962), 1, aux_sym_class_declaration_token7, - ACTIONS(2112), 1, + ACTIONS(1964), 1, aux_sym_class_declaration_token8, - ACTIONS(2114), 1, + ACTIONS(1966), 1, aux_sym_class_declaration_token11, - ACTIONS(2116), 1, + ACTIONS(1968), 1, aux_sym_class_declaration_token12, - ACTIONS(2118), 1, + ACTIONS(1970), 1, anon_sym_DOT, - STATE(1251), 1, + STATE(1397), 1, sym__create_addition, - STATE(754), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [28775] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, - aux_sym_class_declaration_token3, - ACTIONS(1842), 1, + [21730] = 2, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(1972), 7, + aux_sym_class_declaration_token13, aux_sym__create_addition_token2, - ACTIONS(1844), 1, aux_sym__create_addition_token3, - ACTIONS(2120), 1, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, + aux_sym_variable_declaration_token1, + [21744] = 2, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(1974), 7, aux_sym_class_declaration_token13, - STATE(1044), 1, - sym_public_section, - STATE(1553), 1, - sym_protected_section, - STATE(2678), 1, - sym_private_section, - STATE(755), 2, + aux_sym__create_addition_token2, + aux_sym__create_addition_token3, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, + aux_sym_variable_declaration_token1, + [21758] = 7, + ACTIONS(1976), 1, + anon_sym_DOT, + ACTIONS(1980), 1, + aux_sym__method_declaration_exporting_token1, + ACTIONS(1982), 1, + aux_sym__method_declaration_exceptions_token1, + STATE(1006), 1, + aux_sym__function_parameter_list, + STATE(2460), 1, + sym_exception_list, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [28807] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, + ACTIONS(1978), 2, + aux_sym__method_declaration_importing_token1, + aux_sym__method_declaration_changing_token1, + [21782] = 8, + ACTIONS(1890), 1, aux_sym_class_declaration_token3, - ACTIONS(1842), 1, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2122), 1, + ACTIONS(1984), 1, aux_sym_class_declaration_token13, STATE(1079), 1, sym_public_section, - STATE(1596), 1, + STATE(1736), 1, sym_protected_section, - STATE(2746), 1, + STATE(2184), 1, sym_private_section, - STATE(756), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [28839] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, + [21808] = 8, + ACTIONS(1890), 1, aux_sym_class_declaration_token3, - ACTIONS(1842), 1, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2124), 1, + ACTIONS(1986), 1, aux_sym_class_declaration_token13, - STATE(1090), 1, + STATE(1080), 1, sym_public_section, - STATE(1606), 1, + STATE(1729), 1, sym_protected_section, - STATE(2766), 1, + STATE(2176), 1, sym_private_section, - STATE(757), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [28871] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, - aux_sym_class_declaration_token3, - ACTIONS(1842), 1, + [21834] = 8, + ACTIONS(1462), 1, + aux_sym__create_addition_token1, + ACTIONS(1740), 1, + aux_sym_class_declaration_token7, + ACTIONS(1742), 1, + aux_sym_class_declaration_token8, + ACTIONS(1744), 1, + aux_sym_class_declaration_token11, + ACTIONS(1746), 1, + aux_sym_class_declaration_token12, + ACTIONS(1748), 1, + anon_sym_DOT, + STATE(1403), 1, + sym__create_addition, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [21860] = 8, + ACTIONS(1316), 1, + aux_sym__method_declaration_raising_token1, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(1320), 1, + aux_sym_returning_parameter_token1, + ACTIONS(1988), 1, + anon_sym_DOT, + STATE(1074), 1, + sym_returning_parameter, + STATE(1871), 1, + sym__method_declaration_raising, + STATE(2897), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [21886] = 2, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(1990), 7, + aux_sym_class_declaration_token13, aux_sym__create_addition_token2, - ACTIONS(1844), 1, aux_sym__create_addition_token3, - ACTIONS(2126), 1, - aux_sym_class_declaration_token13, - STATE(1031), 1, - sym_public_section, - STATE(1611), 1, - sym_protected_section, - STATE(2772), 1, - sym_private_section, - STATE(758), 2, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, + aux_sym_variable_declaration_token1, + [21900] = 7, + ACTIONS(1980), 1, + aux_sym__method_declaration_exporting_token1, + ACTIONS(1982), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(1992), 1, + anon_sym_DOT, + STATE(668), 1, + aux_sym__function_parameter_list, + STATE(2444), 1, + sym_exception_list, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [28903] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1310), 1, + ACTIONS(1978), 2, + aux_sym__method_declaration_importing_token1, + aux_sym__method_declaration_changing_token1, + [21924] = 8, + ACTIONS(1316), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(1314), 1, + ACTIONS(1320), 1, aux_sym_returning_parameter_token1, - ACTIONS(2128), 1, + ACTIONS(1994), 1, anon_sym_DOT, - STATE(1122), 1, + STATE(1069), 1, sym_returning_parameter, - STATE(1882), 1, + STATE(1511), 1, sym__method_declaration_raising, - STATE(2692), 1, + STATE(2888), 1, sym__method_declaration_exceptions, - STATE(759), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [28935] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, + [21950] = 2, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(1996), 7, + aux_sym_class_declaration_token13, + aux_sym__create_addition_token2, + aux_sym__create_addition_token3, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, + aux_sym_variable_declaration_token1, + [21964] = 8, + ACTIONS(1890), 1, aux_sym_class_declaration_token3, - ACTIONS(1842), 1, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2130), 1, + ACTIONS(1998), 1, aux_sym_class_declaration_token13, - STATE(1166), 1, + STATE(1150), 1, sym_public_section, - STATE(1947), 1, + STATE(1639), 1, sym_protected_section, - STATE(3039), 1, + STATE(2945), 1, sym_private_section, - STATE(760), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [28967] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, + [21990] = 8, + ACTIONS(1316), 1, + aux_sym__method_declaration_raising_token1, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(1320), 1, + aux_sym_returning_parameter_token1, + ACTIONS(2000), 1, + anon_sym_DOT, + STATE(1046), 1, + sym_returning_parameter, + STATE(1842), 1, + sym__method_declaration_raising, + STATE(2348), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [22016] = 8, + ACTIONS(1890), 1, aux_sym_class_declaration_token3, - ACTIONS(1842), 1, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2132), 1, + ACTIONS(2002), 1, aux_sym_class_declaration_token13, - STATE(1082), 1, + STATE(1081), 1, sym_public_section, - STATE(1598), 1, + STATE(1720), 1, sym_protected_section, - STATE(2752), 1, + STATE(2168), 1, sym_private_section, - STATE(761), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [28999] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1310), 1, - aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(1314), 1, - aux_sym_returning_parameter_token1, - ACTIONS(2134), 1, + [22042] = 2, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(2004), 7, + aux_sym_class_declaration_token13, + aux_sym__create_addition_token2, + aux_sym__create_addition_token3, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, + aux_sym_variable_declaration_token1, + [22056] = 2, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(2006), 7, + aux_sym_class_declaration_token13, + aux_sym__create_addition_token2, + aux_sym__create_addition_token3, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, + aux_sym_variable_declaration_token1, + [22070] = 8, + ACTIONS(1462), 1, + aux_sym__create_addition_token1, + ACTIONS(2008), 1, + aux_sym_class_declaration_token7, + ACTIONS(2010), 1, + aux_sym_class_declaration_token8, + ACTIONS(2012), 1, + aux_sym_class_declaration_token11, + ACTIONS(2014), 1, + aux_sym_class_declaration_token12, + ACTIONS(2016), 1, anon_sym_DOT, - STATE(1108), 1, - sym_returning_parameter, - STATE(1892), 1, - sym__method_declaration_raising, - STATE(2820), 1, - sym__method_declaration_exceptions, - STATE(762), 2, + STATE(1210), 1, + sym__create_addition, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [29031] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1310), 1, + [22096] = 8, + ACTIONS(1316), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(1314), 1, + ACTIONS(1320), 1, aux_sym_returning_parameter_token1, - ACTIONS(2136), 1, + ACTIONS(2018), 1, anon_sym_DOT, - STATE(1153), 1, + STATE(1042), 1, sym_returning_parameter, - STATE(1717), 1, + STATE(1816), 1, sym__method_declaration_raising, - STATE(2884), 1, + STATE(2358), 1, sym__method_declaration_exceptions, - STATE(763), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [29063] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(1234), 1, - anon_sym_STAR, - ACTIONS(1238), 1, - anon_sym_STAR_STAR, - ACTIONS(2138), 1, - anon_sym_RPAREN, - ACTIONS(1407), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(764), 2, + [22122] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1236), 3, - anon_sym_SLASH, - anon_sym_DIV, - anon_sym_MOD, - [29089] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1310), 1, + ACTIONS(2020), 7, + aux_sym_class_declaration_token13, + aux_sym__create_addition_token2, + aux_sym__create_addition_token3, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, + aux_sym_variable_declaration_token1, + [22136] = 8, + ACTIONS(1316), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(1314), 1, + ACTIONS(1320), 1, aux_sym_returning_parameter_token1, - ACTIONS(2140), 1, + ACTIONS(2022), 1, anon_sym_DOT, - STATE(1074), 1, + STATE(1058), 1, sym_returning_parameter, - STATE(1916), 1, + STATE(1526), 1, sym__method_declaration_raising, - STATE(3002), 1, + STATE(2863), 1, sym__method_declaration_exceptions, - STATE(765), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [29121] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(656), 2, - aux_sym_method_parameters_token1, - sym_name, - STATE(766), 2, + [22162] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(658), 5, + ACTIONS(2024), 7, + aux_sym_class_declaration_token13, + aux_sym__create_addition_token2, + aux_sym__create_addition_token3, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, + aux_sym_variable_declaration_token1, + [22176] = 8, + ACTIONS(1316), 1, + aux_sym__method_declaration_raising_token1, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(1320), 1, + aux_sym_returning_parameter_token1, + ACTIONS(2026), 1, anon_sym_DOT, - aux_sym__data_object_typing_normal_token5, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_DASH2, - [29143] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, + STATE(1054), 1, + sym_returning_parameter, + STATE(1533), 1, + sym__method_declaration_raising, + STATE(2855), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [22202] = 8, + ACTIONS(1890), 1, aux_sym_class_declaration_token3, - ACTIONS(1842), 1, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2142), 1, + ACTIONS(2028), 1, aux_sym_class_declaration_token13, - STATE(1048), 1, + STATE(1146), 1, sym_public_section, - STATE(1560), 1, + STATE(1603), 1, sym_protected_section, - STATE(2690), 1, + STATE(2939), 1, sym_private_section, - STATE(767), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [29175] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(1234), 1, - anon_sym_STAR, - ACTIONS(1238), 1, - anon_sym_STAR_STAR, - ACTIONS(2144), 1, - anon_sym_RBRACK, - ACTIONS(1407), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(768), 2, + [22228] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1236), 3, - anon_sym_SLASH, - anon_sym_DIV, - anon_sym_MOD, - [29201] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, + ACTIONS(2030), 7, + aux_sym_class_declaration_token13, + aux_sym__create_addition_token2, + aux_sym__create_addition_token3, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, + aux_sym_variable_declaration_token1, + [22242] = 2, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(2032), 7, + aux_sym_class_declaration_token13, + aux_sym__create_addition_token2, + aux_sym__create_addition_token3, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, + aux_sym_variable_declaration_token1, + [22256] = 2, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(2034), 7, + aux_sym_class_declaration_token13, + aux_sym__create_addition_token2, + aux_sym__create_addition_token3, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, + aux_sym_variable_declaration_token1, + [22270] = 2, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(2036), 7, + aux_sym_class_declaration_token13, + aux_sym__create_addition_token2, + aux_sym__create_addition_token3, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, + aux_sym_variable_declaration_token1, + [22284] = 2, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(2038), 7, + aux_sym_class_declaration_token13, + aux_sym__create_addition_token2, + aux_sym__create_addition_token3, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, + aux_sym_variable_declaration_token1, + [22298] = 2, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(2040), 7, + aux_sym_class_declaration_token13, + aux_sym__create_addition_token2, + aux_sym__create_addition_token3, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, + aux_sym_variable_declaration_token1, + [22312] = 8, + ACTIONS(1890), 1, aux_sym_class_declaration_token3, - ACTIONS(1842), 1, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2146), 1, + ACTIONS(2042), 1, aux_sym_class_declaration_token13, - STATE(1086), 1, + STATE(1141), 1, sym_public_section, - STATE(1599), 1, + STATE(1582), 1, sym_protected_section, - STATE(2753), 1, + STATE(2927), 1, sym_private_section, - STATE(769), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [29233] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, + [22338] = 8, + ACTIONS(1890), 1, aux_sym_class_declaration_token3, - ACTIONS(1842), 1, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2148), 1, + ACTIONS(2044), 1, aux_sym_class_declaration_token13, - STATE(1065), 1, + STATE(1119), 1, sym_public_section, - STATE(1920), 1, + STATE(1686), 1, sym_protected_section, - STATE(3072), 1, + STATE(2677), 1, sym_private_section, - STATE(770), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [29265] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, + [22364] = 8, + ACTIONS(1890), 1, aux_sym_class_declaration_token3, - ACTIONS(1842), 1, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2150), 1, + ACTIONS(2046), 1, aux_sym_class_declaration_token13, - STATE(1056), 1, + STATE(1131), 1, sym_public_section, - STATE(1566), 1, + STATE(1577), 1, sym_protected_section, - STATE(2702), 1, + STATE(2919), 1, sym_private_section, - STATE(771), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [29297] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, + [22390] = 7, + ACTIONS(1980), 1, + aux_sym__method_declaration_exporting_token1, + ACTIONS(1982), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(2048), 1, + anon_sym_DOT, + STATE(1006), 1, + aux_sym__function_parameter_list, + STATE(2383), 1, + sym_exception_list, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(1978), 2, + aux_sym__method_declaration_importing_token1, + aux_sym__method_declaration_changing_token1, + [22414] = 8, + ACTIONS(1890), 1, aux_sym_class_declaration_token3, - ACTIONS(1842), 1, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2152), 1, + ACTIONS(2050), 1, aux_sym_class_declaration_token13, - STATE(1059), 1, + STATE(1108), 1, sym_public_section, - STATE(1926), 1, + STATE(1678), 1, sym_protected_section, - STATE(3088), 1, + STATE(2684), 1, sym_private_section, - STATE(772), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [29329] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, + [22440] = 8, + ACTIONS(1890), 1, aux_sym_class_declaration_token3, - ACTIONS(1842), 1, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2154), 1, + ACTIONS(2052), 1, aux_sym_class_declaration_token13, - STATE(1152), 1, + STATE(1034), 1, sym_public_section, - STATE(1722), 1, + STATE(1594), 1, sym_protected_section, - STATE(2889), 1, + STATE(2791), 1, sym_private_section, - STATE(773), 2, - sym_eol_comment, - sym_bol_comment, - [29361] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(1234), 1, - anon_sym_STAR, - ACTIONS(1238), 1, - anon_sym_STAR_STAR, - ACTIONS(2156), 1, - anon_sym_RPAREN, - ACTIONS(1407), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(774), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1236), 3, - anon_sym_SLASH, - anon_sym_DIV, - anon_sym_MOD, - [29387] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(1234), 1, - anon_sym_STAR, - ACTIONS(1238), 1, - anon_sym_STAR_STAR, - ACTIONS(2158), 1, - anon_sym_RPAREN, - ACTIONS(1407), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(775), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1236), 3, - anon_sym_SLASH, - anon_sym_DIV, - anon_sym_MOD, - [29413] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, + [22466] = 8, + ACTIONS(1890), 1, aux_sym_class_declaration_token3, - ACTIONS(1842), 1, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2160), 1, + ACTIONS(2054), 1, aux_sym_class_declaration_token13, - STATE(1051), 1, + STATE(1032), 1, sym_public_section, - STATE(1561), 1, + STATE(1601), 1, sym_protected_section, - STATE(2697), 1, + STATE(2784), 1, sym_private_section, - STATE(776), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [29445] = 9, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1832), 1, - aux_sym__method_declaration_exporting_token1, - ACTIONS(1834), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(2162), 1, - anon_sym_DOT, - STATE(688), 1, - aux_sym__function_parameter_list, - STATE(2396), 1, - sym_exception_list, - ACTIONS(1830), 2, - aux_sym__method_declaration_importing_token1, - aux_sym__method_declaration_changing_token1, - STATE(777), 2, + [22492] = 4, + ACTIONS(1910), 1, + anon_sym_DASH2, + STATE(881), 1, + aux_sym_structured_data_object_repeat1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [29475] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(1234), 1, - anon_sym_STAR, - ACTIONS(1238), 1, - anon_sym_STAR_STAR, - ACTIONS(2164), 1, + ACTIONS(394), 5, anon_sym_DOT, - ACTIONS(1407), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(778), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1236), 3, - anon_sym_SLASH, - anon_sym_DIV, - anon_sym_MOD, - [29501] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, + aux_sym_method_parameters_token1, + anon_sym_COMMA, + aux_sym__data_object_typing_normal_token5, + anon_sym_EQ, + [22510] = 8, + ACTIONS(1890), 1, aux_sym_class_declaration_token3, - ACTIONS(1842), 1, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2166), 1, + ACTIONS(2056), 1, aux_sym_class_declaration_token13, STATE(1130), 1, sym_public_section, - STATE(1685), 1, + STATE(1567), 1, sym_protected_section, - STATE(2854), 1, + STATE(2908), 1, sym_private_section, - STATE(779), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [29533] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, + [22536] = 8, + ACTIONS(1890), 1, aux_sym_class_declaration_token3, - ACTIONS(1842), 1, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2168), 1, + ACTIONS(2058), 1, aux_sym_class_declaration_token13, - STATE(1042), 1, + STATE(1139), 1, sym_public_section, - STATE(1942), 1, + STATE(1682), 1, sym_protected_section, - STATE(3114), 1, + STATE(2130), 1, sym_private_section, - STATE(780), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [29565] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, + [22562] = 8, + ACTIONS(1890), 1, aux_sym_class_declaration_token3, - ACTIONS(1842), 1, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2170), 1, + ACTIONS(2060), 1, aux_sym_class_declaration_token13, - STATE(1043), 1, + STATE(1099), 1, sym_public_section, - STATE(1937), 1, + STATE(1670), 1, sym_protected_section, - STATE(3113), 1, + STATE(2689), 1, sym_private_section, - STATE(781), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [29597] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, + [22588] = 8, + ACTIONS(1890), 1, aux_sym_class_declaration_token3, - ACTIONS(1842), 1, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2172), 1, + ACTIONS(2062), 1, aux_sym_class_declaration_token13, - STATE(1062), 1, + STATE(1026), 1, sym_public_section, - STATE(1568), 1, + STATE(1613), 1, sym_protected_section, - STATE(2707), 1, + STATE(2769), 1, sym_private_section, - STATE(782), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [29629] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, + [22614] = 8, + ACTIONS(1890), 1, aux_sym_class_declaration_token3, - ACTIONS(1842), 1, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2174), 1, + ACTIONS(2064), 1, aux_sym_class_declaration_token13, - STATE(1173), 1, + STATE(1125), 1, sym_public_section, - STATE(1740), 1, + STATE(1558), 1, sym_protected_section, - STATE(2900), 1, + STATE(2899), 1, sym_private_section, - STATE(783), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [29661] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, + [22640] = 8, + ACTIONS(1890), 1, aux_sym_class_declaration_token3, - ACTIONS(1842), 1, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2176), 1, + ACTIONS(2066), 1, aux_sym_class_declaration_token13, - STATE(1064), 1, + STATE(1049), 1, sym_public_section, - STATE(1571), 1, + STATE(1880), 1, sym_protected_section, - STATE(2712), 1, + STATE(2303), 1, sym_private_section, - STATE(784), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [29693] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, + [22666] = 8, + ACTIONS(1890), 1, aux_sym_class_declaration_token3, - ACTIONS(1842), 1, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2178), 1, + ACTIONS(2068), 1, aux_sym_class_declaration_token13, - STATE(1067), 1, + STATE(1043), 1, sym_public_section, - STATE(1572), 1, + STATE(1666), 1, sym_protected_section, - STATE(2716), 1, + STATE(2694), 1, sym_private_section, - STATE(785), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [29725] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, + [22692] = 2, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(2070), 7, + aux_sym_class_declaration_token13, + aux_sym__create_addition_token2, + aux_sym__create_addition_token3, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, + aux_sym_variable_declaration_token1, + [22706] = 2, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(2072), 7, + aux_sym_class_declaration_token13, + aux_sym__create_addition_token2, + aux_sym__create_addition_token3, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, + aux_sym_variable_declaration_token1, + [22720] = 2, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(2074), 7, + aux_sym_class_declaration_token13, + aux_sym__create_addition_token2, + aux_sym__create_addition_token3, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, + aux_sym_variable_declaration_token1, + [22734] = 2, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(2076), 7, + aux_sym_class_declaration_token13, + aux_sym__create_addition_token2, + aux_sym__create_addition_token3, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, + aux_sym_variable_declaration_token1, + [22748] = 2, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(2078), 7, + aux_sym_class_declaration_token13, + aux_sym__create_addition_token2, + aux_sym__create_addition_token3, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, + aux_sym_variable_declaration_token1, + [22762] = 2, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(2080), 7, + aux_sym_class_declaration_token13, + aux_sym__create_addition_token2, + aux_sym__create_addition_token3, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, + aux_sym_variable_declaration_token1, + [22776] = 8, + ACTIONS(1890), 1, aux_sym_class_declaration_token3, - ACTIONS(1842), 1, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2180), 1, + ACTIONS(2082), 1, aux_sym_class_declaration_token13, - STATE(1072), 1, + STATE(1122), 1, sym_public_section, - STATE(1581), 1, + STATE(1506), 1, sym_protected_section, - STATE(2724), 1, + STATE(2895), 1, sym_private_section, - STATE(786), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [29757] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, + [22802] = 2, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(2084), 7, + aux_sym_class_declaration_token13, + aux_sym__create_addition_token2, + aux_sym__create_addition_token3, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, + aux_sym_variable_declaration_token1, + [22816] = 6, + ACTIONS(2086), 1, + sym_name, + ACTIONS(2088), 1, + aux_sym_complete_typing_token1, + ACTIONS(2090), 1, + aux_sym_generic_type_token2, + ACTIONS(2092), 1, + aux_sym__data_object_typing_normal_token1, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(2094), 3, + aux_sym__data_object_typing_itabs_token1, + aux_sym__data_object_typing_itabs_token2, + aux_sym__data_object_typing_itabs_token3, + [22838] = 8, + ACTIONS(1890), 1, aux_sym_class_declaration_token3, - ACTIONS(1842), 1, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2182), 1, + ACTIONS(2096), 1, aux_sym_class_declaration_token13, - STATE(1073), 1, + STATE(1129), 1, sym_public_section, - STATE(1584), 1, + STATE(1619), 1, sym_protected_section, - STATE(2727), 1, + STATE(2113), 1, sym_private_section, - STATE(787), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [29789] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, + [22864] = 8, + ACTIONS(1890), 1, aux_sym_class_declaration_token3, - ACTIONS(1842), 1, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2184), 1, + ACTIONS(2098), 1, aux_sym_class_declaration_token13, - STATE(1075), 1, + STATE(1039), 1, sym_public_section, - STATE(1587), 1, + STATE(1663), 1, sym_protected_section, - STATE(2732), 1, + STATE(2699), 1, sym_private_section, - STATE(788), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [29821] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, + [22890] = 8, + ACTIONS(1890), 1, aux_sym_class_declaration_token3, - ACTIONS(1842), 1, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2186), 1, + ACTIONS(2100), 1, aux_sym_class_declaration_token13, - STATE(1204), 1, + STATE(1121), 1, sym_public_section, - STATE(1787), 1, + STATE(1510), 1, sym_protected_section, - STATE(2992), 1, + STATE(2889), 1, sym_private_section, - STATE(789), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [29853] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, + [22916] = 8, + ACTIONS(1890), 1, aux_sym_class_declaration_token3, - ACTIONS(1842), 1, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2188), 1, + ACTIONS(2102), 1, aux_sym_class_declaration_token13, - STATE(1076), 1, + STATE(1161), 1, sym_public_section, - STATE(1590), 1, + STATE(1634), 1, sym_protected_section, - STATE(2738), 1, + STATE(2743), 1, sym_private_section, - STATE(790), 2, - sym_eol_comment, - sym_bol_comment, - [29885] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1310), 1, - aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(1314), 1, - aux_sym_returning_parameter_token1, - ACTIONS(2190), 1, - anon_sym_DOT, - STATE(1053), 1, - sym_returning_parameter, - STATE(1933), 1, - sym__method_declaration_raising, - STATE(3055), 1, - sym__method_declaration_exceptions, - STATE(791), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [29917] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1838), 1, + [22942] = 8, + ACTIONS(1890), 1, aux_sym_class_declaration_token3, - ACTIONS(1842), 1, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2192), 1, + ACTIONS(2104), 1, aux_sym_class_declaration_token13, - STATE(1200), 1, + STATE(1117), 1, sym_public_section, - STATE(1751), 1, + STATE(1513), 1, sym_protected_section, - STATE(2903), 1, + STATE(2882), 1, sym_private_section, - STATE(792), 2, - sym_eol_comment, - sym_bol_comment, - [29949] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1310), 1, - aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(1314), 1, - aux_sym_returning_parameter_token1, - ACTIONS(2194), 1, - anon_sym_DOT, - STATE(1063), 1, - sym_returning_parameter, - STATE(1927), 1, - sym__method_declaration_raising, - STATE(3052), 1, - sym__method_declaration_exceptions, - STATE(793), 2, - sym_eol_comment, - sym_bol_comment, - [29981] = 10, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1310), 1, - aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(1314), 1, - aux_sym_returning_parameter_token1, - ACTIONS(2196), 1, - anon_sym_DOT, - STATE(1058), 1, - sym_returning_parameter, - STATE(1929), 1, - sym__method_declaration_raising, - STATE(3108), 1, - sym__method_declaration_exceptions, - STATE(794), 2, - sym_eol_comment, - sym_bol_comment, - [30013] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(795), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2198), 6, - aux_sym_class_declaration_token13, + [22968] = 8, + ACTIONS(1890), 1, + aux_sym_class_declaration_token3, + ACTIONS(1894), 1, aux_sym__create_addition_token2, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_variable_declaration_token1, - [30032] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(796), 2, + ACTIONS(2106), 1, + aux_sym_class_declaration_token13, + STATE(1173), 1, + sym_public_section, + STATE(1638), 1, + sym_protected_section, + STATE(2738), 1, + sym_private_section, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2200), 6, - aux_sym_class_declaration_token13, + [22994] = 8, + ACTIONS(1890), 1, + aux_sym_class_declaration_token3, + ACTIONS(1894), 1, aux_sym__create_addition_token2, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_variable_declaration_token1, - [30051] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2204), 1, - anon_sym_RPAREN, - ACTIONS(2206), 1, - aux_sym__explicit_parameter_list_token1, - STATE(1005), 1, - aux_sym__explicit_parameter_list_repeat1, - STATE(797), 2, + ACTIONS(2108), 1, + aux_sym_class_declaration_token13, + STATE(1023), 1, + sym_public_section, + STATE(1657), 1, + sym_protected_section, + STATE(2703), 1, + sym_private_section, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2202), 3, - aux_sym__method_declaration_importing_token1, - aux_sym__method_declaration_exporting_token1, - aux_sym__method_declaration_changing_token1, - [30076] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(798), 2, + [23020] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2208), 6, + ACTIONS(2110), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [30095] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(799), 2, + [23034] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2210), 6, + ACTIONS(2112), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [30114] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(800), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(2212), 6, - aux_sym_class_declaration_token13, + [23048] = 8, + ACTIONS(1890), 1, + aux_sym_class_declaration_token3, + ACTIONS(1894), 1, aux_sym__create_addition_token2, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_variable_declaration_token1, - [30133] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(801), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(2214), 6, + ACTIONS(2114), 1, aux_sym_class_declaration_token13, - aux_sym__create_addition_token2, - aux_sym__create_addition_token3, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_variable_declaration_token1, - [30152] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(802), 2, + STATE(1115), 1, + sym_public_section, + STATE(1517), 1, + sym_protected_section, + STATE(2879), 1, + sym_private_section, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2216), 6, - aux_sym_class_declaration_token13, + [23074] = 8, + ACTIONS(1890), 1, + aux_sym_class_declaration_token3, + ACTIONS(1894), 1, aux_sym__create_addition_token2, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_variable_declaration_token1, - [30171] = 9, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1486), 1, - aux_sym__create_addition_token1, - ACTIONS(2218), 1, - aux_sym_class_declaration_token8, - ACTIONS(2220), 1, - aux_sym_class_declaration_token11, - ACTIONS(2222), 1, - aux_sym_class_declaration_token12, - ACTIONS(2224), 1, - anon_sym_DOT, - STATE(1273), 1, - sym__create_addition, - STATE(803), 2, + ACTIONS(2116), 1, + aux_sym_class_declaration_token13, + STATE(1114), 1, + sym_public_section, + STATE(1519), 1, + sym_protected_section, + STATE(2872), 1, + sym_private_section, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [30200] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(804), 2, + [23100] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2226), 6, + ACTIONS(2118), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [30219] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(805), 2, + [23114] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2228), 6, + ACTIONS(2120), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [30238] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(806), 2, + [23128] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2230), 6, + ACTIONS(2122), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [30257] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(807), 2, + [23142] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2232), 6, + ACTIONS(2124), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [30276] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(808), 2, + [23156] = 8, + ACTIONS(1316), 1, + aux_sym__method_declaration_raising_token1, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(1320), 1, + aux_sym_returning_parameter_token1, + ACTIONS(2126), 1, + anon_sym_DOT, + STATE(1120), 1, + sym_returning_parameter, + STATE(1607), 1, + sym__method_declaration_raising, + STATE(2101), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2234), 6, - aux_sym_class_declaration_token13, - aux_sym__create_addition_token2, - aux_sym__create_addition_token3, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_variable_declaration_token1, - [30295] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(809), 2, + [23182] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2236), 6, + ACTIONS(2128), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [30314] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(810), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(2238), 6, - aux_sym_class_declaration_token13, + [23196] = 8, + ACTIONS(1890), 1, + aux_sym_class_declaration_token3, + ACTIONS(1894), 1, aux_sym__create_addition_token2, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_variable_declaration_token1, - [30333] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(811), 2, + ACTIONS(2130), 1, + aux_sym_class_declaration_token13, + STATE(1124), 1, + sym_public_section, + STATE(1697), 1, + sym_protected_section, + STATE(2665), 1, + sym_private_section, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2240), 6, - aux_sym_class_declaration_token13, - aux_sym__create_addition_token2, - aux_sym__create_addition_token3, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_variable_declaration_token1, - [30352] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(812), 2, + [23222] = 8, + ACTIONS(1316), 1, + aux_sym__method_declaration_raising_token1, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(1320), 1, + aux_sym_returning_parameter_token1, + ACTIONS(2132), 1, + anon_sym_DOT, + STATE(1132), 1, + sym_returning_parameter, + STATE(1672), 1, + sym__method_declaration_raising, + STATE(2180), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2242), 6, - aux_sym_class_declaration_token13, + [23248] = 8, + ACTIONS(1890), 1, + aux_sym_class_declaration_token3, + ACTIONS(1894), 1, aux_sym__create_addition_token2, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_variable_declaration_token1, - [30371] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(813), 2, + ACTIONS(2134), 1, + aux_sym_class_declaration_token13, + STATE(1107), 1, + sym_public_section, + STATE(1525), 1, + sym_protected_section, + STATE(2864), 1, + sym_private_section, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2244), 6, - aux_sym_class_declaration_token13, - aux_sym__create_addition_token2, - aux_sym__create_addition_token3, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_variable_declaration_token1, - [30390] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(814), 2, + [23274] = 8, + ACTIONS(1316), 1, + aux_sym__method_declaration_raising_token1, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(1320), 1, + aux_sym_returning_parameter_token1, + ACTIONS(2136), 1, + anon_sym_DOT, + STATE(1157), 1, + sym_returning_parameter, + STATE(1664), 1, + sym__method_declaration_raising, + STATE(2698), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2246), 6, - aux_sym_class_declaration_token13, + [23300] = 8, + ACTIONS(1890), 1, + aux_sym_class_declaration_token3, + ACTIONS(1894), 1, aux_sym__create_addition_token2, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_variable_declaration_token1, - [30409] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(815), 2, + ACTIONS(2138), 1, + aux_sym_class_declaration_token13, + STATE(1111), 1, + sym_public_section, + STATE(1547), 1, + sym_protected_section, + STATE(2082), 1, + sym_private_section, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2248), 6, - aux_sym_class_declaration_token13, - aux_sym__create_addition_token2, - aux_sym__create_addition_token3, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_variable_declaration_token1, - [30428] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(816), 2, + [23326] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2250), 6, + ACTIONS(2140), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [30447] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(817), 2, + [23340] = 8, + ACTIONS(1316), 1, + aux_sym__method_declaration_raising_token1, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(1320), 1, + aux_sym_returning_parameter_token1, + ACTIONS(2142), 1, + anon_sym_DOT, + STATE(1143), 1, + sym_returning_parameter, + STATE(1674), 1, + sym__method_declaration_raising, + STATE(2687), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2252), 6, - aux_sym_class_declaration_token13, - aux_sym__create_addition_token2, - aux_sym__create_addition_token3, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_variable_declaration_token1, - [30466] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(818), 2, + [23366] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2254), 6, + ACTIONS(2144), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [30485] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(819), 2, + [23380] = 8, + ACTIONS(1316), 1, + aux_sym__method_declaration_raising_token1, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(1320), 1, + aux_sym_returning_parameter_token1, + ACTIONS(2146), 1, + anon_sym_DOT, + STATE(1126), 1, + sym_returning_parameter, + STATE(1812), 1, + sym__method_declaration_raising, + STATE(2922), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2256), 6, - aux_sym_class_declaration_token13, - aux_sym__create_addition_token2, - aux_sym__create_addition_token3, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_variable_declaration_token1, - [30504] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(820), 2, + [23406] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2258), 6, + ACTIONS(2148), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [30523] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(821), 2, + [23420] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2260), 6, + ACTIONS(2150), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [30542] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(822), 2, + [23434] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2262), 6, + ACTIONS(2152), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [30561] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(823), 2, + [23448] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2264), 6, + ACTIONS(2154), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [30580] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(824), 2, + [23462] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2266), 6, + ACTIONS(2156), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [30599] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(825), 2, + [23476] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2268), 6, + ACTIONS(2158), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [30618] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(826), 2, + [23490] = 8, + ACTIONS(1890), 1, + aux_sym_class_declaration_token3, + ACTIONS(1894), 1, + aux_sym__create_addition_token2, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(2160), 1, + aux_sym_class_declaration_token13, + STATE(1101), 1, + sym_public_section, + STATE(1696), 1, + sym_protected_section, + STATE(2669), 1, + sym_private_section, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [23516] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2270), 6, + ACTIONS(2162), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [30637] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(827), 2, + [23530] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2272), 6, + ACTIONS(2164), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [30656] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(828), 2, + [23544] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2274), 6, + ACTIONS(2166), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [30675] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(829), 2, + [23558] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2276), 6, + ACTIONS(2168), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [30694] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(830), 2, + [23572] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2278), 6, + ACTIONS(2170), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [30713] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(831), 2, + [23586] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2280), 6, + ACTIONS(2172), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [30732] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(832), 2, + [23600] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2282), 6, + ACTIONS(2174), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [30751] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(833), 2, + [23614] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2284), 6, + ACTIONS(2176), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [30770] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(834), 2, + [23628] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2286), 6, + ACTIONS(2178), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [30789] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(835), 2, + [23642] = 8, + ACTIONS(1890), 1, + aux_sym_class_declaration_token3, + ACTIONS(1894), 1, + aux_sym__create_addition_token2, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(2180), 1, + aux_sym_class_declaration_token13, + STATE(1136), 1, + sym_public_section, + STATE(1685), 1, + sym_protected_section, + STATE(2680), 1, + sym_private_section, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2288), 6, - aux_sym_class_declaration_token13, + [23668] = 8, + ACTIONS(1890), 1, + aux_sym_class_declaration_token3, + ACTIONS(1894), 1, aux_sym__create_addition_token2, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_variable_declaration_token1, - [30808] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(836), 2, + ACTIONS(2182), 1, + aux_sym_class_declaration_token13, + STATE(1100), 1, + sym_public_section, + STATE(1532), 1, + sym_protected_section, + STATE(2856), 1, + sym_private_section, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [23694] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2290), 6, + ACTIONS(2184), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [30827] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(837), 2, + [23708] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2292), 6, + ACTIONS(2186), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [30846] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(838), 2, + [23722] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2294), 6, + ACTIONS(2188), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [30865] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(839), 2, + [23736] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2296), 6, + ACTIONS(2190), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [30884] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(840), 2, + [23750] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2298), 6, + ACTIONS(2192), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [30903] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(841), 2, + [23764] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2300), 6, + ACTIONS(2194), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [30922] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(842), 2, + [23778] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2302), 6, + ACTIONS(2196), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [30941] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(843), 2, + [23792] = 8, + ACTIONS(1890), 1, + aux_sym_class_declaration_token3, + ACTIONS(1894), 1, + aux_sym__create_addition_token2, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(2198), 1, + aux_sym_class_declaration_token13, + STATE(1155), 1, + sym_public_section, + STATE(1673), 1, + sym_protected_section, + STATE(2683), 1, + sym_private_section, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [23818] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2304), 6, + ACTIONS(2200), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [30960] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(844), 2, + [23832] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2306), 6, + ACTIONS(2202), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [30979] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(845), 2, + [23846] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2308), 6, + ACTIONS(2204), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [30998] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(846), 2, + [23860] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2310), 6, + ACTIONS(2206), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [31017] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(847), 2, + [23874] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2312), 6, + ACTIONS(2208), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [31036] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(848), 2, + [23888] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2314), 6, + ACTIONS(2210), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [31055] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(849), 2, + [23902] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2316), 6, + ACTIONS(2212), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [31074] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(850), 2, + [23916] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2318), 6, + ACTIONS(2214), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [31093] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(851), 2, + [23930] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2320), 6, + ACTIONS(2216), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [31112] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(852), 2, + [23944] = 8, + ACTIONS(1890), 1, + aux_sym_class_declaration_token3, + ACTIONS(1894), 1, + aux_sym__create_addition_token2, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(2218), 1, + aux_sym_class_declaration_token13, + STATE(1090), 1, + sym_public_section, + STATE(1548), 1, + sym_protected_section, + STATE(2833), 1, + sym_private_section, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [23970] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2322), 6, + ACTIONS(2220), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [31131] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(853), 2, + [23984] = 8, + ACTIONS(1890), 1, + aux_sym_class_declaration_token3, + ACTIONS(1894), 1, + aux_sym__create_addition_token2, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(2222), 1, + aux_sym_class_declaration_token13, + STATE(1180), 1, + sym_public_section, + STATE(1656), 1, + sym_protected_section, + STATE(2706), 1, + sym_private_section, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [24010] = 7, + ACTIONS(1980), 1, + aux_sym__method_declaration_exporting_token1, + ACTIONS(1982), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(2224), 1, + anon_sym_DOT, + STATE(698), 1, + aux_sym__function_parameter_list, + STATE(2674), 1, + sym_exception_list, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(1978), 2, + aux_sym__method_declaration_importing_token1, + aux_sym__method_declaration_changing_token1, + [24034] = 8, + ACTIONS(1316), 1, + aux_sym__method_declaration_raising_token1, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(1320), 1, + aux_sym_returning_parameter_token1, + ACTIONS(2226), 1, + anon_sym_DOT, + STATE(1020), 1, + sym_returning_parameter, + STATE(1694), 1, + sym__method_declaration_raising, + STATE(2667), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [24060] = 8, + ACTIONS(1316), 1, + aux_sym__method_declaration_raising_token1, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(1320), 1, + aux_sym_returning_parameter_token1, + ACTIONS(2228), 1, + anon_sym_DOT, + STATE(1171), 1, + sym_returning_parameter, + STATE(1731), 1, + sym__method_declaration_raising, + STATE(2175), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [24086] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2324), 6, + ACTIONS(2230), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [31150] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(854), 2, + [24100] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2326), 6, + ACTIONS(2232), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [31169] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(855), 2, + [24114] = 8, + ACTIONS(1890), 1, + aux_sym_class_declaration_token3, + ACTIONS(1894), 1, + aux_sym__create_addition_token2, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(2234), 1, + aux_sym_class_declaration_token13, + STATE(1105), 1, + sym_public_section, + STATE(1593), 1, + sym_protected_section, + STATE(2095), 1, + sym_private_section, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [24140] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2328), 6, + ACTIONS(2236), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [31188] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(856), 2, + [24154] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2330), 6, + ACTIONS(2238), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [31207] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(857), 2, + [24168] = 8, + ACTIONS(1890), 1, + aux_sym_class_declaration_token3, + ACTIONS(1894), 1, + aux_sym__create_addition_token2, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(2240), 1, + aux_sym_class_declaration_token13, + STATE(1112), 1, + sym_public_section, + STATE(1646), 1, + sym_protected_section, + STATE(2723), 1, + sym_private_section, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [24194] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2332), 6, + ACTIONS(2242), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [31226] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(858), 2, + [24208] = 8, + ACTIONS(1316), 1, + aux_sym__method_declaration_raising_token1, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(1320), 1, + aux_sym_returning_parameter_token1, + ACTIONS(2244), 1, + anon_sym_DOT, + STATE(1182), 1, + sym_returning_parameter, + STATE(1740), 1, + sym__method_declaration_raising, + STATE(2185), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2334), 6, - aux_sym_class_declaration_token13, + [24234] = 8, + ACTIONS(1890), 1, + aux_sym_class_declaration_token3, + ACTIONS(1894), 1, aux_sym__create_addition_token2, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_variable_declaration_token1, - [31245] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(859), 2, + ACTIONS(2246), 1, + aux_sym_class_declaration_token13, + STATE(1096), 1, + sym_public_section, + STATE(1541), 1, + sym_protected_section, + STATE(2844), 1, + sym_private_section, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [24260] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2336), 6, + ACTIONS(2248), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [31264] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(860), 2, + [24274] = 8, + ACTIONS(1890), 1, + aux_sym_class_declaration_token3, + ACTIONS(1894), 1, + aux_sym__create_addition_token2, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(2250), 1, + aux_sym_class_declaration_token13, + STATE(1095), 1, + sym_public_section, + STATE(1543), 1, + sym_protected_section, + STATE(2841), 1, + sym_private_section, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [24300] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2338), 6, + ACTIONS(2252), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [31283] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(861), 2, + [24314] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2340), 6, + ACTIONS(2254), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [31302] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(862), 2, + [24328] = 8, + ACTIONS(1890), 1, + aux_sym_class_declaration_token3, + ACTIONS(1894), 1, + aux_sym__create_addition_token2, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(2256), 1, + aux_sym_class_declaration_token13, + STATE(1097), 1, + sym_public_section, + STATE(1534), 1, + sym_protected_section, + STATE(2853), 1, + sym_private_section, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [24354] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2342), 6, + ACTIONS(2258), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [31321] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(863), 2, + [24368] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2344), 6, + ACTIONS(2260), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [31340] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(864), 2, + [24382] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2346), 6, + ACTIONS(2262), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [31359] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(865), 2, + [24396] = 8, + ACTIONS(1890), 1, + aux_sym_class_declaration_token3, + ACTIONS(1894), 1, + aux_sym__create_addition_token2, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(2264), 1, + aux_sym_class_declaration_token13, + STATE(1163), 1, + sym_public_section, + STATE(1771), 1, + sym_protected_section, + STATE(2205), 1, + sym_private_section, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [24422] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2348), 6, + ACTIONS(2266), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [31378] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(866), 2, + [24436] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2350), 6, + ACTIONS(2268), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [31397] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(867), 2, + [24450] = 8, + ACTIONS(1316), 1, + aux_sym__method_declaration_raising_token1, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(1320), 1, + aux_sym_returning_parameter_token1, + ACTIONS(2270), 1, + anon_sym_DOT, + STATE(1024), 1, + sym_returning_parameter, + STATE(1728), 1, + sym__method_declaration_raising, + STATE(2630), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2352), 6, - aux_sym_class_declaration_token13, + [24476] = 8, + ACTIONS(1890), 1, + aux_sym_class_declaration_token3, + ACTIONS(1894), 1, aux_sym__create_addition_token2, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_variable_declaration_token1, - [31416] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(868), 2, + ACTIONS(2272), 1, + aux_sym_class_declaration_token13, + STATE(1086), 1, + sym_public_section, + STATE(1552), 1, + sym_protected_section, + STATE(2824), 1, + sym_private_section, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2354), 6, + [24502] = 2, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(2274), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [31435] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(869), 2, + [24516] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2356), 6, + ACTIONS(2276), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [31454] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2358), 1, - aux_sym_generic_typing_token1, - ACTIONS(2360), 1, - aux_sym_generic_typing_token2, - STATE(1591), 1, - sym__data_object_typing, - STATE(870), 2, + [24530] = 8, + ACTIONS(1316), 1, + aux_sym__method_declaration_raising_token1, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(1320), 1, + aux_sym_returning_parameter_token1, + ACTIONS(2278), 1, + anon_sym_DOT, + STATE(1040), 1, + sym_returning_parameter, + STATE(1590), 1, + sym__method_declaration_raising, + STATE(2798), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - STATE(1604), 3, - sym__data_object_typing_normal, - sym__data_object_typing_reference, - sym__data_object_typing_itabs, - [31479] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(871), 2, + [24556] = 8, + ACTIONS(1462), 1, + aux_sym__create_addition_token1, + ACTIONS(2280), 1, + aux_sym_class_declaration_token7, + ACTIONS(2282), 1, + aux_sym_class_declaration_token8, + ACTIONS(2284), 1, + aux_sym_class_declaration_token11, + ACTIONS(2286), 1, + aux_sym_class_declaration_token12, + ACTIONS(2288), 1, + anon_sym_DOT, + STATE(1226), 1, + sym__create_addition, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2362), 6, - aux_sym_class_declaration_token13, + [24582] = 8, + ACTIONS(1890), 1, + aux_sym_class_declaration_token3, + ACTIONS(1894), 1, aux_sym__create_addition_token2, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_variable_declaration_token1, - [31498] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(872), 2, + ACTIONS(2290), 1, + aux_sym_class_declaration_token13, + STATE(1016), 1, + sym_public_section, + STATE(1695), 1, + sym_protected_section, + STATE(2144), 1, + sym_private_section, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [24608] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2364), 6, + ACTIONS(2292), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [31517] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(873), 2, + [24622] = 8, + ACTIONS(1890), 1, + aux_sym_class_declaration_token3, + ACTIONS(1894), 1, + aux_sym__create_addition_token2, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(2294), 1, + aux_sym_class_declaration_token13, + STATE(1156), 1, + sym_public_section, + STATE(1783), 1, + sym_protected_section, + STATE(2215), 1, + sym_private_section, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [24648] = 8, + ACTIONS(1316), 1, + aux_sym__method_declaration_raising_token1, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(1320), 1, + aux_sym_returning_parameter_token1, + ACTIONS(2296), 1, + anon_sym_DOT, + STATE(1048), 1, + sym_returning_parameter, + STATE(1545), 1, + sym__method_declaration_raising, + STATE(2840), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [24674] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2366), 6, + ACTIONS(2298), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [31536] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(874), 2, + [24688] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2368), 6, + ACTIONS(2300), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [31555] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(875), 2, + [24702] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2370), 6, + ACTIONS(2302), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [31574] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(876), 2, + [24716] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2372), 6, + ACTIONS(2304), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [31593] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(877), 2, + [24730] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2374), 6, + ACTIONS(2306), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [31612] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(878), 2, + [24744] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2376), 6, + ACTIONS(2308), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [31631] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(879), 2, + [24758] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2378), 6, + ACTIONS(2310), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [31650] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(880), 2, + [24772] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2380), 6, + ACTIONS(2312), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [31669] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(881), 2, + [24786] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2382), 6, + ACTIONS(2314), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [31688] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(882), 2, + [24800] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2384), 6, + ACTIONS(2316), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [31707] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(883), 2, + [24814] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2386), 6, + ACTIONS(2318), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [31726] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(884), 2, + [24828] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2388), 6, + ACTIONS(2320), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [31745] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(885), 2, + [24842] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2390), 6, + ACTIONS(2322), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [31764] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(886), 2, + [24856] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2392), 6, + ACTIONS(2324), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [31783] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(887), 2, + [24870] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2394), 6, + ACTIONS(2326), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [31802] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(888), 2, + [24884] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2396), 6, + ACTIONS(2328), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [31821] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(889), 2, + [24898] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2398), 6, + ACTIONS(2330), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [31840] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(890), 2, + [24912] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2400), 6, + ACTIONS(2332), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [31859] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(891), 2, + [24926] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2402), 6, + ACTIONS(2334), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [31878] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(892), 2, + [24940] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2404), 6, + ACTIONS(2336), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [31897] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(893), 2, + [24954] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2406), 6, + ACTIONS(2338), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [31916] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(894), 2, + [24968] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2408), 6, + ACTIONS(2340), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [31935] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(895), 2, + [24982] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2410), 6, + ACTIONS(2342), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [31954] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(896), 2, + [24996] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2412), 6, + ACTIONS(2344), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [31973] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(897), 2, + [25010] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2414), 6, + ACTIONS(2346), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [31992] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(898), 2, + [25024] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2416), 6, + ACTIONS(2348), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [32011] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(899), 2, + [25038] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2418), 6, + ACTIONS(2350), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [32030] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(900), 2, + [25052] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2420), 6, + ACTIONS(2352), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [32049] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(901), 2, + [25066] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2422), 6, + ACTIONS(2354), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [32068] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(902), 2, + [25080] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2424), 6, + ACTIONS(2356), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [32087] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(903), 2, + [25094] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2426), 6, + ACTIONS(2358), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [32106] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(904), 2, + [25108] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2428), 6, + ACTIONS(2360), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [32125] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(905), 2, + [25122] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2430), 6, + ACTIONS(2362), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [32144] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(906), 2, + [25136] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2432), 6, + ACTIONS(2364), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [32163] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(907), 2, + [25150] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2434), 6, + ACTIONS(2366), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [32182] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(908), 2, + [25164] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2436), 6, + ACTIONS(2368), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [32201] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(909), 2, + [25178] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2438), 6, + ACTIONS(2370), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [32220] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(910), 2, + [25192] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2440), 6, + ACTIONS(2372), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [32239] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(911), 2, + [25206] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2442), 6, + ACTIONS(2374), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [32258] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(912), 2, + [25220] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2444), 6, + ACTIONS(2376), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [32277] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(913), 2, + [25234] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2446), 6, + ACTIONS(2378), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [32296] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(914), 2, + [25248] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2448), 6, + ACTIONS(2380), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [32315] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(915), 2, + [25262] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2450), 6, + ACTIONS(2382), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [32334] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(916), 2, + [25276] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2452), 6, + ACTIONS(2384), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [32353] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(917), 2, + [25290] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2454), 6, + ACTIONS(2386), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [32372] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(918), 2, + [25304] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2456), 6, + ACTIONS(2388), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [32391] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(919), 2, + [25318] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2458), 6, + ACTIONS(2390), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [32410] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(920), 2, + [25332] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2460), 6, + ACTIONS(2392), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [32429] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(921), 2, + [25346] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2462), 6, + ACTIONS(2394), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [32448] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(922), 2, + [25360] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2464), 6, + ACTIONS(2396), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [32467] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(923), 2, + [25374] = 8, + ACTIONS(1890), 1, + aux_sym_class_declaration_token3, + ACTIONS(1894), 1, + aux_sym__create_addition_token2, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(2398), 1, + aux_sym_class_declaration_token13, + STATE(1084), 1, + sym_public_section, + STATE(1554), 1, + sym_protected_section, + STATE(2823), 1, + sym_private_section, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [25400] = 8, + ACTIONS(1316), 1, + aux_sym__method_declaration_raising_token1, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(1320), 1, + aux_sym_returning_parameter_token1, + ACTIONS(2400), 1, + anon_sym_DOT, + STATE(1091), 1, + sym_returning_parameter, + STATE(1574), 1, + sym__method_declaration_raising, + STATE(2920), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [25426] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2466), 6, + ACTIONS(2402), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [32486] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(924), 2, + [25440] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2468), 6, + ACTIONS(2404), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [32505] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(925), 2, + [25454] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2470), 6, + ACTIONS(2406), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [32524] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(926), 2, + [25468] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2472), 6, + ACTIONS(2408), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [32543] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(927), 2, + [25482] = 8, + ACTIONS(1316), 1, + aux_sym__method_declaration_raising_token1, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(1320), 1, + aux_sym_returning_parameter_token1, + ACTIONS(2410), 1, + anon_sym_DOT, + STATE(1017), 1, + sym_returning_parameter, + STATE(1591), 1, + sym__method_declaration_raising, + STATE(2944), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2474), 6, + [25508] = 2, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(2412), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [32562] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(928), 2, + [25522] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2476), 6, + ACTIONS(2414), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [32581] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(929), 2, + [25536] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2478), 6, + ACTIONS(2416), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [32600] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(930), 2, + [25550] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2480), 6, + ACTIONS(2418), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [32619] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(931), 2, + [25564] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2482), 6, + ACTIONS(2420), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [32638] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(932), 2, + [25578] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2484), 6, + ACTIONS(2422), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [32657] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(933), 2, + [25592] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2486), 6, + ACTIONS(2424), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [32676] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(934), 2, + [25606] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2488), 6, + ACTIONS(2426), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [32695] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(935), 2, + [25620] = 4, + ACTIONS(2428), 1, + anon_sym_DASH2, + STATE(881), 1, + aux_sym_structured_data_object_repeat1, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(387), 5, + anon_sym_DOT, + aux_sym_method_parameters_token1, + anon_sym_COMMA, + aux_sym__data_object_typing_normal_token5, + anon_sym_EQ, + [25638] = 8, + ACTIONS(1890), 1, + aux_sym_class_declaration_token3, + ACTIONS(1894), 1, + aux_sym__create_addition_token2, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(2431), 1, + aux_sym_class_declaration_token13, + STATE(1154), 1, + sym_public_section, + STATE(1786), 1, + sym_protected_section, + STATE(2221), 1, + sym_private_section, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2490), 6, + [25664] = 2, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(2433), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [32714] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2492), 1, - sym_name, - ACTIONS(2495), 1, - anon_sym_DOT, - ACTIONS(2497), 3, - aux_sym_loop_statement_token3, - aux_sym_line_spec_token3, - aux_sym__read_table_result_token1, - STATE(936), 3, + [25678] = 8, + ACTIONS(1890), 1, + aux_sym_class_declaration_token3, + ACTIONS(1894), 1, + aux_sym__create_addition_token2, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(2435), 1, + aux_sym_class_declaration_token13, + STATE(1075), 1, + sym_public_section, + STATE(1791), 1, + sym_protected_section, + STATE(2224), 1, + sym_private_section, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - aux_sym_line_spec_repeat1, - [32737] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(937), 2, + [25704] = 8, + ACTIONS(1462), 1, + aux_sym__create_addition_token1, + ACTIONS(1722), 1, + aux_sym_class_declaration_token7, + ACTIONS(1724), 1, + aux_sym_class_declaration_token8, + ACTIONS(1726), 1, + aux_sym_class_declaration_token11, + ACTIONS(1728), 1, + aux_sym_class_declaration_token12, + ACTIONS(1730), 1, + anon_sym_DOT, + STATE(1414), 1, + sym__create_addition, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2499), 6, + [25730] = 8, + ACTIONS(1890), 1, + aux_sym_class_declaration_token3, + ACTIONS(1894), 1, + aux_sym__create_addition_token2, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(2437), 1, aux_sym_class_declaration_token13, + STATE(1071), 1, + sym_public_section, + STATE(1803), 1, + sym_protected_section, + STATE(2236), 1, + sym_private_section, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [25756] = 8, + ACTIONS(1890), 1, + aux_sym_class_declaration_token3, + ACTIONS(1894), 1, aux_sym__create_addition_token2, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_variable_declaration_token1, - [32756] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(938), 2, + ACTIONS(2439), 1, + aux_sym_class_declaration_token13, + STATE(1029), 1, + sym_public_section, + STATE(1652), 1, + sym_protected_section, + STATE(2711), 1, + sym_private_section, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2501), 6, + [25782] = 8, + ACTIONS(1890), 1, + aux_sym_class_declaration_token3, + ACTIONS(1894), 1, + aux_sym__create_addition_token2, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(2441), 1, aux_sym_class_declaration_token13, + STATE(1110), 1, + sym_public_section, + STATE(1750), 1, + sym_protected_section, + STATE(2984), 1, + sym_private_section, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [25808] = 8, + ACTIONS(1890), 1, + aux_sym_class_declaration_token3, + ACTIONS(1894), 1, aux_sym__create_addition_token2, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_variable_declaration_token1, - [32775] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(939), 2, + ACTIONS(2443), 1, + aux_sym_class_declaration_token13, + STATE(1018), 1, + sym_public_section, + STATE(1651), 1, + sym_protected_section, + STATE(2714), 1, + sym_private_section, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2503), 6, + [25834] = 8, + ACTIONS(1890), 1, + aux_sym_class_declaration_token3, + ACTIONS(1894), 1, + aux_sym__create_addition_token2, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(2445), 1, aux_sym_class_declaration_token13, + STATE(1077), 1, + sym_public_section, + STATE(1562), 1, + sym_protected_section, + STATE(2812), 1, + sym_private_section, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [25860] = 8, + ACTIONS(1890), 1, + aux_sym_class_declaration_token3, + ACTIONS(1894), 1, aux_sym__create_addition_token2, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_variable_declaration_token1, - [32794] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(940), 2, + ACTIONS(2447), 1, + aux_sym_class_declaration_token13, + STATE(1134), 1, + sym_public_section, + STATE(1647), 1, + sym_protected_section, + STATE(2719), 1, + sym_private_section, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2505), 6, + [25886] = 8, + ACTIONS(1890), 1, + aux_sym_class_declaration_token3, + ACTIONS(1894), 1, + aux_sym__create_addition_token2, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(2449), 1, aux_sym_class_declaration_token13, + STATE(1147), 1, + sym_public_section, + STATE(1641), 1, + sym_protected_section, + STATE(2725), 1, + sym_private_section, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [25912] = 8, + ACTIONS(1890), 1, + aux_sym_class_declaration_token3, + ACTIONS(1894), 1, aux_sym__create_addition_token2, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_variable_declaration_token1, - [32813] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(941), 2, + ACTIONS(2451), 1, + aux_sym_class_declaration_token13, + STATE(1072), 1, + sym_public_section, + STATE(1566), 1, + sym_protected_section, + STATE(2811), 1, + sym_private_section, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2507), 6, - aux_sym_class_declaration_token13, + [25938] = 8, + ACTIONS(1890), 1, + aux_sym_class_declaration_token3, + ACTIONS(1894), 1, aux_sym__create_addition_token2, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_variable_declaration_token1, - [32832] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(942), 2, + ACTIONS(2453), 1, + aux_sym_class_declaration_token13, + STATE(1175), 1, + sym_public_section, + STATE(1725), 1, + sym_protected_section, + STATE(2629), 1, + sym_private_section, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2509), 6, - aux_sym_class_declaration_token13, + [25964] = 8, + ACTIONS(1890), 1, + aux_sym_class_declaration_token3, + ACTIONS(1894), 1, aux_sym__create_addition_token2, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_variable_declaration_token1, - [32851] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(943), 2, + ACTIONS(2455), 1, + aux_sym_class_declaration_token13, + STATE(1063), 1, + sym_public_section, + STATE(1834), 1, + sym_protected_section, + STATE(2240), 1, + sym_private_section, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2511), 6, - aux_sym_class_declaration_token13, + [25990] = 8, + ACTIONS(1890), 1, + aux_sym_class_declaration_token3, + ACTIONS(1894), 1, aux_sym__create_addition_token2, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_variable_declaration_token1, - [32870] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(944), 2, + ACTIONS(2457), 1, + aux_sym_class_declaration_token13, + STATE(1061), 1, + sym_public_section, + STATE(1866), 1, + sym_protected_section, + STATE(2264), 1, + sym_private_section, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2513), 6, - aux_sym_class_declaration_token13, + [26016] = 8, + ACTIONS(1890), 1, + aux_sym_class_declaration_token3, + ACTIONS(1894), 1, aux_sym__create_addition_token2, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_variable_declaration_token1, - [32889] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(945), 2, + ACTIONS(2459), 1, + aux_sym_class_declaration_token13, + STATE(1066), 1, + sym_public_section, + STATE(1573), 1, + sym_protected_section, + STATE(2806), 1, + sym_private_section, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2515), 6, - aux_sym_class_declaration_token13, + [26042] = 8, + ACTIONS(1890), 1, + aux_sym_class_declaration_token3, + ACTIONS(1894), 1, aux_sym__create_addition_token2, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_variable_declaration_token1, - [32908] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(946), 2, + ACTIONS(2461), 1, + aux_sym_class_declaration_token13, + STATE(1031), 1, + sym_public_section, + STATE(1585), 1, + sym_protected_section, + STATE(2799), 1, + sym_private_section, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2517), 6, - aux_sym_class_declaration_token13, + [26068] = 8, + ACTIONS(1890), 1, + aux_sym_class_declaration_token3, + ACTIONS(1894), 1, aux_sym__create_addition_token2, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_variable_declaration_token1, - [32927] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(947), 2, + ACTIONS(2463), 1, + aux_sym_class_declaration_token13, + STATE(1035), 1, + sym_public_section, + STATE(1784), 1, + sym_protected_section, + STATE(2421), 1, + sym_private_section, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2519), 6, - aux_sym_class_declaration_token13, + [26094] = 8, + ACTIONS(1890), 1, + aux_sym_class_declaration_token3, + ACTIONS(1894), 1, aux_sym__create_addition_token2, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_variable_declaration_token1, - [32946] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(948), 2, + ACTIONS(2465), 1, + aux_sym_class_declaration_token13, + STATE(1037), 1, + sym_public_section, + STATE(1788), 1, + sym_protected_section, + STATE(2418), 1, + sym_private_section, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2521), 6, - aux_sym_class_declaration_token13, - aux_sym__create_addition_token2, - aux_sym__create_addition_token3, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_variable_declaration_token1, - [32965] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(949), 2, + [26120] = 8, + ACTIONS(1316), 1, + aux_sym__method_declaration_raising_token1, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(1320), 1, + aux_sym_returning_parameter_token1, + ACTIONS(2467), 1, + anon_sym_DOT, + STATE(1127), 1, + sym_returning_parameter, + STATE(1864), 1, + sym__method_declaration_raising, + STATE(3033), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2523), 6, - aux_sym_class_declaration_token13, + [26146] = 8, + ACTIONS(1890), 1, + aux_sym_class_declaration_token3, + ACTIONS(1894), 1, aux_sym__create_addition_token2, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_variable_declaration_token1, - [32984] = 9, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1486), 1, - aux_sym__create_addition_token1, - ACTIONS(1698), 1, - aux_sym_class_declaration_token8, - ACTIONS(1700), 1, - aux_sym_class_declaration_token11, - ACTIONS(1702), 1, - aux_sym_class_declaration_token12, - ACTIONS(1704), 1, - anon_sym_DOT, - STATE(1387), 1, - sym__create_addition, - STATE(950), 2, + ACTIONS(2469), 1, + aux_sym_class_declaration_token13, + STATE(1065), 1, + sym_public_section, + STATE(1887), 1, + sym_protected_section, + STATE(2295), 1, + sym_private_section, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [33013] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2358), 1, - aux_sym_generic_typing_token1, - ACTIONS(2360), 1, - aux_sym_generic_typing_token2, - STATE(2441), 1, - sym__data_object_typing, - STATE(951), 2, + [26172] = 8, + ACTIONS(1316), 1, + aux_sym__method_declaration_raising_token1, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(1320), 1, + aux_sym_returning_parameter_token1, + ACTIONS(2471), 1, + anon_sym_DOT, + STATE(1151), 1, + sym_returning_parameter, + STATE(1902), 1, + sym__method_declaration_raising, + STATE(2282), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - STATE(1604), 3, - sym__data_object_typing_normal, - sym__data_object_typing_reference, - sym__data_object_typing_itabs, - [33038] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(952), 2, + [26198] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2525), 6, + ACTIONS(2473), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [33057] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(953), 2, + [26212] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2527), 6, + ACTIONS(2475), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [33076] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(954), 2, + [26226] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2529), 6, + ACTIONS(2477), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [33095] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(955), 2, + [26240] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2531), 6, + ACTIONS(2479), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [33114] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(956), 2, + [26254] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2533), 6, + ACTIONS(2481), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [33133] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(957), 2, + [26268] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2535), 6, + ACTIONS(2483), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [33152] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(958), 2, + [26282] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2537), 6, + ACTIONS(2485), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [33171] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(959), 2, + [26296] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2539), 6, + ACTIONS(2487), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [33190] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(960), 2, + [26310] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2541), 6, + ACTIONS(2489), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [33209] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(961), 2, + [26324] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2543), 6, + ACTIONS(2491), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [33228] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(962), 2, + [26338] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2545), 6, + ACTIONS(2493), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [33247] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(963), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(2547), 6, - aux_sym_class_declaration_token13, + [26352] = 8, + ACTIONS(1890), 1, + aux_sym_class_declaration_token3, + ACTIONS(1894), 1, aux_sym__create_addition_token2, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_variable_declaration_token1, - [33266] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(964), 2, + ACTIONS(2495), 1, + aux_sym_class_declaration_token13, + STATE(1038), 1, + sym_public_section, + STATE(1805), 1, + sym_protected_section, + STATE(2395), 1, + sym_private_section, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2549), 6, - aux_sym_class_declaration_token13, - aux_sym__create_addition_token2, - aux_sym__create_addition_token3, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_variable_declaration_token1, - [33285] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(965), 2, + [26378] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2551), 6, + ACTIONS(2497), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [33304] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(966), 2, + [26392] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2553), 6, + ACTIONS(2499), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [33323] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(967), 2, + [26406] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2555), 6, + ACTIONS(2501), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [33342] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(968), 2, + [26420] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2557), 6, + ACTIONS(2503), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [33361] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(969), 2, + [26434] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2559), 6, + ACTIONS(2505), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [33380] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(970), 2, + [26448] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2561), 6, + ACTIONS(2507), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [33399] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(971), 2, + [26462] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2563), 6, + ACTIONS(2509), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [33418] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(972), 2, + [26476] = 8, + ACTIONS(1316), 1, + aux_sym__method_declaration_raising_token1, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(1320), 1, + aux_sym_returning_parameter_token1, + ACTIONS(2511), 1, + anon_sym_DOT, + STATE(1133), 1, + sym_returning_parameter, + STATE(1882), 1, + sym__method_declaration_raising, + STATE(3037), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2565), 6, - aux_sym_class_declaration_token13, - aux_sym__create_addition_token2, - aux_sym__create_addition_token3, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_variable_declaration_token1, - [33437] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(973), 2, + [26502] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2567), 6, + ACTIONS(2513), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [33456] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(974), 2, + [26516] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2569), 6, + ACTIONS(2515), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [33475] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(975), 2, + [26530] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2571), 6, + ACTIONS(2517), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [33494] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2358), 1, - aux_sym_generic_typing_token1, - ACTIONS(2360), 1, - aux_sym_generic_typing_token2, - STATE(2763), 1, - sym__data_object_typing, - STATE(976), 2, - sym_eol_comment, - sym_bol_comment, - STATE(1604), 3, - sym__data_object_typing_normal, - sym__data_object_typing_reference, - sym__data_object_typing_itabs, - [33519] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(977), 2, + [26544] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2573), 6, + ACTIONS(2519), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [33538] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(978), 2, + [26558] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2575), 6, + ACTIONS(2521), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [33557] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(979), 2, + [26572] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2577), 6, + ACTIONS(2523), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [33576] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(980), 2, + [26586] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2579), 6, + ACTIONS(2525), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [33595] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(981), 2, + [26600] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2581), 6, + ACTIONS(2527), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [33614] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(982), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(2583), 6, - aux_sym_class_declaration_token13, + [26614] = 8, + ACTIONS(1890), 1, + aux_sym_class_declaration_token3, + ACTIONS(1894), 1, aux_sym__create_addition_token2, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_variable_declaration_token1, - [33633] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(983), 2, + ACTIONS(2529), 1, + aux_sym_class_declaration_token13, + STATE(1089), 1, + sym_public_section, + STATE(1636), 1, + sym_protected_section, + STATE(2739), 1, + sym_private_section, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2585), 6, - aux_sym_class_declaration_token13, + [26640] = 8, + ACTIONS(1890), 1, + aux_sym_class_declaration_token3, + ACTIONS(1894), 1, aux_sym__create_addition_token2, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_variable_declaration_token1, - [33652] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2358), 1, - aux_sym_generic_typing_token1, - ACTIONS(2360), 1, - aux_sym_generic_typing_token2, - STATE(2629), 1, - sym__data_object_typing, - STATE(984), 2, - sym_eol_comment, - sym_bol_comment, - STATE(1604), 3, - sym__data_object_typing_normal, - sym__data_object_typing_reference, - sym__data_object_typing_itabs, - [33677] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(985), 2, + ACTIONS(2531), 1, + aux_sym_class_declaration_token13, + STATE(1062), 1, + sym_public_section, + STATE(1592), 1, + sym_protected_section, + STATE(2794), 1, + sym_private_section, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2587), 6, - aux_sym_class_declaration_token13, + [26666] = 8, + ACTIONS(1890), 1, + aux_sym_class_declaration_token3, + ACTIONS(1894), 1, aux_sym__create_addition_token2, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_variable_declaration_token1, - [33696] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(986), 2, + ACTIONS(2533), 1, + aux_sym_class_declaration_token13, + STATE(1059), 1, + sym_public_section, + STATE(1595), 1, + sym_protected_section, + STATE(2789), 1, + sym_private_section, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2589), 6, - aux_sym_class_declaration_token13, - aux_sym__create_addition_token2, - aux_sym__create_addition_token3, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_variable_declaration_token1, - [33715] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(987), 2, + [26692] = 8, + ACTIONS(1316), 1, + aux_sym__method_declaration_raising_token1, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(1320), 1, + aux_sym_returning_parameter_token1, + ACTIONS(2535), 1, + anon_sym_DOT, + STATE(1094), 1, + sym_returning_parameter, + STATE(1872), 1, + sym__method_declaration_raising, + STATE(2267), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2591), 6, - aux_sym_class_declaration_token13, - aux_sym__create_addition_token2, - aux_sym__create_addition_token3, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_variable_declaration_token1, - [33734] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(988), 2, + [26718] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2593), 6, + ACTIONS(2537), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [33753] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(989), 2, + [26732] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2595), 6, + ACTIONS(2539), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [33772] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(990), 2, + [26746] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2597), 6, + ACTIONS(2541), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [33791] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(991), 2, + [26760] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2599), 6, + ACTIONS(2543), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [33810] = 9, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1486), 1, - aux_sym__create_addition_token1, - ACTIONS(1724), 1, - aux_sym_class_declaration_token8, - ACTIONS(1726), 1, - aux_sym_class_declaration_token11, - ACTIONS(1728), 1, - aux_sym_class_declaration_token12, - ACTIONS(1730), 1, - anon_sym_DOT, - STATE(1245), 1, - sym__create_addition, - STATE(992), 2, - sym_eol_comment, - sym_bol_comment, - [33839] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(993), 2, + [26774] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2601), 6, + ACTIONS(2545), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [33858] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(994), 2, + [26788] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2603), 6, + ACTIONS(2547), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [33877] = 9, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1486), 1, - aux_sym__create_addition_token1, - ACTIONS(1930), 1, - aux_sym_class_declaration_token8, - ACTIONS(1932), 1, - aux_sym_class_declaration_token11, - ACTIONS(1934), 1, - aux_sym_class_declaration_token12, - ACTIONS(1936), 1, - anon_sym_DOT, - STATE(1249), 1, - sym__create_addition, - STATE(995), 2, - sym_eol_comment, - sym_bol_comment, - [33906] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(636), 2, - aux_sym_method_parameters_token1, - sym_name, - STATE(996), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(638), 4, - anon_sym_DOT, - aux_sym__data_object_typing_normal_token5, - anon_sym_COMMA, - anon_sym_EQ, - [33927] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(997), 2, + [26802] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2605), 6, + ACTIONS(2549), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [33946] = 9, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1486), 1, - aux_sym__create_addition_token1, - ACTIONS(2607), 1, - aux_sym_class_declaration_token8, - ACTIONS(2609), 1, - aux_sym_class_declaration_token11, - ACTIONS(2611), 1, - aux_sym_class_declaration_token12, - ACTIONS(2613), 1, - anon_sym_DOT, - STATE(1250), 1, - sym__create_addition, - STATE(998), 2, - sym_eol_comment, - sym_bol_comment, - [33975] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(999), 2, + [26816] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2615), 6, + ACTIONS(2551), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [33994] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1000), 2, + [26830] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2617), 6, + ACTIONS(2553), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [34013] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1001), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(2619), 6, - aux_sym_class_declaration_token13, + [26844] = 8, + ACTIONS(1890), 1, + aux_sym_class_declaration_token3, + ACTIONS(1894), 1, aux_sym__create_addition_token2, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_variable_declaration_token1, - [34032] = 9, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1486), 1, - aux_sym__create_addition_token1, - ACTIONS(1912), 1, - aux_sym_class_declaration_token8, - ACTIONS(1914), 1, - aux_sym_class_declaration_token11, - ACTIONS(1916), 1, - aux_sym_class_declaration_token12, - ACTIONS(1918), 1, - anon_sym_DOT, - STATE(1325), 1, - sym__create_addition, - STATE(1002), 2, - sym_eol_comment, - sym_bol_comment, - [34061] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2623), 1, - anon_sym_DOT, - STATE(1003), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(2621), 5, - aux_sym__method_declaration_importing_token1, - aux_sym__method_declaration_exporting_token1, - aux_sym__method_declaration_changing_token1, - aux_sym__method_declaration_exceptions_token1, - sym_name, - [34082] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2630), 1, - aux_sym__method_declaration_exporting_token1, - ACTIONS(2625), 2, - anon_sym_DOT, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(2627), 2, - aux_sym__method_declaration_importing_token1, - aux_sym__method_declaration_changing_token1, - STATE(1004), 3, - aux_sym__function_parameter_list, - sym_eol_comment, - sym_bol_comment, - [34105] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2636), 1, - anon_sym_RPAREN, - ACTIONS(2638), 1, - aux_sym__explicit_parameter_list_token1, - ACTIONS(2633), 3, - aux_sym__method_declaration_importing_token1, - aux_sym__method_declaration_exporting_token1, - aux_sym__method_declaration_changing_token1, - STATE(1005), 3, + ACTIONS(2555), 1, + aux_sym_class_declaration_token13, + STATE(1158), 1, + sym_public_section, + STATE(1859), 1, + sym_protected_section, + STATE(3072), 1, + sym_private_section, + ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - aux_sym__explicit_parameter_list_repeat1, - [34128] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1006), 2, + sym_bol_comment, + [26870] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2641), 6, + ACTIONS(2557), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [34147] = 9, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1486), 1, - aux_sym__create_addition_token1, - ACTIONS(1894), 1, - aux_sym_class_declaration_token8, - ACTIONS(1896), 1, - aux_sym_class_declaration_token11, - ACTIONS(1898), 1, - aux_sym_class_declaration_token12, - ACTIONS(1900), 1, - anon_sym_DOT, - STATE(1258), 1, - sym__create_addition, - STATE(1007), 2, - sym_eol_comment, - sym_bol_comment, - [34176] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1008), 2, + [26884] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2643), 6, + ACTIONS(2559), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [34195] = 9, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1486), 1, - aux_sym__create_addition_token1, - ACTIONS(2645), 1, - aux_sym_class_declaration_token8, - ACTIONS(2647), 1, - aux_sym_class_declaration_token11, - ACTIONS(2649), 1, - aux_sym_class_declaration_token12, - ACTIONS(2651), 1, - anon_sym_DOT, - STATE(1259), 1, - sym__create_addition, - STATE(1009), 2, - sym_eol_comment, - sym_bol_comment, - [34224] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1010), 2, + [26898] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2653), 6, + ACTIONS(2561), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [34243] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1011), 2, + [26912] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2655), 6, + ACTIONS(2563), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [34262] = 9, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1486), 1, - aux_sym__create_addition_token1, - ACTIONS(2657), 1, - aux_sym_class_declaration_token8, - ACTIONS(2659), 1, - aux_sym_class_declaration_token11, - ACTIONS(2661), 1, - aux_sym_class_declaration_token12, - ACTIONS(2663), 1, - anon_sym_DOT, - STATE(1230), 1, - sym__create_addition, - STATE(1012), 2, + [26926] = 8, + ACTIONS(1890), 1, + aux_sym_class_declaration_token3, + ACTIONS(1894), 1, + aux_sym__create_addition_token2, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(2565), 1, + aux_sym_class_declaration_token13, + STATE(1181), 1, + sym_public_section, + STATE(1635), 1, + sym_protected_section, + STATE(2740), 1, + sym_private_section, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [34291] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1013), 2, + [26952] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2665), 6, + ACTIONS(2567), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [34310] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1014), 2, + [26966] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2667), 6, + ACTIONS(2569), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [34329] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1015), 2, + [26980] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2669), 6, + ACTIONS(2571), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [34348] = 9, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1486), 1, - aux_sym__create_addition_token1, - ACTIONS(1860), 1, - aux_sym_class_declaration_token8, - ACTIONS(1862), 1, - aux_sym_class_declaration_token11, - ACTIONS(1864), 1, - aux_sym_class_declaration_token12, - ACTIONS(1866), 1, - anon_sym_DOT, - STATE(1266), 1, - sym__create_addition, - STATE(1016), 2, + [26994] = 8, + ACTIONS(1890), 1, + aux_sym_class_declaration_token3, + ACTIONS(1894), 1, + aux_sym__create_addition_token2, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(2573), 1, + aux_sym_class_declaration_token13, + STATE(1168), 1, + sym_public_section, + STATE(1527), 1, + sym_protected_section, + STATE(3120), 1, + sym_private_section, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [34377] = 9, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1486), 1, - aux_sym__create_addition_token1, - ACTIONS(2671), 1, - aux_sym_class_declaration_token8, - ACTIONS(2673), 1, - aux_sym_class_declaration_token11, - ACTIONS(2675), 1, - aux_sym_class_declaration_token12, - ACTIONS(2677), 1, + [27020] = 8, + ACTIONS(1316), 1, + aux_sym__method_declaration_raising_token1, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(1320), 1, + aux_sym_returning_parameter_token1, + ACTIONS(2575), 1, anon_sym_DOT, - STATE(1286), 1, - sym__create_addition, - STATE(1017), 2, + STATE(1144), 1, + sym_returning_parameter, + STATE(1908), 1, + sym__method_declaration_raising, + STATE(3052), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [34406] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1018), 2, + [27046] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2679), 6, + ACTIONS(2577), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [34425] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1019), 2, + [27060] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2681), 6, + ACTIONS(2579), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [34444] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2683), 1, - sym_name, - ACTIONS(2685), 1, - anon_sym_DOT, - ACTIONS(2689), 1, - aux_sym_line_spec_token3, - STATE(936), 1, - aux_sym_line_spec_repeat1, - ACTIONS(2687), 2, - aux_sym_loop_statement_token3, - aux_sym__read_table_result_token1, - STATE(1020), 2, + [27074] = 8, + ACTIONS(1890), 1, + aux_sym_class_declaration_token3, + ACTIONS(1894), 1, + aux_sym__create_addition_token2, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(2581), 1, + aux_sym_class_declaration_token13, + STATE(1174), 1, + sym_public_section, + STATE(1564), 1, + sym_protected_section, + STATE(3105), 1, + sym_private_section, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [34471] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1021), 2, + [27100] = 8, + ACTIONS(1890), 1, + aux_sym_class_declaration_token3, + ACTIONS(1894), 1, + aux_sym__create_addition_token2, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(2583), 1, + aux_sym_class_declaration_token13, + STATE(1178), 1, + sym_public_section, + STATE(1602), 1, + sym_protected_section, + STATE(3102), 1, + sym_private_section, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2691), 6, + [27126] = 2, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(2585), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [34490] = 9, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1486), 1, - aux_sym__create_addition_token1, - ACTIONS(2693), 1, - aux_sym_class_declaration_token8, - ACTIONS(2695), 1, - aux_sym_class_declaration_token11, - ACTIONS(2697), 1, - aux_sym_class_declaration_token12, - ACTIONS(2699), 1, - anon_sym_DOT, - STATE(1308), 1, - sym__create_addition, - STATE(1022), 2, + [27140] = 8, + ACTIONS(1890), 1, + aux_sym_class_declaration_token3, + ACTIONS(1894), 1, + aux_sym__create_addition_token2, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(2587), 1, + aux_sym_class_declaration_token13, + STATE(1169), 1, + sym_public_section, + STATE(1629), 1, + sym_protected_section, + STATE(2748), 1, + sym_private_section, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [34519] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1023), 2, + [27166] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2701), 6, + ACTIONS(2589), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [34538] = 9, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1486), 1, - aux_sym__create_addition_token1, - ACTIONS(1992), 1, - aux_sym_class_declaration_token8, - ACTIONS(1994), 1, - aux_sym_class_declaration_token11, - ACTIONS(1996), 1, - aux_sym_class_declaration_token12, - ACTIONS(1998), 1, - anon_sym_DOT, - STATE(1257), 1, - sym__create_addition, - STATE(1024), 2, + [27180] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [34567] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1025), 2, + ACTIONS(2591), 7, + aux_sym_class_declaration_token13, + aux_sym__create_addition_token2, + aux_sym__create_addition_token3, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, + aux_sym_variable_declaration_token1, + [27194] = 8, + ACTIONS(1890), 1, + aux_sym_class_declaration_token3, + ACTIONS(1894), 1, + aux_sym__create_addition_token2, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(2593), 1, + aux_sym_class_declaration_token13, + STATE(1044), 1, + sym_public_section, + STATE(1598), 1, + sym_protected_section, + STATE(2783), 1, + sym_private_section, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [27220] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2703), 6, + ACTIONS(2595), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [34586] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1026), 2, + [27234] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2705), 6, + ACTIONS(2597), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [34605] = 9, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1486), 1, - aux_sym__create_addition_token1, - ACTIONS(2112), 1, - aux_sym_class_declaration_token8, - ACTIONS(2114), 1, - aux_sym_class_declaration_token11, - ACTIONS(2116), 1, - aux_sym_class_declaration_token12, - ACTIONS(2118), 1, - anon_sym_DOT, - STATE(1251), 1, - sym__create_addition, - STATE(1027), 2, + [27248] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [34634] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2709), 1, - anon_sym_DOT, - STATE(1028), 2, + ACTIONS(2599), 7, + aux_sym_class_declaration_token13, + aux_sym__create_addition_token2, + aux_sym__create_addition_token3, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, + aux_sym_variable_declaration_token1, + [27262] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2707), 5, - aux_sym__method_declaration_importing_token1, - aux_sym__method_declaration_exporting_token1, - aux_sym__method_declaration_changing_token1, - aux_sym__method_declaration_exceptions_token1, - sym_name, - [34655] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1029), 2, + ACTIONS(2601), 7, + aux_sym_class_declaration_token13, + aux_sym__create_addition_token2, + aux_sym__create_addition_token3, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, + aux_sym_variable_declaration_token1, + [27276] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2711), 6, + ACTIONS(2603), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [34674] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, + [27290] = 8, + ACTIONS(1890), 1, + aux_sym_class_declaration_token3, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2192), 1, + ACTIONS(2605), 1, aux_sym_class_declaration_token13, - STATE(1751), 1, + STATE(1113), 1, + sym_public_section, + STATE(1622), 1, sym_protected_section, - STATE(2903), 1, + STATE(2753), 1, sym_private_section, - STATE(1030), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [34700] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, + [27316] = 8, + ACTIONS(1890), 1, + aux_sym_class_declaration_token3, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2080), 1, + ACTIONS(2607), 1, aux_sym_class_declaration_token13, - STATE(1649), 1, + STATE(1041), 1, + sym_public_section, + STATE(1606), 1, sym_protected_section, - STATE(2802), 1, + STATE(2778), 1, sym_private_section, - STATE(1031), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [34726] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1310), 1, - aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(1340), 1, - anon_sym_DOT, - STATE(1738), 1, - sym__method_declaration_raising, - STATE(2899), 1, - sym__method_declaration_exceptions, - STATE(1032), 2, + [27342] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [34752] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1310), 1, - aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(2713), 1, - anon_sym_DOT, - STATE(1692), 1, - sym__method_declaration_raising, - STATE(2856), 1, - sym__method_declaration_exceptions, - STATE(1033), 2, + ACTIONS(2609), 7, + aux_sym_class_declaration_token13, + aux_sym__create_addition_token2, + aux_sym__create_addition_token3, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, + aux_sym_variable_declaration_token1, + [27356] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [34778] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2715), 1, - aux_sym_generic_typing_token1, - ACTIONS(2717), 1, - aux_sym_generic_typing_token2, - STATE(518), 1, - sym__typing, - STATE(483), 2, - sym_generic_typing, - sym_complete_typing, - STATE(1034), 2, + ACTIONS(2611), 7, + aux_sym_class_declaration_token13, + aux_sym__create_addition_token2, + aux_sym__create_addition_token3, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, + aux_sym_variable_declaration_token1, + [27370] = 8, + ACTIONS(1890), 1, + aux_sym_class_declaration_token3, + ACTIONS(1894), 1, + aux_sym__create_addition_token2, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(2613), 1, + aux_sym_class_declaration_token13, + STATE(1022), 1, + sym_public_section, + STATE(1620), 1, + sym_protected_section, + STATE(2759), 1, + sym_private_section, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [34802] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1310), 1, - aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(2719), 1, - anon_sym_DOT, - STATE(1750), 1, - sym__method_declaration_raising, - STATE(2907), 1, - sym__method_declaration_exceptions, - STATE(1035), 2, + [27396] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [34828] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1310), 1, - aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(2721), 1, - anon_sym_DOT, - STATE(1884), 1, - sym__method_declaration_raising, - STATE(3032), 1, - sym__method_declaration_exceptions, - STATE(1036), 2, + ACTIONS(2615), 7, + aux_sym_class_declaration_token13, + aux_sym__create_addition_token2, + aux_sym__create_addition_token3, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, + aux_sym_variable_declaration_token1, + [27410] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [34854] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, + ACTIONS(2617), 7, + aux_sym_class_declaration_token13, + aux_sym__create_addition_token2, + aux_sym__create_addition_token3, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, + aux_sym_variable_declaration_token1, + [27424] = 8, ACTIONS(1310), 1, + aux_sym__method_declaration_importing_token1, + ACTIONS(1316), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(2723), 1, + ACTIONS(2619), 1, anon_sym_DOT, - STATE(1764), 1, + STATE(1184), 1, + sym__method_declaration_importing, + STATE(1758), 1, sym__method_declaration_raising, - STATE(2206), 1, + STATE(3081), 1, sym__method_declaration_exceptions, - STATE(1037), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [34880] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1310), 1, + [27450] = 8, + ACTIONS(1316), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(2725), 1, + ACTIONS(1320), 1, + aux_sym_returning_parameter_token1, + ACTIONS(2621), 1, anon_sym_DOT, - STATE(1890), 1, + STATE(1051), 1, + sym_returning_parameter, + STATE(1845), 1, sym__method_declaration_raising, - STATE(3035), 1, + STATE(2343), 1, sym__method_declaration_exceptions, - STATE(1038), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [34906] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1310), 1, - aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(2727), 1, - anon_sym_DOT, - STATE(1880), 1, - sym__method_declaration_raising, - STATE(3030), 1, - sym__method_declaration_exceptions, - STATE(1039), 2, + [27476] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [34932] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1310), 1, - aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(2729), 1, - anon_sym_DOT, - STATE(1754), 1, - sym__method_declaration_raising, - STATE(2218), 1, - sym__method_declaration_exceptions, - STATE(1040), 2, + ACTIONS(2623), 7, + aux_sym_class_declaration_token13, + aux_sym__create_addition_token2, + aux_sym__create_addition_token3, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, + aux_sym_variable_declaration_token1, + [27490] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [34958] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2715), 1, - aux_sym_generic_typing_token1, - ACTIONS(2717), 1, - aux_sym_generic_typing_token2, - STATE(2443), 1, - sym__typing, - STATE(483), 2, - sym_generic_typing, - sym_complete_typing, - STATE(1041), 2, + ACTIONS(2625), 7, + aux_sym_class_declaration_token13, + aux_sym__create_addition_token2, + aux_sym__create_addition_token3, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, + aux_sym_variable_declaration_token1, + [27504] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [34982] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, + ACTIONS(2627), 7, + aux_sym_class_declaration_token13, aux_sym__create_addition_token2, - ACTIONS(1844), 1, aux_sym__create_addition_token3, - ACTIONS(2731), 1, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, + aux_sym_variable_declaration_token1, + [27518] = 8, + ACTIONS(1890), 1, + aux_sym_class_declaration_token3, + ACTIONS(1894), 1, + aux_sym__create_addition_token2, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(2629), 1, aux_sym_class_declaration_token13, - STATE(1859), 1, + STATE(1064), 1, + sym_public_section, + STATE(1617), 1, sym_protected_section, - STATE(2331), 1, + STATE(2764), 1, sym_private_section, - STATE(1042), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [35008] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, + [27544] = 2, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(2631), 7, + aux_sym_class_declaration_token13, aux_sym__create_addition_token2, - ACTIONS(1844), 1, aux_sym__create_addition_token3, - ACTIONS(2733), 1, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, + aux_sym_variable_declaration_token1, + [27558] = 2, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(2633), 7, + aux_sym_class_declaration_token13, + aux_sym__create_addition_token2, + aux_sym__create_addition_token3, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, + aux_sym_variable_declaration_token1, + [27572] = 8, + ACTIONS(1890), 1, + aux_sym_class_declaration_token3, + ACTIONS(1894), 1, + aux_sym__create_addition_token2, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(2635), 1, + aux_sym_class_declaration_token13, + STATE(1028), 1, + sym_public_section, + STATE(1615), 1, + sym_protected_section, + STATE(2767), 1, + sym_private_section, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [27598] = 8, + ACTIONS(1890), 1, + aux_sym_class_declaration_token3, + ACTIONS(1894), 1, + aux_sym__create_addition_token2, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(2637), 1, + aux_sym_class_declaration_token13, + STATE(1045), 1, + sym_public_section, + STATE(1825), 1, + sym_protected_section, + STATE(2365), 1, + sym_private_section, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [27624] = 8, + ACTIONS(1890), 1, + aux_sym_class_declaration_token3, + ACTIONS(1894), 1, + aux_sym__create_addition_token2, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(2639), 1, + aux_sym_class_declaration_token13, + STATE(1183), 1, + sym_public_section, + STATE(1712), 1, + sym_protected_section, + STATE(3093), 1, + sym_private_section, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [27650] = 8, + ACTIONS(1890), 1, + aux_sym_class_declaration_token3, + ACTIONS(1894), 1, + aux_sym__create_addition_token2, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(2641), 1, + aux_sym_class_declaration_token13, + STATE(1047), 1, + sym_public_section, + STATE(1838), 1, + sym_protected_section, + STATE(2349), 1, + sym_private_section, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [27676] = 8, + ACTIONS(1890), 1, + aux_sym_class_declaration_token3, + ACTIONS(1894), 1, + aux_sym__create_addition_token2, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(2643), 1, aux_sym_class_declaration_token13, - STATE(1862), 1, + STATE(1167), 1, + sym_public_section, + STATE(1733), 1, sym_protected_section, - STATE(2377), 1, + STATE(3087), 1, sym_private_section, - STATE(1043), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [35034] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, + [27702] = 8, + ACTIONS(1890), 1, + aux_sym_class_declaration_token3, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2142), 1, + ACTIONS(2645), 1, aux_sym_class_declaration_token13, - STATE(1560), 1, + STATE(1033), 1, + sym_public_section, + STATE(1612), 1, sym_protected_section, - STATE(2690), 1, + STATE(2770), 1, sym_private_section, - STATE(1044), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [35060] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1310), 1, - aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(2735), 1, - anon_sym_DOT, - STATE(1748), 1, - sym__method_declaration_raising, - STATE(2223), 1, - sym__method_declaration_exceptions, - STATE(1045), 2, + [27728] = 5, + ACTIONS(1234), 1, + aux_sym__explicit_parameter_list_token1, + ACTIONS(2647), 1, + anon_sym_RPAREN, + STATE(1002), 1, + aux_sym__explicit_parameter_list_repeat1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [35086] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1310), 1, - aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(2737), 1, + ACTIONS(1230), 3, + aux_sym__method_declaration_importing_token1, + aux_sym__method_declaration_exporting_token1, + aux_sym__method_declaration_changing_token1, + [27747] = 7, + ACTIONS(1462), 1, + aux_sym__create_addition_token1, + ACTIONS(1900), 1, + aux_sym_class_declaration_token8, + ACTIONS(1902), 1, + aux_sym_class_declaration_token11, + ACTIONS(1904), 1, + aux_sym_class_declaration_token12, + ACTIONS(1906), 1, anon_sym_DOT, - STATE(1555), 1, - sym__method_declaration_raising, - STATE(2682), 1, - sym__method_declaration_exceptions, - STATE(1046), 2, + STATE(1323), 1, + sym__create_addition, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [35112] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2739), 1, - sym_name, - ACTIONS(2741), 1, - anon_sym_COMMA, - ACTIONS(2743), 1, - aux_sym_chained_structure_declaration_token1, - STATE(1089), 1, - aux_sym_chained_variable_declaration_repeat1, - STATE(1615), 1, - sym_variable, - STATE(1047), 2, + [27770] = 5, + ACTIONS(2649), 1, + aux_sym_generic_typing_token1, + ACTIONS(2651), 1, + aux_sym_generic_typing_token2, + STATE(2616), 1, + sym__data_object_typing, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [35138] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, - aux_sym__create_addition_token2, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(2160), 1, - aux_sym_class_declaration_token13, - STATE(1561), 1, - sym_protected_section, - STATE(2697), 1, - sym_private_section, - STATE(1048), 2, + STATE(2064), 3, + sym__data_object_typing_normal, + sym__data_object_typing_reference, + sym__data_object_typing_itabs, + [27789] = 7, + ACTIONS(1462), 1, + aux_sym__create_addition_token1, + ACTIONS(1926), 1, + aux_sym_class_declaration_token8, + ACTIONS(1928), 1, + aux_sym_class_declaration_token11, + ACTIONS(1930), 1, + aux_sym_class_declaration_token12, + ACTIONS(1932), 1, + anon_sym_DOT, + STATE(1358), 1, + sym__create_addition, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [35164] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1310), 1, - aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(2745), 1, + [27812] = 7, + ACTIONS(1462), 1, + aux_sym__create_addition_token1, + ACTIONS(1940), 1, + aux_sym_class_declaration_token8, + ACTIONS(1942), 1, + aux_sym_class_declaration_token11, + ACTIONS(1944), 1, + aux_sym_class_declaration_token12, + ACTIONS(1946), 1, anon_sym_DOT, - STATE(1683), 1, - sym__method_declaration_raising, - STATE(2852), 1, - sym__method_declaration_exceptions, - STATE(1049), 2, + STATE(1366), 1, + sym__create_addition, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [35190] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1310), 1, - aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(2747), 1, + [27835] = 7, + ACTIONS(1462), 1, + aux_sym__create_addition_token1, + ACTIONS(2653), 1, + aux_sym_class_declaration_token8, + ACTIONS(2655), 1, + aux_sym_class_declaration_token11, + ACTIONS(2657), 1, + aux_sym_class_declaration_token12, + ACTIONS(2659), 1, anon_sym_DOT, - STATE(1875), 1, - sym__method_declaration_raising, - STATE(3024), 1, - sym__method_declaration_exceptions, - STATE(1050), 2, + STATE(1387), 1, + sym__create_addition, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [35216] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, - aux_sym__create_addition_token2, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(2172), 1, - aux_sym_class_declaration_token13, - STATE(1568), 1, - sym_protected_section, - STATE(2707), 1, - sym_private_section, - STATE(1051), 2, + [27858] = 5, + ACTIONS(2649), 1, + aux_sym_generic_typing_token1, + ACTIONS(2651), 1, + aux_sym_generic_typing_token2, + STATE(2424), 1, + sym__data_object_typing, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [35242] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1310), 1, - aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(2749), 1, + STATE(2064), 3, + sym__data_object_typing_normal, + sym__data_object_typing_reference, + sym__data_object_typing_itabs, + [27877] = 5, + ACTIONS(2649), 1, + aux_sym_generic_typing_token1, + ACTIONS(2651), 1, + aux_sym_generic_typing_token2, + STATE(2867), 1, + sym__data_object_typing, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + STATE(2064), 3, + sym__data_object_typing_normal, + sym__data_object_typing_reference, + sym__data_object_typing_itabs, + [27896] = 7, + ACTIONS(1462), 1, + aux_sym__create_addition_token1, + ACTIONS(1964), 1, + aux_sym_class_declaration_token8, + ACTIONS(1966), 1, + aux_sym_class_declaration_token11, + ACTIONS(1968), 1, + aux_sym_class_declaration_token12, + ACTIONS(1970), 1, anon_sym_DOT, - STATE(1550), 1, - sym__method_declaration_raising, - STATE(2705), 1, - sym__method_declaration_exceptions, - STATE(1052), 2, + STATE(1397), 1, + sym__create_addition, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [35268] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1310), 1, - aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(2751), 1, + [27919] = 7, + ACTIONS(1462), 1, + aux_sym__create_addition_token1, + ACTIONS(2661), 1, + aux_sym_class_declaration_token8, + ACTIONS(2663), 1, + aux_sym_class_declaration_token11, + ACTIONS(2665), 1, + aux_sym_class_declaration_token12, + ACTIONS(2667), 1, anon_sym_DOT, - STATE(1679), 1, - sym__method_declaration_raising, - STATE(2849), 1, - sym__method_declaration_exceptions, - STATE(1053), 2, + STATE(1224), 1, + sym__create_addition, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [35294] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1310), 1, - aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(2753), 1, + [27942] = 7, + ACTIONS(1462), 1, + aux_sym__create_addition_token1, + ACTIONS(1742), 1, + aux_sym_class_declaration_token8, + ACTIONS(1744), 1, + aux_sym_class_declaration_token11, + ACTIONS(1746), 1, + aux_sym_class_declaration_token12, + ACTIONS(1748), 1, anon_sym_DOT, - STATE(1730), 1, - sym__method_declaration_raising, - STATE(2247), 1, - sym__method_declaration_exceptions, - STATE(1054), 2, + STATE(1403), 1, + sym__create_addition, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [35320] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(57), 1, - sym_field_symbol_name, - ACTIONS(2755), 1, - sym_name, - STATE(2434), 1, - sym__data_object, - STATE(996), 2, - sym_structured_data_object, - sym_attribute_access_static, - STATE(1055), 2, + [27965] = 5, + ACTIONS(2672), 1, + anon_sym_RPAREN, + ACTIONS(2674), 1, + aux_sym__explicit_parameter_list_token1, + STATE(1002), 1, + aux_sym__explicit_parameter_list_repeat1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [35344] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, - aux_sym__create_addition_token2, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(2757), 1, - aux_sym_class_declaration_token13, - STATE(1574), 1, - sym_protected_section, - STATE(2718), 1, - sym_private_section, - STATE(1056), 2, + ACTIONS(2669), 3, + aux_sym__method_declaration_importing_token1, + aux_sym__method_declaration_exporting_token1, + aux_sym__method_declaration_changing_token1, + [27984] = 7, + ACTIONS(1462), 1, + aux_sym__create_addition_token1, + ACTIONS(2010), 1, + aux_sym_class_declaration_token8, + ACTIONS(2012), 1, + aux_sym_class_declaration_token11, + ACTIONS(2014), 1, + aux_sym_class_declaration_token12, + ACTIONS(2016), 1, + anon_sym_DOT, + STATE(1210), 1, + sym__create_addition, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [35370] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1310), 1, - aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, + [28007] = 3, + ACTIONS(2677), 1, + sym_name, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(2679), 5, + anon_sym_DOT, + aux_sym__method_declaration_importing_token1, + aux_sym__method_declaration_exporting_token1, + aux_sym__method_declaration_changing_token1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(2759), 1, + [28022] = 4, + ACTIONS(2681), 1, + sym_name, + STATE(1005), 1, + aux_sym_line_spec_repeat1, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(2684), 4, anon_sym_DOT, - STATE(1720), 1, - sym__method_declaration_raising, - STATE(2270), 1, - sym__method_declaration_exceptions, - STATE(1057), 2, + aux_sym_loop_statement_token3, + aux_sym_line_spec_token3, + aux_sym__read_table_result_token1, + [28039] = 5, + ACTIONS(2691), 1, + aux_sym__method_declaration_exporting_token1, + STATE(1006), 1, + aux_sym__function_parameter_list, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [35396] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1310), 1, - aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, + ACTIONS(2686), 2, + anon_sym_DOT, aux_sym__method_declaration_exceptions_token1, - ACTIONS(2761), 1, + ACTIONS(2688), 2, + aux_sym__method_declaration_importing_token1, + aux_sym__method_declaration_changing_token1, + [28058] = 7, + ACTIONS(1462), 1, + aux_sym__create_addition_token1, + ACTIONS(2694), 1, + aux_sym_class_declaration_token8, + ACTIONS(2696), 1, + aux_sym_class_declaration_token11, + ACTIONS(2698), 1, + aux_sym_class_declaration_token12, + ACTIONS(2700), 1, anon_sym_DOT, - STATE(1570), 1, - sym__method_declaration_raising, - STATE(2715), 1, - sym__method_declaration_exceptions, - STATE(1058), 2, + STATE(1268), 1, + sym__create_addition, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [35422] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, - aux_sym__create_addition_token2, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(2763), 1, - aux_sym_class_declaration_token13, - STATE(1856), 1, - sym_protected_section, - STATE(2263), 1, - sym_private_section, - STATE(1059), 2, + [28081] = 5, + ACTIONS(2649), 1, + aux_sym_generic_typing_token1, + ACTIONS(2651), 1, + aux_sym_generic_typing_token2, + STATE(2040), 1, + sym__data_object_typing, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [35448] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2765), 1, + STATE(2064), 3, + sym__data_object_typing_normal, + sym__data_object_typing_reference, + sym__data_object_typing_itabs, + [28100] = 7, + ACTIONS(1462), 1, + aux_sym__create_addition_token1, + ACTIONS(1724), 1, + aux_sym_class_declaration_token8, + ACTIONS(1726), 1, + aux_sym_class_declaration_token11, + ACTIONS(1728), 1, + aux_sym_class_declaration_token12, + ACTIONS(1730), 1, + anon_sym_DOT, + STATE(1414), 1, + sym__create_addition, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [28123] = 5, + ACTIONS(2702), 1, + sym_name, + ACTIONS(2706), 1, + aux_sym_line_spec_token3, + STATE(1005), 1, + aux_sym_line_spec_repeat1, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(2704), 3, + anon_sym_DOT, aux_sym_loop_statement_token3, - ACTIONS(2767), 1, - aux_sym_line_spec_token1, - ACTIONS(2769), 1, aux_sym__read_table_result_token1, - STATE(1622), 1, - sym_line_spec, - STATE(2034), 1, - sym__read_table_result, - STATE(1060), 2, + [28142] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [35474] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1310), 1, - aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(2771), 1, + ACTIONS(558), 6, anon_sym_DOT, - STATE(1714), 1, - sym__method_declaration_raising, - STATE(2278), 1, - sym__method_declaration_exceptions, - STATE(1061), 2, + aux_sym_method_parameters_token1, + anon_sym_COMMA, + aux_sym__data_object_typing_normal_token5, + anon_sym_EQ, + anon_sym_DASH2, + [28155] = 7, + ACTIONS(1462), 1, + aux_sym__create_addition_token1, + ACTIONS(2708), 1, + aux_sym_class_declaration_token8, + ACTIONS(2710), 1, + aux_sym_class_declaration_token11, + ACTIONS(2712), 1, + aux_sym_class_declaration_token12, + ACTIONS(2714), 1, + anon_sym_DOT, + STATE(1332), 1, + sym__create_addition, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [35500] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, - aux_sym__create_addition_token2, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(2182), 1, - aux_sym_class_declaration_token13, - STATE(1584), 1, - sym_protected_section, - STATE(2727), 1, - sym_private_section, - STATE(1062), 2, + [28178] = 7, + ACTIONS(1462), 1, + aux_sym__create_addition_token1, + ACTIONS(2716), 1, + aux_sym_class_declaration_token8, + ACTIONS(2718), 1, + aux_sym_class_declaration_token11, + ACTIONS(2720), 1, + aux_sym_class_declaration_token12, + ACTIONS(2722), 1, + anon_sym_DOT, + STATE(1342), 1, + sym__create_addition, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [35526] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1310), 1, - aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(2773), 1, + [28201] = 7, + ACTIONS(1462), 1, + aux_sym__create_addition_token1, + ACTIONS(2282), 1, + aux_sym_class_declaration_token8, + ACTIONS(2284), 1, + aux_sym_class_declaration_token11, + ACTIONS(2286), 1, + aux_sym_class_declaration_token12, + ACTIONS(2288), 1, anon_sym_DOT, - STATE(1672), 1, - sym__method_declaration_raising, - STATE(2840), 1, - sym__method_declaration_exceptions, - STATE(1063), 2, + STATE(1226), 1, + sym__create_addition, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [35552] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, - aux_sym__create_addition_token2, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(2775), 1, - aux_sym_class_declaration_token13, - STATE(1588), 1, - sym_protected_section, - STATE(2734), 1, - sym_private_section, - STATE(1064), 2, + [28224] = 7, + ACTIONS(1462), 1, + aux_sym__create_addition_token1, + ACTIONS(2724), 1, + aux_sym_class_declaration_token8, + ACTIONS(2726), 1, + aux_sym_class_declaration_token11, + ACTIONS(2728), 1, + aux_sym_class_declaration_token12, + ACTIONS(2730), 1, + anon_sym_DOT, + STATE(1417), 1, + sym__create_addition, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [35578] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, + [28247] = 6, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2777), 1, + ACTIONS(2732), 1, aux_sym_class_declaration_token13, - STATE(1849), 1, + STATE(1507), 1, sym_protected_section, - STATE(2081), 1, + STATE(2084), 1, sym_private_section, - STATE(1065), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [35604] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2779), 1, + [28267] = 6, + ACTIONS(1316), 1, + aux_sym__method_declaration_raising_token1, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(2734), 1, anon_sym_DOT, - ACTIONS(2781), 1, - aux_sym_for_all_entries_token1, - ACTIONS(2783), 1, - aux_sym__where_clause_token1, - STATE(2011), 1, - sym_for_all_entries, - STATE(2512), 1, - sym__where_clause, - STATE(1066), 2, + STATE(1802), 1, + sym__method_declaration_raising, + STATE(3011), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [35630] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, + [28287] = 6, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2188), 1, + ACTIONS(2565), 1, aux_sym_class_declaration_token13, - STATE(1590), 1, + STATE(1635), 1, sym_protected_section, - STATE(2738), 1, + STATE(2740), 1, sym_private_section, - STATE(1067), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [35656] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1310), 1, + [28307] = 6, + ACTIONS(1316), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(2785), 1, + ACTIONS(1381), 1, anon_sym_DOT, - STATE(1700), 1, + STATE(1796), 1, sym__method_declaration_raising, - STATE(2287), 1, + STATE(3074), 1, sym__method_declaration_exceptions, - STATE(1068), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [35682] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1310), 1, + [28327] = 6, + ACTIONS(1316), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(2787), 1, + ACTIONS(2736), 1, anon_sym_DOT, - STATE(1694), 1, + STATE(1883), 1, sym__method_declaration_raising, - STATE(2293), 1, + STATE(2302), 1, sym__method_declaration_exceptions, - STATE(1069), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [35708] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1310), 1, - aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(2789), 1, + [28347] = 6, + ACTIONS(2738), 1, anon_sym_DOT, - STATE(1684), 1, - sym__method_declaration_raising, - STATE(2303), 1, - sym__method_declaration_exceptions, - STATE(1070), 2, - sym_eol_comment, - sym_bol_comment, - [35734] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2781), 1, + ACTIONS(2740), 1, aux_sym_for_all_entries_token1, - ACTIONS(2783), 1, + ACTIONS(2742), 1, aux_sym__where_clause_token1, - ACTIONS(2791), 1, - anon_sym_DOT, - STATE(2016), 1, + STATE(1919), 1, sym_for_all_entries, - STATE(2481), 1, + STATE(3065), 1, sym__where_clause, - STATE(1071), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [35760] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, + [28367] = 6, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2122), 1, + ACTIONS(2533), 1, aux_sym_class_declaration_token13, - STATE(1596), 1, + STATE(1595), 1, sym_protected_section, - STATE(2746), 1, + STATE(2789), 1, sym_private_section, - STATE(1072), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [35786] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, + [28387] = 6, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2146), 1, + ACTIONS(2449), 1, aux_sym_class_declaration_token13, - STATE(1599), 1, + STATE(1641), 1, sym_protected_section, - STATE(2753), 1, + STATE(2725), 1, sym_private_section, - STATE(1073), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [35812] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1310), 1, + [28407] = 6, + ACTIONS(1316), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(2793), 1, + ACTIONS(2744), 1, anon_sym_DOT, - STATE(1582), 1, + STATE(1904), 1, sym__method_declaration_raising, - STATE(2726), 1, + STATE(2283), 1, sym__method_declaration_exceptions, - STATE(1074), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [35838] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, - aux_sym__create_addition_token2, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(2795), 1, - aux_sym_class_declaration_token13, - STATE(1601), 1, - sym_protected_section, - STATE(2757), 1, - sym_private_section, - STATE(1075), 2, - sym_eol_comment, - sym_bol_comment, - [35864] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, - aux_sym__create_addition_token2, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(1984), 1, - aux_sym_class_declaration_token13, - STATE(1603), 1, - sym_protected_section, - STATE(2761), 1, - sym_private_section, - STATE(1076), 2, + [28427] = 6, + ACTIONS(1316), 1, + aux_sym__method_declaration_raising_token1, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(2746), 1, + anon_sym_DOT, + STATE(1909), 1, + sym__method_declaration_raising, + STATE(2276), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [35890] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, + [28447] = 6, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2032), 1, + ACTIONS(2748), 1, aux_sym_class_declaration_token13, - STATE(1647), 1, + STATE(1809), 1, sym_protected_section, - STATE(2370), 1, + STATE(2393), 1, sym_private_section, - STATE(1077), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [35916] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2797), 1, + [28467] = 6, + ACTIONS(1316), 1, + aux_sym__method_declaration_raising_token1, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(2750), 1, anon_sym_DOT, - ACTIONS(2799), 1, - anon_sym_COMMA, - ACTIONS(2801), 1, - sym_field_symbol_name, - STATE(1095), 1, - aux_sym_chained_field_symbol_declaration_repeat1, - STATE(1597), 1, - sym_field_symbol, - STATE(1078), 2, + STATE(1876), 1, + sym__method_declaration_raising, + STATE(3035), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [35942] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, + [28487] = 6, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2126), 1, + ACTIONS(2461), 1, aux_sym_class_declaration_token13, - STATE(1611), 1, + STATE(1585), 1, sym_protected_section, - STATE(2772), 1, + STATE(2799), 1, sym_private_section, - STATE(1079), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [35968] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, + [28507] = 6, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2803), 1, + ACTIONS(1922), 1, aux_sym_class_declaration_token13, - STATE(1655), 1, + STATE(1640), 1, sym_protected_section, - STATE(2347), 1, + STATE(2733), 1, sym_private_section, - STATE(1080), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [35994] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2715), 1, + [28527] = 4, + ACTIONS(2752), 1, aux_sym_generic_typing_token1, - ACTIONS(2717), 1, + ACTIONS(2754), 1, aux_sym_generic_typing_token2, - STATE(1610), 1, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + STATE(517), 3, sym__typing, - STATE(483), 2, sym_generic_typing, sym_complete_typing, - STATE(1081), 2, - sym_eol_comment, - sym_bol_comment, - [36018] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, + [28543] = 6, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2805), 1, + ACTIONS(2756), 1, aux_sym_class_declaration_token13, - STATE(1633), 1, + STATE(1546), 1, sym_protected_section, - STATE(2785), 1, + STATE(2834), 1, sym_private_section, - STATE(1082), 2, - sym_eol_comment, - sym_bol_comment, - [36044] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2807), 1, - sym_name, - ACTIONS(2810), 1, - anon_sym_DOT, - ACTIONS(2812), 1, - anon_sym_COMMA, - STATE(1615), 1, - sym_variable, - STATE(1083), 3, - sym_eol_comment, - sym_bol_comment, - aux_sym_chained_variable_declaration_repeat1, - [36068] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2799), 1, - anon_sym_COMMA, - ACTIONS(2801), 1, - sym_field_symbol_name, - ACTIONS(2815), 1, - anon_sym_DOT, - STATE(1095), 1, - aux_sym_chained_field_symbol_declaration_repeat1, - STATE(1597), 1, - sym_field_symbol, - STATE(1084), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [36094] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, + [28563] = 6, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2817), 1, + ACTIONS(2463), 1, aux_sym_class_declaration_token13, - STATE(1640), 1, + STATE(1784), 1, sym_protected_section, - STATE(2380), 1, + STATE(2421), 1, sym_private_section, - STATE(1085), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [36120] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, + [28583] = 6, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2102), 1, + ACTIONS(2758), 1, aux_sym_class_declaration_token13, - STATE(1629), 1, + STATE(1584), 1, sym_protected_section, - STATE(2780), 1, + STATE(2801), 1, sym_private_section, - STATE(1086), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [36146] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, + [28603] = 6, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2819), 1, + ACTIONS(2760), 1, aux_sym_class_declaration_token13, - STATE(1637), 1, + STATE(1792), 1, sym_protected_section, - STATE(2399), 1, + STATE(2411), 1, sym_private_section, - STATE(1087), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [36172] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, + [28623] = 6, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2094), 1, + ACTIONS(2457), 1, aux_sym_class_declaration_token13, - STATE(1634), 1, + STATE(1866), 1, sym_protected_section, - STATE(2791), 1, + STATE(2264), 1, sym_private_section, - STATE(1088), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [36198] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2741), 1, - anon_sym_COMMA, - ACTIONS(2821), 1, - sym_name, - ACTIONS(2823), 1, + [28643] = 6, + ACTIONS(1316), 1, + aux_sym__method_declaration_raising_token1, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(2762), 1, anon_sym_DOT, - STATE(1083), 1, - aux_sym_chained_variable_declaration_repeat1, - STATE(1615), 1, - sym_variable, - STATE(1089), 2, + STATE(1860), 1, + sym__method_declaration_raising, + STATE(3031), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [36224] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, + [28663] = 6, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2825), 1, + ACTIONS(2764), 1, aux_sym_class_declaration_token13, - STATE(1648), 1, + STATE(1839), 1, sym_protected_section, - STATE(2798), 1, + STATE(2262), 1, sym_private_section, - STATE(1090), 2, - sym_eol_comment, - sym_bol_comment, - [36250] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2827), 1, - sym_name, - ACTIONS(2831), 1, - aux_sym_method_parameters_token1, - ACTIONS(2833), 1, - aux_sym__data_object_typing_normal_token5, - ACTIONS(2829), 2, - anon_sym_DOT, - anon_sym_COMMA, - STATE(1091), 2, - sym_eol_comment, - sym_bol_comment, - [36274] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2835), 1, - sym_name, - ACTIONS(2839), 1, - aux_sym_method_parameters_token1, - ACTIONS(2841), 1, - aux_sym__data_object_typing_normal_token5, - ACTIONS(2837), 2, - anon_sym_DOT, - anon_sym_COMMA, - STATE(1092), 2, - sym_eol_comment, - sym_bol_comment, - [36298] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2741), 1, - anon_sym_COMMA, - ACTIONS(2821), 1, - sym_name, - ACTIONS(2843), 1, - anon_sym_DOT, - STATE(1083), 1, - aux_sym_chained_variable_declaration_repeat1, - STATE(1615), 1, - sym_variable, - STATE(1093), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [36324] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, + [28683] = 6, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2845), 1, + ACTIONS(2766), 1, aux_sym_class_declaration_token13, - STATE(1805), 1, + STATE(1831), 1, sym_protected_section, - STATE(2168), 1, + STATE(2247), 1, sym_private_section, - STATE(1094), 2, - sym_eol_comment, - sym_bol_comment, - [36350] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2847), 1, - anon_sym_DOT, - ACTIONS(2849), 1, - anon_sym_COMMA, - ACTIONS(2852), 1, - sym_field_symbol_name, - STATE(1597), 1, - sym_field_symbol, - STATE(1095), 3, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - aux_sym_chained_field_symbol_declaration_repeat1, - [36374] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, + [28703] = 6, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2064), 1, + ACTIONS(2768), 1, aux_sym_class_declaration_token13, - STATE(1797), 1, + STATE(1645), 1, sym_protected_section, - STATE(2176), 1, + STATE(2721), 1, sym_private_section, - STATE(1096), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [36400] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, - aux_sym__create_addition_token2, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(2855), 1, - aux_sym_class_declaration_token13, - STATE(1653), 1, - sym_protected_section, - STATE(2809), 1, - sym_private_section, - STATE(1097), 2, + [28723] = 6, + ACTIONS(1316), 1, + aux_sym__method_declaration_raising_token1, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(2770), 1, + anon_sym_DOT, + STATE(1855), 1, + sym__method_declaration_raising, + STATE(3028), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [36426] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, + [28743] = 6, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2072), 1, + ACTIONS(2445), 1, aux_sym_class_declaration_token13, - STATE(1656), 1, + STATE(1562), 1, sym_protected_section, STATE(2812), 1, sym_private_section, - STATE(1098), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [36452] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, - aux_sym__create_addition_token2, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(2857), 1, - aux_sym_class_declaration_token13, - STATE(1822), 1, - sym_protected_section, - STATE(2139), 1, - sym_private_section, - STATE(1099), 2, + [28763] = 6, + ACTIONS(1316), 1, + aux_sym__method_declaration_raising_token1, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(2772), 1, + anon_sym_DOT, + STATE(1776), 1, + sym__method_declaration_raising, + STATE(3003), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [36478] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, + [28783] = 6, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2859), 1, + ACTIONS(2443), 1, aux_sym_class_declaration_token13, - STATE(1618), 1, + STATE(1651), 1, sym_protected_section, - STATE(2412), 1, + STATE(2714), 1, sym_private_section, - STATE(1100), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [36504] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, + [28803] = 6, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2861), 1, + ACTIONS(2774), 1, aux_sym_class_declaration_token13, - STATE(1657), 1, + STATE(1556), 1, sym_protected_section, - STATE(2814), 1, + STATE(2816), 1, sym_private_section, - STATE(1101), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [36530] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, + [28823] = 6, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2016), 1, + ACTIONS(2776), 1, aux_sym_class_declaration_token13, - STATE(1614), 1, + STATE(1769), 1, sym_protected_section, - STATE(2418), 1, + STATE(2216), 1, sym_private_section, - STATE(1102), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [36556] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, + [28843] = 6, + ACTIONS(1316), 1, + aux_sym__method_declaration_raising_token1, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(2778), 1, + anon_sym_DOT, + STATE(1744), 1, + sym__method_declaration_raising, + STATE(2983), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [28863] = 6, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2062), 1, + ACTIONS(2780), 1, aux_sym_class_declaration_token13, - STATE(1664), 1, + STATE(1762), 1, sym_protected_section, - STATE(2825), 1, + STATE(2203), 1, sym_private_section, - STATE(1103), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [36582] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1104), 2, + [28883] = 6, + ACTIONS(1316), 1, + aux_sym__method_declaration_raising_token1, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(2782), 1, + anon_sym_DOT, + STATE(1844), 1, + sym__method_declaration_raising, + STATE(3025), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2636), 5, - aux_sym__method_declaration_importing_token1, - aux_sym__method_declaration_exporting_token1, - aux_sym__method_declaration_changing_token1, - anon_sym_RPAREN, - aux_sym__explicit_parameter_list_token1, - [36600] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, + [28903] = 6, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2863), 1, + ACTIONS(2431), 1, aux_sym_class_declaration_token13, - STATE(1666), 1, + STATE(1786), 1, sym_protected_section, - STATE(2829), 1, + STATE(2221), 1, sym_private_section, - STATE(1105), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [36626] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1310), 1, + [28923] = 6, + ACTIONS(1316), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(2865), 1, + ACTIONS(2784), 1, anon_sym_DOT, - STATE(1663), 1, + STATE(1709), 1, sym__method_declaration_raising, - STATE(2826), 1, + STATE(2963), 1, sym__method_declaration_exceptions, - STATE(1106), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [36652] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, - aux_sym__create_addition_token2, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(1904), 1, - aux_sym_class_declaration_token13, - STATE(1674), 1, - sym_protected_section, - STATE(2312), 1, - sym_private_section, - STATE(1107), 2, + [28943] = 6, + ACTIONS(1316), 1, + aux_sym__method_declaration_raising_token1, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(2786), 1, + anon_sym_DOT, + STATE(1748), 1, + sym__method_declaration_raising, + STATE(2190), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [36678] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1310), 1, + [28963] = 6, + ACTIONS(1316), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(2867), 1, + ACTIONS(2788), 1, anon_sym_DOT, - STATE(1623), 1, + STATE(1581), 1, sym__method_declaration_raising, - STATE(2411), 1, + STATE(2928), 1, sym__method_declaration_exceptions, - STATE(1108), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [36704] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, + [28983] = 6, + ACTIONS(1316), 1, + aux_sym__method_declaration_raising_token1, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(2790), 1, + anon_sym_DOT, + STATE(1515), 1, + sym__method_declaration_raising, + STATE(2883), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [29003] = 6, + ACTIONS(1316), 1, + aux_sym__method_declaration_raising_token1, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(2792), 1, + anon_sym_DOT, + STATE(1751), 1, + sym__method_declaration_raising, + STATE(2446), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [29023] = 6, + ACTIONS(1316), 1, + aux_sym__method_declaration_raising_token1, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(2794), 1, + anon_sym_DOT, + STATE(1529), 1, + sym__method_declaration_raising, + STATE(2862), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [29043] = 6, + ACTIONS(1316), 1, + aux_sym__method_declaration_raising_token1, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(2796), 1, + anon_sym_DOT, + STATE(1537), 1, + sym__method_declaration_raising, + STATE(2852), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [29063] = 6, + ACTIONS(1316), 1, + aux_sym__method_declaration_raising_token1, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(2798), 1, + anon_sym_DOT, + STATE(1550), 1, + sym__method_declaration_raising, + STATE(2836), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [29083] = 6, + ACTIONS(1316), 1, + aux_sym__method_declaration_raising_token1, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(2800), 1, + anon_sym_DOT, + STATE(1741), 1, + sym__method_declaration_raising, + STATE(2381), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [29103] = 6, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2096), 1, + ACTIONS(2272), 1, aux_sym_class_declaration_token13, - STATE(1838), 1, + STATE(1552), 1, sym_protected_section, - STATE(2092), 1, + STATE(2824), 1, sym_private_section, - STATE(1109), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [36730] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1310), 1, + [29123] = 6, + ACTIONS(1316), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(2869), 1, + ACTIONS(2802), 1, anon_sym_DOT, - STATE(1660), 1, + STATE(1735), 1, sym__method_declaration_raising, - STATE(2822), 1, + STATE(2624), 1, sym__method_declaration_exceptions, - STATE(1110), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [36756] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, + [29143] = 6, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2058), 1, + ACTIONS(2804), 1, aux_sym_class_declaration_token13, - STATE(1670), 1, + STATE(1659), 1, sym_protected_section, - STATE(2837), 1, + STATE(2140), 1, sym_private_section, - STATE(1111), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [36782] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, + [29163] = 6, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2871), 1, + ACTIONS(2806), 1, aux_sym_class_declaration_token13, - STATE(1675), 1, + STATE(1551), 1, sym_protected_section, - STATE(2841), 1, + STATE(2828), 1, sym_private_section, - STATE(1112), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [36808] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, + [29183] = 6, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2873), 1, + ACTIONS(2808), 1, aux_sym_class_declaration_token13, - STATE(1842), 1, + STATE(1630), 1, sym_protected_section, STATE(2087), 1, sym_private_section, - STATE(1113), 2, - sym_eol_comment, - sym_bol_comment, - [36834] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(57), 1, - sym_field_symbol_name, - ACTIONS(2755), 1, - sym_name, - STATE(1154), 1, - sym__data_object, - STATE(996), 2, - sym_structured_data_object, - sym_attribute_access_static, - STATE(1114), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [36858] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, + [29203] = 6, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2875), 1, + ACTIONS(2810), 1, aux_sym_class_declaration_token13, - STATE(1681), 1, + STATE(1588), 1, sym_protected_section, - STATE(2847), 1, + STATE(2796), 1, sym_private_section, - STATE(1115), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [36884] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, + [29223] = 6, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2877), 1, + ACTIONS(2812), 1, aux_sym_class_declaration_token13, - STATE(1682), 1, + STATE(1763), 1, sym_protected_section, - STATE(2851), 1, + STATE(2202), 1, sym_private_section, - STATE(1116), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [36910] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, + [29243] = 6, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2879), 1, + ACTIONS(2814), 1, aux_sym_class_declaration_token13, - STATE(1696), 1, + STATE(1544), 1, sym_protected_section, - STATE(2859), 1, + STATE(2838), 1, sym_private_section, - STATE(1117), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [36936] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2781), 1, - aux_sym_for_all_entries_token1, - ACTIONS(2783), 1, - aux_sym__where_clause_token1, - ACTIONS(2881), 1, - anon_sym_DOT, - STATE(2057), 1, - sym_for_all_entries, - STATE(2266), 1, - sym__where_clause, - STATE(1118), 2, + [29263] = 4, + ACTIONS(2752), 1, + aux_sym_generic_typing_token1, + ACTIONS(2754), 1, + aux_sym_generic_typing_token2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [36962] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1119), 2, + STATE(503), 3, + sym__typing, + sym_generic_typing, + sym_complete_typing, + [29279] = 5, + ACTIONS(2816), 1, + sym_name, + ACTIONS(2820), 1, + aux_sym__method_declaration_raising_token2, + STATE(1177), 1, + aux_sym__method_declaration_raising_repeat1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2625), 5, + ACTIONS(2818), 2, anon_sym_DOT, - aux_sym__method_declaration_importing_token1, - aux_sym__method_declaration_exporting_token1, - aux_sym__method_declaration_changing_token1, - aux_sym__method_declaration_exceptions_token1, - [36980] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1310), 1, - aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(2883), 1, - anon_sym_DOT, - STATE(1658), 1, - sym__method_declaration_raising, - STATE(2816), 1, - sym__method_declaration_exceptions, - STATE(1120), 2, - sym_eol_comment, - sym_bol_comment, - [37006] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1310), 1, + [29297] = 6, + ACTIONS(1316), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(2885), 1, + ACTIONS(2822), 1, anon_sym_DOT, - STATE(1578), 1, + STATE(1717), 1, sym__method_declaration_raising, - STATE(2478), 1, + STATE(2640), 1, sym__method_declaration_exceptions, - STATE(1121), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [37032] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1310), 1, + [29317] = 6, + ACTIONS(1316), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(2887), 1, + ACTIONS(2824), 1, anon_sym_DOT, - STATE(1661), 1, + STATE(1734), 1, sym__method_declaration_raising, - STATE(2343), 1, + STATE(2179), 1, sym__method_declaration_exceptions, - STATE(1122), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [37058] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, + [29337] = 6, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2166), 1, + ACTIONS(2826), 1, aux_sym_class_declaration_token13, - STATE(1685), 1, + STATE(1609), 1, sym_protected_section, - STATE(2854), 1, + STATE(2108), 1, sym_private_section, - STATE(1123), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [37084] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, + [29357] = 6, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2889), 1, + ACTIONS(2828), 1, aux_sym_class_declaration_token13, - STATE(1705), 1, + STATE(1540), 1, sym_protected_section, - STATE(2871), 1, + STATE(2846), 1, sym_private_section, - STATE(1124), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [37110] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, + [29377] = 6, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2036), 1, + ACTIONS(2222), 1, aux_sym_class_declaration_token13, - STATE(1699), 1, + STATE(1656), 1, sym_protected_section, - STATE(2866), 1, + STATE(2706), 1, sym_private_section, - STATE(1125), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [37136] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, - aux_sym__create_addition_token2, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(1880), 1, - aux_sym_class_declaration_token13, - STATE(1731), 1, - sym_protected_section, - STATE(2245), 1, - sym_private_section, - STATE(1126), 2, + [29397] = 6, + ACTIONS(1316), 1, + aux_sym__method_declaration_raising_token1, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(2830), 1, + anon_sym_DOT, + STATE(1707), 1, + sym__method_declaration_raising, + STATE(2655), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [37162] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, + [29417] = 6, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2891), 1, + ACTIONS(2832), 1, aux_sym_class_declaration_token13, - STATE(1715), 1, + STATE(1578), 1, sym_protected_section, - STATE(2879), 1, + STATE(2090), 1, sym_private_section, - STATE(1127), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [37188] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1310), 1, + [29437] = 6, + ACTIONS(1316), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(2893), 1, + ACTIONS(2834), 1, anon_sym_DOT, - STATE(1865), 1, + STATE(1701), 1, sym__method_declaration_raising, - STATE(2354), 1, + STATE(2637), 1, sym__method_declaration_exceptions, - STATE(1128), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [37214] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1310), 1, + [29457] = 6, + ACTIONS(1894), 1, + aux_sym__create_addition_token2, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(2250), 1, + aux_sym_class_declaration_token13, + STATE(1543), 1, + sym_protected_section, + STATE(2841), 1, + sym_private_section, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [29477] = 6, + ACTIONS(1316), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(2895), 1, + ACTIONS(2836), 1, anon_sym_DOT, - STATE(1871), 1, + STATE(1721), 1, sym__method_declaration_raising, - STATE(2439), 1, + STATE(2163), 1, sym__method_declaration_exceptions, - STATE(1129), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [37240] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, + [29497] = 6, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2024), 1, + ACTIONS(2838), 1, aux_sym_class_declaration_token13, - STATE(1723), 1, + STATE(1669), 1, sym_protected_section, - STATE(2885), 1, + STATE(2693), 1, sym_private_section, - STATE(1130), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [37266] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1310), 1, - aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(2897), 1, - anon_sym_DOT, - STATE(1556), 1, - sym__method_declaration_raising, - STATE(2641), 1, - sym__method_declaration_exceptions, - STATE(1131), 2, + [29517] = 6, + ACTIONS(1894), 1, + aux_sym__create_addition_token2, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(2198), 1, + aux_sym_class_declaration_token13, + STATE(1673), 1, + sym_protected_section, + STATE(2683), 1, + sym_private_section, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [37292] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1310), 1, - aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(2899), 1, - anon_sym_DOT, - STATE(1671), 1, - sym__method_declaration_raising, - STATE(2316), 1, - sym__method_declaration_exceptions, - STATE(1132), 2, + [29537] = 6, + ACTIONS(1894), 1, + aux_sym__create_addition_token2, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(2160), 1, + aux_sym_class_declaration_token13, + STATE(1696), 1, + sym_protected_section, + STATE(2669), 1, + sym_private_section, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [37318] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1310), 1, + [29557] = 6, + ACTIONS(1316), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(2901), 1, + ACTIONS(2840), 1, anon_sym_DOT, - STATE(1908), 1, + STATE(1687), 1, sym__method_declaration_raising, - STATE(3044), 1, + STATE(2676), 1, sym__method_declaration_exceptions, - STATE(1133), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [37344] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1310), 1, + [29577] = 6, + ACTIONS(1316), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(2903), 1, + ACTIONS(2842), 1, anon_sym_DOT, - STATE(1881), 1, + STATE(1681), 1, sym__method_declaration_raising, - STATE(2674), 1, + STATE(2681), 1, sym__method_declaration_exceptions, - STATE(1134), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [37370] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, + [29597] = 6, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2905), 1, + ACTIONS(2844), 1, aux_sym_class_declaration_token13, - STATE(1725), 1, + STATE(1531), 1, sym_protected_section, - STATE(2887), 1, + STATE(2858), 1, sym_private_section, - STATE(1135), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [37396] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1310), 1, - aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(2907), 1, - anon_sym_DOT, - STATE(1760), 1, - sym__method_declaration_raising, - STATE(2210), 1, - sym__method_declaration_exceptions, - STATE(1136), 2, + [29617] = 6, + ACTIONS(2846), 1, + aux_sym_loop_statement_token3, + ACTIONS(2848), 1, + aux_sym_line_spec_token1, + ACTIONS(2850), 1, + aux_sym__read_table_result_token1, + STATE(1667), 1, + sym_line_spec, + STATE(2032), 1, + sym__read_table_result, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [37422] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, + [29637] = 6, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2018), 1, + ACTIONS(2256), 1, aux_sym_class_declaration_token13, - STATE(1736), 1, + STATE(1534), 1, sym_protected_section, - STATE(2895), 1, + STATE(2853), 1, sym_private_section, - STATE(1137), 2, - sym_eol_comment, - sym_bol_comment, - [37448] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2781), 1, - aux_sym_for_all_entries_token1, - ACTIONS(2783), 1, - aux_sym__where_clause_token1, - ACTIONS(2909), 1, - anon_sym_DOT, - STATE(1985), 1, - sym_for_all_entries, - STATE(2878), 1, - sym__where_clause, - STATE(1138), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [37474] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1310), 1, + [29657] = 6, + ACTIONS(1316), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(2911), 1, + ACTIONS(2852), 1, anon_sym_DOT, - STATE(1548), 1, + STATE(1814), 1, sym__method_declaration_raising, - STATE(2632), 1, + STATE(3019), 1, sym__method_declaration_exceptions, - STATE(1139), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [37500] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1310), 1, + [29677] = 6, + ACTIONS(1316), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(2913), 1, + ACTIONS(2854), 1, anon_sym_DOT, - STATE(1785), 1, + STATE(1671), 1, sym__method_declaration_raising, - STATE(2192), 1, + STATE(2688), 1, sym__method_declaration_exceptions, - STATE(1140), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [37526] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1310), 1, - aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(2915), 1, - anon_sym_DOT, - STATE(1698), 1, - sym__method_declaration_raising, - STATE(2291), 1, - sym__method_declaration_exceptions, - STATE(1141), 2, + [29697] = 6, + ACTIONS(1894), 1, + aux_sym__create_addition_token2, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(2856), 1, + aux_sym_class_declaration_token13, + STATE(1611), 1, + sym_protected_section, + STATE(2772), 1, + sym_private_section, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [37552] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, + [29717] = 6, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2917), 1, + ACTIONS(2858), 1, aux_sym_class_declaration_token13, - STATE(1737), 1, + STATE(1523), 1, sym_protected_section, - STATE(2897), 1, + STATE(2866), 1, sym_private_section, - STATE(1142), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [37578] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1310), 1, + [29737] = 6, + ACTIONS(1316), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(2919), 1, + ACTIONS(2860), 1, anon_sym_DOT, - STATE(1545), 1, + STATE(1683), 1, sym__method_declaration_raising, - STATE(2654), 1, + STATE(3017), 1, sym__method_declaration_exceptions, - STATE(1143), 2, - sym_eol_comment, - sym_bol_comment, - [37604] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2921), 1, - sym_name, - ACTIONS(2925), 1, - aux_sym_method_parameters_token1, - ACTIONS(2927), 1, - aux_sym__data_object_typing_normal_token5, - ACTIONS(2923), 2, - anon_sym_DOT, - anon_sym_COMMA, - STATE(1144), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [37628] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2929), 1, - sym_name, - ACTIONS(2933), 1, - aux_sym_method_parameters_token1, - ACTIONS(2935), 1, - aux_sym__data_object_typing_normal_token5, - ACTIONS(2931), 2, + [29757] = 6, + ACTIONS(1316), 1, + aux_sym__method_declaration_raising_token1, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(2862), 1, anon_sym_DOT, - anon_sym_COMMA, - STATE(1145), 2, + STATE(1616), 1, + sym__method_declaration_raising, + STATE(2109), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [37652] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1310), 1, + [29777] = 6, + ACTIONS(1316), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(2937), 1, + ACTIONS(2864), 1, anon_sym_DOT, - STATE(1542), 1, + STATE(1580), 1, sym__method_declaration_raising, - STATE(2669), 1, + STATE(2089), 1, sym__method_declaration_exceptions, - STATE(1146), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [37678] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1310), 1, + [29797] = 6, + ACTIONS(1316), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(2939), 1, + ACTIONS(2866), 1, anon_sym_DOT, - STATE(1915), 1, + STATE(1739), 1, sym__method_declaration_raising, - STATE(3048), 1, + STATE(2080), 1, sym__method_declaration_exceptions, - STATE(1147), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [37704] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, + [29817] = 6, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2941), 1, + ACTIONS(2116), 1, aux_sym_class_declaration_token13, - STATE(1745), 1, + STATE(1519), 1, sym_protected_section, - STATE(2904), 1, + STATE(2872), 1, sym_private_section, - STATE(1148), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [37730] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2943), 1, - sym_name, - ACTIONS(2946), 1, - anon_sym_DOT, - ACTIONS(2948), 1, - aux_sym__method_declaration_raising_token2, - ACTIONS(2951), 1, - aux_sym__method_declaration_exceptions_token1, - STATE(1149), 3, + [29837] = 6, + ACTIONS(1894), 1, + aux_sym__create_addition_token2, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(2868), 1, + aux_sym_class_declaration_token13, + STATE(1518), 1, + sym_protected_section, + STATE(2874), 1, + sym_private_section, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - aux_sym__method_declaration_raising_repeat1, - [37754] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1310), 1, - aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(2953), 1, - anon_sym_DOT, - STATE(1896), 1, - sym__method_declaration_raising, - STATE(2832), 1, - sym__method_declaration_exceptions, - STATE(1150), 2, + [29857] = 6, + ACTIONS(1894), 1, + aux_sym__create_addition_token2, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(2104), 1, + aux_sym_class_declaration_token13, + STATE(1513), 1, + sym_protected_section, + STATE(2882), 1, + sym_private_section, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [37780] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2955), 1, - sym_name, - ACTIONS(2959), 1, - aux_sym_method_parameters_token1, - ACTIONS(2961), 1, - aux_sym__data_object_typing_normal_token5, - ACTIONS(2957), 2, - anon_sym_DOT, - anon_sym_COMMA, - STATE(1151), 2, + [29877] = 4, + ACTIONS(2752), 1, + aux_sym_generic_typing_token1, + ACTIONS(2754), 1, + aux_sym_generic_typing_token2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [37804] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, + STATE(2077), 3, + sym__typing, + sym_generic_typing, + sym_complete_typing, + [29893] = 6, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(1952), 1, + ACTIONS(2870), 1, aux_sym_class_declaration_token13, - STATE(1693), 1, + STATE(1655), 1, sym_protected_section, - STATE(3000), 1, + STATE(2705), 1, sym_private_section, - STATE(1152), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [37830] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1310), 1, - aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(2963), 1, - anon_sym_DOT, - STATE(1557), 1, - sym__method_declaration_raising, - STATE(2681), 1, - sym__method_declaration_exceptions, - STATE(1153), 2, + [29913] = 6, + ACTIONS(1894), 1, + aux_sym__create_addition_token2, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(2872), 1, + aux_sym_class_declaration_token13, + STATE(1512), 1, + sym_protected_section, + STATE(2884), 1, + sym_private_section, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [37856] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2965), 1, - sym_name, - ACTIONS(2969), 1, - aux_sym_method_parameters_token1, - ACTIONS(2971), 1, - aux_sym__data_object_typing_normal_token5, - ACTIONS(2967), 2, - anon_sym_DOT, - anon_sym_COMMA, - STATE(1154), 2, + [29933] = 6, + ACTIONS(1894), 1, + aux_sym__create_addition_token2, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(2555), 1, + aux_sym_class_declaration_token13, + STATE(1859), 1, + sym_protected_section, + STATE(3072), 1, + sym_private_section, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [37880] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1310), 1, - aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(2973), 1, - anon_sym_DOT, - STATE(1921), 1, - sym__method_declaration_raising, - STATE(3050), 1, - sym__method_declaration_exceptions, - STATE(1155), 2, + [29953] = 6, + ACTIONS(1894), 1, + aux_sym__create_addition_token2, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(2102), 1, + aux_sym_class_declaration_token13, + STATE(1634), 1, + sym_protected_section, + STATE(2743), 1, + sym_private_section, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [37906] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1310), 1, - aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(2975), 1, - anon_sym_DOT, - STATE(1559), 1, - sym__method_declaration_raising, - STATE(2689), 1, - sym__method_declaration_exceptions, - STATE(1156), 2, + [29973] = 6, + ACTIONS(1894), 1, + aux_sym__create_addition_token2, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(2066), 1, + aux_sym_class_declaration_token13, + STATE(1880), 1, + sym_protected_section, + STATE(2303), 1, + sym_private_section, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [37932] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1310), 1, - aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(2977), 1, - anon_sym_DOT, - STATE(1930), 1, - sym__method_declaration_raising, - STATE(3053), 1, - sym__method_declaration_exceptions, - STATE(1157), 2, + [29993] = 6, + ACTIONS(1894), 1, + aux_sym__create_addition_token2, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(2874), 1, + aux_sym_class_declaration_token13, + STATE(1642), 1, + sym_protected_section, + STATE(2724), 1, + sym_private_section, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [37958] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, + [30013] = 6, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2979), 1, + ACTIONS(2876), 1, aux_sym_class_declaration_token13, - STATE(1835), 1, + STATE(1604), 1, sym_protected_section, - STATE(2097), 1, + STATE(2104), 1, sym_private_section, - STATE(1158), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [37984] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1310), 1, - aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(2981), 1, - anon_sym_DOT, - STATE(1564), 1, - sym__method_declaration_raising, - STATE(2700), 1, - sym__method_declaration_exceptions, - STATE(1159), 2, + [30033] = 4, + ACTIONS(2752), 1, + aux_sym_generic_typing_token1, + ACTIONS(2754), 1, + aux_sym_generic_typing_token2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [38010] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1310), 1, - aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(2983), 1, - anon_sym_DOT, - STATE(1898), 1, - sym__method_declaration_raising, - STATE(2873), 1, - sym__method_declaration_exceptions, - STATE(1160), 2, + STATE(2035), 3, + sym__typing, + sym_generic_typing, + sym_complete_typing, + [30049] = 6, + ACTIONS(1894), 1, + aux_sym__create_addition_token2, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(2878), 1, + aux_sym_class_declaration_token13, + STATE(1508), 1, + sym_protected_section, + STATE(2891), 1, + sym_private_section, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [38036] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, + [30069] = 6, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(2068), 1, + aux_sym_class_declaration_token13, + STATE(1666), 1, + sym_protected_section, + STATE(2694), 1, + sym_private_section, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [30089] = 6, + ACTIONS(1894), 1, + aux_sym__create_addition_token2, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(2880), 1, + aux_sym_class_declaration_token13, + STATE(1627), 1, + sym_protected_section, + STATE(2750), 1, + sym_private_section, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [30109] = 6, + ACTIONS(1894), 1, + aux_sym__create_addition_token2, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2985), 1, + ACTIONS(2882), 1, aux_sym_class_declaration_token13, - STATE(1828), 1, + STATE(1624), 1, sym_protected_section, - STATE(2117), 1, + STATE(2658), 1, sym_private_section, - STATE(1161), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [38062] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, + [30129] = 6, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2987), 1, + ACTIONS(2884), 1, aux_sym_class_declaration_token13, - STATE(1906), 1, + STATE(1628), 1, sym_protected_section, - STATE(2975), 1, + STATE(2121), 1, sym_private_section, - STATE(1162), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [38088] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, + [30149] = 6, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2989), 1, + ACTIONS(2886), 1, aux_sym_class_declaration_token13, - STATE(1911), 1, + STATE(1738), 1, sym_protected_section, - STATE(3061), 1, + STATE(3083), 1, sym_private_section, - STATE(1163), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [38114] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, + [30169] = 6, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(1872), 1, + ACTIONS(2888), 1, aux_sym_class_declaration_token13, - STATE(1747), 1, + STATE(1597), 1, sym_protected_section, - STATE(2224), 1, + STATE(2785), 1, sym_private_section, - STATE(1164), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [38140] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, + [30189] = 6, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2991), 1, + ACTIONS(2890), 1, aux_sym_class_declaration_token13, - STATE(1758), 1, + STATE(1560), 1, sym_protected_section, - STATE(2913), 1, + STATE(2900), 1, sym_private_section, - STATE(1165), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [38166] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, + [30209] = 6, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2993), 1, + ACTIONS(2892), 1, aux_sym_class_declaration_token13, - STATE(1757), 1, + STATE(1563), 1, sym_protected_section, - STATE(2915), 1, + STATE(2904), 1, sym_private_section, - STATE(1166), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [38192] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, + [30229] = 6, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2995), 1, + ACTIONS(2894), 1, aux_sym_class_declaration_token13, - STATE(1766), 1, + STATE(1605), 1, sym_protected_section, - STATE(2208), 1, + STATE(2779), 1, sym_private_section, - STATE(1167), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [38218] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, + [30249] = 6, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2997), 1, + ACTIONS(2896), 1, aux_sym_class_declaration_token13, - STATE(1824), 1, + STATE(1570), 1, sym_protected_section, - STATE(2134), 1, + STATE(2909), 1, sym_private_section, - STATE(1168), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [38244] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, + [30269] = 6, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2999), 1, + ACTIONS(2054), 1, aux_sym_class_declaration_token13, - STATE(1761), 1, + STATE(1601), 1, sym_protected_section, - STATE(2917), 1, + STATE(2784), 1, sym_private_section, - STATE(1169), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [38270] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, + [30289] = 6, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(1846), 1, + ACTIONS(2050), 1, aux_sym_class_declaration_token13, - STATE(1803), 1, + STATE(1678), 1, sym_protected_section, - STATE(2189), 1, + STATE(2684), 1, sym_private_section, - STATE(1170), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [38296] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(57), 1, - sym_field_symbol_name, - ACTIONS(2755), 1, - sym_name, - STATE(2821), 1, - sym__data_object, - STATE(996), 2, - sym_structured_data_object, - sym_attribute_access_static, - STATE(1171), 2, + [30309] = 6, + ACTIONS(1316), 1, + aux_sym__method_declaration_raising_token1, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(2898), 1, + anon_sym_DOT, + STATE(1754), 1, + sym__method_declaration_raising, + STATE(2442), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [38320] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1840), 1, - aux_sym_class_declaration_token13, - ACTIONS(1842), 1, + [30329] = 6, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - STATE(1833), 1, + ACTIONS(2900), 1, + aux_sym_class_declaration_token13, + STATE(1572), 1, sym_protected_section, - STATE(2100), 1, + STATE(2913), 1, sym_private_section, - STATE(1172), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [38346] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, + [30349] = 6, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(3001), 1, + ACTIONS(2902), 1, aux_sym_class_declaration_token13, - STATE(1784), 1, + STATE(1575), 1, sym_protected_section, - STATE(2957), 1, + STATE(2916), 1, sym_private_section, - STATE(1173), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [38372] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, + [30369] = 6, + ACTIONS(1316), 1, + aux_sym__method_declaration_raising_token1, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(2904), 1, + anon_sym_DOT, + STATE(1846), 1, + sym__method_declaration_raising, + STATE(2261), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [30389] = 6, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(3003), 1, + ACTIONS(2044), 1, aux_sym_class_declaration_token13, - STATE(1857), 1, + STATE(1686), 1, sym_protected_section, - STATE(2298), 1, + STATE(2677), 1, sym_private_section, - STATE(1174), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [38398] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, + [30409] = 6, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(3005), 1, + ACTIONS(2906), 1, aux_sym_class_declaration_token13, - STATE(1812), 1, + STATE(1555), 1, sym_protected_section, - STATE(2158), 1, + STATE(2921), 1, sym_private_section, - STATE(1175), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [38424] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1310), 1, + [30429] = 6, + ACTIONS(1316), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(3007), 1, + ACTIONS(2908), 1, anon_sym_DOT, - STATE(1569), 1, + STATE(1565), 1, sym__method_declaration_raising, - STATE(2711), 1, + STATE(2813), 1, sym__method_declaration_exceptions, - STATE(1176), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [38450] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, + [30449] = 6, + ACTIONS(1316), 1, + aux_sym__method_declaration_raising_token1, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(2910), 1, + anon_sym_DOT, + STATE(1553), 1, + sym__method_declaration_raising, + STATE(2825), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [30469] = 2, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(2686), 5, + anon_sym_DOT, + aux_sym__method_declaration_importing_token1, + aux_sym__method_declaration_exporting_token1, + aux_sym__method_declaration_changing_token1, + aux_sym__method_declaration_exceptions_token1, + [30481] = 6, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(1888), 1, + ACTIONS(2912), 1, aux_sym_class_declaration_token13, - STATE(1635), 1, + STATE(1698), 1, sym_protected_section, - STATE(2792), 1, + STATE(2145), 1, sym_private_section, - STATE(1177), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [38476] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, + [30501] = 6, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2154), 1, + ACTIONS(2914), 1, aux_sym_class_declaration_token13, - STATE(1722), 1, + STATE(1583), 1, sym_protected_section, - STATE(2889), 1, + STATE(2929), 1, sym_private_section, - STATE(1178), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [38502] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, + [30521] = 6, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(3009), 1, + ACTIONS(2916), 1, aux_sym_class_declaration_token13, - STATE(1804), 1, + STATE(1586), 1, sym_protected_section, - STATE(2169), 1, + STATE(2935), 1, sym_private_section, - STATE(1179), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [38528] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, + [30541] = 6, + ACTIONS(1316), 1, + aux_sym__method_declaration_raising_token1, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(2918), 1, + anon_sym_DOT, + STATE(1787), 1, + sym__method_declaration_raising, + STATE(2422), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [30561] = 6, + ACTIONS(1316), 1, + aux_sym__method_declaration_raising_token1, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(2920), 1, + anon_sym_DOT, + STATE(1542), 1, + sym__method_declaration_raising, + STATE(2843), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [30581] = 6, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(3011), 1, + ACTIONS(2922), 1, aux_sym_class_declaration_token13, - STATE(1946), 1, + STATE(1633), 1, sym_protected_section, - STATE(3106), 1, + STATE(2744), 1, sym_private_section, - STATE(1180), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [38554] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2715), 1, - aux_sym_generic_typing_token1, - ACTIONS(2717), 1, - aux_sym_generic_typing_token2, - STATE(515), 1, - sym__typing, - STATE(483), 2, - sym_generic_typing, - sym_complete_typing, - STATE(1181), 2, + [30601] = 6, + ACTIONS(1316), 1, + aux_sym__method_declaration_raising_token1, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(2924), 1, + anon_sym_DOT, + STATE(1538), 1, + sym__method_declaration_raising, + STATE(2848), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [38578] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3013), 1, - sym_name, - ACTIONS(3015), 1, + [30621] = 6, + ACTIONS(1894), 1, + aux_sym__create_addition_token2, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(2926), 1, + aux_sym_class_declaration_token13, + STATE(1626), 1, + sym_protected_section, + STATE(3100), 1, + sym_private_section, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [30641] = 6, + ACTIONS(1316), 1, + aux_sym__method_declaration_raising_token1, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(2928), 1, anon_sym_DOT, - ACTIONS(3017), 1, - aux_sym__method_declaration_raising_token2, - ACTIONS(3019), 1, + STATE(1801), 1, + sym__method_declaration_raising, + STATE(2402), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [30661] = 6, + ACTIONS(1316), 1, + aux_sym__method_declaration_raising_token1, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - STATE(1149), 1, - aux_sym__method_declaration_raising_repeat1, - STATE(1182), 2, + ACTIONS(2930), 1, + anon_sym_DOT, + STATE(1530), 1, + sym__method_declaration_raising, + STATE(2859), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [38604] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, + [30681] = 6, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(3021), 1, + ACTIONS(2932), 1, aux_sym_class_declaration_token13, - STATE(1768), 1, + STATE(1710), 1, sym_protected_section, - STATE(2922), 1, + STATE(2156), 1, sym_private_section, - STATE(1183), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [38630] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, + [30701] = 2, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(2672), 5, + aux_sym__method_declaration_importing_token1, + aux_sym__method_declaration_exporting_token1, + aux_sym__method_declaration_changing_token1, + anon_sym_RPAREN, + aux_sym__explicit_parameter_list_token1, + [30713] = 6, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(3023), 1, + ACTIONS(2934), 1, aux_sym_class_declaration_token13, - STATE(1939), 1, + STATE(1614), 1, sym_protected_section, - STATE(3098), 1, + STATE(2941), 1, sym_private_section, - STATE(1184), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [38656] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, + [30733] = 6, + ACTIONS(1316), 1, + aux_sym__method_declaration_raising_token1, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(2936), 1, + anon_sym_DOT, + STATE(1823), 1, + sym__method_declaration_raising, + STATE(2368), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [30753] = 6, + ACTIONS(1316), 1, + aux_sym__method_declaration_raising_token1, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(2938), 1, + anon_sym_DOT, + STATE(1868), 1, + sym__method_declaration_raising, + STATE(2324), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [30773] = 6, + ACTIONS(1316), 1, + aux_sym__method_declaration_raising_token1, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(2940), 1, + anon_sym_DOT, + STATE(1520), 1, + sym__method_declaration_raising, + STATE(2871), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [30793] = 6, + ACTIONS(2740), 1, + aux_sym_for_all_entries_token1, + ACTIONS(2742), 1, + aux_sym__where_clause_token1, + ACTIONS(2942), 1, + anon_sym_DOT, + STATE(1929), 1, + sym_for_all_entries, + STATE(2323), 1, + sym__where_clause, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [30813] = 6, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(3025), 1, + ACTIONS(2944), 1, aux_sym_class_declaration_token13, - STATE(1769), 1, + STATE(1675), 1, sym_protected_section, - STATE(2926), 1, + STATE(2948), 1, sym_private_section, - STATE(1185), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [38682] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1220), 2, - aux_sym_method_parameters_token1, + [30833] = 6, + ACTIONS(1894), 1, + aux_sym__create_addition_token2, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(2587), 1, + aux_sym_class_declaration_token13, + STATE(1629), 1, + sym_protected_section, + STATE(2748), 1, + sym_private_section, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [30853] = 4, + ACTIONS(55), 1, + sym_field_symbol_name, + ACTIONS(2946), 1, sym_name, - STATE(1186), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1222), 3, + STATE(1282), 3, + sym__data_object, + sym_structured_data_object, + sym_attribute_access_static, + [30869] = 6, + ACTIONS(1316), 1, + aux_sym__method_declaration_raising_token1, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(2948), 1, anon_sym_DOT, - aux_sym__data_object_typing_normal_token5, - anon_sym_COMMA, - [38702] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, + STATE(1516), 1, + sym__method_declaration_raising, + STATE(2880), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [30889] = 6, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(3027), 1, + ACTIONS(2950), 1, aux_sym_class_declaration_token13, - STATE(1624), 1, + STATE(1679), 1, sym_protected_section, - STATE(2776), 1, + STATE(2951), 1, sym_private_section, - STATE(1187), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [38728] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1310), 1, + [30909] = 6, + ACTIONS(1316), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(3029), 1, + ACTIONS(2952), 1, anon_sym_DOT, - STATE(1917), 1, + STATE(1711), 1, sym__method_declaration_raising, - STATE(3090), 1, + STATE(2153), 1, sym__method_declaration_exceptions, - STATE(1188), 2, - sym_eol_comment, - sym_bol_comment, - [38754] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2739), 1, - sym_name, - ACTIONS(2741), 1, - anon_sym_COMMA, - ACTIONS(3031), 1, - aux_sym_chained_structure_declaration_token1, - STATE(1093), 1, - aux_sym_chained_variable_declaration_repeat1, - STATE(1615), 1, - sym_variable, - STATE(1189), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [38780] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2765), 1, + [30929] = 6, + ACTIONS(2846), 1, aux_sym_loop_statement_token3, - ACTIONS(2767), 1, + ACTIONS(2848), 1, aux_sym_line_spec_token1, - ACTIONS(2769), 1, + ACTIONS(2850), 1, aux_sym__read_table_result_token1, - STATE(1551), 1, + STATE(1704), 1, sym_line_spec, - STATE(2021), 1, + STATE(2018), 1, sym__read_table_result, - STATE(1190), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [38806] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, + [30949] = 6, + ACTIONS(1316), 1, + aux_sym__method_declaration_raising_token1, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(2954), 1, + anon_sym_DOT, + STATE(1509), 1, + sym__method_declaration_raising, + STATE(2890), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [30969] = 6, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2170), 1, + ACTIONS(1986), 1, aux_sym_class_declaration_token13, - STATE(1937), 1, + STATE(1729), 1, sym_protected_section, - STATE(3113), 1, + STATE(2176), 1, sym_private_section, - STATE(1191), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [38832] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1310), 1, + [30989] = 6, + ACTIONS(1894), 1, + aux_sym__create_addition_token2, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(2581), 1, + aux_sym_class_declaration_token13, + STATE(1564), 1, + sym_protected_section, + STATE(3105), 1, + sym_private_section, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [31009] = 6, + ACTIONS(1894), 1, + aux_sym__create_addition_token2, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(2956), 1, + aux_sym_class_declaration_token13, + STATE(1747), 1, + sym_protected_section, + STATE(2193), 1, + sym_private_section, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [31029] = 6, + ACTIONS(1316), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(3033), 1, + ACTIONS(2958), 1, anon_sym_DOT, - STATE(1889), 1, + STATE(1858), 1, sym__method_declaration_raising, - STATE(2651), 1, + STATE(2336), 1, sym__method_declaration_exceptions, - STATE(1192), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [38858] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, + [31049] = 6, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(1906), 1, + ACTIONS(1954), 1, aux_sym_class_declaration_token13, - STATE(1609), 1, + STATE(1773), 1, sym_protected_section, - STATE(2771), 1, + STATE(2999), 1, sym_private_section, - STATE(1193), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [38884] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2715), 1, + [31069] = 6, + ACTIONS(1316), 1, + aux_sym__method_declaration_raising_token1, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(2960), 1, + anon_sym_DOT, + STATE(1561), 1, + sym__method_declaration_raising, + STATE(2903), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [31089] = 4, + ACTIONS(2752), 1, aux_sym_generic_typing_token1, - ACTIONS(2717), 1, + ACTIONS(2754), 1, aux_sym_generic_typing_token2, - STATE(2749), 1, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + STATE(2851), 3, sym__typing, - STATE(483), 2, sym_generic_typing, sym_complete_typing, - STATE(1194), 2, + [31105] = 6, + ACTIONS(1894), 1, + aux_sym__create_addition_token2, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(2637), 1, + aux_sym_class_declaration_token13, + STATE(1825), 1, + sym_protected_section, + STATE(2365), 1, + sym_private_section, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [31125] = 6, + ACTIONS(2740), 1, + aux_sym_for_all_entries_token1, + ACTIONS(2742), 1, + aux_sym__where_clause_token1, + ACTIONS(2962), 1, + anon_sym_DOT, + STATE(2029), 1, + sym_for_all_entries, + STATE(2468), 1, + sym__where_clause, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [31145] = 6, + ACTIONS(1894), 1, + aux_sym__create_addition_token2, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(1958), 1, + aux_sym_class_declaration_token13, + STATE(1793), 1, + sym_protected_section, + STATE(2227), 1, + sym_private_section, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [31165] = 6, + ACTIONS(2740), 1, + aux_sym_for_all_entries_token1, + ACTIONS(2742), 1, + aux_sym__where_clause_token1, + ACTIONS(2964), 1, + anon_sym_DOT, + STATE(2042), 1, + sym_for_all_entries, + STATE(2499), 1, + sym__where_clause, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [31185] = 6, + ACTIONS(1316), 1, + aux_sym__method_declaration_raising_token1, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(2966), 1, + anon_sym_DOT, + STATE(1768), 1, + sym__method_declaration_raising, + STATE(3080), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [31205] = 4, + ACTIONS(55), 1, + sym_field_symbol_name, + ACTIONS(2946), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [38908] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, + STATE(2417), 3, + sym__data_object, + sym_structured_data_object, + sym_attribute_access_static, + [31221] = 6, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(3035), 1, + ACTIONS(2968), 1, aux_sym_class_declaration_token13, - STATE(1771), 1, + STATE(1643), 1, sym_protected_section, - STATE(2929), 1, + STATE(2947), 1, sym_private_section, - STATE(1195), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [38934] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, + [31241] = 6, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2186), 1, + ACTIONS(2970), 1, aux_sym_class_declaration_token13, - STATE(1787), 1, + STATE(1761), 1, sym_protected_section, - STATE(2992), 1, + STATE(2986), 1, sym_private_section, - STATE(1196), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [38960] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, + [31261] = 6, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(3037), 1, + ACTIONS(2607), 1, aux_sym_class_declaration_token13, - STATE(1605), 1, + STATE(1606), 1, sym_protected_section, - STATE(2765), 1, + STATE(2778), 1, sym_private_section, - STATE(1197), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [38986] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1310), 1, + [31281] = 6, + ACTIONS(1316), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(3039), 1, + ACTIONS(2972), 1, anon_sym_DOT, - STATE(1904), 1, + STATE(1852), 1, sym__method_declaration_raising, - STATE(2974), 1, + STATE(2339), 1, sym__method_declaration_exceptions, - STATE(1198), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [39012] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1310), 1, + [31301] = 6, + ACTIONS(1316), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(3041), 1, + ACTIONS(2974), 1, anon_sym_DOT, - STATE(1585), 1, + STATE(1873), 1, sym__method_declaration_raising, - STATE(2730), 1, + STATE(2319), 1, sym__method_declaration_exceptions, - STATE(1199), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [39038] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, - aux_sym__create_addition_token2, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(1944), 1, - aux_sym_class_declaration_token13, - STATE(1792), 1, - sym_protected_section, - STATE(2976), 1, - sym_private_section, - STATE(1200), 2, + [31321] = 4, + ACTIONS(2752), 1, + aux_sym_generic_typing_token1, + ACTIONS(2754), 1, + aux_sym_generic_typing_token2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [39064] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, + STATE(2426), 3, + sym__typing, + sym_generic_typing, + sym_complete_typing, + [31337] = 6, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(3043), 1, + ACTIONS(2976), 1, aux_sym_class_declaration_token13, - STATE(1775), 1, + STATE(1829), 1, sym_protected_section, - STATE(2934), 1, + STATE(2253), 1, sym_private_section, - STATE(1201), 2, - sym_eol_comment, - sym_bol_comment, - [39090] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1310), 1, - aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(3045), 1, - anon_sym_DOT, - STATE(1925), 1, - sym__method_declaration_raising, - STATE(3085), 1, - sym__method_declaration_exceptions, - STATE(1202), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [39116] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, + [31357] = 6, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(3047), 1, + ACTIONS(2441), 1, aux_sym_class_declaration_token13, - STATE(1791), 1, + STATE(1750), 1, sym_protected_section, - STATE(2964), 1, + STATE(2984), 1, sym_private_section, - STATE(1203), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [39142] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, + [31377] = 6, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(1882), 1, + ACTIONS(1918), 1, aux_sym_class_declaration_token13, - STATE(1773), 1, + STATE(1820), 1, sym_protected_section, - STATE(2931), 1, + STATE(2367), 1, sym_private_section, - STATE(1204), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [39168] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, + [31397] = 4, + ACTIONS(55), 1, + sym_field_symbol_name, + ACTIONS(2946), 1, + sym_name, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + STATE(2906), 3, + sym__data_object, + sym_structured_data_object, + sym_attribute_access_static, + [31413] = 5, + ACTIONS(2978), 1, + sym_name, + ACTIONS(2983), 1, + aux_sym__method_declaration_raising_token2, + STATE(1177), 1, + aux_sym__method_declaration_raising_repeat1, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(2981), 2, + anon_sym_DOT, + aux_sym__method_declaration_exceptions_token1, + [31431] = 6, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(3049), 1, + ACTIONS(2986), 1, aux_sym_class_declaration_token13, - STATE(1589), 1, + STATE(1746), 1, sym_protected_section, - STATE(2737), 1, + STATE(2981), 1, sym_private_section, - STATE(1205), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [39194] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, + [31451] = 6, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(3051), 1, + ACTIONS(2613), 1, aux_sym_class_declaration_token13, - STATE(1779), 1, + STATE(1620), 1, sym_protected_section, - STATE(2942), 1, + STATE(2759), 1, sym_private_section, - STATE(1206), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [39220] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1310), 1, - aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(3053), 1, - anon_sym_DOT, - STATE(1922), 1, - sym__method_declaration_raising, - STATE(3068), 1, - sym__method_declaration_exceptions, - STATE(1207), 2, - sym_eol_comment, - sym_bol_comment, - [39246] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, + [31471] = 6, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(3055), 1, + ACTIONS(2639), 1, aux_sym_class_declaration_token13, - STATE(1788), 1, + STATE(1712), 1, sym_protected_section, - STATE(2961), 1, + STATE(3093), 1, sym_private_section, - STATE(1208), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [39272] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, + [31491] = 6, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(1926), 1, + ACTIONS(2635), 1, aux_sym_class_declaration_token13, - STATE(1592), 1, + STATE(1615), 1, sym_protected_section, - STATE(2743), 1, + STATE(2767), 1, sym_private_section, - STATE(1209), 2, - sym_eol_comment, - sym_bol_comment, - [39298] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2715), 1, - aux_sym_generic_typing_token1, - ACTIONS(2717), 1, - aux_sym_generic_typing_token2, - STATE(2735), 1, - sym__typing, - STATE(483), 2, - sym_generic_typing, - sym_complete_typing, - STATE(1210), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [39322] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1310), 1, + [31511] = 6, + ACTIONS(1316), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(3057), 1, + ACTIONS(2988), 1, anon_sym_DOT, - STATE(1907), 1, + STATE(1888), 1, sym__method_declaration_raising, - STATE(2970), 1, + STATE(2299), 1, sym__method_declaration_exceptions, - STATE(1211), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [39348] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, - aux_sym__create_addition_token2, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(3059), 1, + [31531] = 6, + ACTIONS(1892), 1, aux_sym_class_declaration_token13, - STATE(1780), 1, - sym_protected_section, - STATE(2948), 1, - sym_private_section, - STATE(1212), 2, - sym_eol_comment, - sym_bol_comment, - [39374] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, + ACTIONS(1894), 1, aux_sym__create_addition_token2, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(3061), 1, - aux_sym_class_declaration_token13, - STATE(1759), 1, + STATE(1579), 1, sym_protected_section, - STATE(2924), 1, + STATE(2956), 1, sym_private_section, - STATE(1213), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [39400] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1310), 1, + [31551] = 6, + ACTIONS(1316), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1312), 1, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(3063), 1, + ACTIONS(2990), 1, anon_sym_DOT, - STATE(1899), 1, + STATE(1587), 1, sym__method_declaration_raising, - STATE(2861), 1, + STATE(2938), 1, sym__method_declaration_exceptions, - STATE(1214), 2, - sym_eol_comment, - sym_bol_comment, - [39426] = 8, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1842), 1, - aux_sym__create_addition_token2, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(3065), 1, - aux_sym_class_declaration_token13, - STATE(1783), 1, - sym_protected_section, - STATE(2954), 1, - sym_private_section, - STATE(1215), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [39452] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1216), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(3067), 4, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_interface_declaration_token2, - aux_sym_variable_declaration_token1, - [39469] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1217), 2, + [31571] = 6, + ACTIONS(1316), 1, + aux_sym__method_declaration_raising_token1, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(2992), 1, + anon_sym_DOT, + STATE(1910), 1, + sym__method_declaration_raising, + STATE(2278), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3069), 4, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_interface_declaration_token2, - aux_sym_variable_declaration_token1, - [39486] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1218), 2, + [31591] = 6, + ACTIONS(1316), 1, + aux_sym__method_declaration_raising_token1, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(2994), 1, + anon_sym_DOT, + STATE(1895), 1, + sym__method_declaration_raising, + STATE(2290), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3071), 4, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_interface_declaration_token2, - aux_sym_variable_declaration_token1, - [39503] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1219), 2, + [31611] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3073), 4, + ACTIONS(2996), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [39520] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1220), 2, + [31622] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3075), 4, + ACTIONS(2998), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [39537] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1221), 2, + [31633] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3077), 4, + ACTIONS(3000), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [39554] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1222), 2, + [31644] = 5, + ACTIONS(3002), 1, + sym_name, + ACTIONS(3005), 1, + aux_sym_chained_structure_declaration_token2, + STATE(1190), 1, + aux_sym_chained_structure_declaration_repeat1, + STATE(1934), 1, + sym_structure_component, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3079), 4, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_interface_declaration_token2, - aux_sym_variable_declaration_token1, - [39571] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1223), 2, + [31661] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3081), 4, + ACTIONS(3007), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [39588] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1224), 2, + [31672] = 5, + ACTIONS(3009), 1, + sym_name, + ACTIONS(3011), 1, + aux_sym_chained_structure_declaration_token2, + STATE(1190), 1, + aux_sym_chained_structure_declaration_repeat1, + STATE(1934), 1, + sym_structure_component, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3083), 4, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_interface_declaration_token2, - aux_sym_variable_declaration_token1, - [39605] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1225), 2, + [31689] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3085), 4, + ACTIONS(3013), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [39622] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1226), 2, + [31700] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3087), 4, + ACTIONS(3015), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [39639] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1227), 2, + [31711] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3089), 4, + ACTIONS(3017), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [39656] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1228), 2, + [31722] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3091), 4, + ACTIONS(3019), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [39673] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1229), 2, + [31733] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3093), 4, + ACTIONS(3021), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [39690] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3095), 1, - aux_sym_class_declaration_token8, - ACTIONS(3097), 1, - aux_sym_class_declaration_token11, - ACTIONS(3099), 1, - aux_sym_class_declaration_token12, - ACTIONS(3101), 1, - anon_sym_DOT, - STATE(1230), 2, - sym_eol_comment, - sym_bol_comment, - [39713] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1231), 2, + [31744] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3103), 4, + ACTIONS(3023), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [39730] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1232), 2, + [31755] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3105), 4, + ACTIONS(3025), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [39747] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1233), 2, + [31766] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3107), 4, + ACTIONS(3027), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [39764] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1234), 2, + [31777] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3109), 4, + ACTIONS(3029), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [39781] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1235), 2, + [31788] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3111), 4, + ACTIONS(3031), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [39798] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1236), 2, + [31799] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3113), 4, + ACTIONS(3033), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [39815] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1237), 2, + [31810] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3115), 4, + ACTIONS(3035), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [39832] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1238), 2, + [31821] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3117), 4, + ACTIONS(3037), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [39849] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1239), 2, + [31832] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3119), 4, + ACTIONS(3039), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [39866] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2799), 1, - anon_sym_COMMA, - ACTIONS(2801), 1, - sym_field_symbol_name, - STATE(1078), 1, - aux_sym_chained_field_symbol_declaration_repeat1, - STATE(1597), 1, - sym_field_symbol, - STATE(1240), 2, - sym_eol_comment, - sym_bol_comment, - [39889] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3121), 1, - sym_name, - ACTIONS(3123), 1, - aux_sym_chained_structure_declaration_token2, - STATE(1346), 1, - aux_sym_chained_structure_declaration_repeat1, - STATE(2066), 1, - sym_structure_component, - STATE(1241), 2, - sym_eol_comment, - sym_bol_comment, - [39912] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3125), 1, - sym_name, - ACTIONS(3129), 1, - aux_sym__data_object_typing_normal_token5, - ACTIONS(3127), 2, - anon_sym_DOT, - anon_sym_COMMA, - STATE(1242), 2, - sym_eol_comment, - sym_bol_comment, - [39933] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1724), 1, - aux_sym_class_declaration_token8, - ACTIONS(1726), 1, - aux_sym_class_declaration_token11, - ACTIONS(1728), 1, - aux_sym_class_declaration_token12, - ACTIONS(1730), 1, - anon_sym_DOT, - STATE(1243), 2, + [31843] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [39956] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1244), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(3131), 4, + ACTIONS(3041), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [39973] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1930), 1, - aux_sym_class_declaration_token8, - ACTIONS(1932), 1, - aux_sym_class_declaration_token11, - ACTIONS(1934), 1, - aux_sym_class_declaration_token12, - ACTIONS(1936), 1, - anon_sym_DOT, - STATE(1245), 2, - sym_eol_comment, - sym_bol_comment, - [39996] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3133), 1, - sym_name, - ACTIONS(3137), 1, - aux_sym__data_object_typing_normal_token5, - ACTIONS(3135), 2, - anon_sym_DOT, - anon_sym_COMMA, - STATE(1246), 2, - sym_eol_comment, - sym_bol_comment, - [40017] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3139), 1, - aux_sym_class_declaration_token5, - ACTIONS(3141), 1, - anon_sym_DOT, - ACTIONS(3143), 1, - aux_sym_complete_typing_token2, - ACTIONS(3145), 1, - aux_sym_loop_statement_token5, - STATE(1247), 2, - sym_eol_comment, - sym_bol_comment, - [40040] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3149), 1, - anon_sym_DOT, - STATE(1248), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(3147), 3, - aux_sym__method_declaration_raising_token2, - aux_sym__method_declaration_exceptions_token1, - sym_name, - [40059] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2607), 1, - aux_sym_class_declaration_token8, - ACTIONS(2609), 1, - aux_sym_class_declaration_token11, - ACTIONS(2611), 1, - aux_sym_class_declaration_token12, - ACTIONS(2613), 1, - anon_sym_DOT, - STATE(1249), 2, - sym_eol_comment, - sym_bol_comment, - [40082] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3151), 1, - aux_sym_class_declaration_token8, - ACTIONS(3153), 1, - aux_sym_class_declaration_token11, - ACTIONS(3155), 1, - aux_sym_class_declaration_token12, - ACTIONS(3157), 1, - anon_sym_DOT, - STATE(1250), 2, - sym_eol_comment, - sym_bol_comment, - [40105] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2218), 1, - aux_sym_class_declaration_token8, - ACTIONS(2220), 1, - aux_sym_class_declaration_token11, - ACTIONS(2222), 1, - aux_sym_class_declaration_token12, - ACTIONS(2224), 1, - anon_sym_DOT, - STATE(1251), 2, - sym_eol_comment, - sym_bol_comment, - [40128] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2112), 1, - aux_sym_class_declaration_token8, - ACTIONS(2114), 1, - aux_sym_class_declaration_token11, - ACTIONS(2116), 1, - aux_sym_class_declaration_token12, - ACTIONS(2118), 1, - anon_sym_DOT, - STATE(1252), 2, - sym_eol_comment, - sym_bol_comment, - [40151] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1992), 1, - aux_sym_class_declaration_token8, - ACTIONS(1994), 1, - aux_sym_class_declaration_token11, - ACTIONS(1996), 1, - aux_sym_class_declaration_token12, - ACTIONS(1998), 1, - anon_sym_DOT, - STATE(1253), 2, - sym_eol_comment, - sym_bol_comment, - [40174] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1894), 1, - aux_sym_class_declaration_token8, - ACTIONS(1896), 1, - aux_sym_class_declaration_token11, - ACTIONS(1898), 1, - aux_sym_class_declaration_token12, - ACTIONS(1900), 1, - anon_sym_DOT, - STATE(1254), 2, - sym_eol_comment, - sym_bol_comment, - [40197] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1860), 1, - aux_sym_class_declaration_token8, - ACTIONS(1862), 1, - aux_sym_class_declaration_token11, - ACTIONS(1864), 1, - aux_sym_class_declaration_token12, - ACTIONS(1866), 1, - anon_sym_DOT, - STATE(1255), 2, + [31854] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [40220] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1256), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(3159), 4, + ACTIONS(3043), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, - aux_sym_variable_declaration_token1, - [40237] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2657), 1, - aux_sym_class_declaration_token8, - ACTIONS(2659), 1, - aux_sym_class_declaration_token11, - ACTIONS(2661), 1, - aux_sym_class_declaration_token12, - ACTIONS(2663), 1, - anon_sym_DOT, - STATE(1257), 2, - sym_eol_comment, - sym_bol_comment, - [40260] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2671), 1, - aux_sym_class_declaration_token8, - ACTIONS(2673), 1, - aux_sym_class_declaration_token11, - ACTIONS(2675), 1, - aux_sym_class_declaration_token12, - ACTIONS(2677), 1, - anon_sym_DOT, - STATE(1258), 2, + aux_sym_variable_declaration_token1, + [31865] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [40283] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3161), 1, + ACTIONS(3045), 4, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_interface_declaration_token2, + aux_sym_variable_declaration_token1, + [31876] = 5, + ACTIONS(2724), 1, aux_sym_class_declaration_token8, - ACTIONS(3163), 1, + ACTIONS(2726), 1, aux_sym_class_declaration_token11, - ACTIONS(3165), 1, + ACTIONS(2728), 1, aux_sym_class_declaration_token12, - ACTIONS(3167), 1, + ACTIONS(2730), 1, anon_sym_DOT, - STATE(1259), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [40306] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3169), 1, - sym_name, - ACTIONS(3172), 1, - anon_sym_DOT, - STATE(2049), 1, - sym_return_code_binding, - STATE(1260), 3, + [31893] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - aux_sym_exception_list_repeat1, - [40327] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1261), 2, + ACTIONS(3047), 4, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_interface_declaration_token2, + aux_sym_variable_declaration_token1, + [31904] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3174), 4, + ACTIONS(3049), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [40344] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1262), 2, + [31915] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3176), 4, + ACTIONS(3051), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [40361] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1263), 2, + [31926] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3178), 4, + ACTIONS(3053), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [40378] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2965), 1, - sym_name, - ACTIONS(2971), 1, - aux_sym__data_object_typing_normal_token5, - ACTIONS(2967), 2, - anon_sym_DOT, - anon_sym_COMMA, - STATE(1264), 2, + [31937] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [40399] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1265), 2, + ACTIONS(3055), 4, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_interface_declaration_token2, + aux_sym_variable_declaration_token1, + [31948] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3180), 4, + ACTIONS(3057), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [40416] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2693), 1, - aux_sym_class_declaration_token8, - ACTIONS(2695), 1, - aux_sym_class_declaration_token11, - ACTIONS(2697), 1, - aux_sym_class_declaration_token12, - ACTIONS(2699), 1, - anon_sym_DOT, - STATE(1266), 2, + [31959] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [40439] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1267), 2, + ACTIONS(3059), 4, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_interface_declaration_token2, + aux_sym_variable_declaration_token1, + [31970] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3182), 4, + ACTIONS(3061), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [40456] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1268), 2, + [31981] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3184), 4, + ACTIONS(3063), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [40473] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1269), 2, + [31992] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3186), 4, + ACTIONS(3065), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [40490] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1270), 2, + [32003] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3188), 4, + ACTIONS(3067), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [40507] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1271), 2, + [32014] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3190), 4, + ACTIONS(3069), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [40524] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1272), 2, + [32025] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3192), 4, + ACTIONS(3071), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [40541] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3194), 1, + [32036] = 5, + ACTIONS(3073), 1, aux_sym_class_declaration_token8, - ACTIONS(3196), 1, + ACTIONS(3075), 1, aux_sym_class_declaration_token11, - ACTIONS(3198), 1, + ACTIONS(3077), 1, aux_sym_class_declaration_token12, - ACTIONS(3200), 1, + ACTIONS(3079), 1, anon_sym_DOT, - STATE(1273), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [40564] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3202), 1, - sym_name, - ACTIONS(3206), 1, - aux_sym__data_object_typing_normal_token5, - ACTIONS(3204), 2, + [32053] = 2, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(654), 4, anon_sym_DOT, + aux_sym_method_parameters_token1, anon_sym_COMMA, - STATE(1274), 2, + aux_sym__data_object_typing_normal_token5, + [32064] = 5, + ACTIONS(2661), 1, + aux_sym_class_declaration_token8, + ACTIONS(2663), 1, + aux_sym_class_declaration_token11, + ACTIONS(2665), 1, + aux_sym_class_declaration_token12, + ACTIONS(2667), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [40585] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1275), 2, + [32081] = 5, + ACTIONS(2010), 1, + aux_sym_class_declaration_token8, + ACTIONS(2012), 1, + aux_sym_class_declaration_token11, + ACTIONS(2014), 1, + aux_sym_class_declaration_token12, + ACTIONS(2016), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3208), 4, + [32098] = 5, + ACTIONS(3009), 1, + sym_name, + ACTIONS(3081), 1, + aux_sym_chained_structure_declaration_token2, + STATE(1190), 1, + aux_sym_chained_structure_declaration_repeat1, + STATE(1934), 1, + sym_structure_component, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [32115] = 2, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(3083), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [40602] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1276), 2, + [32126] = 5, + ACTIONS(3009), 1, + sym_name, + ACTIONS(3085), 1, + aux_sym_chained_structure_declaration_token2, + STATE(1190), 1, + aux_sym_chained_structure_declaration_repeat1, + STATE(1934), 1, + sym_structure_component, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3210), 4, + [32143] = 2, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(3087), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [40619] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1277), 2, + [32154] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3212), 4, + ACTIONS(3089), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [40636] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3214), 1, - sym_name, - ACTIONS(3218), 1, - aux_sym__data_object_typing_normal_token5, - ACTIONS(3216), 2, - anon_sym_DOT, - anon_sym_COMMA, - STATE(1278), 2, - sym_eol_comment, - sym_bol_comment, - [40657] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1279), 2, + [32165] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3220), 4, + ACTIONS(3091), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [40674] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1280), 2, + [32176] = 5, + ACTIONS(3009), 1, + sym_name, + ACTIONS(3093), 1, + aux_sym_chained_structure_declaration_token2, + STATE(1190), 1, + aux_sym_chained_structure_declaration_repeat1, + STATE(1934), 1, + sym_structure_component, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3222), 4, + [32193] = 2, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(3095), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [40691] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1281), 2, + [32204] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3224), 4, + ACTIONS(3097), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [40708] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1282), 2, + [32215] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3226), 4, + ACTIONS(3099), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [40725] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1283), 2, + [32226] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3228), 4, + ACTIONS(3101), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [40742] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1284), 2, + [32237] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3230), 4, + ACTIONS(3103), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [40759] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1285), 2, + [32248] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3232), 4, + ACTIONS(3105), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [40776] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3234), 1, - aux_sym_class_declaration_token8, - ACTIONS(3236), 1, - aux_sym_class_declaration_token11, - ACTIONS(3238), 1, - aux_sym_class_declaration_token12, - ACTIONS(3240), 1, - anon_sym_DOT, - STATE(1286), 2, - sym_eol_comment, - sym_bol_comment, - [40799] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1287), 2, + [32259] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3242), 4, + ACTIONS(3107), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [40816] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1288), 2, + [32270] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3244), 4, + ACTIONS(3109), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [40833] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1289), 2, + [32281] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3246), 4, + ACTIONS(3111), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [40850] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1290), 2, + [32292] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3248), 4, + ACTIONS(3113), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [40867] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1291), 2, + [32303] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3250), 4, + ACTIONS(3115), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [40884] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1292), 2, + [32314] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3252), 4, + ACTIONS(3117), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [40901] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1293), 2, + [32325] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3254), 4, + ACTIONS(3119), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [40918] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1294), 2, + [32336] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3256), 4, + ACTIONS(3121), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [40935] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1295), 2, + [32347] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3258), 4, + ACTIONS(3123), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [40952] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3260), 1, - sym_name, - ACTIONS(3264), 1, - aux_sym__data_object_typing_normal_token5, - ACTIONS(3262), 2, - anon_sym_DOT, - anon_sym_COMMA, - STATE(1296), 2, - sym_eol_comment, - sym_bol_comment, - [40973] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1297), 2, + [32358] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3266), 4, + ACTIONS(3125), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [40990] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1298), 2, + [32369] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3268), 4, + ACTIONS(3127), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [41007] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1299), 2, + [32380] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3270), 4, + ACTIONS(3129), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [41024] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1300), 2, + [32391] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3272), 4, + ACTIONS(3131), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [41041] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1301), 2, + [32402] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3274), 4, + ACTIONS(3133), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [41058] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3276), 1, - aux_sym_class_declaration_token13, - ACTIONS(3278), 1, - aux_sym_method_implementation_token1, - STATE(2041), 1, - sym_method_implementation, - STATE(1302), 3, - sym_eol_comment, - sym_bol_comment, - aux_sym_class_implementation_repeat1, - [41079] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1303), 2, + [32413] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3281), 4, + ACTIONS(3135), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [41096] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1304), 2, + [32424] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3283), 4, + ACTIONS(3137), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [41113] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1305), 2, + [32435] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3285), 4, + ACTIONS(3139), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [41130] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1306), 2, + [32446] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3287), 4, + ACTIONS(3141), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [41147] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1307), 2, + [32457] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3289), 4, + ACTIONS(3143), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [41164] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3291), 1, + [32468] = 5, + ACTIONS(2282), 1, aux_sym_class_declaration_token8, - ACTIONS(3293), 1, + ACTIONS(2284), 1, aux_sym_class_declaration_token11, - ACTIONS(3295), 1, + ACTIONS(2286), 1, aux_sym_class_declaration_token12, - ACTIONS(3297), 1, + ACTIONS(2288), 1, anon_sym_DOT, - STATE(1308), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [41187] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1309), 2, + [32485] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3299), 4, + ACTIONS(3145), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [41204] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1310), 2, + [32496] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3301), 4, + ACTIONS(3147), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [41221] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1311), 2, + [32507] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3303), 4, + ACTIONS(3149), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [41238] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1312), 2, + [32518] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3305), 4, + ACTIONS(3151), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [41255] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1313), 2, + [32529] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3307), 4, + ACTIONS(3153), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [41272] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1314), 2, + [32540] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3309), 4, + ACTIONS(3155), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [41289] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1315), 2, + [32551] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3311), 4, + ACTIONS(3157), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [41306] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1316), 2, + [32562] = 5, + ACTIONS(3159), 1, + aux_sym_class_declaration_token8, + ACTIONS(3161), 1, + aux_sym_class_declaration_token11, + ACTIONS(3163), 1, + aux_sym_class_declaration_token12, + ACTIONS(3165), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3313), 4, + [32579] = 2, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(3167), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [41323] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1317), 2, + [32590] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3315), 4, + ACTIONS(3169), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [41340] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1318), 2, + [32601] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3317), 4, + ACTIONS(3171), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [41357] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3121), 1, + [32612] = 2, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(3173), 4, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_interface_declaration_token2, + aux_sym_variable_declaration_token1, + [32623] = 4, + ACTIONS(3175), 1, sym_name, - ACTIONS(3319), 1, - aux_sym_chained_structure_declaration_token2, - STATE(1346), 1, - aux_sym_chained_structure_declaration_repeat1, - STATE(2066), 1, - sym_structure_component, - STATE(1319), 2, + ACTIONS(3178), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [41380] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1320), 2, + STATE(1273), 2, + sym_return_code_binding, + aux_sym_exception_list_repeat1, + [32638] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3321), 4, + ACTIONS(3180), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [41397] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1321), 2, + [32649] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3323), 4, + ACTIONS(3182), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [41414] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1322), 2, + [32660] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3325), 4, + ACTIONS(3184), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [41431] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1323), 2, + [32671] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3327), 4, + ACTIONS(3186), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [41448] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1324), 2, + [32682] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3329), 4, + ACTIONS(3188), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [41465] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2645), 1, - aux_sym_class_declaration_token8, - ACTIONS(2647), 1, - aux_sym_class_declaration_token11, - ACTIONS(2649), 1, - aux_sym_class_declaration_token12, - ACTIONS(2651), 1, - anon_sym_DOT, - STATE(1325), 2, - sym_eol_comment, - sym_bol_comment, - [41488] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1326), 2, + [32693] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3331), 4, + ACTIONS(3190), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [41505] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1327), 2, + [32704] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3333), 4, + ACTIONS(3192), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [41522] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1328), 2, + [32715] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3335), 4, + ACTIONS(3194), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [41539] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1329), 2, + [32726] = 4, + ACTIONS(3198), 1, + aux_sym_method_parameters_token1, + ACTIONS(3200), 1, + aux_sym__data_object_typing_normal_token5, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(3196), 2, + anon_sym_DOT, + anon_sym_COMMA, + [32741] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3337), 4, + ACTIONS(3202), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [41556] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1330), 2, + [32752] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3339), 4, + ACTIONS(3204), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [41573] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1331), 2, + [32763] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3341), 4, + ACTIONS(3206), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [41590] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3343), 1, - sym_name, - STATE(557), 1, - aux_sym_parameter_list_repeat1, - STATE(629), 1, - sym_parameter_binding, - STATE(2257), 1, - sym_parameter_list, - STATE(1332), 2, + [32774] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [41613] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1333), 2, + ACTIONS(3208), 4, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_interface_declaration_token2, + aux_sym_variable_declaration_token1, + [32785] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3345), 4, + ACTIONS(3210), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [41630] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1334), 2, + [32796] = 4, + ACTIONS(3214), 1, + aux_sym_method_parameters_token1, + ACTIONS(3216), 1, + aux_sym__data_object_typing_normal_token5, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(3212), 2, + anon_sym_DOT, + anon_sym_COMMA, + [32811] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3347), 4, + ACTIONS(3218), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [41647] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1335), 2, + [32822] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3349), 4, + ACTIONS(3220), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [41664] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1336), 2, + [32833] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3351), 4, + ACTIONS(3222), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [41681] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1337), 2, + [32844] = 4, + ACTIONS(3226), 1, + aux_sym_method_parameters_token1, + ACTIONS(3228), 1, + aux_sym__data_object_typing_normal_token5, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(3224), 2, + anon_sym_DOT, + anon_sym_COMMA, + [32859] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3353), 4, + ACTIONS(3230), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [41698] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1338), 2, + [32870] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3355), 4, + ACTIONS(3232), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [41715] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1339), 2, + [32881] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3357), 4, + ACTIONS(3234), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [41732] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1340), 2, + [32892] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3359), 4, + ACTIONS(3236), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [41749] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1341), 2, + [32903] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3361), 4, + ACTIONS(3238), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [41766] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3363), 1, - sym_name, - ACTIONS(3365), 1, - anon_sym_DOT, - STATE(1260), 1, - aux_sym_exception_list_repeat1, - STATE(2049), 1, - sym_return_code_binding, - STATE(1342), 2, + [32914] = 4, + ACTIONS(3242), 1, + aux_sym_method_parameters_token1, + ACTIONS(3244), 1, + aux_sym__data_object_typing_normal_token5, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [41789] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1343), 2, + ACTIONS(3240), 2, + anon_sym_DOT, + anon_sym_COMMA, + [32929] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3367), 4, + ACTIONS(3246), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [41806] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1344), 2, + [32940] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3369), 4, + ACTIONS(3248), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [41823] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1345), 2, + [32951] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3371), 4, + ACTIONS(3250), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [41840] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3373), 1, - sym_name, - ACTIONS(3376), 1, - aux_sym_chained_structure_declaration_token2, - STATE(2066), 1, - sym_structure_component, - STATE(1346), 3, - sym_eol_comment, - sym_bol_comment, - aux_sym_chained_structure_declaration_repeat1, - [41861] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1347), 2, + [32962] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3378), 4, + ACTIONS(3252), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [41878] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1348), 2, + [32973] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3380), 4, + ACTIONS(3254), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [41895] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1349), 2, + [32984] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3382), 4, + ACTIONS(3256), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [41912] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1350), 2, + [32995] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3384), 4, + ACTIONS(3258), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [41929] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1351), 2, + [33006] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3386), 4, + ACTIONS(3260), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [41946] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3388), 1, - sym_name, - ACTIONS(3390), 1, - aux_sym_generic_type_token2, - ACTIONS(3392), 1, - anon_sym_LPAREN2, - ACTIONS(3394), 1, - aux_sym__select_target_token1, - STATE(1352), 2, - sym_eol_comment, - sym_bol_comment, - [41969] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1353), 2, + [33017] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3396), 4, + ACTIONS(3262), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [41986] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1354), 2, + [33028] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3398), 4, + ACTIONS(3264), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [42003] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1355), 2, + [33039] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3400), 4, + ACTIONS(3266), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [42020] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1356), 2, + [33050] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3402), 4, + ACTIONS(3268), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [42037] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1357), 2, + [33061] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3404), 4, + ACTIONS(3270), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [42054] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1358), 2, + [33072] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3406), 4, + ACTIONS(3272), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [42071] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1359), 2, + [33083] = 4, + ACTIONS(3274), 1, + aux_sym_class_declaration_token13, + ACTIONS(3276), 1, + aux_sym_method_implementation_token1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3408), 4, + STATE(1313), 2, + sym_method_implementation, + aux_sym_class_implementation_repeat1, + [33098] = 2, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(3279), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [42088] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1360), 2, + [33109] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3410), 4, + ACTIONS(3281), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [42105] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1361), 2, + [33120] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3412), 4, + ACTIONS(3283), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [42122] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3414), 1, - aux_sym_class_declaration_token5, - ACTIONS(3416), 1, - anon_sym_DOT, - ACTIONS(3418), 1, - aux_sym_complete_typing_token2, - ACTIONS(3420), 1, - aux_sym_loop_statement_token5, - STATE(1362), 2, + [33131] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [42145] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1363), 2, + ACTIONS(3285), 4, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_interface_declaration_token2, + aux_sym_variable_declaration_token1, + [33142] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3422), 4, + ACTIONS(3287), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [42162] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1364), 2, + [33153] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3424), 4, + ACTIONS(3289), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [42179] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1365), 2, + [33164] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3426), 4, + ACTIONS(3291), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [42196] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1366), 2, + [33175] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3428), 4, + ACTIONS(3293), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [42213] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1367), 2, + [33186] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3430), 4, + ACTIONS(3295), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [42230] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1368), 2, + [33197] = 5, + ACTIONS(2694), 1, + aux_sym_class_declaration_token8, + ACTIONS(2696), 1, + aux_sym_class_declaration_token11, + ACTIONS(2698), 1, + aux_sym_class_declaration_token12, + ACTIONS(2700), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3432), 4, + [33214] = 2, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(3297), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [42247] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1369), 2, + [33225] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3434), 4, + ACTIONS(3299), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [42264] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1370), 2, + [33236] = 4, + ACTIONS(3301), 1, + sym_name, + STATE(2314), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + STATE(562), 2, + sym_parameter_binding, + aux_sym_parameter_list_repeat1, + [33251] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3436), 4, + ACTIONS(3303), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [42281] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1371), 2, + [33262] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3438), 4, + ACTIONS(3305), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [42298] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1372), 2, + [33273] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3440), 4, + ACTIONS(3307), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [42315] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1373), 2, + [33284] = 4, + ACTIONS(3309), 1, + sym_name, + ACTIONS(3311), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + STATE(1273), 2, + sym_return_code_binding, + aux_sym_exception_list_repeat1, + [33299] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3442), 4, + ACTIONS(3313), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [42332] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3444), 1, - aux_sym_class_declaration_token13, - ACTIONS(3446), 1, - aux_sym_method_implementation_token1, - STATE(1302), 1, - aux_sym_class_implementation_repeat1, - STATE(2041), 1, - sym_method_implementation, - STATE(1374), 2, + [33310] = 5, + ACTIONS(3315), 1, + aux_sym_class_declaration_token8, + ACTIONS(3317), 1, + aux_sym_class_declaration_token11, + ACTIONS(3319), 1, + aux_sym_class_declaration_token12, + ACTIONS(3321), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [42355] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1375), 2, + [33327] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3448), 4, + ACTIONS(3323), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [42372] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1376), 2, + [33338] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3450), 4, + ACTIONS(3325), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [42389] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1377), 2, + [33349] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3452), 4, + ACTIONS(3327), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [42406] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1378), 2, + [33360] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3454), 4, + ACTIONS(3329), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [42423] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1379), 2, + [33371] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3456), 4, + ACTIONS(3331), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [42440] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1380), 2, + [33382] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3458), 4, + ACTIONS(3333), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [42457] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1381), 2, + [33393] = 5, + ACTIONS(3335), 1, + sym_name, + ACTIONS(3337), 1, + anon_sym_LPAREN, + ACTIONS(3339), 1, + aux_sym_generic_type_token2, + ACTIONS(3341), 1, + aux_sym__select_target_token1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3460), 4, - aux_sym_class_declaration_token8, - aux_sym_class_declaration_token11, - aux_sym_class_declaration_token12, - anon_sym_DOT, - [42474] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1382), 2, + [33410] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3462), 4, + ACTIONS(3343), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [42491] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1383), 2, + [33421] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3464), 4, + ACTIONS(3345), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [42508] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1384), 2, + [33432] = 5, + ACTIONS(3347), 1, + aux_sym_class_declaration_token8, + ACTIONS(3349), 1, + aux_sym_class_declaration_token11, + ACTIONS(3351), 1, + aux_sym_class_declaration_token12, + ACTIONS(3353), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [33449] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3466), 4, + ACTIONS(3355), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [42525] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1385), 2, + [33460] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3468), 4, + ACTIONS(3357), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [42542] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3470), 1, - sym_name, - ACTIONS(3474), 1, - aux_sym__data_object_typing_normal_token5, - ACTIONS(3472), 2, - anon_sym_DOT, - anon_sym_COMMA, - STATE(1386), 2, - sym_eol_comment, - sym_bol_comment, - [42563] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1912), 1, - aux_sym_class_declaration_token8, - ACTIONS(1914), 1, - aux_sym_class_declaration_token11, - ACTIONS(1916), 1, - aux_sym_class_declaration_token12, - ACTIONS(1918), 1, + [33471] = 5, + ACTIONS(3359), 1, + aux_sym_class_declaration_token5, + ACTIONS(3361), 1, anon_sym_DOT, - STATE(1387), 2, + ACTIONS(3363), 1, + aux_sym_complete_typing_token2, + ACTIONS(3365), 1, + aux_sym_loop_statement_token5, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [42586] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1388), 2, + [33488] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3476), 4, + ACTIONS(3367), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [42603] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3478), 1, - sym_name, - ACTIONS(3482), 1, - aux_sym__data_object_typing_normal_token5, - ACTIONS(3480), 2, - anon_sym_DOT, - anon_sym_COMMA, - STATE(1389), 2, - sym_eol_comment, - sym_bol_comment, - [42624] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1390), 2, + [33499] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3484), 4, + ACTIONS(3369), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [42641] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1391), 2, + [33510] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3486), 4, + ACTIONS(3371), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [42658] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3488), 1, - sym_name, - ACTIONS(3491), 1, - anon_sym_RBRACK, - STATE(2019), 1, - sym_comp_spec, - STATE(1392), 3, - aux_sym__table_expression_free_key, - sym_eol_comment, - sym_bol_comment, - [42679] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1393), 2, + [33521] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3493), 4, + ACTIONS(3373), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [42696] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1394), 2, + [33532] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3495), 4, + ACTIONS(3375), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [42713] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3497), 1, - sym_name, - STATE(621), 1, - aux_sym_parameter_list_exporting_repeat1, - STATE(1003), 1, - sym_parameter_binding_exporting, - STATE(1119), 1, - sym_parameter_list_exporting, - STATE(1395), 2, - sym_eol_comment, - sym_bol_comment, - [42736] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1396), 2, + [33543] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3499), 4, + ACTIONS(3377), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [42753] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1397), 2, + [33554] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3501), 4, + ACTIONS(3379), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [42770] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3343), 1, - sym_name, - STATE(557), 1, - aux_sym_parameter_list_repeat1, - STATE(629), 1, - sym_parameter_binding, - STATE(1119), 1, - sym_parameter_list, - STATE(1398), 2, + [33565] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [42793] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3503), 1, - aux_sym_try_catch_statement_token2, - ACTIONS(3505), 1, - aux_sym_catch_statement_token1, - STATE(2015), 1, - sym_catch_statement, - STATE(1399), 3, + ACTIONS(3381), 4, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_interface_declaration_token2, + aux_sym_variable_declaration_token1, + [33576] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - aux_sym_try_catch_statement_repeat1, - [42814] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1400), 2, + ACTIONS(3383), 4, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_interface_declaration_token2, + aux_sym_variable_declaration_token1, + [33587] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3508), 4, + ACTIONS(3385), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [42831] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1401), 2, + [33598] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3510), 4, + ACTIONS(3387), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [42848] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1402), 2, + [33609] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3512), 4, + ACTIONS(3389), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [42865] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3514), 1, - sym_name, - ACTIONS(3518), 1, - aux_sym__data_object_typing_normal_token5, - ACTIONS(3516), 2, + [33620] = 5, + ACTIONS(2708), 1, + aux_sym_class_declaration_token8, + ACTIONS(2710), 1, + aux_sym_class_declaration_token11, + ACTIONS(2712), 1, + aux_sym_class_declaration_token12, + ACTIONS(2714), 1, anon_sym_DOT, - anon_sym_COMMA, - STATE(1403), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [42886] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3520), 1, - aux_sym_try_catch_statement_token2, - ACTIONS(3522), 1, - aux_sym_catch_statement_token1, - STATE(1399), 1, - aux_sym_try_catch_statement_repeat1, - STATE(2015), 1, - sym_catch_statement, - STATE(1404), 2, + [33637] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [42909] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1405), 2, + ACTIONS(3391), 4, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_interface_declaration_token2, + aux_sym_variable_declaration_token1, + [33648] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3524), 4, + ACTIONS(3393), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [42926] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1406), 2, + [33659] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3526), 4, + ACTIONS(3395), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [42943] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1407), 2, + [33670] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3528), 4, + ACTIONS(3397), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [42960] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3530), 1, - sym_name, - ACTIONS(3534), 1, - aux_sym__data_object_typing_normal_token5, - ACTIONS(3532), 2, - anon_sym_DOT, - anon_sym_COMMA, - STATE(1408), 2, + [33681] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [42981] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1409), 2, + ACTIONS(3399), 4, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_interface_declaration_token2, + aux_sym_variable_declaration_token1, + [33692] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3536), 4, + ACTIONS(3401), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [42998] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1410), 2, + [33703] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3538), 4, + ACTIONS(3403), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [43015] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1411), 2, + [33714] = 5, + ACTIONS(2716), 1, + aux_sym_class_declaration_token8, + ACTIONS(2718), 1, + aux_sym_class_declaration_token11, + ACTIONS(2720), 1, + aux_sym_class_declaration_token12, + ACTIONS(2722), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [33731] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3540), 4, + ACTIONS(3405), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [43032] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1412), 2, + [33742] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3542), 4, + ACTIONS(3407), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [43049] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1413), 2, + [33753] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3544), 4, + ACTIONS(3409), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [43066] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1414), 2, + [33764] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3546), 4, + ACTIONS(3411), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [43083] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1415), 2, + [33775] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3548), 4, + ACTIONS(3413), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [43100] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1416), 2, + [33786] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3550), 4, + ACTIONS(3415), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [43117] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1417), 2, + [33797] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3552), 4, + ACTIONS(3417), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [43134] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1418), 2, + [33808] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3554), 4, + ACTIONS(3419), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [43151] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1419), 2, + [33819] = 5, + ACTIONS(1926), 1, + aux_sym_class_declaration_token8, + ACTIONS(1928), 1, + aux_sym_class_declaration_token11, + ACTIONS(1930), 1, + aux_sym_class_declaration_token12, + ACTIONS(1932), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3556), 4, + [33836] = 2, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(3421), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [43168] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1420), 2, + [33847] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3558), 4, + ACTIONS(3423), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [43185] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1421), 2, + [33858] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3560), 4, + ACTIONS(3425), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [43202] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1422), 2, + [33869] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3562), 4, + ACTIONS(3427), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [43219] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1423), 2, + [33880] = 5, + ACTIONS(1940), 1, + aux_sym_class_declaration_token8, + ACTIONS(1942), 1, + aux_sym_class_declaration_token11, + ACTIONS(1944), 1, + aux_sym_class_declaration_token12, + ACTIONS(1946), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [33897] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3564), 4, + ACTIONS(3429), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [43236] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1424), 2, + [33908] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3566), 4, + ACTIONS(3431), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [43253] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1425), 2, + [33919] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3568), 4, + ACTIONS(3433), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [43270] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1426), 2, + [33930] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3570), 4, + ACTIONS(3435), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [43287] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1427), 2, + [33941] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3572), 4, + ACTIONS(3437), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [43304] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1428), 2, + [33952] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3574), 4, + ACTIONS(3439), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [43321] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1429), 2, + [33963] = 5, + ACTIONS(3441), 1, + aux_sym_class_declaration_token8, + ACTIONS(3443), 1, + aux_sym_class_declaration_token11, + ACTIONS(3445), 1, + aux_sym_class_declaration_token12, + ACTIONS(3447), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [33980] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3576), 4, + ACTIONS(3449), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [43338] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1430), 2, + [33991] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3578), 4, + ACTIONS(3451), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [43355] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1431), 2, + [34002] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3580), 4, + ACTIONS(3453), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [43372] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1432), 2, + [34013] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3582), 4, + ACTIONS(3455), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [43389] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1433), 2, + [34024] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3584), 4, + ACTIONS(3457), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [43406] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1434), 2, + [34035] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3586), 4, + ACTIONS(3459), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [43423] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1435), 2, + [34046] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3588), 4, + ACTIONS(3461), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [43440] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1436), 2, + [34057] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3590), 4, + ACTIONS(3463), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [43457] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1437), 2, + [34068] = 4, + ACTIONS(3465), 1, + aux_sym_class_declaration_token13, + ACTIONS(3467), 1, + aux_sym_method_implementation_token1, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + STATE(1313), 2, + sym_method_implementation, + aux_sym_class_implementation_repeat1, + [34083] = 5, + ACTIONS(2653), 1, + aux_sym_class_declaration_token8, + ACTIONS(2655), 1, + aux_sym_class_declaration_token11, + ACTIONS(2657), 1, + aux_sym_class_declaration_token12, + ACTIONS(2659), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [34100] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3592), 4, + ACTIONS(3469), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [43474] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1438), 2, + [34111] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3594), 4, + ACTIONS(3471), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [43491] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3596), 1, - sym_name, - ACTIONS(3598), 1, - aux_sym_complete_typing_token1, - ACTIONS(3600), 1, - aux_sym_generic_type_token1, - STATE(476), 1, - sym_generic_type, - STATE(1439), 2, + [34122] = 5, + ACTIONS(3473), 1, + aux_sym_class_declaration_token5, + ACTIONS(3475), 1, + anon_sym_DOT, + ACTIONS(3477), 1, + aux_sym_complete_typing_token2, + ACTIONS(3479), 1, + aux_sym_loop_statement_token5, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [43514] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1440), 2, + [34139] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3602), 4, + ACTIONS(3481), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [43531] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1441), 2, + [34150] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3604), 4, + ACTIONS(3483), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [43548] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1442), 2, + [34161] = 5, + ACTIONS(1964), 1, + aux_sym_class_declaration_token8, + ACTIONS(1966), 1, + aux_sym_class_declaration_token11, + ACTIONS(1968), 1, + aux_sym_class_declaration_token12, + ACTIONS(1970), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [34178] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3606), 4, + ACTIONS(3485), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [43565] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1443), 2, + [34189] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3608), 4, + ACTIONS(3487), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [43582] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1444), 2, + [34200] = 5, + ACTIONS(1742), 1, + aux_sym_class_declaration_token8, + ACTIONS(1744), 1, + aux_sym_class_declaration_token11, + ACTIONS(1746), 1, + aux_sym_class_declaration_token12, + ACTIONS(1748), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3610), 4, + [34217] = 2, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(3489), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [43599] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1445), 2, + [34228] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3612), 4, + ACTIONS(3491), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [43616] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1446), 2, + [34239] = 2, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(3493), 4, + aux_sym_class_declaration_token8, + aux_sym_class_declaration_token11, + aux_sym_class_declaration_token12, + anon_sym_DOT, + [34250] = 4, + ACTIONS(3467), 1, + aux_sym_method_implementation_token1, + ACTIONS(3495), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + STATE(1396), 2, + sym_method_implementation, + aux_sym_class_implementation_repeat1, + [34265] = 4, + ACTIONS(91), 1, + aux_sym_catch_statement_token1, + ACTIONS(3497), 1, + aux_sym_try_catch_statement_token2, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + STATE(1419), 2, + sym_catch_statement, + aux_sym_try_catch_statement_repeat1, + [34280] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3614), 4, + ACTIONS(3499), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [43633] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1447), 2, + [34291] = 4, + ACTIONS(91), 1, + aux_sym_catch_statement_token1, + ACTIONS(3497), 1, + aux_sym_try_catch_statement_token2, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + STATE(1426), 2, + sym_catch_statement, + aux_sym_try_catch_statement_repeat1, + [34306] = 5, + ACTIONS(1900), 1, + aux_sym_class_declaration_token8, + ACTIONS(1902), 1, + aux_sym_class_declaration_token11, + ACTIONS(1904), 1, + aux_sym_class_declaration_token12, + ACTIONS(1906), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [34323] = 4, + ACTIONS(3467), 1, + aux_sym_method_implementation_token1, + ACTIONS(3501), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + STATE(1422), 2, + sym_method_implementation, + aux_sym_class_implementation_repeat1, + [34338] = 4, + ACTIONS(3301), 1, + sym_name, + STATE(2453), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + STATE(562), 2, + sym_parameter_binding, + aux_sym_parameter_list_repeat1, + [34353] = 5, + ACTIONS(3503), 1, + aux_sym_class_declaration_token8, + ACTIONS(3505), 1, + aux_sym_class_declaration_token11, + ACTIONS(3507), 1, + aux_sym_class_declaration_token12, + ACTIONS(3509), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [34370] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3616), 4, + ACTIONS(3511), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [43650] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1448), 2, + [34381] = 4, + ACTIONS(91), 1, + aux_sym_catch_statement_token1, + ACTIONS(3513), 1, + aux_sym_try_catch_statement_token2, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + STATE(1426), 2, + sym_catch_statement, + aux_sym_try_catch_statement_repeat1, + [34396] = 5, + ACTIONS(3515), 1, + sym_name, + ACTIONS(3518), 1, + anon_sym_RBRACK, + STATE(1420), 1, + aux_sym__table_expression_free_key, + STATE(2044), 1, + sym_comp_spec, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [34413] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3618), 4, + ACTIONS(3520), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [43667] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1449), 2, + [34424] = 4, + ACTIONS(3467), 1, + aux_sym_method_implementation_token1, + ACTIONS(3522), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + STATE(1313), 2, + sym_method_implementation, + aux_sym_class_implementation_repeat1, + [34439] = 4, + ACTIONS(3301), 1, + sym_name, + STATE(2469), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + STATE(562), 2, + sym_parameter_binding, + aux_sym_parameter_list_repeat1, + [34454] = 4, + ACTIONS(3524), 1, + sym_name, + STATE(1128), 1, + sym_parameter_list_exporting, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + STATE(613), 2, + sym_parameter_binding_exporting, + aux_sym_parameter_list_exporting_repeat1, + [34469] = 4, + ACTIONS(3301), 1, + sym_name, + STATE(1128), 1, + sym_parameter_list, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + STATE(562), 2, + sym_parameter_binding, + aux_sym_parameter_list_repeat1, + [34484] = 4, + ACTIONS(3526), 1, + aux_sym_try_catch_statement_token2, + ACTIONS(3528), 1, + aux_sym_catch_statement_token1, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + STATE(1426), 2, + sym_catch_statement, + aux_sym_try_catch_statement_repeat1, + [34499] = 4, + ACTIONS(91), 1, + aux_sym_catch_statement_token1, + ACTIONS(3531), 1, + aux_sym_try_catch_statement_token2, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + STATE(1426), 2, + sym_catch_statement, + aux_sym_try_catch_statement_repeat1, + [34514] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3620), 4, + ACTIONS(3533), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [43684] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1450), 2, + [34525] = 4, + ACTIONS(3537), 1, + aux_sym_method_parameters_token1, + ACTIONS(3539), 1, + aux_sym__data_object_typing_normal_token5, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3622), 4, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_interface_declaration_token2, - aux_sym_variable_declaration_token1, - [43701] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1451), 2, + ACTIONS(3535), 2, + anon_sym_DOT, + anon_sym_COMMA, + [34540] = 4, + ACTIONS(3543), 1, + aux_sym_method_parameters_token1, + ACTIONS(3545), 1, + aux_sym__data_object_typing_normal_token5, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3624), 4, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_interface_declaration_token2, - aux_sym_variable_declaration_token1, - [43718] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1452), 2, + ACTIONS(3541), 2, + anon_sym_DOT, + anon_sym_COMMA, + [34555] = 4, + ACTIONS(3301), 1, + sym_name, + STATE(2443), 1, + sym_parameter_list, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3626), 4, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_interface_declaration_token2, - aux_sym_variable_declaration_token1, - [43735] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1453), 2, + STATE(562), 2, + sym_parameter_binding, + aux_sym_parameter_list_repeat1, + [34570] = 5, + ACTIONS(1724), 1, + aux_sym_class_declaration_token8, + ACTIONS(1726), 1, + aux_sym_class_declaration_token11, + ACTIONS(1728), 1, + aux_sym_class_declaration_token12, + ACTIONS(1730), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3628), 4, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_interface_declaration_token2, - aux_sym_variable_declaration_token1, - [43752] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1454), 2, + [34587] = 3, + ACTIONS(3547), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3630), 4, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_interface_declaration_token2, - aux_sym_variable_declaration_token1, - [43769] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1455), 2, + ACTIONS(3549), 3, + anon_sym_DOT, + aux_sym__method_declaration_raising_token2, + aux_sym__method_declaration_exceptions_token1, + [34600] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3632), 4, + ACTIONS(3551), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [43786] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1456), 2, + [34611] = 4, + ACTIONS(3301), 1, + sym_name, + STATE(1140), 1, + sym_parameter_list, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3634), 4, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_interface_declaration_token2, - aux_sym_variable_declaration_token1, - [43803] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1457), 2, + STATE(562), 2, + sym_parameter_binding, + aux_sym_parameter_list_repeat1, + [34626] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3636), 4, + ACTIONS(3553), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [43820] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1458), 2, + [34637] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3638), 4, + ACTIONS(3555), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [43837] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1459), 2, + [34648] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3640), 4, + ACTIONS(3557), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [43854] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1460), 2, + [34659] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3642), 4, + ACTIONS(3559), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [43871] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1461), 2, + [34670] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3644), 4, + ACTIONS(3561), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [43888] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1462), 2, + [34681] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3646), 4, + ACTIONS(3563), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [43905] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1463), 2, + [34692] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3648), 4, + ACTIONS(3565), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [43922] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1464), 2, + [34703] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3650), 4, + ACTIONS(3567), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [43939] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1465), 2, + [34714] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3652), 4, + ACTIONS(3569), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [43956] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1466), 2, + [34725] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3654), 4, + ACTIONS(3571), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [43973] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1467), 2, + [34736] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3656), 4, + ACTIONS(3573), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [43990] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1468), 2, + [34747] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3658), 4, + ACTIONS(3575), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [44007] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1469), 2, + [34758] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3660), 4, + ACTIONS(3577), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [44024] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1470), 2, + [34769] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3662), 4, + ACTIONS(3579), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [44041] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1471), 2, + [34780] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3664), 4, + ACTIONS(3581), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [44058] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1472), 2, + [34791] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3666), 4, + ACTIONS(3583), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [44075] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1473), 2, + [34802] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3668), 4, + ACTIONS(3585), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [44092] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1474), 2, + [34813] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3670), 4, + ACTIONS(3587), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [44109] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1475), 2, + [34824] = 5, + ACTIONS(3589), 1, + sym_name, + ACTIONS(3591), 1, + anon_sym_RBRACK, + STATE(1420), 1, + aux_sym__table_expression_free_key, + STATE(2044), 1, + sym_comp_spec, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3672), 4, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_interface_declaration_token2, - aux_sym_variable_declaration_token1, - [44126] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1476), 2, + [34841] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3674), 4, + ACTIONS(3593), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [44143] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1477), 2, + [34852] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3676), 4, + ACTIONS(3595), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [44160] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1478), 2, + [34863] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3678), 4, + ACTIONS(3597), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [44177] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1479), 2, + [34874] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3680), 4, + ACTIONS(3599), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [44194] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1480), 2, + [34885] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3682), 4, + ACTIONS(3601), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [44211] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1481), 2, + [34896] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3684), 4, + ACTIONS(3603), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [44228] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1482), 2, + [34907] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3686), 4, + ACTIONS(3605), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [44245] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1483), 2, + [34918] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3688), 4, + ACTIONS(3607), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [44262] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1484), 2, + [34929] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3690), 4, + ACTIONS(3609), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [44279] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1485), 2, + [34940] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3692), 4, + ACTIONS(3611), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [44296] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1486), 2, + [34951] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3694), 4, + ACTIONS(3613), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [44313] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1487), 2, + [34962] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3696), 4, + ACTIONS(3615), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [44330] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1488), 2, + [34973] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3698), 4, + ACTIONS(3617), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [44347] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1489), 2, + [34984] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3700), 4, + ACTIONS(3619), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [44364] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1490), 2, + [34995] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3702), 4, + ACTIONS(3621), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [44381] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1491), 2, + [35006] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3704), 4, + ACTIONS(3623), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [44398] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1698), 1, - aux_sym_class_declaration_token8, - ACTIONS(1700), 1, - aux_sym_class_declaration_token11, - ACTIONS(1702), 1, - aux_sym_class_declaration_token12, - ACTIONS(1704), 1, - anon_sym_DOT, - STATE(1492), 2, - sym_eol_comment, - sym_bol_comment, - [44421] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1493), 2, + [35017] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3706), 4, + ACTIONS(3625), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [44438] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1494), 2, + [35028] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3708), 4, + ACTIONS(3627), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [44455] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1495), 2, + [35039] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3710), 4, + ACTIONS(3629), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [44472] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1496), 2, + [35050] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3712), 4, + ACTIONS(3631), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [44489] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3522), 1, - aux_sym_catch_statement_token1, - ACTIONS(3714), 1, - aux_sym_try_catch_statement_token2, - STATE(1404), 1, - aux_sym_try_catch_statement_repeat1, - STATE(2015), 1, - sym_catch_statement, - STATE(1497), 2, - sym_eol_comment, - sym_bol_comment, - [44512] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1498), 2, + [35061] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3716), 4, + ACTIONS(3633), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [44529] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1499), 2, + [35072] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3718), 4, + ACTIONS(3635), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [44546] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1500), 2, + [35083] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3720), 4, + ACTIONS(3637), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [44563] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1501), 2, + [35094] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3722), 4, + ACTIONS(3639), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [44580] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1502), 2, + [35105] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3724), 4, + ACTIONS(3641), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [44597] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1503), 2, + [35116] = 5, + ACTIONS(3643), 1, + sym_name, + ACTIONS(3645), 1, + aux_sym_complete_typing_token1, + ACTIONS(3647), 1, + aux_sym_generic_type_token1, + STATE(495), 1, + sym_generic_type, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3726), 4, + [35133] = 2, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(3649), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [44614] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1504), 2, + [35144] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3728), 4, + ACTIONS(3651), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [44631] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1505), 2, + [35155] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3730), 4, + ACTIONS(3653), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [44648] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1506), 2, + [35166] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3732), 4, + ACTIONS(3655), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [44665] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1507), 2, + [35177] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3734), 4, + ACTIONS(3657), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [44682] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1508), 2, + [35188] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3736), 4, + ACTIONS(3659), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [44699] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3343), 1, - sym_name, - STATE(557), 1, - aux_sym_parameter_list_repeat1, - STATE(629), 1, - sym_parameter_binding, - STATE(2482), 1, - sym_parameter_list, - STATE(1509), 2, - sym_eol_comment, - sym_bol_comment, - [44722] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1510), 2, + [35199] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3738), 4, + ACTIONS(3661), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [44739] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3740), 1, - sym_name, - ACTIONS(3742), 1, - anon_sym_RBRACK, - STATE(1392), 1, - aux_sym__table_expression_free_key, - STATE(2019), 1, - sym_comp_spec, - STATE(1511), 2, + [35210] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [44762] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1512), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(3744), 4, + ACTIONS(3663), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [44779] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3446), 1, - aux_sym_method_implementation_token1, - ACTIONS(3746), 1, - aux_sym_class_declaration_token13, - STATE(1302), 1, - aux_sym_class_implementation_repeat1, - STATE(2041), 1, - sym_method_implementation, - STATE(1513), 2, - sym_eol_comment, - sym_bol_comment, - [44802] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1514), 2, + [35221] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3748), 4, + ACTIONS(3665), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [44819] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1515), 2, + [35232] = 4, + ACTIONS(91), 1, + aux_sym_catch_statement_token1, + ACTIONS(3667), 1, + aux_sym_try_catch_statement_token2, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + STATE(1427), 2, + sym_catch_statement, + aux_sym_try_catch_statement_repeat1, + [35247] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3750), 4, + ACTIONS(3669), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [44836] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1516), 2, + [35258] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3752), 4, + ACTIONS(3671), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [44853] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2799), 1, - anon_sym_COMMA, - ACTIONS(2801), 1, - sym_field_symbol_name, - STATE(1084), 1, - aux_sym_chained_field_symbol_declaration_repeat1, - STATE(1597), 1, - sym_field_symbol, - STATE(1517), 2, - sym_eol_comment, - sym_bol_comment, - [44876] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1518), 2, + [35269] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3754), 4, + ACTIONS(3673), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [44893] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1519), 2, + [35280] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3756), 4, + ACTIONS(3675), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [44910] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3760), 1, - anon_sym_DOT, - STATE(1520), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(3758), 3, - aux_sym__method_declaration_raising_token2, - aux_sym__method_declaration_exceptions_token1, - sym_name, - [44929] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1521), 2, + [35291] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3762), 4, + ACTIONS(3677), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [44946] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3343), 1, - sym_name, - STATE(557), 1, - aux_sym_parameter_list_repeat1, - STATE(629), 1, - sym_parameter_binding, - STATE(1104), 1, - sym_parameter_list, - STATE(1522), 2, + [35302] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [44969] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1523), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(3764), 4, + ACTIONS(3679), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [44986] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1524), 2, + [35313] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3766), 4, + ACTIONS(3681), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [45003] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3522), 1, + [35324] = 4, + ACTIONS(91), 1, aux_sym_catch_statement_token1, - ACTIONS(3768), 1, + ACTIONS(3667), 1, aux_sym_try_catch_statement_token2, - STATE(1399), 1, - aux_sym_try_catch_statement_repeat1, - STATE(2015), 1, - sym_catch_statement, - STATE(1525), 2, - sym_eol_comment, - sym_bol_comment, - [45026] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1526), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3770), 4, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_interface_declaration_token2, - aux_sym_variable_declaration_token1, - [45043] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1527), 2, + STATE(1426), 2, + sym_catch_statement, + aux_sym_try_catch_statement_repeat1, + [35339] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3772), 4, + ACTIONS(3683), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [45060] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1528), 2, + [35350] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3774), 4, + ACTIONS(3685), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [45077] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1529), 2, + [35361] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3776), 4, + ACTIONS(3687), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [45094] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1530), 2, + [35372] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3778), 4, + ACTIONS(3689), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [45111] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3343), 1, - sym_name, - STATE(557), 1, - aux_sym_parameter_list_repeat1, - STATE(629), 1, - sym_parameter_binding, - STATE(2361), 1, - sym_parameter_list, - STATE(1531), 2, - sym_eol_comment, - sym_bol_comment, - [45134] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3343), 1, - sym_name, - STATE(557), 1, - aux_sym_parameter_list_repeat1, - STATE(629), 1, - sym_parameter_binding, - STATE(2467), 1, - sym_parameter_list, - STATE(1532), 2, - sym_eol_comment, - sym_bol_comment, - [45157] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3121), 1, - sym_name, - ACTIONS(3780), 1, - aux_sym_chained_structure_declaration_token2, - STATE(1346), 1, - aux_sym_chained_structure_declaration_repeat1, - STATE(2066), 1, - sym_structure_component, - STATE(1533), 2, - sym_eol_comment, - sym_bol_comment, - [45180] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1534), 2, + [35383] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3782), 4, + ACTIONS(3691), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [45197] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3446), 1, - aux_sym_method_implementation_token1, - ACTIONS(3784), 1, + [35394] = 4, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(2880), 1, aux_sym_class_declaration_token13, - STATE(1513), 1, - aux_sym_class_implementation_repeat1, - STATE(2041), 1, - sym_method_implementation, - STATE(1535), 2, + STATE(2750), 1, + sym_private_section, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [45220] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3121), 1, + [35408] = 4, + ACTIONS(3693), 1, sym_name, - ACTIONS(3786), 1, - aux_sym_chained_structure_declaration_token2, - STATE(1346), 1, - aux_sym_chained_structure_declaration_repeat1, - STATE(2066), 1, - sym_structure_component, - STATE(1536), 2, - sym_eol_comment, - sym_bol_comment, - [45243] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3522), 1, - aux_sym_catch_statement_token1, - ACTIONS(3788), 1, - aux_sym_try_catch_statement_token2, - STATE(1399), 1, - aux_sym_try_catch_statement_repeat1, - STATE(2015), 1, - sym_catch_statement, - STATE(1537), 2, - sym_eol_comment, - sym_bol_comment, - [45266] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3522), 1, - aux_sym_catch_statement_token1, - ACTIONS(3714), 1, - aux_sym_try_catch_statement_token2, - STATE(1399), 1, - aux_sym_try_catch_statement_repeat1, - STATE(2015), 1, - sym_catch_statement, - STATE(1538), 2, - sym_eol_comment, - sym_bol_comment, - [45289] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3522), 1, - aux_sym_catch_statement_token1, - ACTIONS(3788), 1, - aux_sym_try_catch_statement_token2, - STATE(1525), 1, - aux_sym_try_catch_statement_repeat1, - STATE(2015), 1, - sym_catch_statement, - STATE(1539), 2, - sym_eol_comment, - sym_bol_comment, - [45312] = 7, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3446), 1, - aux_sym_method_implementation_token1, - ACTIONS(3790), 1, - aux_sym_class_declaration_token13, - STATE(1374), 1, - aux_sym_class_implementation_repeat1, - STATE(2041), 1, - sym_method_implementation, - STATE(1540), 2, - sym_eol_comment, - sym_bol_comment, - [45335] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(3792), 1, - anon_sym_DOT, - STATE(2277), 1, - sym__method_declaration_exceptions, - STATE(1541), 2, - sym_eol_comment, - sym_bol_comment, - [45355] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(3794), 1, - anon_sym_DOT, - STATE(2215), 1, - sym__method_declaration_exceptions, - STATE(1542), 2, - sym_eol_comment, - sym_bol_comment, - [45375] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3796), 1, - aux_sym_loop_statement_token3, - ACTIONS(3798), 1, - aux_sym__select_target_token3, - STATE(1071), 1, - sym__select_target, - STATE(1543), 2, - sym_eol_comment, - sym_bol_comment, - [45395] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(3800), 1, - anon_sym_DOT, - STATE(2211), 1, - sym__method_declaration_exceptions, - STATE(1544), 2, - sym_eol_comment, - sym_bol_comment, - [45415] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(3802), 1, - anon_sym_DOT, - STATE(2204), 1, - sym__method_declaration_exceptions, - STATE(1545), 2, - sym_eol_comment, - sym_bol_comment, - [45435] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(3804), 1, + ACTIONS(3695), 1, anon_sym_DOT, - STATE(3033), 1, - sym__method_declaration_exceptions, - STATE(1546), 2, - sym_eol_comment, - sym_bol_comment, - [45455] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1547), 2, + STATE(1824), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3806), 3, - aux_sym_class_declaration_token3, - aux_sym__create_addition_token2, + [35422] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - [45471] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(3808), 1, - anon_sym_DOT, - STATE(2201), 1, - sym__method_declaration_exceptions, - STATE(1548), 2, - sym_eol_comment, - sym_bol_comment, - [45491] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(3810), 1, - anon_sym_DOT, - STATE(3036), 1, - sym__method_declaration_exceptions, - STATE(1549), 2, + ACTIONS(2902), 1, + aux_sym_class_declaration_token13, + STATE(2916), 1, + sym_private_section, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [45511] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(3812), 1, - anon_sym_DOT, - STATE(3023), 1, - sym__method_declaration_exceptions, - STATE(1550), 2, + [35436] = 4, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(3697), 1, + aux_sym_class_declaration_token13, + STATE(2124), 1, + sym_private_section, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [45531] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2765), 1, - aux_sym_loop_statement_token3, - ACTIONS(2769), 1, - aux_sym__read_table_result_token1, - STATE(2471), 1, - sym__read_table_result, - STATE(1551), 2, + [35450] = 4, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(3699), 1, + aux_sym_class_declaration_token13, + STATE(2914), 1, + sym_private_section, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [45551] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, + [35464] = 4, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(3814), 1, + ACTIONS(3701), 1, anon_sym_DOT, - STATE(2222), 1, + STATE(2643), 1, sym__method_declaration_exceptions, - STATE(1552), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [45571] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [35478] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2142), 1, + ACTIONS(2900), 1, aux_sym_class_declaration_token13, - STATE(2690), 1, + STATE(2913), 1, sym_private_section, - STATE(1553), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [45591] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, + [35492] = 4, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(3816), 1, + ACTIONS(3703), 1, anon_sym_DOT, - STATE(2225), 1, + STATE(2641), 1, sym__method_declaration_exceptions, - STATE(1554), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [45611] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(3818), 1, - anon_sym_DOT, - STATE(3026), 1, - sym__method_declaration_exceptions, - STATE(1555), 2, + [35506] = 4, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(3705), 1, + aux_sym_class_declaration_token13, + STATE(2910), 1, + sym_private_section, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [45631] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(3820), 1, - anon_sym_DOT, - STATE(2195), 1, - sym__method_declaration_exceptions, - STATE(1556), 2, + [35520] = 4, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(2896), 1, + aux_sym_class_declaration_token13, + STATE(2909), 1, + sym_private_section, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [45651] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(3822), 1, + [35534] = 4, + ACTIONS(3707), 1, + aux_sym_class_declaration_token11, + ACTIONS(3709), 1, + aux_sym_class_declaration_token12, + ACTIONS(3711), 1, anon_sym_DOT, - STATE(2232), 1, - sym__method_declaration_exceptions, - STATE(1557), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [45671] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, + [35548] = 4, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(3824), 1, + ACTIONS(3713), 1, anon_sym_DOT, - STATE(3025), 1, + STATE(3022), 1, sym__method_declaration_exceptions, - STATE(1558), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [45691] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, + [35562] = 4, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(3826), 1, + ACTIONS(3715), 1, anon_sym_DOT, - STATE(2240), 1, + STATE(2636), 1, sym__method_declaration_exceptions, - STATE(1559), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [45711] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [35576] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2160), 1, + ACTIONS(2892), 1, aux_sym_class_declaration_token13, - STATE(2697), 1, + STATE(2904), 1, sym_private_section, - STATE(1560), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [45731] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [35590] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2172), 1, + ACTIONS(3717), 1, aux_sym_class_declaration_token13, - STATE(2707), 1, + STATE(2901), 1, sym_private_section, - STATE(1561), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [45751] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(3828), 1, - anon_sym_DOT, - STATE(2251), 1, - sym__method_declaration_exceptions, - STATE(1562), 2, + [35604] = 4, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(2890), 1, + aux_sym_class_declaration_token13, + STATE(2900), 1, + sym_private_section, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [45771] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, + [35618] = 4, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(3830), 1, + ACTIONS(3719), 1, anon_sym_DOT, - STATE(3031), 1, + STATE(2634), 1, sym__method_declaration_exceptions, - STATE(1563), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [45791] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(3832), 1, + [35632] = 4, + ACTIONS(3721), 1, anon_sym_DOT, - STATE(2265), 1, - sym__method_declaration_exceptions, - STATE(1564), 2, + ACTIONS(3723), 1, + anon_sym_COMMA, + STATE(1632), 1, + aux_sym_chained_variable_declaration_repeat1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [45811] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [35646] = 4, + ACTIONS(3725), 1, + sym_name, + STATE(1228), 1, + aux_sym_chained_structure_declaration_repeat1, + STATE(1934), 1, + sym_structure_component, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [35660] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2817), 1, + ACTIONS(3727), 1, aux_sym_class_declaration_token13, - STATE(2380), 1, + STATE(2892), 1, sym_private_section, - STATE(1565), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [45831] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [35674] = 4, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(3729), 1, + anon_sym_DOT, + STATE(2627), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [35688] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2757), 1, + ACTIONS(2878), 1, aux_sym_class_declaration_token13, - STATE(2718), 1, + STATE(2891), 1, sym_private_section, - STATE(1566), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [45851] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, + [35702] = 4, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(3834), 1, + ACTIONS(3731), 1, anon_sym_DOT, - STATE(2279), 1, + STATE(2621), 1, sym__method_declaration_exceptions, - STATE(1567), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [45871] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [35716] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2182), 1, + ACTIONS(2970), 1, aux_sym_class_declaration_token13, - STATE(2727), 1, + STATE(2986), 1, sym_private_section, - STATE(1568), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [45891] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, + [35730] = 4, + ACTIONS(3733), 1, + anon_sym_DOT, + ACTIONS(3735), 1, + anon_sym_COMMA, + STATE(1650), 1, + aux_sym_chained_field_symbol_declaration_repeat1, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [35744] = 4, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(3836), 1, + ACTIONS(3737), 1, anon_sym_DOT, - STATE(2284), 1, + STATE(3023), 1, sym__method_declaration_exceptions, - STATE(1569), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [45911] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, + [35758] = 4, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(3838), 1, + ACTIONS(3739), 1, anon_sym_DOT, - STATE(3022), 1, + STATE(2465), 1, sym__method_declaration_exceptions, - STATE(1570), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [45931] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [35772] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2775), 1, + ACTIONS(3741), 1, aux_sym_class_declaration_token13, - STATE(2734), 1, + STATE(2885), 1, sym_private_section, - STATE(1571), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [45951] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [35786] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2188), 1, + ACTIONS(2872), 1, aux_sym_class_declaration_token13, - STATE(2738), 1, + STATE(2884), 1, sym_private_section, - STATE(1572), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [45971] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, + [35800] = 4, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(3840), 1, + ACTIONS(3743), 1, anon_sym_DOT, - STATE(2289), 1, + STATE(2456), 1, sym__method_declaration_exceptions, - STATE(1573), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [45991] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [35814] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(3842), 1, + ACTIONS(2104), 1, aux_sym_class_declaration_token13, - STATE(2740), 1, + STATE(2882), 1, sym_private_section, - STATE(1574), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [46011] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, + [35828] = 4, + ACTIONS(3725), 1, sym_name, - ACTIONS(3846), 1, - anon_sym_DOT, - STATE(1680), 1, - aux_sym_class_declaration_repeat1, - STATE(1575), 2, + STATE(1234), 1, + aux_sym_chained_structure_declaration_repeat1, + STATE(1934), 1, + sym_structure_component, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [46031] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, + [35842] = 2, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(3745), 3, + anon_sym_DOT, + aux_sym__logical_expression_token2, + aux_sym__logical_expression_token3, + [35852] = 4, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(3848), 1, + ACTIONS(3747), 1, anon_sym_DOT, - STATE(2296), 1, + STATE(3024), 1, sym__method_declaration_exceptions, - STATE(1576), 2, - sym_eol_comment, - sym_bol_comment, - [46051] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3796), 1, - aux_sym_loop_statement_token3, - ACTIONS(3798), 1, - aux_sym__select_target_token3, - STATE(1066), 1, - sym__select_target, - STATE(1577), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [46071] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, + [35866] = 4, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(3850), 1, + ACTIONS(3749), 1, anon_sym_DOT, - STATE(2194), 1, + STATE(2438), 1, sym__method_declaration_exceptions, - STATE(1578), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [46091] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1579), 2, + [35880] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3852), 3, + ACTIONS(3751), 3, aux_sym_generic_typing_token1, aux_sym_generic_typing_token2, aux_sym__data_object_typing_normal_token3, - [46107] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(3854), 1, - anon_sym_DOT, - STATE(2310), 1, - sym__method_declaration_exceptions, - STATE(1580), 2, + [35890] = 4, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(3753), 1, + aux_sym_class_declaration_token13, + STATE(2875), 1, + sym_private_section, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [46127] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [35904] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2122), 1, + ACTIONS(2868), 1, aux_sym_class_declaration_token13, - STATE(2746), 1, + STATE(2874), 1, sym_private_section, - STATE(1581), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [46147] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, + [35918] = 4, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(3856), 1, + ACTIONS(3755), 1, anon_sym_DOT, - STATE(3021), 1, + STATE(2435), 1, sym__method_declaration_exceptions, - STATE(1582), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [46167] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1583), 2, + [35932] = 4, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(2116), 1, + aux_sym_class_declaration_token13, + STATE(2872), 1, + sym_private_section, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3858), 3, - anon_sym_DOT, - aux_sym__logical_expression_token2, - aux_sym__logical_expression_token3, - [46183] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [35946] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2146), 1, + ACTIONS(3757), 1, aux_sym_class_declaration_token13, - STATE(2753), 1, + STATE(2869), 1, sym_private_section, - STATE(1584), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [46203] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, + [35960] = 4, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(3860), 1, + ACTIONS(3759), 1, anon_sym_DOT, - STATE(2327), 1, + STATE(3026), 1, sym__method_declaration_exceptions, - STATE(1585), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [46223] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1586), 2, + [35974] = 4, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(3761), 1, + aux_sym_class_declaration_token13, + STATE(2868), 1, + sym_private_section, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2810), 3, - anon_sym_DOT, - anon_sym_COMMA, - sym_name, - [46239] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [35988] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2795), 1, + ACTIONS(2884), 1, aux_sym_class_declaration_token13, - STATE(2757), 1, + STATE(2121), 1, sym_private_section, - STATE(1587), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [46259] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [36002] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(3862), 1, + ACTIONS(2858), 1, aux_sym_class_declaration_token13, - STATE(2758), 1, + STATE(2866), 1, sym_private_section, - STATE(1588), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [46279] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [36016] = 4, + ACTIONS(3763), 1, + anon_sym_DOT, + ACTIONS(3765), 1, + anon_sym_COMMA, + STATE(1549), 1, + aux_sym_chained_interface_declaration_repeat1, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [36030] = 4, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(3768), 1, + anon_sym_DOT, + STATE(3027), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [36044] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(3864), 1, + ACTIONS(3770), 1, aux_sym_class_declaration_token13, - STATE(2334), 1, + STATE(2861), 1, sym_private_section, - STATE(1589), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [46299] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [36058] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(1984), 1, + ACTIONS(2256), 1, aux_sym_class_declaration_token13, - STATE(2761), 1, + STATE(2853), 1, sym_private_section, - STATE(1590), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [46319] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1591), 2, + [36072] = 4, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(3772), 1, + anon_sym_DOT, + STATE(2431), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3866), 3, - anon_sym_DOT, - anon_sym_COMMA, - sym_name, - [46335] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [36086] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2032), 1, + ACTIONS(2844), 1, aux_sym_class_declaration_token13, - STATE(2370), 1, + STATE(2858), 1, sym_private_section, - STATE(1592), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [46355] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, + [36100] = 4, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(3774), 1, + aux_sym_class_declaration_token13, + STATE(2936), 1, + sym_private_section, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [36114] = 4, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(3776), 1, + aux_sym_class_declaration_token13, + STATE(2849), 1, + sym_private_section, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [36128] = 4, + ACTIONS(3693), 1, sym_name, - ACTIONS(3868), 1, + ACTIONS(3778), 1, anon_sym_DOT, - STATE(1680), 1, + STATE(1824), 1, aux_sym_class_declaration_repeat1, - STATE(1593), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [46375] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3870), 1, - aux_sym_class_declaration_token11, - ACTIONS(3872), 1, - aux_sym_class_declaration_token12, - ACTIONS(3874), 1, + [36142] = 4, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(2906), 1, + aux_sym_class_declaration_token13, + STATE(2921), 1, + sym_private_section, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [36156] = 4, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(3780), 1, anon_sym_DOT, - STATE(1594), 2, + STATE(2664), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [46395] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [36170] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2803), 1, + ACTIONS(3782), 1, aux_sym_class_declaration_token13, - STATE(2347), 1, + STATE(2923), 1, sym_private_section, - STATE(1595), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [46415] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [36184] = 4, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(3784), 1, + anon_sym_DOT, + STATE(2670), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [36198] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2126), 1, + ACTIONS(2250), 1, aux_sym_class_declaration_token13, - STATE(2772), 1, + STATE(2841), 1, sym_private_section, - STATE(1596), 2, - sym_eol_comment, - sym_bol_comment, - [46435] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1597), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3876), 3, - anon_sym_DOT, - anon_sym_COMMA, - sym_field_symbol_name, - [46451] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [36212] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2805), 1, + ACTIONS(3786), 1, aux_sym_class_declaration_token13, - STATE(2785), 1, + STATE(2924), 1, sym_private_section, - STATE(1598), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [46471] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [36226] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2102), 1, + ACTIONS(2441), 1, aux_sym_class_declaration_token13, - STATE(2780), 1, + STATE(2984), 1, sym_private_section, - STATE(1599), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [46491] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, + [36240] = 4, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(3878), 1, + ACTIONS(3788), 1, anon_sym_DOT, - STATE(2642), 1, + STATE(2430), 1, sym__method_declaration_exceptions, - STATE(1600), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [46511] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [36254] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(3880), 1, + ACTIONS(2828), 1, aux_sym_class_declaration_token13, - STATE(2788), 1, + STATE(2846), 1, sym_private_section, - STATE(1601), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [46531] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3882), 1, + [36268] = 4, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(2914), 1, + aux_sym_class_declaration_token13, + STATE(2929), 1, + sym_private_section, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [36282] = 4, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(3790), 1, anon_sym_DOT, - ACTIONS(3884), 1, - aux_sym__logical_expression_token2, - ACTIONS(3886), 1, - aux_sym__logical_expression_token3, - STATE(1602), 2, + STATE(2679), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [46551] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [36296] = 4, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(3792), 1, + anon_sym_DOT, + STATE(3020), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [36310] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2094), 1, + ACTIONS(3794), 1, aux_sym_class_declaration_token13, - STATE(2791), 1, + STATE(2931), 1, sym_private_section, - STATE(1603), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [46571] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1604), 2, + [36324] = 4, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(3796), 1, + anon_sym_DOT, + STATE(2685), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3888), 3, - anon_sym_DOT, - anon_sym_COMMA, - sym_name, - [46587] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [36338] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(3890), 1, + ACTIONS(3798), 1, aux_sym_class_declaration_token13, - STATE(2397), 1, + STATE(2932), 1, sym_private_section, - STATE(1605), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [46607] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [36352] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2825), 1, + ACTIONS(2814), 1, aux_sym_class_declaration_token13, - STATE(2798), 1, + STATE(2838), 1, sym_private_section, - STATE(1606), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [46627] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [36366] = 4, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(3800), 1, + anon_sym_DOT, + STATE(3018), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [36380] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2845), 1, + ACTIONS(3802), 1, aux_sym_class_declaration_token13, - STATE(2168), 1, + STATE(2933), 1, sym_private_section, - STATE(1607), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [46647] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1608), 2, + [36394] = 4, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(3804), 1, + anon_sym_DOT, + STATE(2691), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(2847), 3, - anon_sym_DOT, - anon_sym_COMMA, - sym_field_symbol_name, - [46663] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [36408] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2819), 1, + ACTIONS(2916), 1, aux_sym_class_declaration_token13, - STATE(2399), 1, + STATE(2935), 1, sym_private_section, - STATE(1609), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [46683] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1610), 2, + [36422] = 4, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(3806), 1, + aux_sym_class_declaration_token13, + STATE(2107), 1, + sym_private_section, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3892), 3, - anon_sym_DOT, - anon_sym_COMMA, - sym_field_symbol_name, - [46699] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [36436] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2080), 1, + ACTIONS(2102), 1, aux_sym_class_declaration_token13, - STATE(2802), 1, + STATE(2743), 1, sym_private_section, - STATE(1611), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [46719] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3894), 1, - aux_sym_class_declaration_token11, - ACTIONS(3896), 1, - aux_sym_class_declaration_token12, - ACTIONS(3898), 1, + [36450] = 4, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(3808), 1, anon_sym_DOT, - STATE(1612), 2, + STATE(2459), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [46739] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, - sym_name, - ACTIONS(3900), 1, + [36464] = 4, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(3810), 1, anon_sym_DOT, - STATE(1680), 1, - aux_sym_class_declaration_repeat1, - STATE(1613), 2, + STATE(3013), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [46759] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [36478] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2064), 1, + ACTIONS(2934), 1, aux_sym_class_declaration_token13, - STATE(2176), 1, + STATE(2941), 1, sym_private_section, - STATE(1614), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [46779] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1615), 2, + [36492] = 4, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(3812), 1, + aux_sym_class_declaration_token13, + STATE(2942), 1, + sym_private_section, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3902), 3, - anon_sym_DOT, - anon_sym_COMMA, - sym_name, - [46795] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, - sym_name, - ACTIONS(3904), 1, - anon_sym_DOT, - STATE(1680), 1, - aux_sym_class_declaration_repeat1, - STATE(1616), 2, + [36506] = 4, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(3814), 1, + aux_sym_class_declaration_token13, + STATE(2835), 1, + sym_private_section, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [46815] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3886), 1, - aux_sym__logical_expression_token3, - ACTIONS(3906), 2, - anon_sym_DOT, - aux_sym__logical_expression_token2, - STATE(1617), 2, + [36520] = 4, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(2756), 1, + aux_sym_class_declaration_token13, + STATE(2834), 1, + sym_private_section, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [46833] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [36534] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(3908), 1, + ACTIONS(3816), 1, aux_sym_class_declaration_token13, - STATE(2157), 1, + STATE(2946), 1, sym_private_section, - STATE(1618), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [46853] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1619), 2, + [36548] = 4, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(3818), 1, + anon_sym_DOT, + STATE(2707), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3906), 3, - anon_sym_DOT, - aux_sym__logical_expression_token2, - aux_sym__logical_expression_token3, - [46869] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1620), 2, + [36562] = 4, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(3820), 1, + aux_sym_class_declaration_token13, + STATE(2829), 1, + sym_private_section, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3906), 3, - anon_sym_DOT, - aux_sym__logical_expression_token2, - aux_sym__logical_expression_token3, - [46885] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3796), 1, - aux_sym_loop_statement_token3, - ACTIONS(3798), 1, - aux_sym__select_target_token3, - STATE(1118), 1, - sym__select_target, - STATE(1621), 2, + [36576] = 3, + ACTIONS(3824), 1, + aux_sym__data_object_typing_normal_token5, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [46905] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2765), 1, - aux_sym_loop_statement_token3, - ACTIONS(2769), 1, - aux_sym__read_table_result_token1, - STATE(2337), 1, - sym__read_table_result, - STATE(1622), 2, + ACTIONS(3822), 2, + anon_sym_DOT, + anon_sym_COMMA, + [36588] = 4, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(3826), 1, + anon_sym_DOT, + STATE(3030), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [46925] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, + [36602] = 4, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(3910), 1, + ACTIONS(3828), 1, anon_sym_DOT, - STATE(3040), 1, + STATE(3012), 1, sym__method_declaration_exceptions, - STATE(1623), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [46945] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [36616] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(3912), 1, + ACTIONS(2806), 1, aux_sym_class_declaration_token13, - STATE(2409), 1, + STATE(2828), 1, sym_private_section, - STATE(1624), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [46965] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [36630] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2855), 1, + ACTIONS(2876), 1, aux_sym_class_declaration_token13, - STATE(2809), 1, + STATE(2104), 1, sym_private_section, - STATE(1625), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [46985] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [36644] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2857), 1, + ACTIONS(2760), 1, aux_sym_class_declaration_token13, - STATE(2139), 1, + STATE(2411), 1, sym_private_section, - STATE(1626), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [47005] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [36658] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2859), 1, + ACTIONS(2272), 1, aux_sym_class_declaration_token13, - STATE(2412), 1, + STATE(2824), 1, sym_private_section, - STATE(1627), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [47025] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, - sym_name, - ACTIONS(3914), 1, + [36672] = 4, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(3830), 1, anon_sym_DOT, - STATE(1680), 1, - aux_sym_class_declaration_repeat1, - STATE(1628), 2, + STATE(3032), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [47045] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [36686] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2072), 1, + ACTIONS(3832), 1, aux_sym_class_declaration_token13, - STATE(2812), 1, + STATE(2817), 1, sym_private_section, - STATE(1629), 2, - sym_eol_comment, - sym_bol_comment, - [47065] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1630), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3516), 3, - anon_sym_DOT, - anon_sym_COMMA, - sym_name, - [47081] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [36700] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2861), 1, + ACTIONS(2774), 1, aux_sym_class_declaration_token13, - STATE(2814), 1, + STATE(2816), 1, sym_private_section, - STATE(1631), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [47101] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3363), 1, + [36714] = 4, + ACTIONS(3834), 1, + aux_sym_class_declaration_token11, + ACTIONS(3836), 1, + aux_sym_class_declaration_token12, + ACTIONS(3838), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [36728] = 4, + ACTIONS(3693), 1, sym_name, - STATE(1342), 1, - aux_sym_exception_list_repeat1, - STATE(2049), 1, - sym_return_code_binding, - STATE(1632), 2, + ACTIONS(3840), 1, + anon_sym_DOT, + STATE(1824), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [47121] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [36742] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(3916), 1, + ACTIONS(2463), 1, aux_sym_class_declaration_token13, - STATE(2815), 1, + STATE(2421), 1, sym_private_section, - STATE(1633), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [47141] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [36756] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2062), 1, + ACTIONS(2986), 1, aux_sym_class_declaration_token13, - STATE(2825), 1, + STATE(2981), 1, sym_private_section, - STATE(1634), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [47161] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [36770] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2016), 1, + ACTIONS(2944), 1, aux_sym_class_declaration_token13, - STATE(2418), 1, + STATE(2948), 1, sym_private_section, - STATE(1635), 2, - sym_eol_comment, - sym_bol_comment, - [47181] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, - sym_name, - ACTIONS(3918), 1, - anon_sym_DOT, - STATE(1680), 1, - aux_sym_class_declaration_repeat1, - STATE(1636), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [47201] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [36784] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(3920), 1, + ACTIONS(3842), 1, aux_sym_class_declaration_token13, - STATE(2116), 1, + STATE(2139), 1, sym_private_section, - STATE(1637), 2, - sym_eol_comment, - sym_bol_comment, - [47221] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1638), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3922), 3, - anon_sym_DOT, - anon_sym_COMMA, - sym_name, - [47237] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, + [36798] = 4, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, ACTIONS(3844), 1, - sym_name, - ACTIONS(3924), 1, - anon_sym_DOT, - STATE(1680), 1, - aux_sym_class_declaration_repeat1, - STATE(1639), 2, + aux_sym_class_declaration_token13, + STATE(2400), 1, + sym_private_section, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [47257] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [36812] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(3926), 1, + ACTIONS(2445), 1, aux_sym_class_declaration_token13, - STATE(2103), 1, + STATE(2812), 1, sym_private_section, - STATE(1640), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [47277] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, - sym_name, - ACTIONS(3928), 1, + [36826] = 4, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(3846), 1, anon_sym_DOT, - STATE(1680), 1, - aux_sym_class_declaration_repeat1, - STATE(1641), 2, + STATE(2437), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [47297] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3930), 1, - aux_sym_class_declaration_token11, - ACTIONS(3932), 1, - aux_sym_class_declaration_token12, - ACTIONS(3934), 1, - anon_sym_DOT, - STATE(1642), 2, + [36840] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [47317] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1643), 2, + ACTIONS(3848), 3, + aux_sym_class_declaration_token3, + aux_sym__create_addition_token2, + aux_sym__create_addition_token3, + [36850] = 4, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(3850), 1, + aux_sym_class_declaration_token13, + STATE(2100), 1, + sym_private_section, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3472), 3, + [36864] = 4, + ACTIONS(3852), 1, anon_sym_DOT, + ACTIONS(3854), 1, anon_sym_COMMA, - sym_name, - [47333] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, - sym_name, - ACTIONS(3936), 1, - anon_sym_DOT, - STATE(1680), 1, - aux_sym_class_declaration_repeat1, - STATE(1644), 2, + STATE(1867), 1, + aux_sym_chained_interface_declaration_repeat1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [47353] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [36878] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(1904), 1, + ACTIONS(3856), 1, aux_sym_class_declaration_token13, - STATE(2312), 1, + STATE(2802), 1, sym_private_section, - STATE(1645), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [47373] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [36892] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2863), 1, + ACTIONS(2758), 1, aux_sym_class_declaration_token13, - STATE(2829), 1, + STATE(2801), 1, sym_private_section, - STATE(1646), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [47393] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [36906] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2096), 1, + ACTIONS(2748), 1, aux_sym_class_declaration_token13, - STATE(2092), 1, + STATE(2393), 1, sym_private_section, - STATE(1647), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [47413] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [36920] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(3938), 1, + ACTIONS(3858), 1, aux_sym_class_declaration_token13, - STATE(2830), 1, + STATE(2949), 1, sym_private_section, - STATE(1648), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [47433] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [36934] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2058), 1, + ACTIONS(2461), 1, aux_sym_class_declaration_token13, - STATE(2837), 1, + STATE(2799), 1, sym_private_section, - STATE(1649), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [47453] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [36948] = 4, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(3860), 1, + anon_sym_DOT, + STATE(2434), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [36962] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2871), 1, + ACTIONS(2810), 1, aux_sym_class_declaration_token13, - STATE(2841), 1, + STATE(2796), 1, sym_private_section, - STATE(1650), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [47473] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [36976] = 4, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(3862), 1, + anon_sym_DOT, + STATE(3036), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [36990] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2873), 1, + ACTIONS(2912), 1, aux_sym_class_declaration_token13, - STATE(2087), 1, + STATE(2145), 1, sym_private_section, - STATE(1651), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [47493] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1652), 2, + [37004] = 4, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(2533), 1, + aux_sym_class_declaration_token13, + STATE(2789), 1, + sym_private_section, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3940), 3, + [37018] = 3, + ACTIONS(3866), 1, + aux_sym__data_object_typing_normal_token5, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(3864), 2, anon_sym_DOT, anon_sym_COMMA, - sym_name, - [47509] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [37030] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(3942), 1, + ACTIONS(2888), 1, aux_sym_class_declaration_token13, - STATE(2842), 1, + STATE(2785), 1, sym_private_section, - STATE(1653), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [47529] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1654), 2, + [37044] = 4, + ACTIONS(3693), 1, + sym_name, + ACTIONS(3868), 1, + anon_sym_DOT, + STATE(1824), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [37058] = 4, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(3870), 1, + aux_sym_class_declaration_token13, + STATE(2373), 1, + sym_private_section, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3944), 3, + [37072] = 4, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(3872), 1, anon_sym_DOT, - anon_sym_COMMA, - sym_name, - [47545] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + STATE(3043), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [37086] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(3946), 1, + ACTIONS(3874), 1, aux_sym_class_declaration_token13, - STATE(2078), 1, + STATE(2979), 1, sym_private_section, - STATE(1655), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [47565] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [37100] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2875), 1, + ACTIONS(3876), 1, aux_sym_class_declaration_token13, - STATE(2847), 1, + STATE(2370), 1, sym_private_section, - STATE(1656), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [47585] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [37114] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(3948), 1, + ACTIONS(3878), 1, aux_sym_class_declaration_token13, - STATE(2848), 1, + STATE(2150), 1, sym_private_section, - STATE(1657), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [47605] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(3950), 1, - anon_sym_DOT, - STATE(2456), 1, - sym__method_declaration_exceptions, - STATE(1658), 2, + [37128] = 4, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(2607), 1, + aux_sym_class_declaration_token13, + STATE(2778), 1, + sym_private_section, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [47625] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [37142] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2877), 1, + ACTIONS(3880), 1, aux_sym_class_declaration_token13, - STATE(2851), 1, + STATE(2094), 1, sym_private_section, - STATE(1659), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [47645] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(3952), 1, + [37156] = 4, + ACTIONS(3693), 1, + sym_name, + ACTIONS(3882), 1, anon_sym_DOT, - STATE(2457), 1, - sym__method_declaration_exceptions, - STATE(1660), 2, + STATE(1824), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [47665] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(3954), 1, + [37170] = 4, + ACTIONS(3723), 1, + anon_sym_COMMA, + ACTIONS(3884), 1, anon_sym_DOT, - STATE(3041), 1, - sym__method_declaration_exceptions, - STATE(1661), 2, + STATE(1765), 1, + aux_sym_chained_variable_declaration_repeat1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [47685] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [37184] = 4, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(3886), 1, + aux_sym_class_declaration_token13, + STATE(2775), 1, + sym_private_section, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [37198] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2879), 1, + ACTIONS(2637), 1, aux_sym_class_declaration_token13, - STATE(2859), 1, + STATE(2365), 1, sym_private_section, - STATE(1662), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [47705] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(3956), 1, - anon_sym_DOT, - STATE(2470), 1, - sym__method_declaration_exceptions, - STATE(1663), 2, + [37212] = 4, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(2635), 1, + aux_sym_class_declaration_token13, + STATE(2767), 1, + sym_private_section, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [47725] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [37226] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2166), 1, + ACTIONS(2856), 1, aux_sym_class_declaration_token13, - STATE(2854), 1, + STATE(2772), 1, sym_private_section, - STATE(1664), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [47745] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, + [37240] = 4, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(3958), 1, + ACTIONS(3888), 1, anon_sym_DOT, - STATE(2368), 1, + STATE(3077), 1, sym__method_declaration_exceptions, - STATE(1665), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [47765] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [37254] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(3960), 1, + ACTIONS(2976), 1, aux_sym_class_declaration_token13, - STATE(2862), 1, + STATE(2253), 1, sym_private_section, - STATE(1666), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [47785] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1667), 2, + [37268] = 4, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(2950), 1, + aux_sym_class_declaration_token13, + STATE(2951), 1, + sym_private_section, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3962), 3, - anon_sym_DOT, - aux_sym__method_declaration_raising_token1, - aux_sym__method_declaration_exceptions_token1, - [47801] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, - sym_name, - ACTIONS(3964), 1, - anon_sym_DOT, - STATE(1680), 1, - aux_sym_class_declaration_repeat1, - STATE(1668), 2, + [37282] = 4, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(2613), 1, + aux_sym_class_declaration_token13, + STATE(2759), 1, + sym_private_section, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [47821] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [37296] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2889), 1, + ACTIONS(2587), 1, aux_sym_class_declaration_token13, - STATE(2871), 1, + STATE(2748), 1, sym_private_section, - STATE(1669), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [47841] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [37310] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2036), 1, + ACTIONS(3890), 1, aux_sym_class_declaration_token13, - STATE(2866), 1, + STATE(2355), 1, sym_private_section, - STATE(1670), 2, - sym_eol_comment, - sym_bol_comment, - [47861] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(3966), 1, - anon_sym_DOT, - STATE(3043), 1, - sym__method_declaration_exceptions, - STATE(1671), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [47881] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(3968), 1, - anon_sym_DOT, - STATE(2501), 1, - sym__method_declaration_exceptions, - STATE(1672), 2, + [37324] = 4, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(3892), 1, + aux_sym_class_declaration_token13, + STATE(2717), 1, + sym_private_section, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [47901] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, + [37338] = 4, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(3970), 1, + ACTIONS(3894), 1, anon_sym_DOT, - STATE(2339), 1, + STATE(2287), 1, sym__method_declaration_exceptions, - STATE(1673), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [47921] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [37352] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(1880), 1, + ACTIONS(3896), 1, aux_sym_class_declaration_token13, - STATE(2245), 1, + STATE(2745), 1, sym_private_section, - STATE(1674), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [47941] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [37366] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(3972), 1, + ACTIONS(2886), 1, aux_sym_class_declaration_token13, - STATE(2874), 1, + STATE(3083), 1, sym_private_section, - STATE(1675), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [47961] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [37380] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2891), 1, + ACTIONS(2922), 1, aux_sym_class_declaration_token13, - STATE(2879), 1, + STATE(2744), 1, sym_private_section, - STATE(1676), 2, - sym_eol_comment, - sym_bol_comment, - [47981] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(3974), 1, - anon_sym_DOT, - STATE(2435), 1, - sym__method_declaration_exceptions, - STATE(1677), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [48001] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2647), 1, + [37394] = 4, + ACTIONS(3898), 1, aux_sym_class_declaration_token11, - ACTIONS(2649), 1, + ACTIONS(3900), 1, aux_sym_class_declaration_token12, - ACTIONS(2651), 1, + ACTIONS(3902), 1, anon_sym_DOT, - STATE(1678), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [48021] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(3976), 1, - anon_sym_DOT, - STATE(2635), 1, - sym__method_declaration_exceptions, - STATE(1679), 2, + [37408] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [48041] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3978), 1, - sym_name, - ACTIONS(3981), 1, + ACTIONS(3904), 3, + anon_sym_DOT, + aux_sym_for_all_entries_token1, + aux_sym__where_clause_token1, + [37418] = 4, + ACTIONS(3735), 1, + anon_sym_COMMA, + ACTIONS(3906), 1, anon_sym_DOT, - STATE(1680), 3, + STATE(1799), 1, + aux_sym_chained_field_symbol_declaration_repeat1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - aux_sym_class_declaration_repeat1, - [48059] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [37432] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(3983), 1, + ACTIONS(2565), 1, aux_sym_class_declaration_token13, - STATE(2881), 1, + STATE(2740), 1, sym_private_section, - STATE(1681), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [48079] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [37446] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(3985), 1, + ACTIONS(1922), 1, aux_sym_class_declaration_token13, - STATE(2882), 1, + STATE(2733), 1, sym_private_section, - STATE(1682), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [48099] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(3987), 1, - anon_sym_DOT, - STATE(2639), 1, - sym__method_declaration_exceptions, - STATE(1683), 2, + [37460] = 4, + ACTIONS(3908), 1, + aux_sym_loop_statement_token3, + ACTIONS(3910), 1, + aux_sym__select_target_token3, + STATE(1164), 1, + sym__select_target, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [48119] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(3989), 1, - anon_sym_DOT, - STATE(2394), 1, - sym__method_declaration_exceptions, - STATE(1684), 2, + [37474] = 3, + ACTIONS(3914), 1, + aux_sym__logical_expression_token3, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [48139] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + ACTIONS(3912), 2, + anon_sym_DOT, + aux_sym__logical_expression_token2, + [37486] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2024), 1, + ACTIONS(3916), 1, aux_sym_class_declaration_token13, - STATE(2885), 1, + STATE(2727), 1, sym_private_section, - STATE(1685), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [48159] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3013), 1, - sym_name, - ACTIONS(3017), 1, - aux_sym__method_declaration_raising_token2, - STATE(1182), 1, - aux_sym__method_declaration_raising_repeat1, - STATE(1686), 2, + [37500] = 4, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(2639), 1, + aux_sym_class_declaration_token13, + STATE(3093), 1, + sym_private_section, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [48179] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(3991), 1, - anon_sym_DOT, - STATE(2655), 1, - sym__method_declaration_exceptions, - STATE(1687), 2, + [37514] = 4, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(2449), 1, + aux_sym_class_declaration_token13, + STATE(2725), 1, + sym_private_section, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [48199] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(3993), 1, + [37528] = 4, + ACTIONS(3693), 1, + sym_name, + ACTIONS(3918), 1, anon_sym_DOT, - STATE(2214), 1, - sym__method_declaration_exceptions, - STATE(1688), 2, + STATE(1824), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [48219] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [37542] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2905), 1, + ACTIONS(3920), 1, aux_sym_class_declaration_token13, - STATE(2887), 1, + STATE(2091), 1, sym_private_section, - STATE(1689), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [48239] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, + [37556] = 4, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(3995), 1, + ACTIONS(3922), 1, anon_sym_DOT, - STATE(3045), 1, + STATE(2341), 1, sym__method_declaration_exceptions, - STATE(1690), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [48259] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3997), 1, - anon_sym_COMMA, - ACTIONS(4000), 1, - anon_sym_RPAREN2, - STATE(1691), 3, + [37570] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - aux_sym__select_target_repeat1, - [48277] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(4002), 1, + ACTIONS(3912), 3, anon_sym_DOT, - STATE(2648), 1, - sym__method_declaration_exceptions, - STATE(1692), 2, + aux_sym__logical_expression_token2, + aux_sym__logical_expression_token3, + [37580] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [48297] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + ACTIONS(3912), 3, + anon_sym_DOT, + aux_sym__logical_expression_token2, + aux_sym__logical_expression_token3, + [37590] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(1888), 1, + ACTIONS(2768), 1, aux_sym_class_declaration_token13, - STATE(2792), 1, + STATE(2721), 1, sym_private_section, - STATE(1693), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [48317] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, + [37604] = 4, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4004), 1, + ACTIONS(3924), 1, anon_sym_DOT, - STATE(2693), 1, + STATE(2337), 1, sym__method_declaration_exceptions, - STATE(1694), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [48337] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(4006), 1, - anon_sym_DOT, - STATE(2196), 1, - sym__method_declaration_exceptions, - STATE(1695), 2, + [37618] = 4, + ACTIONS(3908), 1, + aux_sym_loop_statement_token3, + ACTIONS(3910), 1, + aux_sym__select_target_token3, + STATE(1145), 1, + sym__select_target, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [48357] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [37632] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(4008), 1, + ACTIONS(2443), 1, aux_sym_class_declaration_token13, - STATE(2888), 1, + STATE(2714), 1, sym_private_section, - STATE(1696), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [48377] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4010), 1, - sym_name, - STATE(1241), 1, - aux_sym_chained_structure_declaration_repeat1, - STATE(2066), 1, - sym_structure_component, - STATE(1697), 2, + [37646] = 4, + ACTIONS(2846), 1, + aux_sym_loop_statement_token3, + ACTIONS(2850), 1, + aux_sym__read_table_result_token1, + STATE(2391), 1, + sym__read_table_result, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [48397] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(4012), 1, + [37660] = 4, + ACTIONS(3693), 1, + sym_name, + ACTIONS(3926), 1, anon_sym_DOT, - STATE(3047), 1, - sym__method_declaration_exceptions, - STATE(1698), 2, + STATE(1824), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [48417] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [37674] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2018), 1, + ACTIONS(3928), 1, aux_sym_class_declaration_token13, - STATE(2895), 1, + STATE(3097), 1, sym_private_section, - STATE(1699), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [48437] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, + [37688] = 4, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(2870), 1, + aux_sym_class_declaration_token13, + STATE(2705), 1, + sym_private_section, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [37702] = 4, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4014), 1, + ACTIONS(3930), 1, anon_sym_DOT, - STATE(2769), 1, + STATE(2334), 1, sym__method_declaration_exceptions, - STATE(1700), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [48457] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, + [37716] = 4, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4016), 1, + ACTIONS(3932), 1, anon_sym_DOT, - STATE(2653), 1, + STATE(2403), 1, sym__method_declaration_exceptions, - STATE(1701), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [48477] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [37730] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2917), 1, + ACTIONS(2581), 1, aux_sym_class_declaration_token13, - STATE(2897), 1, + STATE(3105), 1, sym_private_section, - STATE(1702), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [48497] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1703), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(4018), 3, - anon_sym_DOT, - anon_sym_COMMA, - sym_name, - [48513] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, + [37744] = 4, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4020), 1, + ACTIONS(3934), 1, anon_sym_DOT, - STATE(2664), 1, + STATE(2331), 1, sym__method_declaration_exceptions, - STATE(1704), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [48533] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [37758] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(4022), 1, + ACTIONS(3936), 1, aux_sym_class_declaration_token13, - STATE(2898), 1, + STATE(2952), 1, sym_private_section, - STATE(1705), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [48553] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3884), 1, - aux_sym__logical_expression_token2, - ACTIONS(3886), 1, - aux_sym__logical_expression_token3, - ACTIONS(4024), 1, + [37772] = 4, + ACTIONS(3693), 1, + sym_name, + ACTIONS(3938), 1, anon_sym_DOT, - STATE(1706), 2, + STATE(1824), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [48573] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(4026), 1, + [37786] = 4, + ACTIONS(3940), 1, + aux_sym_class_declaration_token11, + ACTIONS(3942), 1, + aux_sym_class_declaration_token12, + ACTIONS(3944), 1, anon_sym_DOT, - STATE(2810), 1, - sym__method_declaration_exceptions, - STATE(1707), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [48593] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1708), 2, + [37800] = 4, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(2068), 1, + aux_sym_class_declaration_token13, + STATE(2694), 1, + sym_private_section, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(1344), 3, - aux_sym_generic_typing_token1, - aux_sym_generic_typing_token2, - aux_sym__data_object_typing_normal_token3, - [48609] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(4028), 1, - anon_sym_DOT, - STATE(2673), 1, - sym__method_declaration_exceptions, - STATE(1709), 2, + [37814] = 4, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(3946), 1, + aux_sym_class_declaration_token13, + STATE(2953), 1, + sym_private_section, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [48629] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, - sym_name, - ACTIONS(4030), 1, + [37828] = 4, + ACTIONS(1587), 1, anon_sym_DOT, - STATE(1680), 1, - aux_sym_class_declaration_repeat1, - STATE(1710), 2, - sym_eol_comment, - sym_bol_comment, - [48649] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1711), 2, + ACTIONS(1589), 1, + anon_sym_COMMA, + STATE(1811), 1, + aux_sym_chained_write_statement_repeat1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(4032), 3, - anon_sym_DOT, - anon_sym_COMMA, - sym_name, - [48665] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, + [37842] = 4, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4034), 1, + ACTIONS(3948), 1, anon_sym_DOT, - STATE(3049), 1, + STATE(2315), 1, sym__method_declaration_exceptions, - STATE(1712), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [48685] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [37856] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2941), 1, + ACTIONS(2932), 1, aux_sym_class_declaration_token13, - STATE(2904), 1, + STATE(2156), 1, sym_private_section, - STATE(1713), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [48705] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, + [37870] = 4, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4036), 1, + ACTIONS(3950), 1, anon_sym_DOT, - STATE(2893), 1, + STATE(2765), 1, sym__method_declaration_exceptions, - STATE(1714), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [48725] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [37884] = 4, + ACTIONS(3693), 1, + sym_name, + ACTIONS(3952), 1, + anon_sym_DOT, + STATE(1824), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [37898] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(4038), 1, + ACTIONS(2926), 1, aux_sym_class_declaration_token13, - STATE(2905), 1, + STATE(3100), 1, sym_private_section, - STATE(1715), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [48745] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1716), 2, + [37912] = 4, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(2050), 1, + aux_sym_class_declaration_token13, + STATE(2684), 1, + sym_private_section, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(4040), 3, + [37926] = 4, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(3954), 1, anon_sym_DOT, - aux_sym__logical_expression_token2, - aux_sym__logical_expression_token3, - [48761] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, + STATE(2309), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [37940] = 3, + ACTIONS(3309), 1, + sym_name, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + STATE(1330), 2, + sym_return_code_binding, + aux_sym_exception_list_repeat1, + [37952] = 4, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4042), 1, + ACTIONS(3956), 1, anon_sym_DOT, - STATE(2688), 1, + STATE(2388), 1, sym__method_declaration_exceptions, - STATE(1717), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [48781] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1718), 2, + [37966] = 4, + ACTIONS(3958), 1, + anon_sym_RPAREN, + ACTIONS(3960), 1, + anon_sym_COMMA, + STATE(1713), 1, + aux_sym__select_target_repeat1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(4044), 3, + [37980] = 4, + ACTIONS(3962), 1, + aux_sym_class_declaration_token11, + ACTIONS(3964), 1, + aux_sym_class_declaration_token12, + ACTIONS(3966), 1, anon_sym_DOT, - aux_sym_for_all_entries_token1, - aux_sym__where_clause_token1, - [48797] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [37994] = 4, + ACTIONS(3505), 1, + aux_sym_class_declaration_token11, + ACTIONS(3507), 1, + aux_sym_class_declaration_token12, + ACTIONS(3509), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [38008] = 4, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4046), 1, + ACTIONS(3968), 1, anon_sym_DOT, - STATE(3051), 1, + STATE(2354), 1, sym__method_declaration_exceptions, - STATE(1719), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [48817] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, + [38022] = 4, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4048), 1, + ACTIONS(3970), 1, anon_sym_DOT, - STATE(2951), 1, + STATE(2306), 1, sym__method_declaration_exceptions, - STATE(1720), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [48837] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, - sym_name, - ACTIONS(4050), 1, - anon_sym_DOT, - STATE(1680), 1, - aux_sym_class_declaration_repeat1, - STATE(1721), 2, + [38036] = 4, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(2732), 1, + aux_sym_class_declaration_token13, + STATE(2084), 1, + sym_private_section, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [48857] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [38050] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(1952), 1, + ACTIONS(2555), 1, aux_sym_class_declaration_token13, - STATE(3000), 1, + STATE(3072), 1, sym_private_section, - STATE(1722), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [48877] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [38064] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2991), 1, + ACTIONS(2044), 1, aux_sym_class_declaration_token13, - STATE(2913), 1, + STATE(2677), 1, sym_private_section, - STATE(1723), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [48897] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, + [38078] = 4, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(3972), 1, + aux_sym_class_declaration_token13, + STATE(2165), 1, + sym_private_section, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [38092] = 4, + ACTIONS(3693), 1, + sym_name, + ACTIONS(3974), 1, + anon_sym_DOT, + STATE(1824), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [38106] = 4, + ACTIONS(3976), 1, + aux_sym_class_declaration_token11, + ACTIONS(3978), 1, + aux_sym_class_declaration_token12, + ACTIONS(3980), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [38120] = 4, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4052), 1, + ACTIONS(3982), 1, anon_sym_DOT, - STATE(2696), 1, + STATE(2298), 1, sym__method_declaration_exceptions, - STATE(1724), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [48917] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [38134] = 4, + ACTIONS(3908), 1, + aux_sym_loop_statement_token3, + ACTIONS(3910), 1, + aux_sym__select_target_token3, + STATE(1021), 1, + sym__select_target, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [38148] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(4054), 1, + ACTIONS(2874), 1, aux_sym_class_declaration_token13, - STATE(2914), 1, + STATE(2724), 1, sym_private_section, - STATE(1725), 2, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [38162] = 4, + ACTIONS(2846), 1, + aux_sym_loop_statement_token3, + ACTIONS(2850), 1, + aux_sym__read_table_result_token1, + STATE(2457), 1, + sym__read_table_result, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [38176] = 2, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(3984), 3, + anon_sym_DOT, + aux_sym_loop_statement_token3, + aux_sym__read_table_result_token1, + [38186] = 4, + ACTIONS(3908), 1, + aux_sym_loop_statement_token3, + ACTIONS(3910), 1, + aux_sym__select_target_token3, + STATE(1162), 1, + sym__select_target, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [48937] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, + [38200] = 4, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4056), 1, + ACTIONS(3986), 1, anon_sym_DOT, - STATE(3054), 1, + STATE(2296), 1, sym__method_declaration_exceptions, - STATE(1726), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [48957] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, + [38214] = 4, + ACTIONS(3693), 1, sym_name, - ACTIONS(4058), 1, + ACTIONS(3988), 1, anon_sym_DOT, - STATE(1680), 1, + STATE(1824), 1, aux_sym_class_declaration_repeat1, - STATE(1727), 2, - sym_eol_comment, - sym_bol_comment, - [48977] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3196), 1, - aux_sym_class_declaration_token11, - ACTIONS(3198), 1, - aux_sym_class_declaration_token12, - ACTIONS(3200), 1, - anon_sym_DOT, - STATE(1728), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [48997] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, + [38228] = 4, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4060), 1, + ACTIONS(3990), 1, anon_sym_DOT, - STATE(2701), 1, + STATE(3010), 1, sym__method_declaration_exceptions, - STATE(1729), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [49017] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, + [38242] = 4, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(3992), 1, + aux_sym_class_declaration_token13, + STATE(2171), 1, + sym_private_section, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [38256] = 4, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4062), 1, + ACTIONS(3994), 1, anon_sym_DOT, - STATE(2982), 1, + STATE(2335), 1, sym__method_declaration_exceptions, - STATE(1730), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [49037] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1840), 1, + [38270] = 4, + ACTIONS(1892), 1, aux_sym_class_declaration_token13, - ACTIONS(1844), 1, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - STATE(2100), 1, + STATE(2956), 1, sym_private_section, - STATE(1731), 2, - sym_eol_comment, - sym_bol_comment, - [49057] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3163), 1, - aux_sym_class_declaration_token11, - ACTIONS(3165), 1, - aux_sym_class_declaration_token12, - ACTIONS(3167), 1, - anon_sym_DOT, - STATE(1732), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [49077] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(2999), 1, - aux_sym_class_declaration_token13, - STATE(2917), 1, - sym_private_section, - STATE(1733), 2, + [38284] = 4, + ACTIONS(3996), 1, + anon_sym_RPAREN, + ACTIONS(3998), 1, + anon_sym_COMMA, + STATE(1713), 1, + aux_sym__select_target_repeat1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [49097] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3884), 1, - aux_sym__logical_expression_token2, - ACTIONS(3886), 1, + [38298] = 4, + ACTIONS(3914), 1, aux_sym__logical_expression_token3, - ACTIONS(4064), 1, + ACTIONS(4001), 1, anon_sym_DOT, - STATE(1734), 2, - sym_eol_comment, - sym_bol_comment, - [49117] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(3003), 1, - aux_sym_class_declaration_token13, - STATE(2298), 1, - sym_private_section, - STATE(1735), 2, + ACTIONS(4003), 1, + aux_sym__logical_expression_token2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [49137] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(3021), 1, - aux_sym_class_declaration_token13, - STATE(2922), 1, - sym_private_section, - STATE(1736), 2, + [38312] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [49157] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(4066), 1, - aux_sym_class_declaration_token13, - STATE(2923), 1, - sym_private_section, - STATE(1737), 2, + ACTIONS(4005), 3, + anon_sym_DOT, + aux_sym_for_all_entries_token1, + aux_sym__where_clause_token1, + [38322] = 4, + ACTIONS(3693), 1, + sym_name, + ACTIONS(4007), 1, + anon_sym_DOT, + STATE(1824), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [49177] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, + [38336] = 4, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4068), 1, + ACTIONS(4009), 1, anon_sym_DOT, - STATE(2714), 1, + STATE(2289), 1, sym__method_declaration_exceptions, - STATE(1738), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [49197] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, + [38350] = 4, + ACTIONS(3914), 1, + aux_sym__logical_expression_token3, + ACTIONS(4003), 1, + aux_sym__logical_expression_token2, + ACTIONS(4011), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [38364] = 4, + ACTIONS(3693), 1, sym_name, - ACTIONS(4070), 1, + ACTIONS(4013), 1, anon_sym_DOT, - STATE(1680), 1, + STATE(1824), 1, aux_sym_class_declaration_repeat1, - STATE(1739), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [49217] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [38378] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(3001), 1, + ACTIONS(2160), 1, aux_sym_class_declaration_token13, - STATE(2957), 1, + STATE(2669), 1, sym_private_section, - STATE(1740), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [49237] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, + [38392] = 4, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4072), 1, + ACTIONS(4015), 1, anon_sym_DOT, - STATE(2989), 1, + STATE(2327), 1, sym__method_declaration_exceptions, - STATE(1741), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [49257] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(3025), 1, - aux_sym_class_declaration_token13, - STATE(2926), 1, - sym_private_section, - STATE(1742), 2, + [38406] = 3, + ACTIONS(4019), 1, + aux_sym__data_object_typing_normal_token5, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [49277] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4074), 1, - aux_sym_class_declaration_token11, - ACTIONS(4076), 1, - aux_sym_class_declaration_token12, - ACTIONS(4078), 1, + ACTIONS(4017), 2, anon_sym_DOT, - STATE(1743), 2, + anon_sym_COMMA, + [38418] = 3, + ACTIONS(4023), 1, + aux_sym__data_object_typing_normal_token5, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [49297] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3097), 1, + ACTIONS(4021), 2, + anon_sym_DOT, + anon_sym_COMMA, + [38430] = 4, + ACTIONS(4025), 1, aux_sym_class_declaration_token11, - ACTIONS(3099), 1, + ACTIONS(4027), 1, aux_sym_class_declaration_token12, - ACTIONS(3101), 1, + ACTIONS(4029), 1, anon_sym_DOT, - STATE(1744), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [49317] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [38444] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(4080), 1, + ACTIONS(1918), 1, aux_sym_class_declaration_token13, - STATE(2927), 1, + STATE(2367), 1, sym_private_section, - STATE(1745), 2, - sym_eol_comment, - sym_bol_comment, - [49337] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1746), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(4082), 3, + [38458] = 4, + ACTIONS(3693), 1, + sym_name, + ACTIONS(4031), 1, anon_sym_DOT, - aux_sym_for_all_entries_token1, - aux_sym__where_clause_token1, - [49353] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(2186), 1, - aux_sym_class_declaration_token13, - STATE(2992), 1, - sym_private_section, - STATE(1747), 2, + STATE(1824), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [49373] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(4084), 1, - anon_sym_DOT, - STATE(3076), 1, - sym__method_declaration_exceptions, - STATE(1748), 2, + [38472] = 3, + ACTIONS(4035), 1, + aux_sym__data_object_typing_normal_token5, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [49393] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(4086), 1, + ACTIONS(4033), 2, anon_sym_DOT, - STATE(2863), 1, - sym__method_declaration_exceptions, - STATE(1749), 2, - sym_eol_comment, - sym_bol_comment, - [49413] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, + anon_sym_COMMA, + [38484] = 4, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4088), 1, + ACTIONS(4037), 1, anon_sym_DOT, - STATE(2725), 1, + STATE(2286), 1, sym__method_declaration_exceptions, - STATE(1750), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [49433] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [38498] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(1944), 1, + ACTIONS(2198), 1, aux_sym_class_declaration_token13, - STATE(2976), 1, + STATE(2683), 1, sym_private_section, - STATE(1751), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [49453] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(3035), 1, - aux_sym_class_declaration_token13, - STATE(2929), 1, - sym_private_section, - STATE(1752), 2, + [38512] = 3, + ACTIONS(4041), 1, + aux_sym__data_object_typing_normal_token5, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [49473] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(4090), 1, + ACTIONS(4039), 2, anon_sym_DOT, - STATE(3008), 1, - sym__method_declaration_exceptions, - STATE(1753), 2, - sym_eol_comment, - sym_bol_comment, - [49493] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, + anon_sym_COMMA, + [38524] = 4, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4092), 1, + ACTIONS(4043), 1, anon_sym_DOT, - STATE(3078), 1, + STATE(2308), 1, sym__method_declaration_exceptions, - STATE(1754), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [49513] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(4094), 1, - anon_sym_DOT, - STATE(2728), 1, - sym__method_declaration_exceptions, - STATE(1755), 2, + [38538] = 4, + ACTIONS(4045), 1, + sym_name, + ACTIONS(4047), 1, + aux_sym_chained_structure_declaration_token1, + STATE(1778), 1, + sym_variable, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [49533] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [38552] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(3043), 1, + ACTIONS(2968), 1, aux_sym_class_declaration_token13, - STATE(2934), 1, + STATE(2947), 1, sym_private_section, - STATE(1756), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [49553] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(4096), 1, - aux_sym_class_declaration_token13, - STATE(2731), 1, - sym_private_section, - STATE(1757), 2, + [38566] = 4, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(4049), 1, + anon_sym_DOT, + STATE(2304), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [49573] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(4098), 1, - aux_sym_class_declaration_token13, - STATE(2936), 1, - sym_private_section, - STATE(1758), 2, + [38580] = 4, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(4051), 1, + anon_sym_DOT, + STATE(2279), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [49593] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [38594] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(4100), 1, + ACTIONS(2838), 1, aux_sym_class_declaration_token13, - STATE(2947), 1, + STATE(2693), 1, sym_private_section, - STATE(1759), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [49613] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(4102), 1, + [38608] = 4, + ACTIONS(3914), 1, + aux_sym__logical_expression_token3, + ACTIONS(4003), 1, + aux_sym__logical_expression_token2, + ACTIONS(4053), 1, anon_sym_DOT, - STATE(3104), 1, - sym__method_declaration_exceptions, - STATE(1760), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [49633] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [38622] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(4104), 1, + ACTIONS(4055), 1, aux_sym_class_declaration_token13, - STATE(2937), 1, + STATE(2940), 1, sym_private_section, - STATE(1761), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [49653] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, + [38636] = 4, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4106), 1, + ACTIONS(4057), 1, anon_sym_DOT, - STATE(3082), 1, + STATE(2771), 1, sym__method_declaration_exceptions, - STATE(1762), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [49673] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(3049), 1, - aux_sym_class_declaration_token13, - STATE(2737), 1, - sym_private_section, - STATE(1763), 2, + [38650] = 4, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(4059), 1, + anon_sym_DOT, + STATE(2292), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [49693] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, + [38664] = 4, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4108), 1, + ACTIONS(4061), 1, anon_sym_DOT, - STATE(3111), 1, + STATE(2277), 1, sym__method_declaration_exceptions, - STATE(1764), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [49713] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(3051), 1, - aux_sym_class_declaration_token13, - STATE(2942), 1, - sym_private_section, - STATE(1765), 2, + [38678] = 4, + ACTIONS(3693), 1, + sym_name, + ACTIONS(4063), 1, + anon_sym_DOT, + STATE(1824), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [49733] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(4110), 1, - aux_sym_class_declaration_token13, - STATE(2939), 1, - sym_private_section, - STATE(1766), 2, + [38692] = 4, + ACTIONS(3693), 1, + sym_name, + ACTIONS(4065), 1, + anon_sym_DOT, + STATE(1824), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [49753] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, + [38706] = 4, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4112), 1, + ACTIONS(4067), 1, anon_sym_DOT, - STATE(2985), 1, + STATE(3009), 1, sym__method_declaration_exceptions, - STATE(1767), 2, - sym_eol_comment, - sym_bol_comment, - [49773] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(4114), 1, - aux_sym_class_declaration_token13, - STATE(2944), 1, - sym_private_section, - STATE(1768), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [49793] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(4116), 1, - aux_sym_class_declaration_token13, - STATE(2945), 1, - sym_private_section, - STATE(1769), 2, + [38720] = 4, + ACTIONS(1589), 1, + anon_sym_COMMA, + ACTIONS(4069), 1, + anon_sym_DOT, + STATE(1811), 1, + aux_sym_chained_write_statement_repeat1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [49813] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [38734] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(3061), 1, + ACTIONS(4071), 1, aux_sym_class_declaration_token13, - STATE(2924), 1, + STATE(2762), 1, sym_private_section, - STATE(1770), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [49833] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [38748] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(4118), 1, + ACTIONS(4073), 1, aux_sym_class_declaration_token13, - STATE(2946), 1, + STATE(2700), 1, sym_private_section, - STATE(1771), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [49853] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, + [38762] = 4, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4120), 1, + ACTIONS(4075), 1, anon_sym_DOT, - STATE(2784), 1, + STATE(2078), 1, sym__method_declaration_exceptions, - STATE(1772), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [49873] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(1926), 1, - aux_sym_class_declaration_token13, - STATE(2743), 1, - sym_private_section, - STATE(1773), 2, + [38776] = 4, + ACTIONS(3693), 1, + sym_name, + ACTIONS(4077), 1, + anon_sym_DOT, + STATE(1824), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [49893] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [38790] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(3059), 1, + ACTIONS(2882), 1, aux_sym_class_declaration_token13, - STATE(2948), 1, + STATE(2658), 1, sym_private_section, - STATE(1774), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [49913] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(4122), 1, - aux_sym_class_declaration_token13, - STATE(2949), 1, - sym_private_section, - STATE(1775), 2, + [38804] = 4, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(4079), 1, + anon_sym_DOT, + STATE(2272), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [49933] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, - sym_name, - ACTIONS(4124), 1, + [38818] = 4, + ACTIONS(1589), 1, + anon_sym_COMMA, + ACTIONS(1621), 1, anon_sym_DOT, - STATE(1680), 1, - aux_sym_class_declaration_repeat1, - STATE(1776), 2, + STATE(1811), 1, + aux_sym_chained_write_statement_repeat1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [49953] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4126), 1, - aux_sym_class_declaration_token11, - ACTIONS(4128), 1, - aux_sym_class_declaration_token12, - ACTIONS(4130), 1, + [38832] = 4, + ACTIONS(3735), 1, + anon_sym_COMMA, + ACTIONS(4081), 1, anon_sym_DOT, - STATE(1777), 2, + STATE(1799), 1, + aux_sym_chained_field_symbol_declaration_repeat1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [49973] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(3065), 1, - aux_sym_class_declaration_token13, - STATE(2954), 1, - sym_private_section, - STATE(1778), 2, + [38846] = 4, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(4083), 1, + anon_sym_DOT, + STATE(3038), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [49993] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(4132), 1, - aux_sym_class_declaration_token13, - STATE(2955), 1, - sym_private_section, - STATE(1779), 2, + [38860] = 4, + ACTIONS(3723), 1, + anon_sym_COMMA, + ACTIONS(4085), 1, + anon_sym_DOT, + STATE(1765), 1, + aux_sym_chained_variable_declaration_repeat1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [50013] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(4134), 1, - aux_sym_class_declaration_token13, - STATE(2959), 1, - sym_private_section, - STATE(1780), 2, + [38874] = 4, + ACTIONS(4045), 1, + sym_name, + ACTIONS(4087), 1, + aux_sym_chained_structure_declaration_token1, + STATE(1521), 1, + sym_variable, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [50033] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, + [38888] = 4, + ACTIONS(3693), 1, sym_name, - ACTIONS(4136), 1, + ACTIONS(4089), 1, anon_sym_DOT, - STATE(1680), 1, + STATE(1824), 1, aux_sym_class_declaration_repeat1, - STATE(1781), 2, - sym_eol_comment, - sym_bol_comment, - [50053] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(3055), 1, - aux_sym_class_declaration_token13, - STATE(2961), 1, - sym_private_section, - STATE(1782), 2, - sym_eol_comment, - sym_bol_comment, - [50073] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(4138), 1, - aux_sym_class_declaration_token13, - STATE(2962), 1, - sym_private_section, - STATE(1783), 2, - sym_eol_comment, - sym_bol_comment, - [50093] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(4140), 1, - aux_sym_class_declaration_token13, - STATE(2760), 1, - sym_private_section, - STATE(1784), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [50113] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, + [38902] = 4, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4142), 1, + ACTIONS(4091), 1, anon_sym_DOT, - STATE(2770), 1, + STATE(2934), 1, sym__method_declaration_exceptions, - STATE(1785), 2, - sym_eol_comment, - sym_bol_comment, - [50133] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(3047), 1, - aux_sym_class_declaration_token13, - STATE(2964), 1, - sym_private_section, - STATE(1786), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [50153] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(1882), 1, - aux_sym_class_declaration_token13, - STATE(2931), 1, - sym_private_section, - STATE(1787), 2, + [38916] = 4, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(4093), 1, + anon_sym_DOT, + STATE(2275), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [50173] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(4144), 1, - aux_sym_class_declaration_token13, - STATE(2965), 1, - sym_private_section, - STATE(1788), 2, + [38930] = 4, + ACTIONS(2655), 1, + aux_sym_class_declaration_token11, + ACTIONS(2657), 1, + aux_sym_class_declaration_token12, + ACTIONS(2659), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [50193] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [38944] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(3037), 1, + ACTIONS(4095), 1, aux_sym_class_declaration_token13, - STATE(2765), 1, + STATE(2776), 1, sym_private_section, - STATE(1789), 2, - sym_eol_comment, - sym_bol_comment, - [50213] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4010), 1, - sym_name, - STATE(1319), 1, - aux_sym_chained_structure_declaration_repeat1, - STATE(2066), 1, - sym_structure_component, - STATE(1790), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [50233] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [38958] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(4146), 1, + ACTIONS(4097), 1, aux_sym_class_declaration_token13, - STATE(2966), 1, + STATE(2075), 1, sym_private_section, - STATE(1791), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [50253] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [38972] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(1906), 1, + ACTIONS(4099), 1, aux_sym_class_declaration_token13, - STATE(2771), 1, + STATE(2243), 1, sym_private_section, - STATE(1792), 2, - sym_eol_comment, - sym_bol_comment, - [50273] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1793), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(4148), 3, - anon_sym_DOT, - anon_sym_COMMA, - sym_name, - [50289] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, + [38986] = 4, + ACTIONS(3693), 1, sym_name, - ACTIONS(4150), 1, + ACTIONS(4101), 1, anon_sym_DOT, - STATE(1680), 1, + STATE(1824), 1, aux_sym_class_declaration_repeat1, - STATE(1794), 2, - sym_eol_comment, - sym_bol_comment, - [50309] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1795), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(4152), 3, + [39000] = 4, + ACTIONS(4103), 1, anon_sym_DOT, + ACTIONS(4105), 1, anon_sym_COMMA, - sym_name, - [50325] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3884), 1, - aux_sym__logical_expression_token2, - ACTIONS(3886), 1, - aux_sym__logical_expression_token3, - ACTIONS(4154), 1, - anon_sym_DOT, - STATE(1796), 2, + STATE(1765), 1, + aux_sym_chained_variable_declaration_repeat1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [50345] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [39014] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2170), 1, + ACTIONS(2894), 1, aux_sym_class_declaration_token13, - STATE(3113), 1, + STATE(2779), 1, sym_private_section, - STATE(1797), 2, - sym_eol_comment, - sym_bol_comment, - [50365] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1798), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(4156), 3, - anon_sym_DOT, - anon_sym_COMMA, - sym_name, - [50381] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, - sym_name, - ACTIONS(4158), 1, + [39028] = 4, + ACTIONS(3443), 1, + aux_sym_class_declaration_token11, + ACTIONS(3445), 1, + aux_sym_class_declaration_token12, + ACTIONS(3447), 1, anon_sym_DOT, - STATE(1680), 1, - aux_sym_class_declaration_repeat1, - STATE(1799), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [50401] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(3027), 1, - aux_sym_class_declaration_token13, - STATE(2776), 1, - sym_private_section, - STATE(1800), 2, + [39042] = 4, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(4108), 1, + anon_sym_DOT, + STATE(2926), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [50421] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [39056] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(3023), 1, + ACTIONS(4110), 1, aux_sym_class_declaration_token13, - STATE(3098), 1, + STATE(2073), 1, sym_private_section, - STATE(1801), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [50441] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1802), 2, + [39070] = 4, + ACTIONS(3693), 1, + sym_name, + ACTIONS(4112), 1, + anon_sym_DOT, + STATE(1824), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3127), 3, - anon_sym_DOT, - anon_sym_COMMA, - sym_name, - [50457] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [39084] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2192), 1, + ACTIONS(1958), 1, aux_sym_class_declaration_token13, - STATE(2903), 1, + STATE(2227), 1, sym_private_section, - STATE(1803), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [50477] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(4160), 1, - aux_sym_class_declaration_token13, - STATE(2184), 1, - sym_private_section, - STATE(1804), 2, + [39098] = 4, + ACTIONS(3735), 1, + anon_sym_COMMA, + ACTIONS(4114), 1, + anon_sym_DOT, + STATE(1753), 1, + aux_sym_chained_field_symbol_declaration_repeat1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [50497] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [39112] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(4162), 1, + ACTIONS(2054), 1, aux_sym_class_declaration_token13, - STATE(2254), 1, + STATE(2784), 1, sym_private_section, - STATE(1805), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [50517] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1806), 2, + [39126] = 4, + ACTIONS(3693), 1, + sym_name, + ACTIONS(4116), 1, + anon_sym_DOT, + STATE(1824), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(4164), 3, + [39140] = 4, + ACTIONS(4118), 1, + aux_sym_class_declaration_token11, + ACTIONS(4120), 1, + aux_sym_class_declaration_token12, + ACTIONS(4122), 1, anon_sym_DOT, - anon_sym_COMMA, - sym_name, - [50533] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1807), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3135), 3, + [39154] = 4, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(4124), 1, anon_sym_DOT, - anon_sym_COMMA, - sym_name, - [50549] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1808), 2, + STATE(3008), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(4166), 3, - anon_sym_DOT, - anon_sym_COMMA, - sym_name, - [50565] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, + [39168] = 4, + ACTIONS(3693), 1, sym_name, - ACTIONS(4168), 1, + ACTIONS(4126), 1, anon_sym_DOT, - STATE(1680), 1, + STATE(1824), 1, aux_sym_class_declaration_repeat1, - STATE(1809), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [50585] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4170), 1, + [39182] = 4, + ACTIONS(3723), 1, + anon_sym_COMMA, + ACTIONS(4128), 1, + anon_sym_DOT, + STATE(1755), 1, + aux_sym_chained_variable_declaration_repeat1, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [39196] = 4, + ACTIONS(4130), 1, aux_sym_class_declaration_token11, - ACTIONS(4172), 1, + ACTIONS(4132), 1, aux_sym_class_declaration_token12, - ACTIONS(4174), 1, + ACTIONS(4134), 1, anon_sym_DOT, - STATE(1810), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [50605] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, + [39210] = 4, + ACTIONS(3693), 1, sym_name, - ACTIONS(4176), 1, + ACTIONS(4136), 1, anon_sym_DOT, - STATE(1680), 1, + STATE(1824), 1, aux_sym_class_declaration_repeat1, - STATE(1811), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [50625] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(4178), 1, - aux_sym_class_declaration_token13, - STATE(2178), 1, - sym_private_section, - STATE(1812), 2, + [39224] = 4, + ACTIONS(3693), 1, + sym_name, + ACTIONS(4138), 1, + anon_sym_DOT, + STATE(1824), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [50645] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1813), 2, + [39238] = 4, + ACTIONS(3693), 1, + sym_name, + ACTIONS(4140), 1, + anon_sym_DOT, + STATE(1824), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(4180), 3, - anon_sym_DOT, - aux_sym_for_all_entries_token1, - aux_sym__where_clause_token1, - [50661] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [39252] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2154), 1, + ACTIONS(2956), 1, aux_sym_class_declaration_token13, - STATE(2889), 1, + STATE(2193), 1, sym_private_section, - STATE(1814), 2, - sym_eol_comment, - sym_bol_comment, - [50681] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4182), 1, - anon_sym_COMMA, - ACTIONS(4184), 1, - anon_sym_RPAREN2, - STATE(1861), 1, - aux_sym__select_target_repeat1, - STATE(1815), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [50701] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [39266] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(3009), 1, + ACTIONS(2457), 1, aux_sym_class_declaration_token13, - STATE(2169), 1, + STATE(2264), 1, sym_private_section, - STATE(1816), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [50721] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4186), 1, + [39280] = 4, + ACTIONS(4142), 1, aux_sym_class_declaration_token11, - ACTIONS(4188), 1, + ACTIONS(4144), 1, aux_sym_class_declaration_token12, - ACTIONS(4190), 1, + ACTIONS(4146), 1, anon_sym_DOT, - STATE(1817), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [50741] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [39294] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(3011), 1, + ACTIONS(1986), 1, aux_sym_class_declaration_token13, - STATE(3106), 1, + STATE(2176), 1, sym_private_section, - STATE(1818), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [50761] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, - sym_name, - ACTIONS(4192), 1, + [39308] = 4, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(4148), 1, anon_sym_DOT, - STATE(1680), 1, - aux_sym_class_declaration_repeat1, - STATE(1819), 2, + STATE(3034), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [50781] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2609), 1, - aux_sym_class_declaration_token11, - ACTIONS(2611), 1, - aux_sym_class_declaration_token12, - ACTIONS(2613), 1, - anon_sym_DOT, - STATE(1820), 2, + [39322] = 4, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(2764), 1, + aux_sym_class_declaration_token13, + STATE(2262), 1, + sym_private_section, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [50801] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3884), 1, - aux_sym__logical_expression_token2, - ACTIONS(3886), 1, + [39336] = 4, + ACTIONS(3914), 1, aux_sym__logical_expression_token3, - ACTIONS(4194), 1, + ACTIONS(4003), 1, + aux_sym__logical_expression_token2, + ACTIONS(4150), 1, anon_sym_DOT, - STATE(1821), 2, - sym_eol_comment, - sym_bol_comment, - [50821] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(4196), 1, - aux_sym_class_declaration_token13, - STATE(3100), 1, - sym_private_section, - STATE(1822), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [50841] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(4198), 1, + [39350] = 4, + ACTIONS(3693), 1, + sym_name, + ACTIONS(4152), 1, anon_sym_DOT, - STATE(2729), 1, - sym__method_declaration_exceptions, - STATE(1823), 2, + STATE(1824), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [50861] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [39364] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(4200), 1, + ACTIONS(2832), 1, aux_sym_class_declaration_token13, - STATE(2163), 1, + STATE(2090), 1, sym_private_section, - STATE(1824), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [50881] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [39378] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(3005), 1, + ACTIONS(4154), 1, aux_sym_class_declaration_token13, - STATE(2158), 1, + STATE(2259), 1, sym_private_section, - STATE(1825), 2, - sym_eol_comment, - sym_bol_comment, - [50901] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, - sym_name, - ACTIONS(4202), 1, - anon_sym_DOT, - STATE(1680), 1, - aux_sym_class_declaration_repeat1, - STATE(1826), 2, - sym_eol_comment, - sym_bol_comment, - [50921] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, - sym_name, - ACTIONS(4204), 1, - anon_sym_DOT, - STATE(1680), 1, - aux_sym_class_declaration_repeat1, - STATE(1827), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [50941] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [39392] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(4206), 1, + ACTIONS(2222), 1, aux_sym_class_declaration_token13, - STATE(2152), 1, + STATE(2706), 1, sym_private_section, - STATE(1828), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [50961] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, + [39406] = 4, + ACTIONS(3693), 1, sym_name, - ACTIONS(4208), 1, + ACTIONS(4156), 1, anon_sym_DOT, - STATE(1680), 1, + STATE(1824), 1, aux_sym_class_declaration_repeat1, - STATE(1829), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [50981] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, + [39420] = 4, + ACTIONS(3693), 1, sym_name, - ACTIONS(4210), 1, + ACTIONS(4158), 1, anon_sym_DOT, - STATE(1680), 1, + STATE(1824), 1, aux_sym_class_declaration_repeat1, - STATE(1830), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [51001] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, - sym_name, - ACTIONS(4212), 1, + [39434] = 4, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(4160), 1, anon_sym_DOT, - STATE(1680), 1, - aux_sym_class_declaration_repeat1, - STATE(1831), 2, + STATE(2907), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [51021] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3153), 1, + [39448] = 4, + ACTIONS(4162), 1, aux_sym_class_declaration_token11, - ACTIONS(3155), 1, + ACTIONS(4164), 1, aux_sym_class_declaration_token12, - ACTIONS(3157), 1, + ACTIONS(4166), 1, anon_sym_DOT, - STATE(1832), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [51041] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(1846), 1, - aux_sym_class_declaration_token13, - STATE(2189), 1, - sym_private_section, - STATE(1833), 2, + [39462] = 4, + ACTIONS(3075), 1, + aux_sym_class_declaration_token11, + ACTIONS(3077), 1, + aux_sym_class_declaration_token12, + ACTIONS(3079), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [51061] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, + [39476] = 4, + ACTIONS(4168), 1, + anon_sym_DOT, + ACTIONS(4170), 1, + anon_sym_COMMA, + STATE(1799), 1, + aux_sym_chained_field_symbol_declaration_repeat1, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [39490] = 4, + ACTIONS(3693), 1, sym_name, - ACTIONS(4214), 1, + ACTIONS(4173), 1, anon_sym_DOT, - STATE(1680), 1, + STATE(1824), 1, aux_sym_class_declaration_repeat1, - STATE(1834), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [51081] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(4216), 1, - aux_sym_class_declaration_token13, - STATE(2137), 1, - sym_private_section, - STATE(1835), 2, + [39504] = 4, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(4175), 1, + anon_sym_DOT, + STATE(3067), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [51101] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1836), 2, + [39518] = 4, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(4177), 1, + anon_sym_DOT, + STATE(2805), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(4218), 3, - anon_sym_DOT, - anon_sym_COMMA, - sym_name, - [51117] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [39532] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2997), 1, + ACTIONS(2826), 1, aux_sym_class_declaration_token13, - STATE(2134), 1, + STATE(2108), 1, sym_private_section, - STATE(1837), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [51137] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [39546] = 4, + ACTIONS(3693), 1, + sym_name, + ACTIONS(4179), 1, + anon_sym_DOT, + STATE(1824), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [39560] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2989), 1, + ACTIONS(2766), 1, aux_sym_class_declaration_token13, - STATE(3061), 1, + STATE(2247), 1, sym_private_section, - STATE(1838), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [51157] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4220), 1, - aux_sym_class_declaration_token11, - ACTIONS(4222), 1, - aux_sym_class_declaration_token12, - ACTIONS(4224), 1, + [39574] = 4, + ACTIONS(3914), 1, + aux_sym__logical_expression_token3, + ACTIONS(4003), 1, + aux_sym__logical_expression_token2, + ACTIONS(4181), 1, anon_sym_DOT, - STATE(1839), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [51177] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4226), 1, + [39588] = 4, + ACTIONS(3349), 1, aux_sym_class_declaration_token11, - ACTIONS(4228), 1, + ACTIONS(3351), 1, aux_sym_class_declaration_token12, - ACTIONS(4230), 1, + ACTIONS(3353), 1, anon_sym_DOT, - STATE(1840), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [51197] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1841), 2, + [39602] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(4232), 3, + ACTIONS(4183), 3, anon_sym_DOT, aux_sym_for_all_entries_token1, aux_sym__where_clause_token1, - [51213] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [39612] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(4234), 1, + ACTIONS(4185), 1, aux_sym_class_declaration_token13, - STATE(3012), 1, + STATE(2245), 1, sym_private_section, - STATE(1842), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [51233] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(2995), 1, - aux_sym_class_declaration_token13, - STATE(2208), 1, - sym_private_section, - STATE(1843), 2, + [39626] = 4, + ACTIONS(1589), 1, + anon_sym_COMMA, + ACTIONS(4187), 1, + anon_sym_DOT, + STATE(1811), 1, + aux_sym_chained_write_statement_repeat1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [51253] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1844), 2, + [39640] = 4, + ACTIONS(1787), 1, + anon_sym_DOT, + ACTIONS(4189), 1, + anon_sym_COMMA, + STATE(1811), 1, + aux_sym_chained_write_statement_repeat1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(4236), 3, + [39654] = 4, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(4192), 1, anon_sym_DOT, - aux_sym_loop_statement_token3, - aux_sym__read_table_result_token1, - [51269] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4010), 1, - sym_name, - STATE(1536), 1, - aux_sym_chained_structure_declaration_repeat1, - STATE(2066), 1, - sym_structure_component, - STATE(1845), 2, + STATE(2815), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [51289] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, + [39668] = 4, + ACTIONS(3693), 1, sym_name, - ACTIONS(4238), 1, + ACTIONS(4194), 1, anon_sym_DOT, - STATE(1680), 1, + STATE(1824), 1, aux_sym_class_declaration_repeat1, - STATE(1846), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [51309] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4240), 1, + [39682] = 4, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(4196), 1, + anon_sym_DOT, + STATE(2810), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [39696] = 4, + ACTIONS(3960), 1, + anon_sym_COMMA, + ACTIONS(4198), 1, + anon_sym_RPAREN, + STATE(1690), 1, + aux_sym__select_target_repeat1, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [39710] = 4, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(4200), 1, + anon_sym_DOT, + STATE(2995), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [39724] = 4, + ACTIONS(3317), 1, aux_sym_class_declaration_token11, - ACTIONS(4242), 1, + ACTIONS(3319), 1, aux_sym_class_declaration_token12, - ACTIONS(4244), 1, + ACTIONS(3321), 1, anon_sym_DOT, - STATE(1847), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [51329] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, + [39738] = 4, + ACTIONS(4202), 1, + aux_sym_class_declaration_token11, + ACTIONS(4204), 1, + aux_sym_class_declaration_token12, + ACTIONS(4206), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [39752] = 4, + ACTIONS(3693), 1, sym_name, - ACTIONS(4246), 1, + ACTIONS(4208), 1, anon_sym_DOT, - STATE(1680), 1, + STATE(1824), 1, aux_sym_class_declaration_repeat1, - STATE(1848), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [51349] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [39766] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(4248), 1, + ACTIONS(2066), 1, aux_sym_class_declaration_token13, - STATE(2120), 1, + STATE(2303), 1, sym_private_section, - STATE(1849), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [51369] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1850), 2, + [39780] = 4, + ACTIONS(3693), 1, + sym_name, + ACTIONS(4210), 1, + anon_sym_DOT, + STATE(1824), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(4250), 3, + [39794] = 4, + ACTIONS(2696), 1, + aux_sym_class_declaration_token11, + ACTIONS(2698), 1, + aux_sym_class_declaration_token12, + ACTIONS(2700), 1, anon_sym_DOT, - anon_sym_COMMA, - sym_name, - [51385] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(2987), 1, - aux_sym_class_declaration_token13, - STATE(2975), 1, - sym_private_section, - STATE(1851), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [51405] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(1872), 1, - aux_sym_class_declaration_token13, - STATE(2224), 1, - sym_private_section, - STATE(1852), 2, + [39808] = 4, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(4212), 1, + anon_sym_DOT, + STATE(2988), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [51425] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3796), 1, - aux_sym_loop_statement_token3, - ACTIONS(3798), 1, - aux_sym__select_target_token3, - STATE(1138), 1, - sym__select_target, - STATE(1853), 2, + [39822] = 4, + ACTIONS(4214), 1, + sym_name, + ACTIONS(4217), 1, + anon_sym_DOT, + STATE(1824), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [51445] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [39836] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2985), 1, + ACTIONS(2776), 1, aux_sym_class_declaration_token13, - STATE(2117), 1, + STATE(2216), 1, sym_private_section, - STATE(1854), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [51465] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1855), 2, + [39850] = 4, + ACTIONS(3693), 1, + sym_name, + ACTIONS(4219), 1, + anon_sym_DOT, + STATE(1824), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [39864] = 3, + ACTIONS(4223), 1, + aux_sym__data_object_typing_normal_token5, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(4252), 3, + ACTIONS(4221), 2, anon_sym_DOT, anon_sym_COMMA, + [39876] = 4, + ACTIONS(3693), 1, sym_name, - [51481] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(4254), 1, - aux_sym_class_declaration_token13, - STATE(2113), 1, - sym_private_section, - STATE(1856), 2, + ACTIONS(4225), 1, + anon_sym_DOT, + STATE(1824), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [51501] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [39890] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(4256), 1, + ACTIONS(4227), 1, aux_sym_class_declaration_token13, - STATE(2231), 1, + STATE(2211), 1, sym_private_section, - STATE(1857), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [51521] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(4258), 1, - anon_sym_DOT, - STATE(2969), 1, - sym__method_declaration_exceptions, - STATE(1858), 2, + [39904] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [51541] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + ACTIONS(4229), 3, + anon_sym_DOT, + aux_sym__method_declaration_raising_token1, + aux_sym__method_declaration_exceptions_token1, + [39914] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(4260), 1, + ACTIONS(4231), 1, aux_sym_class_declaration_token13, - STATE(2107), 1, + STATE(2117), 1, sym_private_section, - STATE(1859), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [51561] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1860), 2, + [39928] = 4, + ACTIONS(2820), 1, + aux_sym__method_declaration_raising_token2, + ACTIONS(4233), 1, + sym_name, + STATE(1068), 1, + aux_sym__method_declaration_raising_repeat1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(4262), 3, - anon_sym_DOT, - anon_sym_COMMA, - sym_name, - [51577] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4182), 1, - anon_sym_COMMA, - ACTIONS(4264), 1, - anon_sym_RPAREN2, - STATE(1691), 1, - aux_sym__select_target_repeat1, - STATE(1861), 2, + [39942] = 3, + ACTIONS(4237), 1, + aux_sym__data_object_typing_normal_token5, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [51597] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + ACTIONS(4235), 2, + anon_sym_DOT, + anon_sym_COMMA, + [39954] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(4266), 1, + ACTIONS(2808), 1, aux_sym_class_declaration_token13, - STATE(2104), 1, + STATE(2087), 1, sym_private_section, - STATE(1862), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [51617] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1863), 2, + [39968] = 4, + ACTIONS(3725), 1, + sym_name, + STATE(1192), 1, + aux_sym_chained_structure_declaration_repeat1, + STATE(1934), 1, + sym_structure_component, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(4268), 3, - anon_sym_DOT, - aux_sym_for_all_entries_token1, - aux_sym__where_clause_token1, - [51633] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, + [39982] = 4, + ACTIONS(3693), 1, sym_name, - ACTIONS(4270), 1, + ACTIONS(4239), 1, anon_sym_DOT, - STATE(1680), 1, + STATE(1824), 1, aux_sym_class_declaration_repeat1, - STATE(1864), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [51653] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(4272), 1, + [39996] = 4, + ACTIONS(4241), 1, + aux_sym_class_declaration_token11, + ACTIONS(4243), 1, + aux_sym_class_declaration_token12, + ACTIONS(4245), 1, anon_sym_DOT, - STATE(2835), 1, - sym__method_declaration_exceptions, - STATE(1865), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [51673] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [40010] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2979), 1, + ACTIONS(2780), 1, aux_sym_class_declaration_token13, - STATE(2097), 1, + STATE(2203), 1, sym_private_section, - STATE(1866), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [51693] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1867), 2, + [40024] = 4, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(4247), 1, + aux_sym_class_declaration_token13, + STATE(2134), 1, + sym_private_section, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(4274), 3, - anon_sym_DOT, - anon_sym_COMMA, - sym_name, - [51709] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, - sym_name, - ACTIONS(4276), 1, + [40038] = 4, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(4249), 1, anon_sym_DOT, - STATE(1680), 1, - aux_sym_class_declaration_repeat1, - STATE(1868), 2, - sym_eol_comment, - sym_bol_comment, - [51729] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1869), 2, + STATE(2265), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(3216), 3, - anon_sym_DOT, - anon_sym_COMMA, - sym_name, - [51745] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, + [40052] = 4, + ACTIONS(3725), 1, sym_name, - ACTIONS(4278), 1, - anon_sym_DOT, - STATE(1680), 1, - aux_sym_class_declaration_repeat1, - STATE(1870), 2, + STATE(1230), 1, + aux_sym_chained_structure_declaration_repeat1, + STATE(1934), 1, + sym_structure_component, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [51765] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, + [40066] = 4, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4280), 1, + ACTIONS(4251), 1, anon_sym_DOT, - STATE(2803), 1, + STATE(2972), 1, sym__method_declaration_exceptions, - STATE(1871), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [51785] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4282), 1, - aux_sym_class_declaration_token11, - ACTIONS(4284), 1, - aux_sym_class_declaration_token12, - ACTIONS(4286), 1, + [40080] = 4, + ACTIONS(3693), 1, + sym_name, + ACTIONS(4253), 1, anon_sym_DOT, - STATE(1872), 2, + STATE(1824), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [51805] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, + [40094] = 4, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4288), 1, + ACTIONS(4255), 1, anon_sym_DOT, - STATE(2286), 1, + STATE(2819), 1, sym__method_declaration_exceptions, - STATE(1873), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [51825] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, - sym_name, - ACTIONS(4290), 1, + [40108] = 4, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(4257), 1, anon_sym_DOT, - STATE(1680), 1, - aux_sym_class_declaration_repeat1, - STATE(1874), 2, + STATE(2200), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [51845] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, + [40122] = 4, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4292), 1, + ACTIONS(4259), 1, anon_sym_DOT, - STATE(2808), 1, + STATE(2079), 1, sym__method_declaration_exceptions, - STATE(1875), 2, - sym_eol_comment, - sym_bol_comment, - [51865] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - STATE(1876), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - ACTIONS(4294), 3, - anon_sym_DOT, - anon_sym_COMMA, - sym_name, - [51881] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, + [40136] = 4, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4296), 1, + ACTIONS(4261), 1, anon_sym_DOT, - STATE(2311), 1, + STATE(2954), 1, sym__method_declaration_exceptions, - STATE(1877), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [51901] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, - sym_name, - ACTIONS(4298), 1, + [40150] = 4, + ACTIONS(4263), 1, + aux_sym_class_declaration_token11, + ACTIONS(4265), 1, + aux_sym_class_declaration_token12, + ACTIONS(4267), 1, anon_sym_DOT, - STATE(1680), 1, - aux_sym_class_declaration_repeat1, - STATE(1878), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [51921] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3236), 1, - aux_sym_class_declaration_token11, - ACTIONS(3238), 1, - aux_sym_class_declaration_token12, - ACTIONS(3240), 1, + [40164] = 4, + ACTIONS(3693), 1, + sym_name, + ACTIONS(4269), 1, anon_sym_DOT, - STATE(1879), 2, + STATE(1824), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [51941] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, + [40178] = 4, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4300), 1, + ACTIONS(4271), 1, anon_sym_DOT, - STATE(2811), 1, + STATE(2803), 1, sym__method_declaration_exceptions, - STATE(1880), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [51961] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, + [40192] = 4, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4302), 1, + ACTIONS(4273), 1, anon_sym_DOT, - STATE(2759), 1, + STATE(2893), 1, sym__method_declaration_exceptions, - STATE(1881), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [51981] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, + [40206] = 4, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4304), 1, + ACTIONS(4275), 1, anon_sym_DOT, - STATE(2318), 1, + STATE(2186), 1, sym__method_declaration_exceptions, - STATE(1882), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [52001] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, - sym_name, - ACTIONS(4306), 1, + [40220] = 3, + ACTIONS(4279), 1, + aux_sym__data_object_typing_normal_token5, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(4277), 2, anon_sym_DOT, - STATE(1680), 1, - aux_sym_class_declaration_repeat1, - STATE(1883), 2, + anon_sym_COMMA, + [40232] = 4, + ACTIONS(4281), 1, + aux_sym_class_declaration_token11, + ACTIONS(4283), 1, + aux_sym_class_declaration_token12, + ACTIONS(4285), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [52021] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, + [40246] = 4, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4308), 1, + ACTIONS(4287), 1, anon_sym_DOT, - STATE(2813), 1, + STATE(2820), 1, sym__method_declaration_exceptions, - STATE(1884), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [52041] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3293), 1, - aux_sym_class_declaration_token11, - ACTIONS(3295), 1, - aux_sym_class_declaration_token12, - ACTIONS(3297), 1, + [40260] = 4, + ACTIONS(3693), 1, + sym_name, + ACTIONS(4289), 1, anon_sym_DOT, - STATE(1885), 2, + STATE(1824), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [52061] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4310), 1, + [40274] = 4, + ACTIONS(4291), 1, aux_sym_class_declaration_token11, - ACTIONS(4312), 1, + ACTIONS(4293), 1, aux_sym_class_declaration_token12, - ACTIONS(4314), 1, + ACTIONS(4295), 1, anon_sym_DOT, - STATE(1886), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [52081] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, + [40288] = 4, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4316), 1, + ACTIONS(4297), 1, anon_sym_DOT, - STATE(2817), 1, + STATE(2181), 1, sym__method_declaration_exceptions, - STATE(1887), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [52101] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, - sym_name, - ACTIONS(4318), 1, - anon_sym_DOT, - STATE(1680), 1, - aux_sym_class_declaration_repeat1, - STATE(1888), 2, + [40302] = 4, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(1954), 1, + aux_sym_class_declaration_token13, + STATE(2999), 1, + sym_private_section, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [52121] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, + [40316] = 4, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4320), 1, + ACTIONS(4299), 1, anon_sym_DOT, - STATE(2353), 1, + STATE(2822), 1, sym__method_declaration_exceptions, - STATE(1889), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [52141] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(4322), 1, + [40330] = 4, + ACTIONS(3693), 1, + sym_name, + ACTIONS(4301), 1, anon_sym_DOT, - STATE(2818), 1, - sym__method_declaration_exceptions, - STATE(1890), 2, + STATE(1824), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [52161] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, + [40344] = 3, + ACTIONS(3200), 1, + aux_sym__data_object_typing_normal_token5, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(3196), 2, + anon_sym_DOT, + anon_sym_COMMA, + [40356] = 4, + ACTIONS(3693), 1, sym_name, - ACTIONS(4324), 1, + ACTIONS(4303), 1, anon_sym_DOT, - STATE(1680), 1, + STATE(1824), 1, aux_sym_class_declaration_repeat1, - STATE(1891), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [52181] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, + [40370] = 4, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4326), 1, + ACTIONS(4305), 1, anon_sym_DOT, - STATE(2393), 1, + STATE(2827), 1, sym__method_declaration_exceptions, - STATE(1892), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [52201] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4328), 1, - aux_sym_class_declaration_token11, - ACTIONS(4330), 1, - aux_sym_class_declaration_token12, - ACTIONS(4332), 1, + [40384] = 2, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(4307), 3, + anon_sym_DOT, + aux_sym_for_all_entries_token1, + aux_sym__where_clause_token1, + [40394] = 4, + ACTIONS(1896), 1, + aux_sym__create_addition_token3, + ACTIONS(2804), 1, + aux_sym_class_declaration_token13, + STATE(2140), 1, + sym_private_section, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [40408] = 4, + ACTIONS(3854), 1, + anon_sym_COMMA, + ACTIONS(4309), 1, anon_sym_DOT, - STATE(1893), 2, + STATE(1549), 1, + aux_sym_chained_interface_declaration_repeat1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [52221] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, + [40422] = 4, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4334), 1, + ACTIONS(4311), 1, anon_sym_DOT, - STATE(2823), 1, + STATE(2173), 1, sym__method_declaration_exceptions, - STATE(1894), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [52241] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, + [40436] = 4, + ACTIONS(3693), 1, sym_name, - ACTIONS(4336), 1, + ACTIONS(4313), 1, anon_sym_DOT, - STATE(1680), 1, + STATE(1824), 1, aux_sym_class_declaration_repeat1, - STATE(1895), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [52261] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, + [40450] = 4, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4338), 1, + ACTIONS(4315), 1, anon_sym_DOT, - STATE(2679), 1, + STATE(2894), 1, sym__method_declaration_exceptions, - STATE(1896), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [52281] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, + [40464] = 4, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4340), 1, + ACTIONS(4317), 1, anon_sym_DOT, - STATE(2827), 1, + STATE(2657), 1, sym__method_declaration_exceptions, - STATE(1897), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [52301] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, + [40478] = 4, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4342), 1, + ACTIONS(4319), 1, anon_sym_DOT, - STATE(2083), 1, + STATE(2085), 1, sym__method_declaration_exceptions, - STATE(1898), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [52321] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, + [40492] = 4, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4344), 1, + ACTIONS(4321), 1, anon_sym_DOT, - STATE(2748), 1, + STATE(2905), 1, sym__method_declaration_exceptions, - STATE(1899), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [52341] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4346), 1, + [40506] = 4, + ACTIONS(4323), 1, aux_sym_class_declaration_token11, - ACTIONS(4348), 1, + ACTIONS(4325), 1, aux_sym_class_declaration_token12, - ACTIONS(4350), 1, + ACTIONS(4327), 1, anon_sym_DOT, - STATE(1900), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [52361] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, + [40520] = 4, + ACTIONS(3693), 1, sym_name, - ACTIONS(4352), 1, + ACTIONS(4329), 1, anon_sym_DOT, - STATE(1680), 1, + STATE(1824), 1, aux_sym_class_declaration_repeat1, - STATE(1901), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [52381] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4354), 1, - aux_sym_class_declaration_token11, - ACTIONS(4356), 1, - aux_sym_class_declaration_token12, - ACTIONS(4358), 1, + [40534] = 4, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(4331), 1, anon_sym_DOT, - STATE(1902), 2, + STATE(2837), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [52401] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, + [40548] = 4, + ACTIONS(3693), 1, sym_name, - ACTIONS(4360), 1, + ACTIONS(4333), 1, anon_sym_DOT, - STATE(1680), 1, + STATE(1824), 1, aux_sym_class_declaration_repeat1, - STATE(1903), 2, - sym_eol_comment, - sym_bol_comment, - [52421] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(4362), 1, - anon_sym_DOT, - STATE(2430), 1, - sym__method_declaration_exceptions, - STATE(1904), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [52441] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4364), 1, + [40562] = 4, + ACTIONS(4335), 1, aux_sym_class_declaration_token11, - ACTIONS(4366), 1, + ACTIONS(4337), 1, aux_sym_class_declaration_token12, - ACTIONS(4368), 1, - anon_sym_DOT, - STATE(1905), 2, - sym_eol_comment, - sym_bol_comment, - [52461] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(4370), 1, - aux_sym_class_declaration_token13, - STATE(2080), 1, - sym_private_section, - STATE(1906), 2, - sym_eol_comment, - sym_bol_comment, - [52481] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(4372), 1, - anon_sym_DOT, - STATE(2736), 1, - sym__method_declaration_exceptions, - STATE(1907), 2, - sym_eol_comment, - sym_bol_comment, - [52501] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(4374), 1, - anon_sym_DOT, - STATE(2834), 1, - sym__method_declaration_exceptions, - STATE(1908), 2, - sym_eol_comment, - sym_bol_comment, - [52521] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, - sym_name, - ACTIONS(4376), 1, + ACTIONS(4339), 1, anon_sym_DOT, - STATE(1680), 1, - aux_sym_class_declaration_repeat1, - STATE(1909), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [52541] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, + [40576] = 4, + ACTIONS(3693), 1, sym_name, - ACTIONS(4378), 1, + ACTIONS(4341), 1, anon_sym_DOT, - STATE(1680), 1, + STATE(1824), 1, aux_sym_class_declaration_repeat1, - STATE(1910), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [52561] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + [40590] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(4380), 1, + ACTIONS(2431), 1, aux_sym_class_declaration_token13, - STATE(2077), 1, + STATE(2221), 1, sym_private_section, - STATE(1911), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [52581] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4382), 1, + [40604] = 4, + ACTIONS(3161), 1, aux_sym_class_declaration_token11, - ACTIONS(4384), 1, + ACTIONS(3163), 1, aux_sym_class_declaration_token12, - ACTIONS(4386), 1, - anon_sym_DOT, - STATE(1912), 2, - sym_eol_comment, - sym_bol_comment, - [52601] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, - sym_name, - ACTIONS(4388), 1, - anon_sym_DOT, - STATE(1680), 1, - aux_sym_class_declaration_repeat1, - STATE(1913), 2, - sym_eol_comment, - sym_bol_comment, - [52621] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, - sym_name, - ACTIONS(4390), 1, + ACTIONS(3165), 1, anon_sym_DOT, - STATE(1680), 1, - aux_sym_class_declaration_repeat1, - STATE(1914), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [52641] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, + [40618] = 4, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4392), 1, + ACTIONS(4343), 1, anon_sym_DOT, - STATE(2838), 1, + STATE(2847), 1, sym__method_declaration_exceptions, - STATE(1915), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [52661] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, + [40632] = 4, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4394), 1, + ACTIONS(4345), 1, anon_sym_DOT, - STATE(2723), 1, + STATE(2166), 1, sym__method_declaration_exceptions, - STATE(1916), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [52681] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, + [40646] = 4, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4396), 1, + ACTIONS(4347), 1, anon_sym_DOT, - STATE(2637), 1, + STATE(2845), 1, sym__method_declaration_exceptions, - STATE(1917), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [52701] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4398), 1, - aux_sym_class_declaration_token11, - ACTIONS(4400), 1, - aux_sym_class_declaration_token12, - ACTIONS(4402), 1, + [40660] = 4, + ACTIONS(3693), 1, + sym_name, + ACTIONS(4349), 1, anon_sym_DOT, - STATE(1918), 2, + STATE(1824), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [52721] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, + [40674] = 4, + ACTIONS(3693), 1, sym_name, - ACTIONS(4404), 1, + ACTIONS(4351), 1, anon_sym_DOT, - STATE(1680), 1, + STATE(1824), 1, aux_sym_class_declaration_repeat1, - STATE(1919), 2, - sym_eol_comment, - sym_bol_comment, - [52741] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [40688] = 4, + ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2777), 1, + ACTIONS(2812), 1, aux_sym_class_declaration_token13, - STATE(2081), 1, + STATE(2202), 1, sym_private_section, - STATE(1920), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [52761] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, + [40702] = 4, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4406), 1, + ACTIONS(4353), 1, anon_sym_DOT, - STATE(2839), 1, + STATE(2898), 1, sym__method_declaration_exceptions, - STATE(1921), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [52781] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, + [40716] = 4, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4408), 1, + ACTIONS(4355), 1, anon_sym_DOT, - STATE(2721), 1, + STATE(2850), 1, sym__method_declaration_exceptions, - STATE(1922), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [52801] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, + [40730] = 4, + ACTIONS(3693), 1, sym_name, - ACTIONS(4410), 1, + ACTIONS(4357), 1, anon_sym_DOT, - STATE(1680), 1, + STATE(1824), 1, aux_sym_class_declaration_repeat1, - STATE(1923), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [52821] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, + [40744] = 4, + ACTIONS(3693), 1, sym_name, - ACTIONS(4412), 1, + ACTIONS(4359), 1, anon_sym_DOT, - STATE(1680), 1, + STATE(1824), 1, aux_sym_class_declaration_repeat1, - STATE(1924), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [52841] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, + [40758] = 4, + ACTIONS(3693), 1, + sym_name, + ACTIONS(4361), 1, + anon_sym_DOT, + STATE(1824), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [40772] = 4, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4414), 1, + ACTIONS(4363), 1, anon_sym_DOT, - STATE(2448), 1, + STATE(2860), 1, sym__method_declaration_exceptions, - STATE(1925), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [52861] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(2763), 1, - aux_sym_class_declaration_token13, - STATE(2263), 1, - sym_private_section, - STATE(1926), 2, + [40786] = 4, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(4365), 1, + anon_sym_DOT, + STATE(2183), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [52881] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, + [40800] = 4, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4416), 1, + ACTIONS(4367), 1, anon_sym_DOT, - STATE(2844), 1, + STATE(2807), 1, sym__method_declaration_exceptions, - STATE(1927), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [52901] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, + [40814] = 4, + ACTIONS(3693), 1, sym_name, - ACTIONS(4418), 1, + ACTIONS(4369), 1, anon_sym_DOT, - STATE(1680), 1, + STATE(1824), 1, aux_sym_class_declaration_repeat1, - STATE(1928), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [52921] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, + [40828] = 4, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4420), 1, + ACTIONS(4371), 1, anon_sym_DOT, - STATE(2710), 1, + STATE(2857), 1, sym__method_declaration_exceptions, - STATE(1929), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [52941] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, + [40842] = 4, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4422), 1, + ACTIONS(4373), 1, anon_sym_DOT, - STATE(2845), 1, + STATE(2097), 1, sym__method_declaration_exceptions, - STATE(1930), 2, - sym_eol_comment, - sym_bol_comment, - [52961] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, - sym_name, - ACTIONS(4424), 1, - anon_sym_DOT, - STATE(1680), 1, - aux_sym_class_declaration_repeat1, - STATE(1931), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [52981] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, - sym_name, - ACTIONS(4426), 1, + [40856] = 4, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(4375), 1, anon_sym_DOT, - STATE(1680), 1, - aux_sym_class_declaration_repeat1, - STATE(1932), 2, + STATE(2172), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [53001] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, + [40870] = 4, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4428), 1, + ACTIONS(4377), 1, anon_sym_DOT, - STATE(2850), 1, + STATE(2881), 1, sym__method_declaration_exceptions, - STATE(1933), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [53021] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, + [40884] = 4, + ACTIONS(3693), 1, sym_name, - ACTIONS(4430), 1, + ACTIONS(4379), 1, anon_sym_DOT, - STATE(1680), 1, + STATE(1824), 1, aux_sym_class_declaration_repeat1, - STATE(1934), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [53041] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, + [40898] = 4, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4432), 1, + ACTIONS(4381), 1, anon_sym_DOT, - STATE(2805), 1, + STATE(2160), 1, sym__method_declaration_exceptions, - STATE(1935), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [53061] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, - sym_name, - ACTIONS(4434), 1, + [40912] = 4, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(4383), 1, anon_sym_DOT, - STATE(1680), 1, - aux_sym_class_declaration_repeat1, - STATE(1936), 2, - sym_eol_comment, - sym_bol_comment, - [53081] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(2733), 1, - aux_sym_class_declaration_token13, - STATE(2377), 1, - sym_private_section, - STATE(1937), 2, + STATE(2873), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [53101] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, + [40926] = 4, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4436), 1, + ACTIONS(4385), 1, anon_sym_DOT, - STATE(2853), 1, + STATE(2158), 1, sym__method_declaration_exceptions, - STATE(1938), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [53121] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(4438), 1, - aux_sym_class_declaration_token13, - STATE(2363), 1, - sym_private_section, - STATE(1939), 2, + [40940] = 4, + ACTIONS(1318), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(4387), 1, + anon_sym_DOT, + STATE(2118), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [53141] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, + [40954] = 4, + ACTIONS(3693), 1, sym_name, - ACTIONS(4440), 1, + ACTIONS(4389), 1, anon_sym_DOT, - STATE(1680), 1, + STATE(1824), 1, aux_sym_class_declaration_repeat1, - STATE(1940), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [53161] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, + [40968] = 4, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4442), 1, + ACTIONS(4391), 1, anon_sym_DOT, - STATE(2865), 1, + STATE(2280), 1, sym__method_declaration_exceptions, - STATE(1941), 2, - sym_eol_comment, - sym_bol_comment, - [53181] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(2731), 1, - aux_sym_class_declaration_token13, - STATE(2331), 1, - sym_private_section, - STATE(1942), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [53201] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, + [40982] = 4, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4444), 1, + ACTIONS(4393), 1, anon_sym_DOT, - STATE(2677), 1, + STATE(2878), 1, sym__method_declaration_exceptions, - STATE(1943), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [53221] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, + [40996] = 4, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4446), 1, + ACTIONS(4395), 1, anon_sym_DOT, - STATE(2906), 1, + STATE(2147), 1, sym__method_declaration_exceptions, - STATE(1944), 2, - sym_eol_comment, - sym_bol_comment, - [53241] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4010), 1, - sym_name, - STATE(1533), 1, - aux_sym_chained_structure_declaration_repeat1, - STATE(2066), 1, - sym_structure_component, - STATE(1945), 2, - sym_eol_comment, - sym_bol_comment, - [53261] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(4448), 1, - aux_sym_class_declaration_token13, - STATE(2299), 1, - sym_private_section, - STATE(1946), 2, - sym_eol_comment, - sym_bol_comment, - [53281] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1844), 1, - aux_sym__create_addition_token3, - ACTIONS(2993), 1, - aux_sym_class_declaration_token13, - STATE(2915), 1, - sym_private_section, - STATE(1947), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [53301] = 6, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1312), 1, + [41010] = 4, + ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4450), 1, + ACTIONS(4397), 1, anon_sym_DOT, - STATE(2883), 1, + STATE(2870), 1, sym__method_declaration_exceptions, - STATE(1948), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [53321] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4452), 1, - sym_name, - ACTIONS(4454), 1, - aux_sym_raise_exception_statement_token2, - STATE(1949), 2, + [41024] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [53338] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, + ACTIONS(4399), 3, + anon_sym_DOT, + aux_sym_for_all_entries_token1, + aux_sym__where_clause_token1, + [41034] = 3, + ACTIONS(4401), 1, sym_name, - STATE(1914), 1, + STATE(1623), 1, aux_sym_class_declaration_repeat1, - STATE(1950), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [53355] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, + [41045] = 3, + ACTIONS(4403), 1, sym_name, - STATE(1864), 1, + STATE(1821), 1, aux_sym_class_declaration_repeat1, - STATE(1951), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [53372] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4456), 1, - aux_sym__data_object_typing_normal_token5, - ACTIONS(4458), 1, - anon_sym_COMMA, - STATE(1952), 2, - sym_eol_comment, - sym_bol_comment, - [53389] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4460), 1, - aux_sym_loop_statement_token3, - ACTIONS(4462), 1, - aux_sym_loop_statement_token4, - STATE(1953), 2, + [41056] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [53406] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, + ACTIONS(4405), 2, + anon_sym_DOT, + anon_sym_COMMA, + [41065] = 3, + ACTIONS(4407), 1, sym_name, - STATE(1940), 1, + STATE(1749), 1, aux_sym_class_declaration_repeat1, - STATE(1954), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [53423] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, - sym_name, - STATE(1936), 1, - aux_sym_class_declaration_repeat1, - STATE(1955), 2, + [41076] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [53440] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, - sym_name, - STATE(1932), 1, - aux_sym_class_declaration_repeat1, - STATE(1956), 2, + ACTIONS(4409), 2, + anon_sym_DOT, + anon_sym_COMMA, + [41085] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [53457] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, - sym_name, - STATE(1931), 1, - aux_sym_class_declaration_repeat1, - STATE(1957), 2, + ACTIONS(4411), 2, + anon_sym_DOT, + anon_sym_COMMA, + [41094] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [53474] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, - sym_name, - STATE(1928), 1, - aux_sym_class_declaration_repeat1, - STATE(1958), 2, + ACTIONS(4413), 2, + anon_sym_DOT, + anon_sym_COMMA, + [41103] = 3, + ACTIONS(2742), 1, + aux_sym__where_clause_token1, + STATE(3001), 1, + sym__where_clause, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [53491] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, + [41114] = 3, + ACTIONS(4415), 1, sym_name, - STATE(1924), 1, + STATE(1764), 1, aux_sym_class_declaration_repeat1, - STATE(1959), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [53508] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, + [41125] = 3, + ACTIONS(4417), 1, sym_name, - STATE(1923), 1, + STATE(1777), 1, aux_sym_class_declaration_repeat1, - STATE(1960), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [53525] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, + [41136] = 3, + ACTIONS(4419), 1, sym_name, - STATE(1919), 1, + STATE(1790), 1, aux_sym_class_declaration_repeat1, - STATE(1961), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [53542] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, + [41147] = 3, + ACTIONS(4421), 1, sym_name, - STATE(1913), 1, + STATE(1780), 1, aux_sym_class_declaration_repeat1, - STATE(1962), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [53559] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, + [41158] = 3, + ACTIONS(4423), 1, sym_name, - STATE(1910), 1, + STATE(1795), 1, aux_sym_class_declaration_repeat1, - STATE(1963), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [53576] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, + [41169] = 3, + ACTIONS(4425), 1, sym_name, - STATE(1909), 1, - aux_sym_class_declaration_repeat1, - STATE(1964), 2, + STATE(2062), 1, + sym_interface, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [53593] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, - sym_name, - STATE(1903), 1, - aux_sym_class_declaration_repeat1, - STATE(1965), 2, + [41180] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [53610] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, + ACTIONS(4427), 2, + aux_sym_try_catch_statement_token2, + aux_sym_catch_statement_token1, + [41189] = 3, + ACTIONS(4429), 1, sym_name, - STATE(1901), 1, + STATE(1774), 1, aux_sym_class_declaration_repeat1, - STATE(1966), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [53627] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, - sym_name, - STATE(1895), 1, - aux_sym_class_declaration_repeat1, - STATE(1967), 2, + [41200] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [53644] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, - sym_name, - STATE(1891), 1, - aux_sym_class_declaration_repeat1, - STATE(1968), 2, + ACTIONS(4431), 2, + anon_sym_DOT, + aux_sym_line_spec_token1, + [41209] = 3, + ACTIONS(2742), 1, + aux_sym__where_clause_token1, + STATE(2234), 1, + sym__where_clause, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [53661] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, - sym_name, - STATE(1888), 1, - aux_sym_class_declaration_repeat1, - STATE(1969), 2, + [41220] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [53678] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, + ACTIONS(4433), 2, + anon_sym_DOT, + anon_sym_COMMA, + [41229] = 3, + ACTIONS(4435), 1, sym_name, - STATE(1883), 1, - aux_sym_class_declaration_repeat1, - STATE(1970), 2, + ACTIONS(4437), 1, + aux_sym_complete_typing_token1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [53695] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4464), 1, - sym_name, - ACTIONS(4466), 1, - anon_sym_COLON, - STATE(1971), 2, + [41240] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [53712] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4468), 2, - aux_sym_class_declaration_token13, - aux_sym_method_implementation_token1, - STATE(1972), 2, + ACTIONS(4439), 2, + anon_sym_DOT, + anon_sym_COMMA, + [41249] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [53727] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, + ACTIONS(4441), 2, + aux_sym_class_method_declaration_interface_token1, + aux_sym_class_method_declaration_interface_token2, + [41258] = 3, + ACTIONS(4443), 1, sym_name, - STATE(1878), 1, - aux_sym_class_declaration_repeat1, - STATE(1973), 2, + ACTIONS(4445), 1, + aux_sym_chained_structure_declaration_token2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [53744] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, + [41269] = 3, + ACTIONS(4447), 1, sym_name, - STATE(1874), 1, + STATE(1794), 1, aux_sym_class_declaration_repeat1, - STATE(1974), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [53761] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, + [41280] = 3, + ACTIONS(4449), 1, sym_name, - STATE(1870), 1, + STATE(1800), 1, aux_sym_class_declaration_repeat1, - STATE(1975), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [53778] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, - sym_name, - STATE(1868), 1, - aux_sym_class_declaration_repeat1, - STATE(1976), 2, + [41291] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [53795] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, + ACTIONS(4451), 2, + aux_sym_class_method_declaration_interface_token1, + aux_sym_class_method_declaration_interface_token2, + [41300] = 3, + ACTIONS(4453), 1, sym_name, - STATE(1827), 1, + STATE(1668), 1, aux_sym_class_declaration_repeat1, - STATE(1977), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [53812] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4470), 1, - anon_sym_COLON, - ACTIONS(4472), 1, - sym_field_symbol_name, - STATE(1978), 2, + [41311] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [53829] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, + ACTIONS(4455), 2, + anon_sym_DOT, + anon_sym_COMMA, + [41320] = 3, + ACTIONS(4457), 1, sym_name, - STATE(1830), 1, - aux_sym_class_declaration_repeat1, - STATE(1979), 2, + ACTIONS(4459), 1, + aux_sym__data_object_typing_normal_token3, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [53846] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, - sym_name, - STATE(1819), 1, - aux_sym_class_declaration_repeat1, - STATE(1980), 2, + [41331] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [53863] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, + ACTIONS(4461), 2, + anon_sym_DOT, + anon_sym_COMMA, + [41340] = 3, + ACTIONS(4463), 1, sym_name, - STATE(1811), 1, + STATE(1770), 1, aux_sym_class_declaration_repeat1, - STATE(1981), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [53880] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4474), 1, - aux_sym_class_declaration_token5, - ACTIONS(4476), 1, - aux_sym_select_statement_obsolete_token2, - STATE(1982), 2, + [41351] = 3, + ACTIONS(4465), 1, + anon_sym_COMMA, + ACTIONS(4467), 1, + aux_sym__data_object_typing_normal_token5, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [53897] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4478), 1, - aux_sym_generic_typing_token1, - STATE(1667), 1, - sym_complete_typing, - STATE(1983), 2, + [41362] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [53914] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, + ACTIONS(4469), 2, + anon_sym_DOT, + anon_sym_COMMA, + [41371] = 3, + ACTIONS(4471), 1, sym_name, - STATE(1710), 1, + STATE(1891), 1, aux_sym_class_declaration_repeat1, - STATE(1984), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [53931] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2783), 1, - aux_sym__where_clause_token1, - STATE(2795), 1, - sym__where_clause, - STATE(1985), 2, + [41382] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [53948] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4480), 1, - sym_name, - ACTIONS(4482), 1, - aux_sym_raise_exception_statement_token2, - STATE(1986), 2, + ACTIONS(4235), 2, + anon_sym_DOT, + anon_sym_COMMA, + [41391] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [53965] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4484), 2, + ACTIONS(4473), 2, + aux_sym_class_declaration_token13, + aux_sym_method_implementation_token1, + [41400] = 2, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(4475), 2, + anon_sym_DOT, + anon_sym_COMMA, + [41409] = 3, + ACTIONS(3643), 1, sym_name, - sym_field_symbol_name, - STATE(1987), 2, + ACTIONS(3645), 1, + aux_sym_complete_typing_token1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [53980] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, + [41420] = 3, + ACTIONS(4477), 1, sym_name, - STATE(1639), 1, + STATE(1836), 1, aux_sym_class_declaration_repeat1, - STATE(1988), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [53997] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4486), 1, - aux_sym_class_declaration_token2, - ACTIONS(4488), 1, - aux_sym_class_implementation_token1, - STATE(1989), 2, + [41431] = 3, + ACTIONS(4425), 1, + sym_name, + STATE(1610), 1, + sym_interface, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [54014] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4490), 1, - aux_sym_class_declaration_token3, - ACTIONS(4492), 1, + [41442] = 2, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(4221), 2, anon_sym_DOT, - STATE(1990), 2, + anon_sym_COMMA, + [41451] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [54031] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, + ACTIONS(4479), 2, + anon_sym_DOT, + anon_sym_COMMA, + [41460] = 3, + ACTIONS(4481), 1, sym_name, - STATE(1616), 1, + STATE(1804), 1, aux_sym_class_declaration_repeat1, - STATE(1991), 2, - sym_eol_comment, - sym_bol_comment, - [54048] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1222), 1, - anon_sym_EQ, - ACTIONS(4494), 1, - anon_sym_LPAREN3, - STATE(1992), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [54065] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4496), 1, - aux_sym_class_declaration_token3, - ACTIONS(4498), 1, - anon_sym_DOT, - STATE(1993), 2, + [41471] = 3, + ACTIONS(4483), 1, + sym_name, + STATE(1877), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [54082] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4500), 1, - aux_sym_class_declaration_token2, - ACTIONS(4502), 1, - aux_sym_class_implementation_token1, - STATE(1994), 2, + [41482] = 3, + ACTIONS(4485), 1, + sym_name, + STATE(1010), 1, + aux_sym_line_spec_repeat1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [54099] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4504), 1, - anon_sym_COLON, - ACTIONS(4506), 1, - sym_field_symbol_name, - STATE(1995), 2, + [41493] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [54116] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4508), 1, - sym_name, - ACTIONS(4510), 1, - anon_sym_COLON, - STATE(1996), 2, + ACTIONS(4487), 2, + anon_sym_DOT, + aux_sym_line_spec_token1, + [41502] = 3, + ACTIONS(3339), 1, + aux_sym_generic_type_token2, + ACTIONS(4489), 1, + aux_sym__select_target_token1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [54133] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, - sym_name, - STATE(1776), 1, - aux_sym_class_declaration_repeat1, - STATE(1997), 2, + [41513] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [54150] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, + ACTIONS(4491), 2, + anon_sym_DOT, sym_name, - STATE(1593), 1, - aux_sym_class_declaration_repeat1, - STATE(1998), 2, - sym_eol_comment, - sym_bol_comment, - [54167] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, + [41522] = 3, + ACTIONS(4493), 1, sym_name, - STATE(1799), 1, + STATE(1716), 1, aux_sym_class_declaration_repeat1, - STATE(1999), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [54184] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, - sym_name, - STATE(1829), 1, - aux_sym_class_declaration_repeat1, - STATE(2000), 2, + [41533] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [54201] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4512), 2, - aux_sym_class_declaration_token5, - aux_sym_select_statement_obsolete_token2, - STATE(2001), 2, + ACTIONS(4168), 2, + anon_sym_DOT, + anon_sym_COMMA, + [41542] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [54216] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4514), 1, - aux_sym_class_declaration_token5, - ACTIONS(4516), 1, - aux_sym_select_statement_obsolete_token2, - STATE(2002), 2, + ACTIONS(4495), 2, + anon_sym_DOT, + anon_sym_COMMA, + [41551] = 3, + ACTIONS(4497), 1, + sym_name, + STATE(1726), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [54233] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3596), 1, + [41562] = 3, + ACTIONS(4499), 1, sym_name, - ACTIONS(3598), 1, - aux_sym_complete_typing_token1, - STATE(2003), 2, + ACTIONS(4501), 1, + aux_sym__data_object_typing_normal_token3, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [54250] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4518), 1, + [41573] = 2, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(4503), 2, + anon_sym_DOT, + anon_sym_COMMA, + [41582] = 3, + ACTIONS(4505), 1, sym_name, - ACTIONS(4520), 1, - aux_sym_generic_typing_token1, - STATE(2004), 2, + ACTIONS(4507), 1, + aux_sym__data_object_typing_normal_token3, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [54267] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4522), 1, + [41593] = 3, + ACTIONS(4509), 1, anon_sym_DOT, - ACTIONS(4524), 1, + ACTIONS(4511), 1, aux_sym_complete_typing_token2, - STATE(2005), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [54284] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4526), 1, + [41604] = 3, + ACTIONS(4513), 1, anon_sym_DOT, - ACTIONS(4528), 1, + ACTIONS(4515), 1, aux_sym_if_statement_token1, - STATE(2006), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [54301] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4000), 2, - anon_sym_COMMA, - anon_sym_RPAREN2, - STATE(2007), 2, + [41615] = 3, + ACTIONS(4517), 1, + sym_name, + ACTIONS(4519), 1, + aux_sym_complete_typing_token1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [54316] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4530), 1, + [41626] = 3, + ACTIONS(4521), 1, + sym_name, + STATE(1782), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [41637] = 3, + ACTIONS(4523), 1, anon_sym_DOT, - ACTIONS(4532), 1, + ACTIONS(4525), 1, aux_sym__method_declaration_exporting_token1, - STATE(2008), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [54333] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, - sym_name, - STATE(1613), 1, - aux_sym_class_declaration_repeat1, - STATE(2009), 2, + [41648] = 3, + ACTIONS(4527), 1, + anon_sym_COLON, + ACTIONS(4529), 1, + sym_field_symbol_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [54350] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4534), 2, - aux_sym_chained_structure_declaration_token2, + [41659] = 3, + ACTIONS(4531), 1, sym_name, - STATE(2010), 2, + STATE(1505), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [54365] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2783), 1, - aux_sym__where_clause_token1, - STATE(2525), 1, - sym__where_clause, - STATE(2011), 2, + [41670] = 3, + ACTIONS(4533), 1, + sym_name, + ACTIONS(4535), 1, + aux_sym_raise_exception_statement_token2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [54382] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, + [41681] = 3, + ACTIONS(4537), 1, sym_name, - STATE(1636), 1, + STATE(1813), 1, aux_sym_class_declaration_repeat1, - STATE(2012), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [54399] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2801), 1, + [41692] = 2, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(4539), 2, + sym_name, sym_field_symbol_name, - STATE(1608), 1, - sym_field_symbol, - STATE(2013), 2, + [41701] = 3, + ACTIONS(4541), 1, + sym_name, + STATE(1600), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [54416] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4536), 1, - aux_sym_loop_statement_token3, - ACTIONS(4538), 1, - aux_sym_loop_statement_token4, - STATE(2014), 2, + [41712] = 3, + ACTIONS(4543), 1, + aux_sym_class_declaration_token2, + ACTIONS(4545), 1, + aux_sym_class_implementation_token1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [54433] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4540), 2, - aux_sym_try_catch_statement_token2, - aux_sym_catch_statement_token1, - STATE(2015), 2, + [41723] = 3, + ACTIONS(4547), 1, + aux_sym_class_declaration_token3, + ACTIONS(4549), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [54448] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2783), 1, - aux_sym__where_clause_token1, - STATE(2488), 1, - sym__where_clause, - STATE(2016), 2, + [41734] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [54465] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2821), 1, + ACTIONS(4103), 2, + anon_sym_DOT, + anon_sym_COMMA, + [41743] = 3, + ACTIONS(4551), 1, sym_name, - STATE(1586), 1, - sym_variable, - STATE(2017), 2, + ACTIONS(4553), 1, + aux_sym_constructor_declaration_token1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [54482] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, + [41754] = 3, + ACTIONS(4555), 1, sym_name, - STATE(1575), 1, + STATE(1658), 1, aux_sym_class_declaration_repeat1, - STATE(2018), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [54499] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4542), 2, - anon_sym_RBRACK, + [41765] = 3, + ACTIONS(4557), 1, sym_name, - STATE(2019), 2, + ACTIONS(4559), 1, + aux_sym_class_constructor_declaration_token2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [54514] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1222), 1, - anon_sym_EQ, - ACTIONS(4544), 1, - anon_sym_LPAREN3, - STATE(2020), 2, + [41776] = 3, + ACTIONS(4561), 1, + sym_name, + STATE(1828), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [54531] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2767), 1, - aux_sym_line_spec_token1, - STATE(2471), 1, - sym_line_spec, - STATE(2021), 2, + [41787] = 3, + ACTIONS(4563), 1, + anon_sym_COMMA, + ACTIONS(4565), 1, + aux_sym__data_object_typing_normal_token5, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [54548] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3343), 1, + [41798] = 3, + ACTIONS(4567), 1, + aux_sym_class_declaration_token3, + ACTIONS(4569), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [41809] = 3, + ACTIONS(4571), 1, + anon_sym_DOT, + ACTIONS(4573), 1, + aux_sym__method_declaration_exporting_token1, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [41820] = 3, + ACTIONS(4575), 1, sym_name, - STATE(1104), 1, - sym_parameter_binding, - STATE(2022), 2, + ACTIONS(4577), 1, + aux_sym__data_object_typing_normal_token3, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [54565] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, + [41831] = 3, + ACTIONS(4579), 1, sym_name, - STATE(1641), 1, + STATE(1743), 1, aux_sym_class_declaration_repeat1, - STATE(2023), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [54582] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, + [41842] = 2, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(4033), 2, + anon_sym_DOT, + anon_sym_COMMA, + [41851] = 3, + ACTIONS(4581), 1, sym_name, - STATE(1644), 1, + STATE(1826), 1, aux_sym_class_declaration_repeat1, - STATE(2024), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [54599] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4546), 1, - aux_sym_class_declaration_token3, - ACTIONS(4548), 1, - anon_sym_DOT, - STATE(2025), 2, + [41862] = 3, + ACTIONS(4583), 1, + sym_name, + STATE(1843), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [54616] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4550), 1, + [41873] = 3, + ACTIONS(4585), 1, sym_name, - ACTIONS(4552), 1, - aux_sym_generic_typing_token1, - STATE(2026), 2, + ACTIONS(4587), 1, + aux_sym_raise_exception_statement_token2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [54633] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4554), 2, + [41884] = 3, + ACTIONS(4589), 1, sym_name, - sym_field_symbol_name, - STATE(2027), 2, + STATE(1849), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [54648] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4556), 1, - anon_sym_DOT, - ACTIONS(4558), 1, - aux_sym__method_declaration_exporting_token1, - STATE(2028), 2, + [41895] = 3, + ACTIONS(4591), 1, + sym_name, + ACTIONS(4593), 1, + aux_sym_chained_structure_declaration_token2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [54665] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4560), 1, - aux_sym_class_declaration_token3, - ACTIONS(4562), 1, - anon_sym_DOT, - STATE(2029), 2, + [41906] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [54682] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, + ACTIONS(4595), 2, sym_name, - STATE(1794), 1, + sym_field_symbol_name, + [41915] = 3, + ACTIONS(4597), 1, + sym_name, + STATE(1676), 1, aux_sym_class_declaration_repeat1, - STATE(2030), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [54699] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4564), 1, - anon_sym_DOT, - ACTIONS(4566), 1, - aux_sym__method_declaration_exporting_token1, - STATE(2031), 2, + [41926] = 3, + ACTIONS(654), 1, + anon_sym_EQ, + ACTIONS(4599), 1, + anon_sym_LPAREN2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [54716] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4568), 1, - anon_sym_DOT, - ACTIONS(4570), 1, - aux_sym_if_statement_token1, - STATE(2032), 2, + [41937] = 3, + ACTIONS(4601), 1, + sym_name, + STATE(1856), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [54733] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4572), 1, - anon_sym_DOT, - ACTIONS(4574), 1, - aux_sym_complete_typing_token2, - STATE(2033), 2, + [41948] = 3, + ACTIONS(4603), 1, + sym_name, + ACTIONS(4605), 1, + anon_sym_COLON, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [54750] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2767), 1, - aux_sym_line_spec_token1, - STATE(2337), 1, - sym_line_spec, - STATE(2034), 2, + [41959] = 3, + ACTIONS(4607), 1, + sym_field_symbol_name, + STATE(1772), 1, + sym_field_symbol, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [54767] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4576), 1, - anon_sym_DOT, - ACTIONS(4578), 1, - aux_sym_loop_statement_token3, - STATE(2035), 2, + [41970] = 3, + ACTIONS(4609), 1, + sym_name, + STATE(1684), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [54784] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4580), 1, - anon_sym_DOT, - ACTIONS(4582), 1, - aux_sym__method_declaration_exporting_token1, - STATE(2036), 2, + [41981] = 3, + ACTIONS(4611), 1, + aux_sym_class_declaration_token5, + ACTIONS(4613), 1, + aux_sym_select_statement_obsolete_token2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [54801] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, - sym_name, - STATE(1668), 1, - aux_sym_class_declaration_repeat1, - STATE(2037), 2, + [41992] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [54818] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4584), 2, + ACTIONS(4615), 2, anon_sym_DOT, + anon_sym_COMMA, + [42001] = 3, + ACTIONS(4617), 1, sym_name, - STATE(2038), 2, + ACTIONS(4619), 1, + aux_sym_generic_typing_token1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [54833] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, + [42012] = 3, + ACTIONS(4621), 1, sym_name, - STATE(1834), 1, + STATE(1861), 1, aux_sym_class_declaration_repeat1, - STATE(2039), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [54850] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, + [42023] = 2, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(4017), 2, + anon_sym_DOT, + anon_sym_COMMA, + [42032] = 3, + ACTIONS(4623), 1, sym_name, - STATE(1721), 1, + STATE(1863), 1, aux_sym_class_declaration_repeat1, - STATE(2040), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [54867] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4586), 2, - aux_sym_class_declaration_token13, - aux_sym_method_implementation_token1, - STATE(2041), 2, + [42043] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [54882] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4588), 1, - aux_sym__data_object_typing_normal_token5, - ACTIONS(4590), 1, + ACTIONS(3996), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2042), 2, + [42052] = 3, + ACTIONS(4625), 1, + sym_name, + STATE(1631), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [54899] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4592), 1, + [42063] = 3, + ACTIONS(4627), 1, sym_name, - ACTIONS(4594), 1, - aux_sym_complete_typing_token1, - STATE(2043), 2, + STATE(1875), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [54916] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4596), 1, + [42074] = 3, + ACTIONS(4629), 1, sym_name, - ACTIONS(4598), 1, - aux_sym__data_object_typing_normal_token3, - STATE(2044), 2, + STATE(1699), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [54933] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4600), 1, + [42085] = 3, + ACTIONS(4631), 1, + aux_sym_class_declaration_token3, + ACTIONS(4633), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [42096] = 3, + ACTIONS(4635), 1, sym_name, - ACTIONS(4602), 1, - aux_sym__data_object_typing_normal_token3, - STATE(2045), 2, + STATE(1819), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [54950] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4604), 1, - aux_sym_generic_type_token2, - ACTIONS(4606), 1, - aux_sym__select_target_token1, - STATE(2046), 2, + [42107] = 3, + ACTIONS(4637), 1, + aux_sym_class_declaration_token2, + ACTIONS(4639), 1, + aux_sym_class_implementation_token1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [54967] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4608), 2, - anon_sym_DOT, - aux_sym_line_spec_token1, - STATE(2047), 2, + [42118] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [54982] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4610), 1, + ACTIONS(4641), 2, + aux_sym_try_catch_statement_token2, + aux_sym_catch_statement_token1, + [42127] = 3, + ACTIONS(4643), 1, sym_name, - STATE(1020), 1, - aux_sym_line_spec_repeat1, - STATE(2048), 2, + STATE(1869), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [54999] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4612), 2, - anon_sym_DOT, - sym_name, - STATE(2049), 2, + [42138] = 3, + ACTIONS(2848), 1, + aux_sym_line_spec_token1, + STATE(2457), 1, + sym_line_spec, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [55014] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, + [42149] = 3, + ACTIONS(4645), 1, + anon_sym_COLON, + ACTIONS(4647), 1, + sym_field_symbol_name, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [42160] = 3, + ACTIONS(4649), 1, sym_name, - STATE(1727), 1, + STATE(1879), 1, aux_sym_class_declaration_repeat1, - STATE(2050), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [55031] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4614), 1, + [42171] = 3, + ACTIONS(4651), 1, sym_name, - ACTIONS(4616), 1, - aux_sym_class_constructor_declaration_token2, - STATE(2051), 2, + ACTIONS(4653), 1, + anon_sym_COLON, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [55048] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4618), 1, + [42182] = 3, + ACTIONS(4655), 1, sym_name, - ACTIONS(4620), 1, - aux_sym_constructor_declaration_token1, - STATE(2052), 2, + STATE(1742), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [55065] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, + [42193] = 3, + ACTIONS(4657), 1, sym_name, - STATE(1739), 1, + STATE(1885), 1, aux_sym_class_declaration_repeat1, - STATE(2053), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [55082] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4622), 2, - aux_sym_class_method_declaration_interface_token1, - aux_sym_class_method_declaration_interface_token2, - STATE(2054), 2, + [42204] = 3, + ACTIONS(4659), 1, + sym_name, + ACTIONS(4661), 1, + aux_sym_generic_type_token2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [55097] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4624), 2, - aux_sym_class_method_declaration_interface_token1, - aux_sym_class_method_declaration_interface_token2, - STATE(2055), 2, + [42215] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [55112] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4626), 1, + ACTIONS(4663), 2, + aux_sym_class_declaration_token5, + aux_sym_select_statement_obsolete_token2, + [42224] = 3, + ACTIONS(4665), 1, sym_name, - ACTIONS(4628), 1, - aux_sym_complete_typing_token1, - STATE(2056), 2, - sym_eol_comment, - sym_bol_comment, - [55129] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2783), 1, - aux_sym__where_clause_token1, - STATE(2135), 1, - sym__where_clause, - STATE(2057), 2, + STATE(1886), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [55146] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4630), 2, + [42235] = 3, + ACTIONS(4667), 1, anon_sym_DOT, - aux_sym_line_spec_token1, - STATE(2058), 2, + ACTIONS(4669), 1, + aux_sym__method_declaration_exporting_token1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [55161] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4632), 1, + [42246] = 3, + ACTIONS(4671), 1, sym_name, - ACTIONS(4634), 1, - aux_sym_generic_type_token2, - STATE(2059), 2, + STATE(1557), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [55178] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4636), 2, - aux_sym_try_catch_statement_token2, - aux_sym_catch_statement_token1, - STATE(2060), 2, + [42257] = 3, + ACTIONS(2742), 1, + aux_sym__where_clause_token1, + STATE(2475), 1, + sym__where_clause, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [55193] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, + [42268] = 3, + ACTIONS(4673), 1, sym_name, - STATE(1831), 1, + STATE(1890), 1, aux_sym_class_declaration_repeat1, - STATE(2061), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [55210] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, - sym_name, - STATE(1846), 1, - aux_sym_class_declaration_repeat1, - STATE(2062), 2, + [42279] = 3, + ACTIONS(4675), 1, + anon_sym_DOT, + ACTIONS(4677), 1, + aux_sym_loop_statement_token3, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [55227] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4638), 2, - aux_sym_class_declaration_token13, - aux_sym_method_implementation_token1, - STATE(2063), 2, + [42290] = 3, + ACTIONS(2848), 1, + aux_sym_line_spec_token1, + STATE(2391), 1, + sym_line_spec, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [55242] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, + [42301] = 3, + ACTIONS(4679), 1, sym_name, - STATE(1781), 1, + STATE(1708), 1, aux_sym_class_declaration_repeat1, - STATE(2064), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [55259] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, - sym_name, - STATE(1848), 1, - aux_sym_class_declaration_repeat1, - STATE(2065), 2, + [42312] = 3, + ACTIONS(4607), 1, + sym_field_symbol_name, + STATE(1961), 1, + sym_field_symbol, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [55276] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4640), 2, - aux_sym_chained_structure_declaration_token2, - sym_name, - STATE(2066), 2, + [42323] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [55291] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, + ACTIONS(4681), 2, + anon_sym_DOT, + anon_sym_COMMA, + [42332] = 3, + ACTIONS(4607), 1, + sym_field_symbol_name, + STATE(1528), 1, + sym_field_symbol, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [42343] = 3, + ACTIONS(4683), 1, sym_name, - STATE(1934), 1, + STATE(1892), 1, aux_sym_class_declaration_repeat1, - STATE(2067), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [55308] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4642), 1, + [42354] = 3, + ACTIONS(4685), 1, sym_name, - ACTIONS(4644), 1, - aux_sym__data_object_typing_normal_token3, - STATE(2068), 2, + STATE(1980), 1, + sym_variable, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [55325] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4646), 1, - sym_name, - ACTIONS(4648), 1, - aux_sym__data_object_typing_normal_token3, - STATE(2069), 2, + [42365] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [55342] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4650), 2, + ACTIONS(3864), 2, anon_sym_DOT, - sym_name, - STATE(2070), 2, + anon_sym_COMMA, + [42374] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [55357] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, + ACTIONS(4687), 2, + anon_sym_DOT, + anon_sym_COMMA, + [42383] = 3, + ACTIONS(4689), 1, sym_name, - STATE(1826), 1, + STATE(1896), 1, aux_sym_class_declaration_repeat1, - STATE(2071), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [55374] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, - sym_name, - STATE(1809), 1, - aux_sym_class_declaration_repeat1, - STATE(2072), 2, + [42394] = 3, + ACTIONS(2742), 1, + aux_sym__where_clause_token1, + STATE(2512), 1, + sym__where_clause, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [55391] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4652), 2, - aux_sym_try_catch_statement_token2, - aux_sym_catch_statement_token1, - STATE(2073), 2, + [42405] = 3, + ACTIONS(4691), 1, + aux_sym_class_declaration_token5, + ACTIONS(4693), 1, + aux_sym_select_statement_obsolete_token2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [55406] = 5, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3844), 1, + [42416] = 2, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + ACTIONS(4695), 2, + anon_sym_RBRACK, sym_name, - STATE(1628), 1, + [42425] = 3, + ACTIONS(4697), 1, + sym_name, + STATE(1901), 1, aux_sym_class_declaration_repeat1, - STATE(2074), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [55423] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4654), 1, - aux_sym_class_declaration_token9, - STATE(2075), 2, + [42436] = 3, + ACTIONS(4699), 1, + aux_sym_class_declaration_token3, + ACTIONS(4701), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [55437] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4656), 1, - anon_sym_DOT, - STATE(2076), 2, + [42447] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [55451] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4658), 1, + ACTIONS(4703), 2, aux_sym_class_declaration_token13, - STATE(2077), 2, + aux_sym_method_implementation_token1, + [42456] = 3, + ACTIONS(4705), 1, + sym_name, + STATE(1719), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [55465] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4660), 1, - aux_sym_class_declaration_token13, - STATE(2078), 2, + [42467] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [55479] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4662), 1, + ACTIONS(4707), 2, anon_sym_DOT, - STATE(2079), 2, + anon_sym_COMMA, + [42476] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [55493] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4664), 1, - aux_sym_class_declaration_token13, - STATE(2080), 2, + ACTIONS(4709), 2, + anon_sym_DOT, + anon_sym_COMMA, + [42485] = 3, + ACTIONS(4711), 1, + sym_name, + STATE(1906), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [55507] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4248), 1, - aux_sym_class_declaration_token13, - STATE(2081), 2, + [42496] = 3, + ACTIONS(3301), 1, + sym_name, + STATE(1140), 1, + sym_parameter_binding, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [55521] = 4, + [42507] = 4, + ACTIONS(3), 1, + sym_eol_comment, ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, + sym_bol_comment, + ACTIONS(4713), 1, anon_sym_STAR, - ACTIONS(2661), 1, - aux_sym_class_declaration_token12, - STATE(2082), 2, + STATE(2003), 1, + sym_select_list, + [42520] = 3, + ACTIONS(4715), 1, + sym_name, + STATE(1781), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [55535] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4666), 1, - anon_sym_DOT, - STATE(2083), 2, + [42531] = 3, + ACTIONS(4717), 1, + sym_name, + ACTIONS(4719), 1, + aux_sym_generic_typing_token1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [55549] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4668), 1, - aux_sym_class_declaration_token9, - STATE(2084), 2, + [42542] = 3, + ACTIONS(654), 1, + anon_sym_EQ, + ACTIONS(4721), 1, + anon_sym_LPAREN2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [55563] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2995), 1, - aux_sym_class_declaration_token13, - STATE(2085), 2, + [42553] = 3, + ACTIONS(4723), 1, + anon_sym_DOT, + ACTIONS(4725), 1, + aux_sym_complete_typing_token2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [55577] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4670), 1, + [42564] = 3, + ACTIONS(4727), 1, + aux_sym_loop_statement_token3, + ACTIONS(4729), 1, + aux_sym_loop_statement_token4, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [42575] = 3, + ACTIONS(4731), 1, anon_sym_DOT, - STATE(2086), 2, + ACTIONS(4733), 1, + aux_sym_if_statement_token1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [55591] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4234), 1, - aux_sym_class_declaration_token13, - STATE(2087), 2, + [42586] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [55605] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4672), 1, + ACTIONS(4735), 2, anon_sym_DOT, - STATE(2088), 2, + anon_sym_COMMA, + [42595] = 3, + ACTIONS(4737), 1, + sym_name, + STATE(1757), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [42606] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [55619] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4674), 1, + ACTIONS(3763), 2, anon_sym_DOT, - STATE(2089), 2, + anon_sym_COMMA, + [42615] = 3, + ACTIONS(4739), 1, + aux_sym_loop_statement_token3, + ACTIONS(4741), 1, + aux_sym_loop_statement_token4, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [55633] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4676), 1, - anon_sym_DOT, - STATE(2090), 2, + [42626] = 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [55647] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4678), 1, + ACTIONS(4743), 2, anon_sym_DOT, - STATE(2091), 2, + anon_sym_COMMA, + [42635] = 3, + ACTIONS(4745), 1, + aux_sym_generic_typing_token1, + STATE(1830), 1, + sym_complete_typing, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [55661] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2989), 1, - aux_sym_class_declaration_token13, - STATE(2092), 2, + [42646] = 3, + ACTIONS(4747), 1, + anon_sym_DOT, + ACTIONS(4749), 1, + aux_sym__method_declaration_exporting_token1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [55675] = 4, + [42657] = 4, + ACTIONS(3), 1, + sym_eol_comment, ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, + sym_bol_comment, + ACTIONS(4713), 1, anon_sym_STAR, - ACTIONS(2997), 1, - aux_sym_class_declaration_token13, - STATE(2093), 2, + STATE(2043), 1, + sym_select_list, + [42670] = 2, + ACTIONS(4751), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [55689] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4228), 1, - aux_sym_class_declaration_token12, - STATE(2094), 2, + [42678] = 2, + ACTIONS(4753), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [55703] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4680), 1, + [42686] = 2, + ACTIONS(4755), 1, anon_sym_DOT, - STATE(2095), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [55717] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4682), 1, + [42694] = 2, + ACTIONS(4757), 1, anon_sym_DOT, - STATE(2096), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [55731] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4216), 1, - aux_sym_class_declaration_token13, - STATE(2097), 2, + [42702] = 2, + ACTIONS(4759), 1, + aux_sym__data_object_typing_normal_token4, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [55745] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4684), 1, - aux_sym_class_declaration_token9, - STATE(2098), 2, + [42710] = 2, + ACTIONS(4761), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [55759] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4686), 1, + [42718] = 2, + ACTIONS(4763), 1, anon_sym_DOT, - STATE(2099), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [55773] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1846), 1, + [42726] = 2, + ACTIONS(4765), 1, aux_sym_class_declaration_token13, - STATE(2100), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [55787] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4688), 1, - anon_sym_DOT, - STATE(2101), 2, + [42734] = 2, + ACTIONS(4767), 1, + aux_sym__data_object_typing_normal_token2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [55801] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2222), 1, - aux_sym_class_declaration_token12, - STATE(2102), 2, + [42742] = 2, + ACTIONS(4769), 1, + anon_sym_COMMA, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [55815] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4690), 1, - aux_sym_class_declaration_token13, - STATE(2103), 2, + [42750] = 2, + ACTIONS(4771), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [55829] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4692), 1, - aux_sym_class_declaration_token13, - STATE(2104), 2, + [42758] = 2, + ACTIONS(4773), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [55843] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4694), 1, + [42766] = 2, + ACTIONS(4775), 1, anon_sym_DOT, - STATE(2105), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [55857] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4696), 1, + [42774] = 2, + ACTIONS(4777), 1, anon_sym_DOT, - STATE(2106), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [55871] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4698), 1, + [42782] = 2, + ACTIONS(2884), 1, aux_sym_class_declaration_token13, - STATE(2107), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [55885] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4700), 1, + [42790] = 2, + ACTIONS(4779), 1, anon_sym_DOT, - STATE(2108), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [55899] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4702), 1, - anon_sym_DOT, - STATE(2109), 2, + [42798] = 2, + ACTIONS(3697), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [55913] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4704), 1, + [42806] = 2, + ACTIONS(4781), 1, anon_sym_DOT, - STATE(2110), 2, - sym_eol_comment, - sym_bol_comment, - [55927] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4706), 1, - aux_sym_class_declaration_token10, - STATE(2111), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [55941] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4708), 1, + [42814] = 2, + ACTIONS(4783), 1, anon_sym_DOT, - STATE(2112), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [55955] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4710), 1, + [42822] = 2, + ACTIONS(3880), 1, aux_sym_class_declaration_token13, - STATE(2113), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [55969] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3023), 1, - aux_sym_class_declaration_token13, - STATE(2114), 2, + [42830] = 2, + ACTIONS(4785), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [55983] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4712), 1, + [42838] = 2, + ACTIONS(4787), 1, anon_sym_DOT, - STATE(2115), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [55997] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4714), 1, + [42846] = 2, + ACTIONS(3806), 1, aux_sym_class_declaration_token13, - STATE(2116), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [56011] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4206), 1, + [42854] = 2, + ACTIONS(4789), 1, aux_sym_class_declaration_token13, - STATE(2117), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [56025] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4716), 1, + [42862] = 2, + ACTIONS(4791), 1, anon_sym_DOT, - STATE(2118), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [56039] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4718), 1, + [42870] = 2, + ACTIONS(4793), 1, anon_sym_DOT, - STATE(2119), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [56053] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4720), 1, + [42878] = 2, + ACTIONS(4795), 1, aux_sym_class_declaration_token13, - STATE(2120), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [56067] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2116), 1, - aux_sym_class_declaration_token12, - STATE(2121), 2, + [42886] = 2, + ACTIONS(2876), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [56081] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4722), 1, - aux_sym_class_declaration_token9, - STATE(2122), 2, + [42894] = 2, + ACTIONS(4797), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [56095] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4724), 1, + [42902] = 2, + ACTIONS(4799), 1, anon_sym_DOT, - STATE(2123), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [56109] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4726), 1, - aux_sym_class_declaration_token10, - STATE(2124), 2, + [42910] = 2, + ACTIONS(4801), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [56123] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4728), 1, + [42918] = 2, + ACTIONS(4803), 1, anon_sym_DOT, - STATE(2125), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [56137] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3005), 1, + [42926] = 2, + ACTIONS(4805), 1, aux_sym_class_declaration_token13, - STATE(2126), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [56151] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4730), 1, + [42934] = 2, + ACTIONS(4807), 1, anon_sym_DOT, - STATE(2127), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [56165] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4732), 1, + [42942] = 2, + ACTIONS(4809), 1, anon_sym_DOT, - STATE(2128), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [56179] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4734), 1, + [42950] = 2, + ACTIONS(4811), 1, anon_sym_DOT, - STATE(2129), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [56193] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4736), 1, - aux_sym_line_spec_token4, - STATE(2130), 2, + [42958] = 2, + ACTIONS(3842), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [56207] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4738), 1, - sym_name, - STATE(2131), 2, + [42966] = 2, + ACTIONS(4813), 1, + aux_sym__data_object_typing_normal_token4, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [56221] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4740), 1, + [42974] = 2, + ACTIONS(4815), 1, anon_sym_DOT, - STATE(2132), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [56235] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4742), 1, - anon_sym_DOT, - STATE(2133), 2, + [42982] = 2, + ACTIONS(4817), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [56249] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4200), 1, + [42990] = 2, + ACTIONS(3850), 1, aux_sym_class_declaration_token13, - STATE(2134), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [56263] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4744), 1, + [42998] = 2, + ACTIONS(4819), 1, anon_sym_DOT, - STATE(2135), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [56277] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4746), 1, + [43006] = 2, + ACTIONS(4821), 1, anon_sym_DOT, - STATE(2136), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [56291] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4748), 1, - aux_sym_class_declaration_token13, - STATE(2137), 2, + [43014] = 2, + ACTIONS(4823), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [56305] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4750), 1, - anon_sym_DOT, - STATE(2138), 2, + [43022] = 2, + ACTIONS(4825), 1, + aux_sym__data_object_typing_normal_token4, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [56319] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4196), 1, + [43030] = 2, + ACTIONS(2912), 1, aux_sym_class_declaration_token13, - STATE(2139), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [56333] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4752), 1, + [43038] = 2, + ACTIONS(4827), 1, anon_sym_DOT, - STATE(2140), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [56347] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4754), 1, + [43046] = 2, + ACTIONS(4829), 1, anon_sym_DOT, - STATE(2141), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [56361] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3011), 1, - aux_sym_class_declaration_token13, - STATE(2142), 2, + [43054] = 2, + ACTIONS(4831), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [56375] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3009), 1, + [43062] = 2, + ACTIONS(4833), 1, aux_sym_class_declaration_token13, - STATE(2143), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [56389] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4756), 1, + [43070] = 2, + ACTIONS(4835), 1, anon_sym_DOT, - STATE(2144), 2, - sym_eol_comment, - sym_bol_comment, - [56403] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4758), 1, - aux_sym_for_all_entries_token3, - STATE(2145), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [56417] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4760), 1, + [43078] = 2, + ACTIONS(4837), 1, anon_sym_DOT, - STATE(2146), 2, - sym_eol_comment, - sym_bol_comment, - [56431] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4762), 1, - aux_sym__data_object_typing_normal_token2, - STATE(2147), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [56445] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4764), 1, + [43086] = 2, + ACTIONS(4839), 1, anon_sym_DOT, - STATE(2148), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [56459] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4766), 1, - anon_sym_DOT, - STATE(2149), 2, + [43094] = 2, + ACTIONS(3878), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [56473] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4768), 1, + [43102] = 2, + ACTIONS(4841), 1, anon_sym_DOT, - STATE(2150), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [56487] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4770), 1, + [43110] = 2, + ACTIONS(4843), 1, anon_sym_DOT, - STATE(2151), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [56501] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4772), 1, + [43118] = 2, + ACTIONS(4845), 1, aux_sym_class_declaration_token13, - STATE(2152), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [56515] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4774), 1, + [43126] = 2, + ACTIONS(4847), 1, anon_sym_DOT, - STATE(2153), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [56529] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4776), 1, + [43134] = 2, + ACTIONS(4849), 1, anon_sym_DOT, - STATE(2154), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [56543] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4778), 1, + [43142] = 2, + ACTIONS(4851), 1, anon_sym_DOT, - STATE(2155), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [56557] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4780), 1, + [43150] = 2, + ACTIONS(4853), 1, anon_sym_DOT, - STATE(2156), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [56571] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4782), 1, - aux_sym_class_declaration_token13, - STATE(2157), 2, + [43158] = 2, + ACTIONS(4855), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [56585] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4178), 1, + [43166] = 2, + ACTIONS(2932), 1, aux_sym_class_declaration_token13, - STATE(2158), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [56599] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4784), 1, + [43174] = 2, + ACTIONS(4857), 1, anon_sym_DOT, - STATE(2159), 2, - sym_eol_comment, - sym_bol_comment, - [56613] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2154), 1, - aux_sym_class_declaration_token13, - STATE(2160), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [56627] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4786), 1, - aux_sym_class_declaration_token12, - STATE(2161), 2, + [43182] = 2, + ACTIONS(4859), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [56641] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4788), 1, + [43190] = 2, + ACTIONS(4861), 1, anon_sym_DOT, - STATE(2162), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [56655] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4790), 1, + [43198] = 2, + ACTIONS(4863), 1, aux_sym_class_declaration_token13, - STATE(2163), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [56669] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4792), 1, + [43206] = 2, + ACTIONS(4865), 1, anon_sym_DOT, - STATE(2164), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [56683] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4794), 1, + [43214] = 2, + ACTIONS(4867), 1, anon_sym_DOT, - STATE(2165), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [56697] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4796), 1, + [43222] = 2, + ACTIONS(4869), 1, anon_sym_DOT, - STATE(2166), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [56711] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4798), 1, + [43230] = 2, + ACTIONS(4871), 1, anon_sym_DOT, - STATE(2167), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [56725] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4162), 1, + [43238] = 2, + ACTIONS(4873), 1, aux_sym_class_declaration_token13, - STATE(2168), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [56739] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4160), 1, + [43246] = 2, + ACTIONS(3920), 1, aux_sym_class_declaration_token13, - STATE(2169), 2, - sym_eol_comment, - sym_bol_comment, - [56753] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4800), 1, - aux_sym__data_object_typing_normal_token3, - STATE(2170), 2, - sym_eol_comment, - sym_bol_comment, - [56767] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4802), 1, - anon_sym_DOT, - STATE(2171), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [56781] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4804), 1, + [43254] = 2, + ACTIONS(4875), 1, anon_sym_DOT, - STATE(2172), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [56795] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4806), 1, + [43262] = 2, + ACTIONS(4877), 1, anon_sym_DOT, - STATE(2173), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [56809] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4808), 1, + [43270] = 2, + ACTIONS(4879), 1, anon_sym_DOT, - STATE(2174), 2, - sym_eol_comment, - sym_bol_comment, - [56823] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4810), 1, - aux_sym_complete_typing_token2, - STATE(2175), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [56837] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2170), 1, + [43278] = 2, + ACTIONS(2732), 1, aux_sym_class_declaration_token13, - STATE(2176), 2, - sym_eol_comment, - sym_bol_comment, - [56851] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4812), 1, - anon_sym_DOT, - STATE(2177), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [56865] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4814), 1, + [43286] = 2, + ACTIONS(3972), 1, aux_sym_class_declaration_token13, - STATE(2178), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [56879] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2987), 1, - aux_sym_class_declaration_token13, - STATE(2179), 2, + [43294] = 2, + ACTIONS(4661), 1, + aux_sym_generic_type_token2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [56893] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4816), 1, + [43302] = 2, + ACTIONS(4881), 1, anon_sym_DOT, - STATE(2180), 2, - sym_eol_comment, - sym_bol_comment, - [56907] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4818), 1, - sym_name, - STATE(2181), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [56921] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4820), 1, + [43310] = 2, + ACTIONS(4883), 1, anon_sym_DOT, - STATE(2182), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [56935] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4822), 1, + [43318] = 2, + ACTIONS(4885), 1, anon_sym_DOT, - STATE(2183), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [56949] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4824), 1, + [43326] = 2, + ACTIONS(4887), 1, aux_sym_class_declaration_token13, - STATE(2184), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [56963] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4826), 1, - aux_sym__data_object_typing_normal_token3, - STATE(2185), 2, + [43334] = 2, + ACTIONS(4889), 1, + aux_sym_for_all_entries_token4, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [56977] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4828), 1, + [43342] = 2, + ACTIONS(4891), 1, anon_sym_DOT, - STATE(2186), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [56991] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4830), 1, + [43350] = 2, + ACTIONS(4893), 1, anon_sym_DOT, - STATE(2187), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [57005] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4832), 1, + [43358] = 2, + ACTIONS(4895), 1, anon_sym_DOT, - STATE(2188), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [57019] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2192), 1, + [43366] = 2, + ACTIONS(4897), 1, + aux_sym_class_declaration_token9, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [43374] = 2, + ACTIONS(3992), 1, aux_sym_class_declaration_token13, - STATE(2189), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [57033] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4834), 1, - anon_sym_DOT, - STATE(2190), 2, + [43382] = 2, + ACTIONS(2728), 1, + aux_sym_class_declaration_token12, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [57047] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4836), 1, + [43390] = 2, + ACTIONS(4899), 1, anon_sym_DOT, - STATE(2191), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [57061] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4838), 1, + [43398] = 2, + ACTIONS(4901), 1, + aux_sym_class_declaration_token10, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [43406] = 2, + ACTIONS(4903), 1, anon_sym_DOT, - STATE(2192), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [57075] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4840), 1, - aux_sym_class_declaration_token10, - STATE(2193), 2, + [43414] = 2, + ACTIONS(4905), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [57089] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4842), 1, + [43422] = 2, + ACTIONS(4907), 1, anon_sym_DOT, - STATE(2194), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [57103] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4844), 1, + [43430] = 2, + ACTIONS(4909), 1, anon_sym_DOT, - STATE(2195), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [57117] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4846), 1, + [43438] = 2, + ACTIONS(4911), 1, anon_sym_DOT, - STATE(2196), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [57131] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2985), 1, + [43446] = 2, + ACTIONS(4913), 1, aux_sym_class_declaration_token13, - STATE(2197), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [57145] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4172), 1, - aux_sym_class_declaration_token12, - STATE(2198), 2, + [43454] = 2, + ACTIONS(4915), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [57159] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4848), 1, + [43462] = 2, + ACTIONS(4917), 1, anon_sym_DOT, - STATE(2199), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [57173] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4850), 1, - anon_sym_DOT, - STATE(2200), 2, + [43470] = 2, + ACTIONS(2160), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [57187] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4852), 1, + [43478] = 2, + ACTIONS(4919), 1, anon_sym_DOT, - STATE(2201), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [57201] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3061), 1, + [43486] = 2, + ACTIONS(4921), 1, + aux_sym_class_declaration_token9, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [43494] = 2, + ACTIONS(4923), 1, aux_sym_class_declaration_token13, - STATE(2202), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [57215] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4854), 1, + [43502] = 2, + ACTIONS(4925), 1, anon_sym_DOT, - STATE(2203), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [57229] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4856), 1, + [43510] = 2, + ACTIONS(4927), 1, anon_sym_DOT, - STATE(2204), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [57243] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4858), 1, + [43518] = 2, + ACTIONS(4929), 1, anon_sym_DOT, - STATE(2205), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [57257] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4860), 1, + [43526] = 2, + ACTIONS(4931), 1, anon_sym_DOT, - STATE(2206), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [57271] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4862), 1, + [43534] = 2, + ACTIONS(2198), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [43542] = 2, + ACTIONS(4933), 1, anon_sym_DOT, - STATE(2207), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [57285] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4110), 1, - aux_sym_class_declaration_token13, - STATE(2208), 2, + [43550] = 2, + ACTIONS(4935), 1, + aux_sym_class_declaration_token10, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [57299] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4864), 1, - aux_sym_class_declaration_token9, - STATE(2209), 2, + [43558] = 2, + ACTIONS(4937), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [57313] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4866), 1, + [43566] = 2, + ACTIONS(4939), 1, anon_sym_DOT, - STATE(2210), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [57327] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4868), 1, + [43574] = 2, + ACTIONS(4941), 1, anon_sym_DOT, - STATE(2211), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [57341] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3099), 1, + [43582] = 2, + ACTIONS(4027), 1, aux_sym_class_declaration_token12, - STATE(2212), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [57355] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4870), 1, - aux_sym_for_all_entries_token4, - STATE(2213), 2, + [43590] = 2, + ACTIONS(4943), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [57369] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4872), 1, - anon_sym_DOT, - STATE(2214), 2, + [43598] = 2, + ACTIONS(2838), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [57383] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4874), 1, + [43606] = 2, + ACTIONS(4945), 1, anon_sym_DOT, - STATE(2215), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [57397] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4876), 1, - aux_sym_class_declaration_token10, - STATE(2216), 2, + [43614] = 2, + ACTIONS(4947), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [57411] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4878), 1, + [43622] = 2, + ACTIONS(4949), 1, anon_sym_DOT, - STATE(2217), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [57425] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4880), 1, + [43630] = 2, + ACTIONS(4951), 1, anon_sym_DOT, - STATE(2218), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [57439] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4882), 1, - aux_sym_class_declaration_token9, - STATE(2219), 2, + [43638] = 2, + ACTIONS(4953), 1, + aux_sym_complete_typing_token2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [57453] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4884), 1, + [43646] = 2, + ACTIONS(4955), 1, anon_sym_DOT, - STATE(2220), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [57467] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4886), 1, - anon_sym_DOT, - STATE(2221), 2, + [43654] = 2, + ACTIONS(4957), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [57481] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4888), 1, + [43662] = 2, + ACTIONS(4959), 1, anon_sym_DOT, - STATE(2222), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [57495] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4890), 1, - anon_sym_DOT, - STATE(2223), 2, + [43670] = 2, + ACTIONS(4073), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [57509] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2186), 1, - aux_sym_class_declaration_token13, - STATE(2224), 2, + [43678] = 2, + ACTIONS(4961), 1, + aux_sym_class_declaration_token9, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [57523] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4892), 1, - anon_sym_DOT, - STATE(2225), 2, + [43686] = 2, + ACTIONS(4963), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [57537] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4894), 1, - anon_sym_DOT, - STATE(2226), 2, + [43694] = 2, + ACTIONS(4965), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [57551] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4896), 1, - aux_sym_class_declaration_token5, - STATE(2227), 2, + [43702] = 2, + ACTIONS(4967), 1, + aux_sym_method_implementation_token2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [57565] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4898), 1, + [43710] = 2, + ACTIONS(4969), 1, anon_sym_DOT, - STATE(2228), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [57579] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4900), 1, - anon_sym_LPAREN, - STATE(2229), 2, + [43718] = 2, + ACTIONS(4971), 1, + anon_sym_COLON, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [57593] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4902), 1, + [43726] = 2, + ACTIONS(4973), 1, anon_sym_DOT, - STATE(2230), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [57607] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4904), 1, - aux_sym_class_declaration_token13, - STATE(2231), 2, + [43734] = 2, + ACTIONS(3077), 1, + aux_sym_class_declaration_token12, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [57621] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4906), 1, - anon_sym_DOT, - STATE(2232), 2, + [43742] = 2, + ACTIONS(4099), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [57635] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4908), 1, - anon_sym_LPAREN, - STATE(2233), 2, + [43750] = 2, + ACTIONS(4097), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [57649] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4910), 1, + [43758] = 2, + ACTIONS(4975), 1, anon_sym_DOT, - STATE(2234), 2, - sym_eol_comment, - sym_bol_comment, - [57663] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4912), 1, - anon_sym_LPAREN, - STATE(2235), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [57677] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3003), 1, + [43766] = 2, + ACTIONS(1958), 1, aux_sym_class_declaration_token13, - STATE(2236), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [57691] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4914), 1, - aux_sym_generic_type_token2, - STATE(2237), 2, + [43774] = 2, + ACTIONS(4977), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [57705] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4916), 1, + [43782] = 2, + ACTIONS(4979), 1, anon_sym_DOT, - STATE(2238), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [57719] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4918), 1, + [43790] = 2, + ACTIONS(4981), 1, anon_sym_DOT, - STATE(2239), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [57733] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4920), 1, - anon_sym_DOT, - STATE(2240), 2, + [43798] = 2, + ACTIONS(4983), 1, + aux_sym_class_declaration_token10, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [57747] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4922), 1, + [43806] = 2, + ACTIONS(4985), 1, + aux_sym_class_declaration_token10, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [43814] = 2, + ACTIONS(4987), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [43822] = 2, + ACTIONS(4989), 1, anon_sym_DOT, - STATE(2241), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [57761] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1996), 1, + [43830] = 2, + ACTIONS(2665), 1, aux_sym_class_declaration_token12, - STATE(2242), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [57775] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4924), 1, + [43838] = 2, + ACTIONS(4991), 1, aux_sym_class_declaration_token9, - STATE(2243), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [57789] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4926), 1, - anon_sym_RPAREN, - STATE(2244), 2, + [43846] = 2, + ACTIONS(2956), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [57803] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1840), 1, + [43854] = 2, + ACTIONS(4110), 1, aux_sym_class_declaration_token13, - STATE(2245), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [57817] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4928), 1, - sym_name, - STATE(2246), 2, + [43862] = 2, + ACTIONS(4993), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [57831] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4930), 1, + [43870] = 2, + ACTIONS(4995), 1, anon_sym_DOT, - STATE(2247), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [57845] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4932), 1, - anon_sym_DOT, - STATE(2248), 2, + [43878] = 2, + ACTIONS(4144), 1, + aux_sym_class_declaration_token12, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [57859] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4934), 1, - anon_sym_RPAREN, - STATE(2249), 2, + [43886] = 2, + ACTIONS(4997), 1, + aux_sym_class_declaration_token9, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [57873] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4936), 1, - aux_sym_class_declaration_token10, - STATE(2250), 2, + [43894] = 2, + ACTIONS(1986), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [43902] = 2, + ACTIONS(4999), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [57887] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4938), 1, + [43910] = 2, + ACTIONS(5001), 1, anon_sym_DOT, - STATE(2251), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [57901] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1872), 1, + [43918] = 2, + ACTIONS(2832), 1, aux_sym_class_declaration_token13, - STATE(2252), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [57915] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3165), 1, - aux_sym_class_declaration_token12, - STATE(2253), 2, + [43926] = 2, + ACTIONS(5003), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [57929] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4940), 1, + [43934] = 2, + ACTIONS(5005), 1, + aux_sym_class_declaration_token10, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [43942] = 2, + ACTIONS(2222), 1, aux_sym_class_declaration_token13, - STATE(2254), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [57943] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4942), 1, + [43950] = 2, + ACTIONS(5007), 1, anon_sym_DOT, - STATE(2255), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [57957] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4944), 1, - anon_sym_DOT, - STATE(2256), 2, + [43958] = 2, + ACTIONS(2014), 1, + aux_sym_class_declaration_token12, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [57971] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4946), 1, - anon_sym_DOT, - STATE(2257), 2, + [43966] = 2, + ACTIONS(5009), 1, + aux_sym_class_declaration_token9, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [57985] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4948), 1, + [43974] = 2, + ACTIONS(5011), 1, anon_sym_DOT, - STATE(2258), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [57999] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4950), 1, - sym_numeric_literal, - STATE(2259), 2, + [43982] = 2, + ACTIONS(5013), 1, + aux_sym_line_spec_token4, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [58013] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4952), 1, + [43990] = 2, + ACTIONS(5015), 1, sym_name, - STATE(2260), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [58027] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4954), 1, + [43998] = 2, + ACTIONS(5017), 1, anon_sym_DOT, - STATE(2261), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [58041] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4956), 1, + [44006] = 2, + ACTIONS(5019), 1, anon_sym_DOT, - STATE(2262), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [58055] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4254), 1, + [44014] = 2, + ACTIONS(2826), 1, aux_sym_class_declaration_token13, - STATE(2263), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [58069] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4958), 1, - anon_sym_EQ, - STATE(2264), 2, + [44022] = 2, + ACTIONS(5021), 1, + aux_sym_for_all_entries_token3, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [58083] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4960), 1, + [44030] = 2, + ACTIONS(5023), 1, + aux_sym__data_object_typing_normal_token2, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [44038] = 2, + ACTIONS(5025), 1, + aux_sym__data_object_typing_normal_token2, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [44046] = 2, + ACTIONS(2808), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [44054] = 2, + ACTIONS(5027), 1, anon_sym_DOT, - STATE(2265), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [58097] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4962), 1, + [44062] = 2, + ACTIONS(5029), 1, anon_sym_DOT, - STATE(2266), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [58111] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4964), 1, - sym_name, - STATE(2267), 2, + [44070] = 2, + ACTIONS(5031), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [58125] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4966), 1, - aux_sym_for_all_entries_token2, - STATE(2268), 2, + [44078] = 2, + ACTIONS(5033), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [58139] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4968), 1, - aux_sym__select_target_token2, - STATE(2269), 2, + [44086] = 2, + ACTIONS(5035), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [58153] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4970), 1, + [44094] = 2, + ACTIONS(5037), 1, anon_sym_DOT, - STATE(2270), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [58167] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4972), 1, - aux_sym__select_target_token2, - STATE(2271), 2, + [44102] = 2, + ACTIONS(4231), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [58181] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4974), 1, - sym_name, - STATE(2272), 2, + [44110] = 2, + ACTIONS(5039), 1, + aux_sym__data_object_typing_normal_token3, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [58195] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4976), 1, - sym_name, - STATE(2273), 2, + [44118] = 2, + ACTIONS(5041), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [58209] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4978), 1, + [44126] = 2, + ACTIONS(5043), 1, anon_sym_DOT, - STATE(2274), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [58223] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4980), 1, - aux_sym__data_object_typing_normal_token4, - STATE(2275), 2, + [44134] = 2, + ACTIONS(5045), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [58237] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4982), 1, + [44142] = 2, + ACTIONS(5047), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [44150] = 2, + ACTIONS(4227), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [44158] = 2, + ACTIONS(5049), 1, sym_name, - STATE(2276), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [58251] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4984), 1, - anon_sym_DOT, - STATE(2277), 2, + [44166] = 2, + ACTIONS(5051), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [58265] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4986), 1, + [44174] = 2, + ACTIONS(5053), 1, anon_sym_DOT, - STATE(2278), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [58279] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4988), 1, - anon_sym_DOT, - STATE(2279), 2, + [44182] = 2, + ACTIONS(5055), 1, + aux_sym__data_object_typing_normal_token3, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [58293] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4990), 1, - anon_sym_DOT, - STATE(2280), 2, + [44190] = 2, + ACTIONS(5057), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [58307] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4992), 1, - aux_sym__data_object_typing_normal_token4, - STATE(2281), 2, + [44198] = 2, + ACTIONS(5059), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [58321] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4994), 1, + [44206] = 2, + ACTIONS(5061), 1, anon_sym_DOT, - STATE(2282), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [58335] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4996), 1, + [44214] = 2, + ACTIONS(5063), 1, anon_sym_DOT, - STATE(2283), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [58349] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4998), 1, + [44222] = 2, + ACTIONS(4247), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [44230] = 2, + ACTIONS(5065), 1, anon_sym_DOT, - STATE(2284), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [58363] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5000), 1, - aux_sym_complete_typing_token2, - STATE(2285), 2, + [44238] = 2, + ACTIONS(2804), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [58377] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5002), 1, + [44246] = 2, + ACTIONS(5067), 1, anon_sym_DOT, - STATE(2286), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [58391] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5004), 1, + [44254] = 2, + ACTIONS(5069), 1, anon_sym_DOT, - STATE(2287), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [58405] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5006), 1, - anon_sym_COMMA, - STATE(2288), 2, + [44262] = 2, + ACTIONS(5071), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [58419] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5008), 1, + [44270] = 2, + ACTIONS(5073), 1, anon_sym_DOT, - STATE(2289), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [58433] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5010), 1, + [44278] = 2, + ACTIONS(5075), 1, anon_sym_DOT, - STATE(2290), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [58447] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5012), 1, + [44286] = 2, + ACTIONS(5077), 1, anon_sym_DOT, - STATE(2291), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [58461] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5014), 1, + [44294] = 2, + ACTIONS(5079), 1, anon_sym_DOT, - STATE(2292), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [58475] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5016), 1, + [44302] = 2, + ACTIONS(5081), 1, anon_sym_DOT, - STATE(2293), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [58489] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5018), 1, - anon_sym_RPAREN, - STATE(2294), 2, + [44310] = 2, + ACTIONS(5083), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [58503] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5020), 1, + [44318] = 2, + ACTIONS(5085), 1, anon_sym_DOT, - STATE(2295), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [58517] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5022), 1, + [44326] = 2, + ACTIONS(5087), 1, anon_sym_DOT, - STATE(2296), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [58531] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5024), 1, - aux_sym_method_parameters_token1, - STATE(2297), 2, + [44334] = 2, + ACTIONS(5089), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [58545] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4256), 1, - aux_sym_class_declaration_token13, - STATE(2298), 2, + [44342] = 2, + ACTIONS(5091), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [58559] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5026), 1, - aux_sym_class_declaration_token13, - STATE(2299), 2, + [44350] = 2, + ACTIONS(5093), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [58573] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5028), 1, + [44358] = 2, + ACTIONS(5095), 1, anon_sym_DOT, - STATE(2300), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [58587] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5030), 1, + [44366] = 2, + ACTIONS(5097), 1, anon_sym_DOT, - STATE(2301), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [58601] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5032), 1, - anon_sym_DOT, - STATE(2302), 2, + [44374] = 2, + ACTIONS(5099), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [58615] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5034), 1, + [44382] = 2, + ACTIONS(5101), 1, anon_sym_DOT, - STATE(2303), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [58629] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5036), 1, + [44390] = 2, + ACTIONS(5103), 1, anon_sym_DOT, - STATE(2304), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [58643] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5038), 1, + [44398] = 2, + ACTIONS(5105), 1, anon_sym_DOT, - STATE(2305), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [58657] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5040), 1, - anon_sym_EQ, - STATE(2306), 2, + [44406] = 2, + ACTIONS(5107), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [58671] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5042), 1, + [44414] = 2, + ACTIONS(5109), 1, anon_sym_DOT, - STATE(2307), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [58685] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5044), 1, + [44422] = 2, + ACTIONS(5111), 1, anon_sym_DOT, - STATE(2308), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [58699] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5046), 1, + [44430] = 2, + ACTIONS(5113), 1, anon_sym_DOT, - STATE(2309), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [58713] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5048), 1, + [44438] = 2, + ACTIONS(5115), 1, anon_sym_DOT, - STATE(2310), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [58727] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5050), 1, + [44446] = 2, + ACTIONS(5117), 1, anon_sym_DOT, - STATE(2311), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [58741] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1880), 1, - aux_sym_class_declaration_token13, - STATE(2312), 2, + [44454] = 2, + ACTIONS(5119), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [58755] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5052), 1, + [44462] = 2, + ACTIONS(5121), 1, anon_sym_DOT, - STATE(2313), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [58769] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5054), 1, - anon_sym_DOT, - STATE(2314), 2, + [44470] = 2, + ACTIONS(5123), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [58783] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5056), 1, - anon_sym_DOT, - STATE(2315), 2, + [44478] = 2, + ACTIONS(5125), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [58797] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5058), 1, + [44486] = 2, + ACTIONS(2812), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [44494] = 2, + ACTIONS(5127), 1, anon_sym_DOT, - STATE(2316), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [58811] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5060), 1, - aux_sym_class_declaration_token10, - STATE(2317), 2, + [44502] = 2, + ACTIONS(5129), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [58825] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5062), 1, + [44510] = 2, + ACTIONS(5131), 1, anon_sym_DOT, - STATE(2318), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [58839] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5064), 1, + [44518] = 2, + ACTIONS(5133), 1, anon_sym_DOT, - STATE(2319), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [58853] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2649), 1, + [44526] = 2, + ACTIONS(2286), 1, aux_sym_class_declaration_token12, - STATE(2320), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [58867] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5066), 1, + [44534] = 2, + ACTIONS(5135), 1, aux_sym_class_declaration_token9, - STATE(2321), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [58881] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5068), 1, - sym_name, - STATE(2322), 2, + [44542] = 2, + ACTIONS(5137), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [58895] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1884), 1, - anon_sym_RPAREN, - STATE(2323), 2, + [44550] = 2, + ACTIONS(2431), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [58909] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5070), 1, + [44558] = 2, + ACTIONS(5139), 1, anon_sym_DOT, - STATE(2324), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [58923] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1886), 1, - anon_sym_RPAREN, - STATE(2325), 2, + [44566] = 2, + ACTIONS(5141), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [58937] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5072), 1, + [44574] = 2, + ACTIONS(5143), 1, anon_sym_DOT, - STATE(2326), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [58951] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5074), 1, - anon_sym_DOT, - STATE(2327), 2, + [44582] = 2, + ACTIONS(5145), 1, + aux_sym_class_declaration_token10, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [58965] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5076), 1, + [44590] = 2, + ACTIONS(5147), 1, anon_sym_DOT, - STATE(2328), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [58979] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5078), 1, + [44598] = 2, + ACTIONS(5149), 1, anon_sym_DOT, - STATE(2329), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [58993] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5080), 1, - anon_sym_DOT, - STATE(2330), 2, + [44606] = 2, + ACTIONS(3163), 1, + aux_sym_class_declaration_token12, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [59007] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4260), 1, - aux_sym_class_declaration_token13, - STATE(2331), 2, + [44614] = 2, + ACTIONS(5151), 1, + aux_sym_class_declaration_token9, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [59021] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5082), 1, - anon_sym_EQ, - STATE(2332), 2, + [44622] = 2, + ACTIONS(5153), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [59035] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5084), 1, - anon_sym_EQ, - STATE(2333), 2, + [44630] = 2, + ACTIONS(5155), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [59049] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5086), 1, - aux_sym_class_declaration_token13, - STATE(2334), 2, + [44638] = 2, + ACTIONS(5157), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [59063] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5088), 1, + [44646] = 2, + ACTIONS(5159), 1, anon_sym_DOT, - STATE(2335), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [59077] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5090), 1, + [44654] = 2, + ACTIONS(5161), 1, + sym_numeric_literal, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [44662] = 2, + ACTIONS(5163), 1, sym_name, - STATE(2336), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [59091] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5092), 1, + [44670] = 2, + ACTIONS(5165), 1, anon_sym_DOT, - STATE(2337), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [59105] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5094), 1, - aux_sym__select_target_token2, - STATE(2338), 2, + [44678] = 2, + ACTIONS(5167), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [59119] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5096), 1, + [44686] = 2, + ACTIONS(5169), 1, anon_sym_DOT, - STATE(2339), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [59133] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5098), 1, - anon_sym_DOT, - STATE(2340), 2, + [44694] = 2, + ACTIONS(5171), 1, + anon_sym_EQ, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [59147] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5100), 1, - anon_sym_DOT, - STATE(2341), 2, + [44702] = 2, + ACTIONS(5173), 1, + aux_sym_class_declaration_token5, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [59161] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5102), 1, + [44710] = 2, + ACTIONS(5175), 1, anon_sym_DOT, - STATE(2342), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [59175] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5104), 1, + [44718] = 2, + ACTIONS(5177), 1, anon_sym_DOT, - STATE(2343), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [59189] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5106), 1, - anon_sym_DOT, - STATE(2344), 2, + [44726] = 2, + ACTIONS(5179), 1, + aux_sym_for_all_entries_token2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [59203] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5108), 1, - aux_sym_class_declaration_token12, - STATE(2345), 2, + [44734] = 2, + ACTIONS(5181), 1, + aux_sym__select_target_token2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [59217] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5110), 1, - sym_name, - STATE(2346), 2, + [44742] = 2, + ACTIONS(5183), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [59231] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3946), 1, - aux_sym_class_declaration_token13, - STATE(2347), 2, + [44750] = 2, + ACTIONS(5185), 1, + aux_sym__select_target_token2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [59245] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5112), 1, + [44758] = 2, + ACTIONS(5187), 1, sym_name, - STATE(2348), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [59259] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5114), 1, - aux_sym__data_object_typing_normal_token2, - STATE(2349), 2, + [44766] = 2, + ACTIONS(5189), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [59273] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5116), 1, + [44774] = 2, + ACTIONS(5191), 1, anon_sym_DOT, - STATE(2350), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [59287] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5118), 1, - sym_name, - STATE(2351), 2, + [44782] = 2, + ACTIONS(5193), 1, + aux_sym__data_object_typing_normal_token4, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [59301] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5120), 1, + [44790] = 2, + ACTIONS(5195), 1, sym_name, - STATE(2352), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [59315] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5122), 1, + [44798] = 2, + ACTIONS(5197), 1, anon_sym_DOT, - STATE(2353), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [59329] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5124), 1, + [44806] = 2, + ACTIONS(5199), 1, anon_sym_DOT, - STATE(2354), 2, - sym_eol_comment, - sym_bol_comment, - [59343] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5126), 1, - aux_sym__data_object_typing_normal_token2, - STATE(2355), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [59357] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5128), 1, - sym_name, - STATE(2356), 2, + [44814] = 2, + ACTIONS(5201), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [59371] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5130), 1, + [44822] = 2, + ACTIONS(5203), 1, anon_sym_DOT, - STATE(2357), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [59385] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5132), 1, - sym_name, - STATE(2358), 2, + [44830] = 2, + ACTIONS(5205), 1, + aux_sym__data_object_typing_normal_token4, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [59399] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5134), 1, - aux_sym_method_implementation_token2, - STATE(2359), 2, + [44838] = 2, + ACTIONS(5207), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [59413] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5136), 1, + [44846] = 2, + ACTIONS(5209), 1, anon_sym_DOT, - STATE(2360), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [59427] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5138), 1, + [44854] = 2, + ACTIONS(5211), 1, anon_sym_DOT, - STATE(2361), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [59441] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2873), 1, - aux_sym_class_declaration_token13, - STATE(2362), 2, + [44862] = 2, + ACTIONS(5213), 1, + aux_sym_complete_typing_token2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [59455] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5140), 1, - aux_sym_class_declaration_token13, - STATE(2363), 2, + [44870] = 2, + ACTIONS(5215), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [59469] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5142), 1, - sym_name, - STATE(2364), 2, + [44878] = 2, + ACTIONS(5217), 1, + anon_sym_COMMA, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [59483] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5144), 1, + [44886] = 2, + ACTIONS(5219), 1, anon_sym_DOT, - STATE(2365), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [59497] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5146), 1, + [44894] = 2, + ACTIONS(5221), 1, anon_sym_DOT, - STATE(2366), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [59511] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5148), 1, + [44902] = 2, + ACTIONS(5223), 1, anon_sym_DOT, - STATE(2367), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [59525] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5150), 1, + [44910] = 2, + ACTIONS(5225), 1, anon_sym_DOT, - STATE(2368), 2, - sym_eol_comment, - sym_bol_comment, - [59539] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1904), 1, - aux_sym_class_declaration_token13, - STATE(2369), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [59553] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2096), 1, + [44918] = 2, + ACTIONS(2780), 1, aux_sym_class_declaration_token13, - STATE(2370), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [59567] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5152), 1, + [44926] = 2, + ACTIONS(5227), 1, anon_sym_DOT, - STATE(2371), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [59581] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5154), 1, - aux_sym_public_section_token1, - STATE(2372), 2, + [44934] = 2, + ACTIONS(5229), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [59595] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5156), 1, - aux_sym_public_section_token1, - STATE(2373), 2, + [44942] = 2, + ACTIONS(5231), 1, + aux_sym_method_parameters_token1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [59609] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5158), 1, + [44950] = 2, + ACTIONS(5233), 1, anon_sym_DOT, - STATE(2374), 2, - sym_eol_comment, - sym_bol_comment, - [59623] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5160), 1, - aux_sym_public_section_token1, - STATE(2375), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [59637] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5162), 1, - sym_name, - STATE(2376), 2, + [44958] = 2, + ACTIONS(5235), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [59651] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4266), 1, + [44966] = 2, + ACTIONS(5237), 1, aux_sym_class_declaration_token13, - STATE(2377), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [59665] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5164), 1, - aux_sym_class_declaration_token10, - STATE(2378), 2, + [44974] = 2, + ACTIONS(5239), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [59679] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5166), 1, - sym_name, - STATE(2379), 2, + [44982] = 2, + ACTIONS(5241), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [59693] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3926), 1, - aux_sym_class_declaration_token13, - STATE(2380), 2, + [44990] = 2, + ACTIONS(5243), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [59707] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5168), 1, + [44998] = 2, + ACTIONS(5245), 1, anon_sym_DOT, - STATE(2381), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [59721] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1916), 1, - aux_sym_class_declaration_token12, - STATE(2382), 2, + [45006] = 2, + ACTIONS(5247), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [59735] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5170), 1, - aux_sym_class_declaration_token9, - STATE(2383), 2, + [45014] = 2, + ACTIONS(5249), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [59749] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5172), 1, - aux_sym_class_declaration_token5, - STATE(2384), 2, + [45022] = 2, + ACTIONS(5251), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [59763] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5174), 1, + [45030] = 2, + ACTIONS(5253), 1, anon_sym_DOT, - STATE(2385), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [59777] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5176), 1, + [45038] = 2, + ACTIONS(5255), 1, anon_sym_DOT, - STATE(2386), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [59791] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5178), 1, - anon_sym_EQ, - STATE(2387), 2, + [45046] = 2, + ACTIONS(2776), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [59805] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5180), 1, + [45054] = 2, + ACTIONS(5257), 1, anon_sym_DOT, - STATE(2388), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [59819] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5182), 1, - anon_sym_EQ, - STATE(2389), 2, + [45062] = 2, + ACTIONS(2066), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [59833] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5184), 1, - anon_sym_EQ, - STATE(2390), 2, + [45070] = 2, + ACTIONS(5259), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [59847] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5186), 1, + [45078] = 2, + ACTIONS(5261), 1, anon_sym_DOT, - STATE(2391), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [59861] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5188), 1, - anon_sym_DOT, - STATE(2392), 2, + [45086] = 2, + ACTIONS(5263), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [59875] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5190), 1, - anon_sym_DOT, - STATE(2393), 2, + [45094] = 2, + ACTIONS(5265), 1, + aux_sym_class_declaration_token10, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [59889] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5192), 1, + [45102] = 2, + ACTIONS(5267), 1, anon_sym_DOT, - STATE(2394), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [59903] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5194), 1, - anon_sym_DOT, - STATE(2395), 2, + [45110] = 2, + ACTIONS(5269), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [59917] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5196), 1, - anon_sym_DOT, - STATE(2396), 2, + [45118] = 2, + ACTIONS(2698), 1, + aux_sym_class_declaration_token12, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [59931] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5198), 1, - aux_sym_class_declaration_token13, - STATE(2397), 2, + [45126] = 2, + ACTIONS(5271), 1, + aux_sym_class_declaration_token9, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [59945] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5200), 1, - anon_sym_DOT, - STATE(2398), 2, + [45134] = 2, + ACTIONS(5273), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [59959] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3920), 1, - aux_sym_class_declaration_token13, - STATE(2399), 2, + [45142] = 2, + ACTIONS(1835), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [59973] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5202), 1, + [45150] = 2, + ACTIONS(5275), 1, anon_sym_DOT, - STATE(2400), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [59987] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2857), 1, - aux_sym_class_declaration_token13, - STATE(2401), 2, + [45158] = 2, + ACTIONS(1833), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [60001] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5204), 1, + [45166] = 2, + ACTIONS(5277), 1, anon_sym_DOT, - STATE(2402), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [60015] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2979), 1, - aux_sym_class_declaration_token13, - STATE(2403), 2, + [45174] = 2, + ACTIONS(5279), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [60029] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5206), 1, + [45182] = 2, + ACTIONS(5281), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [45190] = 2, + ACTIONS(5283), 1, anon_sym_DOT, - STATE(2404), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [60043] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5208), 1, + [45198] = 2, + ACTIONS(5285), 1, anon_sym_DOT, - STATE(2405), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [60057] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5210), 1, - aux_sym__read_table_result_token2, - STATE(2406), 2, + [45206] = 2, + ACTIONS(5287), 1, + anon_sym_EQ, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [60071] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5212), 1, - aux_sym_line_spec_token2, - STATE(2407), 2, + [45214] = 2, + ACTIONS(5289), 1, + anon_sym_EQ, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [60085] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5214), 1, - sym_name, - STATE(2408), 2, + [45222] = 2, + ACTIONS(5291), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [60099] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5216), 1, - aux_sym_class_declaration_token13, - STATE(2409), 2, + [45230] = 2, + ACTIONS(5293), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [60113] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5218), 1, + [45238] = 2, + ACTIONS(5295), 1, anon_sym_DOT, - STATE(2410), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [60127] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5220), 1, + [45246] = 2, + ACTIONS(5297), 1, + sym_name, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [45254] = 2, + ACTIONS(5299), 1, anon_sym_DOT, - STATE(2411), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [60141] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3908), 1, + [45262] = 2, + ACTIONS(5301), 1, + aux_sym__select_target_token2, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [45270] = 2, + ACTIONS(4185), 1, aux_sym_class_declaration_token13, - STATE(2412), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [60155] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5222), 1, + [45278] = 2, + ACTIONS(5303), 1, anon_sym_DOT, - STATE(2413), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [60169] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5224), 1, - sym_field_symbol_name, - STATE(2414), 2, + [45286] = 2, + ACTIONS(2766), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [60183] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5224), 1, - sym_name, - STATE(2415), 2, + [45294] = 2, + ACTIONS(5305), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [60197] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5226), 1, - aux_sym_complete_typing_token2, - STATE(2416), 2, + [45302] = 2, + ACTIONS(5307), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [60211] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5228), 1, + [45310] = 2, + ACTIONS(5309), 1, anon_sym_DOT, - STATE(2417), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [60225] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2064), 1, + [45318] = 2, + ACTIONS(5311), 1, + sym_name, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [45326] = 2, + ACTIONS(5313), 1, aux_sym_class_declaration_token13, - STATE(2418), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [60239] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5230), 1, + [45334] = 2, + ACTIONS(5315), 1, anon_sym_DOT, - STATE(2419), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [60253] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2845), 1, - aux_sym_class_declaration_token13, - STATE(2420), 2, + [45342] = 2, + ACTIONS(5317), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [60267] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5232), 1, - aux_sym_generic_type_token2, - STATE(2421), 2, + [45350] = 2, + ACTIONS(5319), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [60281] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5234), 1, + [45358] = 2, + ACTIONS(5321), 1, aux_sym__data_object_typing_normal_token2, - STATE(2422), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [60295] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5236), 1, - aux_sym__data_object_typing_normal_token2, - STATE(2423), 2, + [45366] = 2, + ACTIONS(5323), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [60309] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5238), 1, - aux_sym_complete_typing_token2, - STATE(2424), 2, + [45374] = 2, + ACTIONS(5325), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [60323] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5240), 1, - anon_sym_DOT, - STATE(2425), 2, + [45382] = 2, + ACTIONS(5327), 1, + aux_sym_class_declaration_token12, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [60337] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5242), 1, + [45390] = 2, + ACTIONS(5329), 1, anon_sym_DOT, - STATE(2426), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [60351] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5244), 1, + [45398] = 2, + ACTIONS(5331), 1, anon_sym_DOT, - STATE(2427), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [60365] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5246), 1, + [45406] = 2, + ACTIONS(5333), 1, anon_sym_DOT, - STATE(2428), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [60379] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5248), 1, - anon_sym_DOT, - STATE(2429), 2, + [45414] = 2, + ACTIONS(4154), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [60393] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5250), 1, + [45422] = 2, + ACTIONS(5335), 1, anon_sym_DOT, - STATE(2430), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [60407] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5252), 1, - aux_sym_generic_type_token2, - STATE(2431), 2, + [45430] = 2, + ACTIONS(5337), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [60421] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5254), 1, + [45438] = 2, + ACTIONS(5339), 1, aux_sym__data_object_typing_normal_token2, - STATE(2432), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [60435] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5256), 1, - anon_sym_DOT, - STATE(2433), 2, + [45446] = 2, + ACTIONS(5341), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [60449] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5258), 1, + [45454] = 2, + ACTIONS(5343), 1, anon_sym_DOT, - STATE(2434), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [60463] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5260), 1, + [45462] = 2, + ACTIONS(5345), 1, anon_sym_DOT, - STATE(2435), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [60477] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5262), 1, + [45470] = 2, + ACTIONS(2764), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [45478] = 2, + ACTIONS(5347), 1, anon_sym_DOT, - STATE(2436), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [60491] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5264), 1, + [45486] = 2, + ACTIONS(5349), 1, sym_name, - STATE(2437), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [60505] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5266), 1, - aux_sym__data_object_typing_normal_token2, - STATE(2438), 2, + [45494] = 2, + ACTIONS(2457), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [60519] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5268), 1, + [45502] = 2, + ACTIONS(5351), 1, anon_sym_DOT, - STATE(2439), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [60533] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5270), 1, - aux_sym__data_object_typing_normal_token4, - STATE(2440), 2, + [45510] = 2, + ACTIONS(5353), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [60547] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5272), 1, + [45518] = 2, + ACTIONS(5355), 1, anon_sym_DOT, - STATE(2441), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [60561] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3896), 1, - aux_sym_class_declaration_token12, - STATE(2442), 2, + [45526] = 2, + ACTIONS(5357), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [60575] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5274), 1, + [45534] = 2, + ACTIONS(5359), 1, anon_sym_DOT, - STATE(2443), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [60589] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5276), 1, + [45542] = 2, + ACTIONS(5361), 1, sym_name, - STATE(2444), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [60603] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5278), 1, + [45550] = 2, + ACTIONS(5363), 1, anon_sym_DOT, - STATE(2445), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [60617] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5280), 1, - aux_sym_complete_typing_token2, - STATE(2446), 2, + [45558] = 2, + ACTIONS(5365), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [60631] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5282), 1, + [45566] = 2, + ACTIONS(5367), 1, anon_sym_DOT, - STATE(2447), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [60645] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5284), 1, + [45574] = 2, + ACTIONS(5369), 1, anon_sym_DOT, - STATE(2448), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [60659] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5286), 1, + [45582] = 2, + ACTIONS(5371), 1, anon_sym_DOT, - STATE(2449), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [60673] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5288), 1, + [45590] = 2, + ACTIONS(5373), 1, anon_sym_DOT, - STATE(2450), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [60687] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5290), 1, - sym_name, - STATE(2451), 2, + [45598] = 2, + ACTIONS(5375), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [60701] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5292), 1, - aux_sym__data_object_typing_normal_token4, - STATE(2452), 2, + [45606] = 2, + ACTIONS(5377), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [60715] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5294), 1, + [45614] = 2, + ACTIONS(5379), 1, anon_sym_DOT, - STATE(2453), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [60729] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5296), 1, + [45622] = 2, + ACTIONS(5381), 1, anon_sym_DOT, - STATE(2454), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [60743] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5298), 1, + [45630] = 2, + ACTIONS(5383), 1, anon_sym_DOT, - STATE(2455), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [60757] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5300), 1, + [45638] = 2, + ACTIONS(5385), 1, anon_sym_DOT, - STATE(2456), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [60771] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5302), 1, + [45646] = 2, + ACTIONS(5387), 1, anon_sym_DOT, - STATE(2457), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [60785] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5304), 1, + [45654] = 2, + ACTIONS(5389), 1, anon_sym_DOT, - STATE(2458), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [60799] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5306), 1, + [45662] = 2, + ACTIONS(5391), 1, anon_sym_DOT, - STATE(2459), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [60813] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5308), 1, + [45670] = 2, + ACTIONS(5393), 1, anon_sym_DOT, - STATE(2460), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [60827] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5310), 1, + [45678] = 2, + ACTIONS(5395), 1, anon_sym_DOT, - STATE(2461), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [60841] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5312), 1, + [45686] = 2, + ACTIONS(5397), 1, anon_sym_DOT, - STATE(2462), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [60855] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5314), 1, + [45694] = 2, + ACTIONS(5399), 1, anon_sym_DOT, - STATE(2463), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [60869] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5316), 1, + [45702] = 2, + ACTIONS(5401), 1, anon_sym_DOT, - STATE(2464), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [60883] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5318), 1, + [45710] = 2, + ACTIONS(5403), 1, anon_sym_DOT, - STATE(2465), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [60897] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5320), 1, + [45718] = 2, + ACTIONS(5405), 1, anon_sym_DOT, - STATE(2466), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [60911] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5322), 1, + [45726] = 2, + ACTIONS(5407), 1, anon_sym_DOT, - STATE(2467), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [60925] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5324), 1, + [45734] = 2, + ACTIONS(5409), 1, anon_sym_DOT, - STATE(2468), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [60939] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5326), 1, + [45742] = 2, + ACTIONS(5411), 1, anon_sym_DOT, - STATE(2469), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [60953] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5328), 1, + [45750] = 2, + ACTIONS(5413), 1, anon_sym_DOT, - STATE(2470), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [60967] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5330), 1, + [45758] = 2, + ACTIONS(5415), 1, anon_sym_DOT, - STATE(2471), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [60981] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5332), 1, + [45766] = 2, + ACTIONS(5417), 1, anon_sym_DOT, - STATE(2472), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [60995] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5334), 1, + [45774] = 2, + ACTIONS(5419), 1, anon_sym_DOT, - STATE(2473), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [61009] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5336), 1, + [45782] = 2, + ACTIONS(5421), 1, anon_sym_DOT, - STATE(2474), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [61023] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5338), 1, + [45790] = 2, + ACTIONS(5423), 1, anon_sym_DOT, - STATE(2475), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [61037] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5340), 1, + [45798] = 2, + ACTIONS(5425), 1, anon_sym_DOT, - STATE(2476), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [61051] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5342), 1, + [45806] = 2, + ACTIONS(5427), 1, anon_sym_DOT, - STATE(2477), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [61065] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5344), 1, + [45814] = 2, + ACTIONS(5429), 1, anon_sym_DOT, - STATE(2478), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [61079] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5346), 1, + [45822] = 2, + ACTIONS(5431), 1, anon_sym_DOT, - STATE(2479), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [61093] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5348), 1, + [45830] = 2, + ACTIONS(5433), 1, anon_sym_DOT, - STATE(2480), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [61107] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5350), 1, + [45838] = 2, + ACTIONS(5435), 1, anon_sym_DOT, - STATE(2481), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [61121] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5352), 1, + [45846] = 2, + ACTIONS(5437), 1, anon_sym_DOT, - STATE(2482), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [61135] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5354), 1, + [45854] = 2, + ACTIONS(5439), 1, anon_sym_DOT, - STATE(2483), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [61149] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5356), 1, + [45862] = 2, + ACTIONS(5441), 1, anon_sym_DOT, - STATE(2484), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [61163] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5358), 1, + [45870] = 2, + ACTIONS(5443), 1, anon_sym_DOT, - STATE(2485), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [61177] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5360), 1, + [45878] = 2, + ACTIONS(5445), 1, anon_sym_DOT, - STATE(2486), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [61191] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5362), 1, + [45886] = 2, + ACTIONS(5447), 1, anon_sym_DOT, - STATE(2487), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [61205] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5364), 1, + [45894] = 2, + ACTIONS(5449), 1, anon_sym_DOT, - STATE(2488), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [61219] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5366), 1, + [45902] = 2, + ACTIONS(5451), 1, anon_sym_DOT, - STATE(2489), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [61233] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5368), 1, + [45910] = 2, + ACTIONS(5453), 1, anon_sym_DOT, - STATE(2490), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [61247] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5370), 1, + [45918] = 2, + ACTIONS(5455), 1, anon_sym_DOT, - STATE(2491), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [61261] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5372), 1, + [45926] = 2, + ACTIONS(5457), 1, anon_sym_DOT, - STATE(2492), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [61275] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5374), 1, + [45934] = 2, + ACTIONS(5459), 1, anon_sym_DOT, - STATE(2493), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [61289] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5376), 1, + [45942] = 2, + ACTIONS(5461), 1, anon_sym_DOT, - STATE(2494), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [61303] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5378), 1, + [45950] = 2, + ACTIONS(5463), 1, anon_sym_DOT, - STATE(2495), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [61317] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5380), 1, + [45958] = 2, + ACTIONS(5465), 1, anon_sym_DOT, - STATE(2496), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [61331] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5382), 1, + [45966] = 2, + ACTIONS(5467), 1, anon_sym_DOT, - STATE(2497), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [61345] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5384), 1, + [45974] = 2, + ACTIONS(5469), 1, anon_sym_DOT, - STATE(2498), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [61359] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5386), 1, + [45982] = 2, + ACTIONS(5471), 1, anon_sym_DOT, - STATE(2499), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [61373] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5388), 1, + [45990] = 2, + ACTIONS(5473), 1, anon_sym_DOT, - STATE(2500), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [61387] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5390), 1, + [45998] = 2, + ACTIONS(5475), 1, anon_sym_DOT, - STATE(2501), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [61401] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5392), 1, + [46006] = 2, + ACTIONS(5477), 1, anon_sym_DOT, - STATE(2502), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [61415] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5394), 1, + [46014] = 2, + ACTIONS(5479), 1, anon_sym_DOT, - STATE(2503), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [61429] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5396), 1, + [46022] = 2, + ACTIONS(5481), 1, anon_sym_DOT, - STATE(2504), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [61443] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5398), 1, + [46030] = 2, + ACTIONS(5483), 1, + sym_name, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [46038] = 2, + ACTIONS(5485), 1, anon_sym_DOT, - STATE(2505), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [61457] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5400), 1, + [46046] = 2, + ACTIONS(5487), 1, anon_sym_DOT, - STATE(2506), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [61471] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5402), 1, + [46054] = 2, + ACTIONS(5489), 1, anon_sym_DOT, - STATE(2507), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [61485] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5404), 1, + [46062] = 2, + ACTIONS(5491), 1, anon_sym_DOT, - STATE(2508), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [61499] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5406), 1, + [46070] = 2, + ACTIONS(5493), 1, anon_sym_DOT, - STATE(2509), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [61513] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5408), 1, + [46078] = 2, + ACTIONS(5495), 1, anon_sym_DOT, - STATE(2510), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [61527] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5410), 1, + [46086] = 2, + ACTIONS(5497), 1, anon_sym_DOT, - STATE(2511), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [61541] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5412), 1, + [46094] = 2, + ACTIONS(5499), 1, anon_sym_DOT, - STATE(2512), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [61555] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5414), 1, + [46102] = 2, + ACTIONS(5501), 1, anon_sym_DOT, - STATE(2513), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [61569] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5416), 1, + [46110] = 2, + ACTIONS(5503), 1, anon_sym_DOT, - STATE(2514), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [61583] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5418), 1, + [46118] = 2, + ACTIONS(5505), 1, anon_sym_DOT, - STATE(2515), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [61597] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5420), 1, + [46126] = 2, + ACTIONS(5507), 1, anon_sym_DOT, - STATE(2516), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [61611] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5422), 1, + [46134] = 2, + ACTIONS(5509), 1, anon_sym_DOT, - STATE(2517), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [61625] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5424), 1, + [46142] = 2, + ACTIONS(5511), 1, anon_sym_DOT, - STATE(2518), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [61639] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5426), 1, + [46150] = 2, + ACTIONS(5513), 1, anon_sym_DOT, - STATE(2519), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [61653] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5428), 1, + [46158] = 2, + ACTIONS(5515), 1, anon_sym_DOT, - STATE(2520), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [61667] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5430), 1, + [46166] = 2, + ACTIONS(5517), 1, anon_sym_DOT, - STATE(2521), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [61681] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5432), 1, + [46174] = 2, + ACTIONS(5519), 1, anon_sym_DOT, - STATE(2522), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [61695] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5434), 1, + [46182] = 2, + ACTIONS(5521), 1, anon_sym_DOT, - STATE(2523), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [61709] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5436), 1, + [46190] = 2, + ACTIONS(5523), 1, anon_sym_DOT, - STATE(2524), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [61723] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5438), 1, + [46198] = 2, + ACTIONS(5525), 1, anon_sym_DOT, - STATE(2525), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [61737] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5440), 1, + [46206] = 2, + ACTIONS(5527), 1, anon_sym_DOT, - STATE(2526), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [61751] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5442), 1, + [46214] = 2, + ACTIONS(5529), 1, anon_sym_DOT, - STATE(2527), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [61765] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5444), 1, + [46222] = 2, + ACTIONS(5531), 1, anon_sym_DOT, - STATE(2528), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [61779] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5446), 1, + [46230] = 2, + ACTIONS(5533), 1, anon_sym_DOT, - STATE(2529), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [61793] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5448), 1, + [46238] = 2, + ACTIONS(5535), 1, anon_sym_DOT, - STATE(2530), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [61807] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5450), 1, + [46246] = 2, + ACTIONS(5537), 1, anon_sym_DOT, - STATE(2531), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [61821] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5452), 1, + [46254] = 2, + ACTIONS(5539), 1, anon_sym_DOT, - STATE(2532), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [61835] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5454), 1, + [46262] = 2, + ACTIONS(5541), 1, anon_sym_DOT, - STATE(2533), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [61849] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5456), 1, + [46270] = 2, + ACTIONS(5543), 1, anon_sym_DOT, - STATE(2534), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [61863] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5458), 1, + [46278] = 2, + ACTIONS(5545), 1, anon_sym_DOT, - STATE(2535), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [61877] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5460), 1, + [46286] = 2, + ACTIONS(5547), 1, anon_sym_DOT, - STATE(2536), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [61891] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5462), 1, + [46294] = 2, + ACTIONS(5549), 1, anon_sym_DOT, - STATE(2537), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [61905] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5464), 1, + [46302] = 2, + ACTIONS(5551), 1, anon_sym_DOT, - STATE(2538), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [61919] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5466), 1, + [46310] = 2, + ACTIONS(5553), 1, anon_sym_DOT, - STATE(2539), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [61933] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5468), 1, + [46318] = 2, + ACTIONS(5555), 1, anon_sym_DOT, - STATE(2540), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [61947] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5470), 1, + [46326] = 2, + ACTIONS(5557), 1, anon_sym_DOT, - STATE(2541), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [61961] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5472), 1, + [46334] = 2, + ACTIONS(5559), 1, anon_sym_DOT, - STATE(2542), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [61975] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5474), 1, + [46342] = 2, + ACTIONS(5561), 1, anon_sym_DOT, - STATE(2543), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [61989] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5476), 1, + [46350] = 2, + ACTIONS(5563), 1, anon_sym_DOT, - STATE(2544), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [62003] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5478), 1, + [46358] = 2, + ACTIONS(5565), 1, anon_sym_DOT, - STATE(2545), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [62017] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5480), 1, + [46366] = 2, + ACTIONS(5567), 1, anon_sym_DOT, - STATE(2546), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [62031] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5482), 1, + [46374] = 2, + ACTIONS(5569), 1, anon_sym_DOT, - STATE(2547), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [62045] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5484), 1, + [46382] = 2, + ACTIONS(5571), 1, anon_sym_DOT, - STATE(2548), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [62059] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5486), 1, + [46390] = 2, + ACTIONS(5573), 1, anon_sym_DOT, - STATE(2549), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [62073] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5488), 1, + [46398] = 2, + ACTIONS(5575), 1, anon_sym_DOT, - STATE(2550), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [62087] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5490), 1, + [46406] = 2, + ACTIONS(5577), 1, anon_sym_DOT, - STATE(2551), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [62101] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5492), 1, + [46414] = 2, + ACTIONS(5579), 1, anon_sym_DOT, - STATE(2552), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [62115] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5494), 1, + [46422] = 2, + ACTIONS(5581), 1, anon_sym_DOT, - STATE(2553), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [62129] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5496), 1, + [46430] = 2, + ACTIONS(5583), 1, anon_sym_DOT, - STATE(2554), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [62143] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5498), 1, + [46438] = 2, + ACTIONS(5585), 1, anon_sym_DOT, - STATE(2555), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [62157] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5500), 1, + [46446] = 2, + ACTIONS(5587), 1, anon_sym_DOT, - STATE(2556), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [62171] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5502), 1, + [46454] = 2, + ACTIONS(5589), 1, anon_sym_DOT, - STATE(2557), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [62185] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5504), 1, + [46462] = 2, + ACTIONS(5591), 1, anon_sym_DOT, - STATE(2558), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [62199] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5506), 1, + [46470] = 2, + ACTIONS(5593), 1, anon_sym_DOT, - STATE(2559), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [62213] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5508), 1, + [46478] = 2, + ACTIONS(5595), 1, anon_sym_DOT, - STATE(2560), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [62227] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5510), 1, + [46486] = 2, + ACTIONS(5597), 1, anon_sym_DOT, - STATE(2561), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [62241] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5512), 1, + [46494] = 2, + ACTIONS(5599), 1, anon_sym_DOT, - STATE(2562), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [62255] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5514), 1, + [46502] = 2, + ACTIONS(5601), 1, anon_sym_DOT, - STATE(2563), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [62269] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5516), 1, + [46510] = 2, + ACTIONS(5603), 1, anon_sym_DOT, - STATE(2564), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [62283] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5518), 1, + [46518] = 2, + ACTIONS(5605), 1, anon_sym_DOT, - STATE(2565), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [62297] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5520), 1, + [46526] = 2, + ACTIONS(5607), 1, anon_sym_DOT, - STATE(2566), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [62311] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5522), 1, + [46534] = 2, + ACTIONS(5609), 1, anon_sym_DOT, - STATE(2567), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [62325] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5524), 1, + [46542] = 2, + ACTIONS(5611), 1, anon_sym_DOT, - STATE(2568), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [62339] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5526), 1, + [46550] = 2, + ACTIONS(5613), 1, anon_sym_DOT, - STATE(2569), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [62353] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5528), 1, + [46558] = 2, + ACTIONS(5615), 1, anon_sym_DOT, - STATE(2570), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [62367] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5530), 1, + [46566] = 2, + ACTIONS(5617), 1, anon_sym_DOT, - STATE(2571), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [62381] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5532), 1, + [46574] = 2, + ACTIONS(5619), 1, anon_sym_DOT, - STATE(2572), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [62395] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5534), 1, + [46582] = 2, + ACTIONS(5621), 1, anon_sym_DOT, - STATE(2573), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [62409] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5536), 1, + [46590] = 2, + ACTIONS(5623), 1, anon_sym_DOT, - STATE(2574), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [62423] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5538), 1, + [46598] = 2, + ACTIONS(5625), 1, anon_sym_DOT, - STATE(2575), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [62437] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5540), 1, + [46606] = 2, + ACTIONS(5627), 1, anon_sym_DOT, - STATE(2576), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [62451] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5542), 1, + [46614] = 2, + ACTIONS(5629), 1, anon_sym_DOT, - STATE(2577), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [62465] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5544), 1, + [46622] = 2, + ACTIONS(5631), 1, anon_sym_DOT, - STATE(2578), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [62479] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5546), 1, + [46630] = 2, + ACTIONS(5633), 1, anon_sym_DOT, - STATE(2579), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [62493] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5548), 1, + [46638] = 2, + ACTIONS(5635), 1, anon_sym_DOT, - STATE(2580), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [62507] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5550), 1, + [46646] = 2, + ACTIONS(5637), 1, anon_sym_DOT, - STATE(2581), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [62521] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5552), 1, + [46654] = 2, + ACTIONS(5639), 1, anon_sym_DOT, - STATE(2582), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [62535] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5554), 1, + [46662] = 2, + ACTIONS(5641), 1, anon_sym_DOT, - STATE(2583), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [62549] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5556), 1, + [46670] = 2, + ACTIONS(5643), 1, anon_sym_DOT, - STATE(2584), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [62563] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5558), 1, + [46678] = 2, + ACTIONS(5645), 1, anon_sym_DOT, - STATE(2585), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [62577] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5560), 1, + [46686] = 2, + ACTIONS(5647), 1, anon_sym_DOT, - STATE(2586), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [62591] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5562), 1, + [46694] = 2, + ACTIONS(5649), 1, anon_sym_DOT, - STATE(2587), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [62605] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5564), 1, + [46702] = 2, + ACTIONS(5651), 1, anon_sym_DOT, - STATE(2588), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [62619] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5566), 1, + [46710] = 2, + ACTIONS(5653), 1, anon_sym_DOT, - STATE(2589), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [62633] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5568), 1, + [46718] = 2, + ACTIONS(5655), 1, anon_sym_DOT, - STATE(2590), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [62647] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5570), 1, + [46726] = 2, + ACTIONS(5657), 1, anon_sym_DOT, - STATE(2591), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [62661] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5572), 1, + [46734] = 2, + ACTIONS(5659), 1, anon_sym_DOT, - STATE(2592), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [62675] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5574), 1, + [46742] = 2, + ACTIONS(5661), 1, anon_sym_DOT, - STATE(2593), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [62689] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5576), 1, + [46750] = 2, + ACTIONS(5663), 1, anon_sym_DOT, - STATE(2594), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [62703] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5578), 1, + [46758] = 2, + ACTIONS(5665), 1, anon_sym_DOT, - STATE(2595), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [62717] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5580), 1, + [46766] = 2, + ACTIONS(5667), 1, anon_sym_DOT, - STATE(2596), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [62731] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5582), 1, + [46774] = 2, + ACTIONS(5669), 1, anon_sym_DOT, - STATE(2597), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [62745] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5584), 1, + [46782] = 2, + ACTIONS(5671), 1, anon_sym_DOT, - STATE(2598), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [62759] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5586), 1, + [46790] = 2, + ACTIONS(5673), 1, anon_sym_DOT, - STATE(2599), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [62773] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5588), 1, + [46798] = 2, + ACTIONS(5675), 1, anon_sym_DOT, - STATE(2600), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [62787] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5590), 1, + [46806] = 2, + ACTIONS(5677), 1, anon_sym_DOT, - STATE(2601), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [62801] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5592), 1, + [46814] = 2, + ACTIONS(5679), 1, anon_sym_DOT, - STATE(2602), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [62815] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5594), 1, + [46822] = 2, + ACTIONS(5681), 1, anon_sym_DOT, - STATE(2603), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [62829] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5596), 1, + [46830] = 2, + ACTIONS(5683), 1, anon_sym_DOT, - STATE(2604), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [62843] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5598), 1, + [46838] = 2, + ACTIONS(5685), 1, anon_sym_DOT, - STATE(2605), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [62857] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5600), 1, + [46846] = 2, + ACTIONS(5687), 1, anon_sym_DOT, - STATE(2606), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [62871] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5602), 1, + [46854] = 2, + ACTIONS(5689), 1, anon_sym_DOT, - STATE(2607), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [62885] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5604), 1, + [46862] = 2, + ACTIONS(5691), 1, anon_sym_DOT, - STATE(2608), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [62899] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5606), 1, + [46870] = 2, + ACTIONS(5693), 1, anon_sym_DOT, - STATE(2609), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [62913] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5608), 1, + [46878] = 2, + ACTIONS(5695), 1, anon_sym_DOT, - STATE(2610), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [62927] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5610), 1, + [46886] = 2, + ACTIONS(5697), 1, anon_sym_DOT, - STATE(2611), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [62941] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5612), 1, + [46894] = 2, + ACTIONS(5699), 1, anon_sym_DOT, - STATE(2612), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [62955] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5614), 1, + [46902] = 2, + ACTIONS(5701), 1, anon_sym_DOT, - STATE(2613), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [62969] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5616), 1, + [46910] = 2, + ACTIONS(5703), 1, anon_sym_DOT, - STATE(2614), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [62983] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5618), 1, + [46918] = 2, + ACTIONS(5705), 1, anon_sym_DOT, - STATE(2615), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [62997] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5620), 1, + [46926] = 2, + ACTIONS(5707), 1, anon_sym_DOT, - STATE(2616), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [63011] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5622), 1, + [46934] = 2, + ACTIONS(5709), 1, anon_sym_DOT, - STATE(2617), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [63025] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5624), 1, + [46942] = 2, + ACTIONS(5711), 1, anon_sym_DOT, - STATE(2618), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [63039] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5626), 1, - aux_sym__data_object_typing_normal_token2, - STATE(2619), 2, + [46950] = 2, + ACTIONS(5713), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [63053] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5628), 1, - aux_sym_class_declaration_token10, - STATE(2620), 2, + [46958] = 2, + ACTIONS(5715), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [63067] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5630), 1, + [46966] = 2, + ACTIONS(5717), 1, anon_sym_DOT, - STATE(2621), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [63081] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5632), 1, + [46974] = 2, + ACTIONS(5719), 1, anon_sym_DOT, - STATE(2622), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [63095] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5634), 1, + [46982] = 2, + ACTIONS(5721), 1, anon_sym_DOT, - STATE(2623), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [63109] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5636), 1, + [46990] = 2, + ACTIONS(5723), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [46998] = 2, + ACTIONS(5725), 1, anon_sym_DOT, - STATE(2624), 2, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [47006] = 2, + ACTIONS(5727), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [47014] = 2, + ACTIONS(5729), 1, + aux_sym__data_object_typing_normal_token4, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [63123] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5638), 1, + [47022] = 2, + ACTIONS(5731), 1, anon_sym_DOT, - STATE(2625), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [63137] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5640), 1, + [47030] = 2, + ACTIONS(5733), 1, anon_sym_DOT, - STATE(2626), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [63151] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5642), 1, + [47038] = 2, + ACTIONS(5735), 1, anon_sym_DOT, - STATE(2627), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [63165] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5644), 1, + [47046] = 2, + ACTIONS(5737), 1, sym_name, - STATE(2628), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [63179] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5646), 1, + [47054] = 2, + ACTIONS(5739), 1, anon_sym_DOT, - STATE(2629), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [63193] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5648), 1, + [47062] = 2, + ACTIONS(5741), 1, sym_name, - STATE(2630), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [63207] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5650), 1, + [47070] = 2, + ACTIONS(5743), 1, sym_name, - STATE(2631), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [63221] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5652), 1, - anon_sym_DOT, - STATE(2632), 2, + [47078] = 2, + ACTIONS(5745), 1, + aux_sym_public_section_token1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [63235] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5654), 1, - sym_name, - STATE(2633), 2, + [47086] = 2, + ACTIONS(5747), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [63249] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5656), 1, + [47094] = 2, + ACTIONS(5749), 1, anon_sym_DOT, - STATE(2634), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [63263] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5658), 1, + [47102] = 2, + ACTIONS(5751), 1, anon_sym_DOT, - STATE(2635), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [63277] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5660), 1, + [47110] = 2, + ACTIONS(5753), 1, sym_name, - STATE(2636), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [63291] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5662), 1, + [47118] = 2, + ACTIONS(5755), 1, anon_sym_DOT, - STATE(2637), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [63305] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5664), 1, + [47126] = 2, + ACTIONS(5757), 1, sym_name, - STATE(2638), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [63319] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5666), 1, - anon_sym_DOT, - STATE(2639), 2, + [47134] = 2, + ACTIONS(5759), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [63333] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5668), 1, + [47142] = 2, + ACTIONS(5761), 1, anon_sym_DOT, - STATE(2640), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [63347] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5670), 1, - anon_sym_DOT, - STATE(2641), 2, + [47150] = 2, + ACTIONS(5763), 1, + aux_sym__data_object_typing_normal_token2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [63361] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5672), 1, - anon_sym_DOT, - STATE(2642), 2, + [47158] = 2, + ACTIONS(1918), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [63375] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5674), 1, - sym_name, - STATE(2643), 2, + [47166] = 2, + ACTIONS(5765), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [63389] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5676), 1, - sym_name, - STATE(2644), 2, + [47174] = 2, + ACTIONS(5767), 1, + aux_sym_public_section_token1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [63403] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5678), 1, - sym_name, - STATE(2645), 2, + [47182] = 2, + ACTIONS(5769), 1, + aux_sym_public_section_token1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [63417] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5680), 1, + [47190] = 2, + ACTIONS(5771), 1, sym_character_literal, - STATE(2646), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [63431] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5682), 1, - sym_name, - STATE(2647), 2, + [47198] = 2, + ACTIONS(5773), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [63445] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5684), 1, + [47206] = 2, + ACTIONS(5775), 1, anon_sym_DOT, - STATE(2648), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [63459] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5686), 1, + [47214] = 2, + ACTIONS(5777), 1, anon_sym_DOT, - STATE(2649), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [63473] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5688), 1, - aux_sym_class_declaration_token12, - STATE(2650), 2, + [47222] = 2, + ACTIONS(5779), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [63487] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5690), 1, - anon_sym_DOT, - STATE(2651), 2, + [47230] = 2, + ACTIONS(5781), 1, + aux_sym_class_declaration_token10, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [63501] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5692), 1, + [47238] = 2, + ACTIONS(5783), 1, sym_name, - STATE(2652), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [63515] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5694), 1, + [47246] = 2, + ACTIONS(5785), 1, anon_sym_DOT, - STATE(2653), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [63529] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5696), 1, + [47254] = 2, + ACTIONS(5787), 1, anon_sym_DOT, - STATE(2654), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [63543] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5698), 1, - anon_sym_DOT, - STATE(2655), 2, + [47262] = 2, + ACTIONS(5789), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [63557] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1702), 1, - aux_sym_class_declaration_token12, - STATE(2656), 2, + [47270] = 2, + ACTIONS(5791), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [63571] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5700), 1, + [47278] = 2, + ACTIONS(5793), 1, sym_name, - STATE(2657), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [63585] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5702), 1, + [47286] = 2, + ACTIONS(5795), 1, sym_name, - STATE(2658), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [63599] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5704), 1, + [47294] = 2, + ACTIONS(5797), 1, aux_sym_include_statement_token2, - STATE(2659), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [63613] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5706), 1, - aux_sym_class_declaration_token9, - STATE(2660), 2, + [47302] = 2, + ACTIONS(1904), 1, + aux_sym_class_declaration_token12, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [63627] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2004), 1, + [47310] = 2, + ACTIONS(1793), 1, anon_sym_RPAREN, - STATE(2661), 2, - sym_eol_comment, - sym_bol_comment, - [63641] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5708), 1, - aux_sym_class_declaration_token5, - STATE(2662), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [63655] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5710), 1, - anon_sym_DOT, - STATE(2663), 2, + [47318] = 2, + ACTIONS(5799), 1, + aux_sym_class_declaration_token9, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [63669] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5712), 1, - anon_sym_DOT, - STATE(2664), 2, + [47326] = 2, + ACTIONS(5801), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [63683] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5714), 1, - anon_sym_LPAREN3, - STATE(2665), 2, + [47334] = 2, + ACTIONS(5803), 1, + aux_sym_class_declaration_token9, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [63697] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2138), 1, - anon_sym_RPAREN, - STATE(2666), 2, + [47342] = 2, + ACTIONS(5805), 1, + aux_sym_class_declaration_token5, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [63711] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5716), 1, + [47350] = 2, + ACTIONS(5807), 1, anon_sym_DOT, - STATE(2667), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [63725] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5718), 1, - anon_sym_DOT, - STATE(2668), 2, + [47358] = 2, + ACTIONS(5809), 1, + anon_sym_EQ, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [63739] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5720), 1, + [47366] = 2, + ACTIONS(5811), 1, anon_sym_DOT, - STATE(2669), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [63753] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5722), 1, - aux_sym__data_object_typing_normal_token4, - STATE(2670), 2, + [47374] = 2, + ACTIONS(3507), 1, + aux_sym_class_declaration_token12, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [63767] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5724), 1, + [47382] = 2, + ACTIONS(5813), 1, anon_sym_DOT, - STATE(2671), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [63781] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5726), 1, - anon_sym_DOT, - STATE(2672), 2, + [47390] = 2, + ACTIONS(3870), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [63795] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5728), 1, - anon_sym_DOT, - STATE(2673), 2, + [47398] = 2, + ACTIONS(5815), 1, + aux_sym_class_declaration_token10, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [63809] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5730), 1, - anon_sym_DOT, - STATE(2674), 2, + [47406] = 2, + ACTIONS(5817), 1, + anon_sym_EQ, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [63823] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5732), 1, - aux_sym__data_object_typing_normal_token4, - STATE(2675), 2, + [47414] = 2, + ACTIONS(5819), 1, + anon_sym_EQ, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [63837] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5734), 1, + [47422] = 2, + ACTIONS(5821), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [47430] = 2, + ACTIONS(5823), 1, anon_sym_DOT, - STATE(2676), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [63851] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5736), 1, + [47438] = 2, + ACTIONS(5825), 1, anon_sym_DOT, - STATE(2677), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [63865] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2142), 1, + [47446] = 2, + ACTIONS(2044), 1, aux_sym_class_declaration_token13, - STATE(2678), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [63879] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5738), 1, + [47454] = 2, + ACTIONS(5827), 1, anon_sym_DOT, - STATE(2679), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [63893] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5740), 1, + [47462] = 2, + ACTIONS(5829), 1, anon_sym_DOT, - STATE(2680), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [63907] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5742), 1, + [47470] = 2, + ACTIONS(5831), 1, anon_sym_DOT, - STATE(2681), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [63921] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5744), 1, - anon_sym_DOT, - STATE(2682), 2, + [47478] = 2, + ACTIONS(2555), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [63935] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5746), 1, - aux_sym_include_statement_token2, - STATE(2683), 2, + [47486] = 2, + ACTIONS(5833), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [63949] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2156), 1, + [47494] = 2, + ACTIONS(1829), 1, anon_sym_RPAREN, - STATE(2684), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [63963] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5748), 1, - sym_name, - STATE(2685), 2, + [47502] = 2, + ACTIONS(5835), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [63977] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2158), 1, + [47510] = 2, + ACTIONS(1831), 1, anon_sym_RPAREN, - STATE(2686), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [63991] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5750), 1, + [47518] = 2, + ACTIONS(5837), 1, anon_sym_DOT, - STATE(2687), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [64005] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5752), 1, - anon_sym_DOT, - STATE(2688), 2, + [47526] = 2, + ACTIONS(3942), 1, + aux_sym_class_declaration_token12, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [64019] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5754), 1, + [47534] = 2, + ACTIONS(5839), 1, anon_sym_DOT, - STATE(2689), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [64033] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2160), 1, + [47542] = 2, + ACTIONS(2050), 1, aux_sym_class_declaration_token13, - STATE(2690), 2, - sym_eol_comment, - sym_bol_comment, - [64047] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5756), 1, - sym_name, - STATE(2691), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [64061] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5758), 1, + [47550] = 2, + ACTIONS(5841), 1, anon_sym_DOT, - STATE(2692), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [64075] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5760), 1, + [47558] = 2, + ACTIONS(5843), 1, anon_sym_DOT, - STATE(2693), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [64089] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5762), 1, - aux_sym__data_object_typing_normal_token2, - STATE(2694), 2, + [47566] = 2, + ACTIONS(2926), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [64103] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5764), 1, + [47574] = 2, + ACTIONS(5845), 1, anon_sym_DOT, - STATE(2695), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [64117] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5766), 1, + [47582] = 2, + ACTIONS(5847), 1, anon_sym_DOT, - STATE(2696), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [64131] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2172), 1, + [47590] = 2, + ACTIONS(2581), 1, aux_sym_class_declaration_token13, - STATE(2697), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [64145] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5768), 1, + [47598] = 2, + ACTIONS(2068), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [47606] = 2, + ACTIONS(5849), 1, anon_sym_DOT, - STATE(2698), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [64159] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5770), 1, - sym_name, - STATE(2699), 2, + [47614] = 2, + ACTIONS(5851), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [64173] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5772), 1, + [47622] = 2, + ACTIONS(5853), 1, anon_sym_DOT, - STATE(2700), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [64187] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5774), 1, + [47630] = 2, + ACTIONS(5855), 1, anon_sym_DOT, - STATE(2701), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [64201] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2757), 1, + [47638] = 2, + ACTIONS(2870), 1, aux_sym_class_declaration_token13, - STATE(2702), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [64215] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5776), 1, + [47646] = 2, + ACTIONS(5857), 1, anon_sym_DOT, - STATE(2703), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [64229] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5778), 1, + [47654] = 2, + ACTIONS(5859), 1, anon_sym_DOT, - STATE(2704), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [64243] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5780), 1, - anon_sym_DOT, - STATE(2705), 2, + [47662] = 2, + ACTIONS(5861), 1, + aux_sym__read_table_result_token2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [64257] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5782), 1, - anon_sym_DOT, - STATE(2706), 2, + [47670] = 2, + ACTIONS(3928), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [64271] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2182), 1, + [47678] = 2, + ACTIONS(2443), 1, aux_sym_class_declaration_token13, - STATE(2707), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [64285] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5784), 1, - aux_sym_complete_typing_token2, - STATE(2708), 2, + [47686] = 2, + ACTIONS(5863), 1, + aux_sym_line_spec_token2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [64299] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5786), 1, + [47694] = 2, + ACTIONS(5865), 1, sym_name, - STATE(2709), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [64313] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5788), 1, + [47702] = 2, + ACTIONS(5867), 1, anon_sym_DOT, - STATE(2710), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [64327] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5790), 1, + [47710] = 2, + ACTIONS(5869), 1, anon_sym_DOT, - STATE(2711), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [64341] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2775), 1, + [47718] = 2, + ACTIONS(2768), 1, aux_sym_class_declaration_token13, - STATE(2712), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [64355] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5792), 1, - aux_sym__data_object_typing_normal_token4, - STATE(2713), 2, + [47726] = 2, + ACTIONS(5871), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [64369] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5794), 1, - anon_sym_DOT, - STATE(2714), 2, + [47734] = 2, + ACTIONS(5873), 1, + aux_sym_class_declaration_token10, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [64383] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5796), 1, + [47742] = 2, + ACTIONS(5875), 1, anon_sym_DOT, - STATE(2715), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [64397] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2188), 1, + [47750] = 2, + ACTIONS(2449), 1, aux_sym_class_declaration_token13, - STATE(2716), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [64411] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5798), 1, + [47758] = 2, + ACTIONS(5877), 1, anon_sym_DOT, - STATE(2717), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [64425] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3842), 1, + [47766] = 2, + ACTIONS(3916), 1, aux_sym_class_declaration_token13, - STATE(2718), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [64439] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5800), 1, - sym_name, - STATE(2719), 2, + [47774] = 2, + ACTIONS(2639), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [64453] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5802), 1, + [47782] = 2, + ACTIONS(5879), 1, anon_sym_DOT, - STATE(2720), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [64467] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5804), 1, + [47790] = 2, + ACTIONS(5881), 1, anon_sym_DOT, - STATE(2721), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [64481] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5806), 1, - anon_sym_DOT, - STATE(2722), 2, + [47798] = 2, + ACTIONS(5883), 1, + sym_field_symbol_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [64495] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5808), 1, - anon_sym_DOT, - STATE(2723), 2, + [47806] = 2, + ACTIONS(5885), 1, + aux_sym_class_declaration_token9, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [64509] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2122), 1, + [47814] = 2, + ACTIONS(1922), 1, aux_sym_class_declaration_token13, - STATE(2724), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [64523] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5810), 1, - anon_sym_DOT, - STATE(2725), 2, + [47822] = 2, + ACTIONS(5883), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [64537] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5812), 1, + [47830] = 2, + ACTIONS(5887), 1, anon_sym_DOT, - STATE(2726), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [64551] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2146), 1, + [47838] = 2, + ACTIONS(2565), 1, aux_sym_class_declaration_token13, - STATE(2727), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [64565] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5814), 1, - anon_sym_DOT, - STATE(2728), 2, + [47846] = 2, + ACTIONS(5889), 1, + aux_sym_complete_typing_token2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [64579] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5816), 1, - anon_sym_DOT, - STATE(2729), 2, + [47854] = 2, + ACTIONS(3900), 1, + aux_sym_class_declaration_token12, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [64593] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5818), 1, - anon_sym_DOT, - STATE(2730), 2, + [47862] = 2, + ACTIONS(5891), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [64607] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5820), 1, - aux_sym_class_declaration_token13, - STATE(2731), 2, + [47870] = 2, + ACTIONS(5893), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [64621] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2795), 1, + [47878] = 2, + ACTIONS(2922), 1, aux_sym_class_declaration_token13, - STATE(2732), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [64635] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5822), 1, + [47886] = 2, + ACTIONS(5895), 1, anon_sym_DOT, - STATE(2733), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [64649] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3862), 1, + [47894] = 2, + ACTIONS(3896), 1, aux_sym_class_declaration_token13, - STATE(2734), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [64663] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5824), 1, - anon_sym_DOT, - STATE(2735), 2, + [47902] = 2, + ACTIONS(5897), 1, + aux_sym_class_declaration_token12, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [64677] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5826), 1, - anon_sym_DOT, - STATE(2736), 2, + [47910] = 2, + ACTIONS(2886), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [64691] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3864), 1, + [47918] = 2, + ACTIONS(3890), 1, aux_sym_class_declaration_token13, - STATE(2737), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [64705] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1984), 1, + [47926] = 2, + ACTIONS(2587), 1, aux_sym_class_declaration_token13, - STATE(2738), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [64719] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5828), 1, - sym_name, - STATE(2739), 2, + [47934] = 2, + ACTIONS(5899), 1, + aux_sym_generic_type_token2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [64733] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5830), 1, + [47942] = 2, + ACTIONS(5901), 1, aux_sym_class_declaration_token13, - STATE(2740), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [64747] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5832), 1, + [47950] = 2, + ACTIONS(5903), 1, sym_name, - STATE(2741), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [64761] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5834), 1, - anon_sym_DOT, - STATE(2742), 2, + [47958] = 2, + ACTIONS(5905), 1, + aux_sym__data_object_typing_normal_token2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [64775] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2032), 1, - aux_sym_class_declaration_token13, - STATE(2743), 2, + [47966] = 2, + ACTIONS(5907), 1, + aux_sym__data_object_typing_normal_token2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [64789] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5836), 1, - anon_sym_DOT, - STATE(2744), 2, + [47974] = 2, + ACTIONS(5909), 1, + aux_sym_complete_typing_token2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [64803] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2803), 1, - aux_sym_class_declaration_token13, - STATE(2745), 2, + [47982] = 2, + ACTIONS(5911), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [64817] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2126), 1, + [47990] = 2, + ACTIONS(2613), 1, aux_sym_class_declaration_token13, - STATE(2746), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [64831] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5838), 1, + [47998] = 2, + ACTIONS(5913), 1, anon_sym_DOT, - STATE(2747), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [64845] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5840), 1, - anon_sym_DOT, - STATE(2748), 2, + [48006] = 2, + ACTIONS(5915), 1, + aux_sym_generic_type_token2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [64859] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5842), 1, - anon_sym_COMMA, - STATE(2749), 2, + [48014] = 2, + ACTIONS(5917), 1, + aux_sym__data_object_typing_normal_token2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [64873] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5844), 1, + [48022] = 2, + ACTIONS(5919), 1, aux_sym__data_object_typing_normal_token2, - STATE(2750), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [64887] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3872), 1, - aux_sym_class_declaration_token12, - STATE(2751), 2, + [48030] = 2, + ACTIONS(2976), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [64901] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2805), 1, + [48038] = 2, + ACTIONS(2856), 1, aux_sym_class_declaration_token13, - STATE(2752), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [64915] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2102), 1, + [48046] = 2, + ACTIONS(2635), 1, aux_sym_class_declaration_token13, - STATE(2753), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [64929] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5846), 1, + [48054] = 2, + ACTIONS(5921), 1, anon_sym_DOT, - STATE(2754), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [64943] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2817), 1, - aux_sym_class_declaration_token13, - STATE(2755), 2, + [48062] = 2, + ACTIONS(5923), 1, + aux_sym_complete_typing_token2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [64957] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5848), 1, - anon_sym_DOT, - STATE(2756), 2, + [48070] = 2, + ACTIONS(2637), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [64971] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3880), 1, + [48078] = 2, + ACTIONS(3886), 1, aux_sym_class_declaration_token13, - STATE(2757), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [64985] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5850), 1, + [48086] = 2, + ACTIONS(5925), 1, aux_sym_class_declaration_token13, - STATE(2758), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [64999] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5852), 1, + [48094] = 2, + ACTIONS(5927), 1, anon_sym_DOT, - STATE(2759), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [65013] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5854), 1, - aux_sym_class_declaration_token13, - STATE(2760), 2, + [48102] = 2, + ACTIONS(5929), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [65027] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2094), 1, + [48110] = 2, + ACTIONS(2607), 1, aux_sym_class_declaration_token13, - STATE(2761), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [65041] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5856), 1, + [48118] = 2, + ACTIONS(5931), 1, anon_sym_DOT, - STATE(2762), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [65055] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5858), 1, - anon_sym_DOT, - STATE(2763), 2, + [48126] = 2, + ACTIONS(3876), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [65069] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5860), 1, + [48134] = 2, + ACTIONS(5933), 1, sym_name, - STATE(2764), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [65083] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3890), 1, - aux_sym_class_declaration_token13, - STATE(2765), 2, + [48142] = 2, + ACTIONS(5935), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [65097] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2825), 1, + [48150] = 2, + ACTIONS(2888), 1, aux_sym_class_declaration_token13, - STATE(2766), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [65111] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5862), 1, + [48158] = 2, + ACTIONS(5937), 1, sym_name, - STATE(2767), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [65125] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5864), 1, - anon_sym_DOT, - STATE(2768), 2, + [48166] = 2, + ACTIONS(5939), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [65139] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5866), 1, + [48174] = 2, + ACTIONS(5941), 1, anon_sym_DOT, - STATE(2769), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [65153] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5868), 1, + [48182] = 2, + ACTIONS(5943), 1, anon_sym_DOT, - STATE(2770), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [65167] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2819), 1, - aux_sym_class_declaration_token13, - STATE(2771), 2, + [48190] = 2, + ACTIONS(5945), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [65181] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2080), 1, + [48198] = 2, + ACTIONS(2533), 1, aux_sym_class_declaration_token13, - STATE(2772), 2, - sym_eol_comment, - sym_bol_comment, - [65195] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5870), 1, - anon_sym_DOT, - STATE(2773), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [65209] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5872), 1, - aux_sym__data_object_typing_normal_token2, - STATE(2774), 2, + [48206] = 2, + ACTIONS(5947), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [65223] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5874), 1, + [48214] = 2, + ACTIONS(5949), 1, sym_name, - STATE(2775), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [65237] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3912), 1, + [48222] = 2, + ACTIONS(5951), 1, aux_sym_class_declaration_token13, - STATE(2776), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [65251] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2855), 1, + [48230] = 2, + ACTIONS(5953), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [48238] = 2, + ACTIONS(2810), 1, aux_sym_class_declaration_token13, - STATE(2777), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [65265] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5876), 1, + [48246] = 2, + ACTIONS(5955), 1, anon_sym_DOT, - STATE(2778), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [65279] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2859), 1, - aux_sym_class_declaration_token13, - STATE(2779), 2, + [48254] = 2, + ACTIONS(5957), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [65293] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2072), 1, + [48262] = 2, + ACTIONS(2461), 1, aux_sym_class_declaration_token13, - STATE(2780), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [65307] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5878), 1, + [48270] = 2, + ACTIONS(5959), 1, anon_sym_DOT, - STATE(2781), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [65321] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3932), 1, - aux_sym_class_declaration_token12, - STATE(2782), 2, + [48278] = 2, + ACTIONS(2748), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [65335] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2861), 1, + [48286] = 2, + ACTIONS(2758), 1, aux_sym_class_declaration_token13, - STATE(2783), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [65349] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5880), 1, + [48294] = 2, + ACTIONS(5961), 1, anon_sym_DOT, - STATE(2784), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [65363] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3916), 1, + [48302] = 2, + ACTIONS(3856), 1, aux_sym_class_declaration_token13, - STATE(2785), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [65377] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5882), 1, - sym_name, - STATE(2786), 2, + [48310] = 2, + ACTIONS(5963), 1, + aux_sym_class_declaration_token12, + ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [65391] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5884), 1, + sym_bol_comment, + [48318] = 2, + ACTIONS(5965), 1, anon_sym_DOT, - STATE(2787), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [65405] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5886), 1, + [48326] = 2, + ACTIONS(5967), 1, aux_sym_class_declaration_token13, - STATE(2788), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [65419] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5888), 1, - anon_sym_DOT, - STATE(2789), 2, + [48334] = 2, + ACTIONS(5969), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [65433] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5890), 1, - aux_sym_class_declaration_token10, - STATE(2790), 2, + [48342] = 2, + ACTIONS(5971), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [65447] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2062), 1, + [48350] = 2, + ACTIONS(2445), 1, aux_sym_class_declaration_token13, - STATE(2791), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [65461] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2016), 1, + [48358] = 2, + ACTIONS(3844), 1, aux_sym_class_declaration_token13, - STATE(2792), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [65475] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5892), 1, - anon_sym_DOT, - STATE(2793), 2, + [48366] = 2, + ACTIONS(1728), 1, + aux_sym_class_declaration_token12, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [65489] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5894), 1, - anon_sym_DOT, - STATE(2794), 2, + [48374] = 2, + ACTIONS(5973), 1, + aux_sym_class_declaration_token9, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [65503] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5896), 1, + [48382] = 2, + ACTIONS(5975), 1, anon_sym_DOT, - STATE(2795), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [65517] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2863), 1, + [48390] = 2, + ACTIONS(2774), 1, aux_sym_class_declaration_token13, - STATE(2796), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [65531] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5898), 1, - anon_sym_DOT, - STATE(2797), 2, + [48398] = 2, + ACTIONS(2463), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [65545] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3938), 1, + [48406] = 2, + ACTIONS(3832), 1, aux_sym_class_declaration_token13, - STATE(2798), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [65559] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5900), 1, - sym_name, - STATE(2799), 2, + [48414] = 2, + ACTIONS(5977), 1, + aux_sym_class_declaration_token5, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [65573] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5902), 1, - sym_name, - STATE(2800), 2, + [48422] = 2, + ACTIONS(5979), 1, + anon_sym_LPAREN2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [65587] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5904), 1, + [48430] = 2, + ACTIONS(5981), 1, anon_sym_DOT, - STATE(2801), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [65601] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2058), 1, + [48438] = 2, + ACTIONS(2272), 1, aux_sym_class_declaration_token13, - STATE(2802), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [65615] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5906), 1, - anon_sym_DOT, - STATE(2803), 2, + [48446] = 2, + ACTIONS(1837), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [65629] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5908), 1, - sym_name, - STATE(2804), 2, + [48454] = 2, + ACTIONS(2760), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [65643] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5910), 1, + [48462] = 2, + ACTIONS(5983), 1, anon_sym_DOT, - STATE(2805), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [65657] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5912), 1, + [48470] = 2, + ACTIONS(5985), 1, anon_sym_DOT, - STATE(2806), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [65671] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2871), 1, + [48478] = 2, + ACTIONS(2806), 1, aux_sym_class_declaration_token13, - STATE(2807), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [65685] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5914), 1, + [48486] = 2, + ACTIONS(5987), 1, anon_sym_DOT, - STATE(2808), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [65699] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3942), 1, + [48494] = 2, + ACTIONS(3820), 1, aux_sym_class_declaration_token13, - STATE(2809), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [65713] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5916), 1, - anon_sym_DOT, - STATE(2810), 2, + [48502] = 2, + ACTIONS(3836), 1, + aux_sym_class_declaration_token12, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [65727] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5918), 1, + [48510] = 2, + ACTIONS(5989), 1, anon_sym_DOT, - STATE(2811), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [65741] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2875), 1, + [48518] = 2, + ACTIONS(2756), 1, aux_sym_class_declaration_token13, - STATE(2812), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [65755] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5920), 1, + [48526] = 2, + ACTIONS(5991), 1, anon_sym_DOT, - STATE(2813), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [65769] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3948), 1, + [48534] = 2, + ACTIONS(3814), 1, aux_sym_class_declaration_token13, - STATE(2814), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [65783] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5922), 1, + [48542] = 2, + ACTIONS(5993), 1, aux_sym_class_declaration_token13, - STATE(2815), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [65797] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5924), 1, + [48550] = 2, + ACTIONS(5995), 1, anon_sym_DOT, - STATE(2816), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [65811] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5926), 1, - anon_sym_DOT, - STATE(2817), 2, + [48558] = 2, + ACTIONS(5997), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [65825] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5928), 1, + [48566] = 2, + ACTIONS(5999), 1, anon_sym_DOT, - STATE(2818), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [65839] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2877), 1, + [48574] = 2, + ACTIONS(2814), 1, aux_sym_class_declaration_token13, - STATE(2819), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [65853] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5930), 1, + [48582] = 2, + ACTIONS(6001), 1, anon_sym_DOT, - STATE(2820), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [65867] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5932), 1, - anon_sym_DOT, - STATE(2821), 2, + [48590] = 2, + ACTIONS(6003), 1, + aux_sym_include_statement_token2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [65881] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5934), 1, - anon_sym_DOT, - STATE(2822), 2, + [48598] = 2, + ACTIONS(6005), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [65895] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5936), 1, + [48606] = 2, + ACTIONS(6007), 1, anon_sym_DOT, - STATE(2823), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [65909] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2879), 1, + [48614] = 2, + ACTIONS(2828), 1, aux_sym_class_declaration_token13, - STATE(2824), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [65923] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2166), 1, + [48622] = 2, + ACTIONS(2250), 1, aux_sym_class_declaration_token13, - STATE(2825), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [65937] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5938), 1, + [48630] = 2, + ACTIONS(6009), 1, anon_sym_DOT, - STATE(2826), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [65951] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5940), 1, + [48638] = 2, + ACTIONS(6011), 1, anon_sym_DOT, - STATE(2827), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [65965] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5942), 1, + [48646] = 2, + ACTIONS(6013), 1, anon_sym_DOT, - STATE(2828), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [65979] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3960), 1, + [48654] = 2, + ACTIONS(3776), 1, aux_sym_class_declaration_token13, - STATE(2829), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [65993] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5944), 1, + [48662] = 2, + ACTIONS(6015), 1, aux_sym_class_declaration_token13, - STATE(2830), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [66007] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5946), 1, - anon_sym_DOT, - STATE(2831), 2, + [48670] = 2, + ACTIONS(6017), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [66021] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5948), 1, + [48678] = 2, + ACTIONS(6019), 1, anon_sym_DOT, - STATE(2832), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [66035] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5950), 1, + [48686] = 2, + ACTIONS(6021), 1, anon_sym_DOT, - STATE(2833), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [66049] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5952), 1, - anon_sym_DOT, - STATE(2834), 2, + [48694] = 2, + ACTIONS(6023), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [66063] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5954), 1, + [48702] = 2, + ACTIONS(6025), 1, anon_sym_DOT, - STATE(2835), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [66077] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2889), 1, + [48710] = 2, + ACTIONS(2844), 1, aux_sym_class_declaration_token13, - STATE(2836), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [66091] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2036), 1, + [48718] = 2, + ACTIONS(2256), 1, aux_sym_class_declaration_token13, - STATE(2837), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [66105] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5956), 1, + [48726] = 2, + ACTIONS(6027), 1, anon_sym_DOT, - STATE(2838), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [66119] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5958), 1, + [48734] = 2, + ACTIONS(6029), 1, anon_sym_DOT, - STATE(2839), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [66133] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5960), 1, + [48742] = 2, + ACTIONS(6031), 1, anon_sym_DOT, - STATE(2840), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [66147] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3972), 1, + [48750] = 2, + ACTIONS(3770), 1, aux_sym_class_declaration_token13, - STATE(2841), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [66161] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5962), 1, + [48758] = 2, + ACTIONS(6033), 1, aux_sym_class_declaration_token13, - STATE(2842), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [66175] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5964), 1, - sym_character_literal, - STATE(2843), 2, + [48766] = 2, + ACTIONS(6035), 1, + aux_sym_complete_typing_token2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [66189] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5966), 1, - anon_sym_DOT, - STATE(2844), 2, + [48774] = 2, + ACTIONS(6037), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [66203] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5968), 1, - anon_sym_DOT, - STATE(2845), 2, + [48782] = 2, + ACTIONS(6039), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [66217] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2891), 1, + [48790] = 2, + ACTIONS(2858), 1, aux_sym_class_declaration_token13, - STATE(2846), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [66231] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3983), 1, + [48798] = 2, + ACTIONS(3761), 1, aux_sym_class_declaration_token13, - STATE(2847), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [66245] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5970), 1, + [48806] = 2, + ACTIONS(6041), 1, aux_sym_class_declaration_token13, - STATE(2848), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [66259] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5972), 1, + [48814] = 2, + ACTIONS(6043), 1, anon_sym_DOT, - STATE(2849), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [66273] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5974), 1, + [48822] = 2, + ACTIONS(6045), 1, anon_sym_DOT, - STATE(2850), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [66287] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3985), 1, + [48830] = 2, + ACTIONS(3757), 1, aux_sym_class_declaration_token13, - STATE(2851), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [66301] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5976), 1, - anon_sym_DOT, - STATE(2852), 2, + [48838] = 2, + ACTIONS(6047), 1, + aux_sym__data_object_typing_normal_token4, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [66315] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5978), 1, + [48846] = 2, + ACTIONS(6049), 1, anon_sym_DOT, - STATE(2853), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [66329] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2024), 1, + [48854] = 2, + ACTIONS(2116), 1, aux_sym_class_declaration_token13, - STATE(2854), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [66343] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5980), 1, - anon_sym_DOT, - STATE(2855), 2, + [48862] = 2, + ACTIONS(6051), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [66357] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5982), 1, + [48870] = 2, + ACTIONS(6053), 1, anon_sym_DOT, - STATE(2856), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [66371] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2905), 1, + [48878] = 2, + ACTIONS(2868), 1, aux_sym_class_declaration_token13, - STATE(2857), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [66385] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5984), 1, + [48886] = 2, + ACTIONS(6055), 1, anon_sym_DOT, - STATE(2858), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [66399] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4008), 1, + [48894] = 2, + ACTIONS(3753), 1, aux_sym_class_declaration_token13, - STATE(2859), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [66413] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5986), 1, - sym_name, - STATE(2860), 2, + [48902] = 2, + ACTIONS(6057), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [66427] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5988), 1, + [48910] = 2, + ACTIONS(6059), 1, anon_sym_DOT, - STATE(2861), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [66441] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5990), 1, + [48918] = 2, + ACTIONS(6061), 1, aux_sym_class_declaration_token13, - STATE(2862), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [66455] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5992), 1, + [48926] = 2, + ACTIONS(6063), 1, anon_sym_DOT, - STATE(2863), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [66469] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5994), 1, - sym_name, - STATE(2864), 2, + [48934] = 2, + ACTIONS(6065), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [66483] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5996), 1, + [48942] = 2, + ACTIONS(6067), 1, anon_sym_DOT, - STATE(2865), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [66497] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2018), 1, + [48950] = 2, + ACTIONS(2104), 1, aux_sym_class_declaration_token13, - STATE(2866), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [66511] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(5998), 1, - anon_sym_DOT, - STATE(2867), 2, + [48958] = 2, + ACTIONS(6069), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [66525] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6000), 1, - aux_sym_class_declaration_token9, - STATE(2868), 2, + [48966] = 2, + ACTIONS(6071), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [66539] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2917), 1, + [48974] = 2, + ACTIONS(2872), 1, aux_sym_class_declaration_token13, - STATE(2869), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [66553] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6002), 1, + [48982] = 2, + ACTIONS(6073), 1, anon_sym_DOT, - STATE(2870), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [66567] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4022), 1, + [48990] = 2, + ACTIONS(3741), 1, aux_sym_class_declaration_token13, - STATE(2871), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [66581] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3198), 1, - aux_sym_class_declaration_token12, - STATE(2872), 2, + [48998] = 2, + ACTIONS(6075), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [66595] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6004), 1, + [49006] = 2, + ACTIONS(6077), 1, anon_sym_DOT, - STATE(2873), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [66609] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6006), 1, + [49014] = 2, + ACTIONS(6079), 1, aux_sym_class_declaration_token13, - STATE(2874), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [66623] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6008), 1, + [49022] = 2, + ACTIONS(6081), 1, anon_sym_DOT, - STATE(2875), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [66637] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6010), 1, - aux_sym_class_declaration_token10, - STATE(2876), 2, + [49030] = 2, + ACTIONS(6083), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [66651] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2941), 1, + [49038] = 2, + ACTIONS(2878), 1, aux_sym_class_declaration_token13, - STATE(2877), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [66665] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6012), 1, + [49046] = 2, + ACTIONS(6085), 1, anon_sym_DOT, - STATE(2878), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [66679] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4038), 1, + [49054] = 2, + ACTIONS(3727), 1, aux_sym_class_declaration_token13, - STATE(2879), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [66693] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6014), 1, - aux_sym__data_object_typing_normal_token3, - STATE(2880), 2, + [49062] = 2, + ACTIONS(6087), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [66707] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6016), 1, + [49070] = 2, + ACTIONS(6089), 1, aux_sym_class_declaration_token13, - STATE(2881), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [66721] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6018), 1, + [49078] = 2, + ACTIONS(6091), 1, aux_sym_class_declaration_token13, - STATE(2882), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [66735] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6020), 1, + [49086] = 2, + ACTIONS(6093), 1, anon_sym_DOT, - STATE(2883), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [66749] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6022), 1, + [49094] = 2, + ACTIONS(6095), 1, anon_sym_DOT, - STATE(2884), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [66763] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2991), 1, + [49102] = 2, + ACTIONS(2890), 1, aux_sym_class_declaration_token13, - STATE(2885), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [66777] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6024), 1, + [49110] = 2, + ACTIONS(6097), 1, anon_sym_DOT, - STATE(2886), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [66791] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4054), 1, + [49118] = 2, + ACTIONS(3717), 1, aux_sym_class_declaration_token13, - STATE(2887), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [66805] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6026), 1, + [49126] = 2, + ACTIONS(6099), 1, aux_sym_class_declaration_token13, - STATE(2888), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [66819] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1952), 1, - aux_sym_class_declaration_token13, - STATE(2889), 2, + [49134] = 2, + ACTIONS(6101), 1, + aux_sym__data_object_typing_normal_token2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [66833] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6028), 1, + [49142] = 2, + ACTIONS(6103), 1, anon_sym_DOT, - STATE(2890), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [66847] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4076), 1, - aux_sym_class_declaration_token12, - STATE(2891), 2, + [49150] = 2, + ACTIONS(6105), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [66861] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2999), 1, + [49158] = 2, + ACTIONS(2892), 1, aux_sym_class_declaration_token13, - STATE(2892), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [66875] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6030), 1, + [49166] = 2, + ACTIONS(6107), 1, anon_sym_DOT, - STATE(2893), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [66889] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6032), 1, + [49174] = 2, + ACTIONS(6109), 1, anon_sym_DOT, - STATE(2894), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [66903] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3021), 1, + [49182] = 2, + ACTIONS(2896), 1, aux_sym_class_declaration_token13, - STATE(2895), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [66917] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6034), 1, + [49190] = 2, + ACTIONS(6111), 1, anon_sym_DOT, - STATE(2896), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [66931] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4066), 1, + [49198] = 2, + ACTIONS(3705), 1, aux_sym_class_declaration_token13, - STATE(2897), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [66945] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6036), 1, + [49206] = 2, + ACTIONS(6113), 1, aux_sym_class_declaration_token13, - STATE(2898), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [66959] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6038), 1, + [49214] = 2, + ACTIONS(6115), 1, anon_sym_DOT, - STATE(2899), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [66973] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3001), 1, - aux_sym_class_declaration_token13, - STATE(2900), 2, + [49222] = 2, + ACTIONS(6117), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [66987] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6040), 1, + [49230] = 2, + ACTIONS(6119), 1, anon_sym_DOT, - STATE(2901), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [67001] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3025), 1, + [49238] = 2, + ACTIONS(2900), 1, aux_sym_class_declaration_token13, - STATE(2902), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [67015] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1944), 1, - aux_sym_class_declaration_token13, - STATE(2903), 2, + [49246] = 2, + ACTIONS(6121), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [67029] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4080), 1, + [49254] = 2, + ACTIONS(3699), 1, aux_sym_class_declaration_token13, - STATE(2904), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [67043] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6042), 1, + [49262] = 2, + ACTIONS(6123), 1, aux_sym_class_declaration_token13, - STATE(2905), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [67057] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6044), 1, + [49270] = 2, + ACTIONS(6125), 1, anon_sym_DOT, - STATE(2906), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [67071] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6046), 1, + [49278] = 2, + ACTIONS(6127), 1, anon_sym_DOT, - STATE(2907), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [67085] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3035), 1, + [49286] = 2, + ACTIONS(2902), 1, aux_sym_class_declaration_token13, - STATE(2908), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [67099] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6048), 1, - anon_sym_DOT, - STATE(2909), 2, + [49294] = 2, + ACTIONS(6129), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [67113] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6050), 1, + [49302] = 2, + ACTIONS(6131), 1, anon_sym_DOT, - STATE(2910), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [67127] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6052), 1, + [49310] = 2, + ACTIONS(6133), 1, anon_sym_DOT, - STATE(2911), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [67141] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3043), 1, + [49318] = 2, + ACTIONS(2906), 1, aux_sym_class_declaration_token13, - STATE(2912), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [67155] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4098), 1, + [49326] = 2, + ACTIONS(3782), 1, aux_sym_class_declaration_token13, - STATE(2913), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [67169] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6054), 1, + [49334] = 2, + ACTIONS(6135), 1, aux_sym_class_declaration_token13, - STATE(2914), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [67183] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4096), 1, - aux_sym_class_declaration_token13, - STATE(2915), 2, + [49342] = 2, + ACTIONS(6137), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [67197] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6056), 1, + [49350] = 2, + ACTIONS(6139), 1, anon_sym_DOT, - STATE(2916), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [67211] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4104), 1, + [49358] = 2, + ACTIONS(3786), 1, aux_sym_class_declaration_token13, - STATE(2917), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [67225] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6058), 1, + [49366] = 2, + ACTIONS(6141), 1, anon_sym_DOT, - STATE(2918), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [67239] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3049), 1, - aux_sym_class_declaration_token13, - STATE(2919), 2, + [49374] = 2, + ACTIONS(6143), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [67253] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6060), 1, + [49382] = 2, + ACTIONS(6145), 1, anon_sym_DOT, - STATE(2920), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [67267] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3051), 1, + [49390] = 2, + ACTIONS(2914), 1, aux_sym_class_declaration_token13, - STATE(2921), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [67281] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4114), 1, + [49398] = 2, + ACTIONS(3794), 1, aux_sym_class_declaration_token13, - STATE(2922), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [67295] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6062), 1, + [49406] = 2, + ACTIONS(6147), 1, aux_sym_class_declaration_token13, - STATE(2923), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [67309] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4100), 1, - aux_sym_class_declaration_token13, - STATE(2924), 2, + [49414] = 2, + ACTIONS(6149), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [67323] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4128), 1, - aux_sym_class_declaration_token12, - STATE(2925), 2, + [49422] = 2, + ACTIONS(6151), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [67337] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4116), 1, + [49430] = 2, + ACTIONS(3798), 1, aux_sym_class_declaration_token13, - STATE(2926), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [67351] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6064), 1, + [49438] = 2, + ACTIONS(6153), 1, aux_sym_class_declaration_token13, - STATE(2927), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [67365] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6066), 1, + [49446] = 2, + ACTIONS(6155), 1, anon_sym_DOT, - STATE(2928), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [67379] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4118), 1, + [49454] = 2, + ACTIONS(3802), 1, aux_sym_class_declaration_token13, - STATE(2929), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [67393] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6068), 1, - aux_sym_class_declaration_token10, - STATE(2930), 2, + [49462] = 2, + ACTIONS(6157), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [67407] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1926), 1, - aux_sym_class_declaration_token13, - STATE(2931), 2, + [49470] = 2, + ACTIONS(6159), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [67421] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3059), 1, + [49478] = 2, + ACTIONS(2916), 1, aux_sym_class_declaration_token13, - STATE(2932), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [67435] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6070), 1, + [49486] = 2, + ACTIONS(6161), 1, anon_sym_DOT, - STATE(2933), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [67449] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4122), 1, + [49494] = 2, + ACTIONS(3774), 1, aux_sym_class_declaration_token13, - STATE(2934), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [67463] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6072), 1, - sym_name, - STATE(2935), 2, + [49502] = 2, + ACTIONS(6163), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [67477] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6074), 1, + [49510] = 2, + ACTIONS(6165), 1, aux_sym_class_declaration_token13, - STATE(2936), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [67491] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6076), 1, + [49518] = 2, + ACTIONS(6167), 1, aux_sym_class_declaration_token13, - STATE(2937), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [67505] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6078), 1, + [49526] = 2, + ACTIONS(6169), 1, anon_sym_DOT, - STATE(2938), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [67519] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6080), 1, - aux_sym_class_declaration_token13, - STATE(2939), 2, + [49534] = 2, + ACTIONS(6171), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [67533] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3065), 1, + [49542] = 2, + ACTIONS(2934), 1, aux_sym_class_declaration_token13, - STATE(2940), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [67547] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6082), 1, + [49550] = 2, + ACTIONS(6173), 1, anon_sym_DOT, - STATE(2941), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [67561] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4132), 1, + [49558] = 2, + ACTIONS(3812), 1, aux_sym_class_declaration_token13, - STATE(2942), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [67575] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6084), 1, - aux_sym_class_declaration_token10, - STATE(2943), 2, + [49566] = 2, + ACTIONS(6175), 1, + sym_character_literal, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [67589] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6086), 1, + [49574] = 2, + ACTIONS(6177), 1, aux_sym_class_declaration_token13, - STATE(2944), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [67603] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6088), 1, + [49582] = 2, + ACTIONS(6179), 1, aux_sym_class_declaration_token13, - STATE(2945), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [67617] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6090), 1, + [49590] = 2, + ACTIONS(6181), 1, aux_sym_class_declaration_token13, - STATE(2946), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [67631] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6092), 1, - aux_sym_class_declaration_token13, - STATE(2947), 2, + [49598] = 2, + ACTIONS(6183), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [67645] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4134), 1, + [49606] = 2, + ACTIONS(3816), 1, aux_sym_class_declaration_token13, - STATE(2948), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [67659] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6094), 1, + [49614] = 2, + ACTIONS(6185), 1, aux_sym_class_declaration_token13, - STATE(2949), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [67673] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6096), 1, - anon_sym_DOT, - STATE(2950), 2, + [49622] = 2, + ACTIONS(6187), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [67687] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6098), 1, + [49630] = 2, + ACTIONS(6189), 1, anon_sym_DOT, - STATE(2951), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [67701] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3055), 1, + [49638] = 2, + ACTIONS(2944), 1, aux_sym_class_declaration_token13, - STATE(2952), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [67715] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6100), 1, - anon_sym_DOT, - STATE(2953), 2, + [49646] = 2, + ACTIONS(6191), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [67729] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4138), 1, + [49654] = 2, + ACTIONS(3858), 1, aux_sym_class_declaration_token13, - STATE(2954), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [67743] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6102), 1, + [49662] = 2, + ACTIONS(6193), 1, aux_sym_class_declaration_token13, - STATE(2955), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [67757] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6104), 1, - aux_sym_class_declaration_token12, - STATE(2956), 2, + [49670] = 2, + ACTIONS(6195), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [67771] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4140), 1, - aux_sym_class_declaration_token13, - STATE(2957), 2, + [49678] = 2, + ACTIONS(6197), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [67785] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3047), 1, + [49686] = 2, + ACTIONS(2950), 1, aux_sym_class_declaration_token13, - STATE(2958), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [67799] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6106), 1, + [49694] = 2, + ACTIONS(6199), 1, aux_sym_class_declaration_token13, - STATE(2959), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [67813] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6108), 1, - anon_sym_DOT, - STATE(2960), 2, + [49702] = 2, + ACTIONS(3892), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [67827] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4144), 1, + [49710] = 2, + ACTIONS(3936), 1, aux_sym_class_declaration_token13, - STATE(2961), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [67841] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6110), 1, + [49718] = 2, + ACTIONS(6201), 1, aux_sym_class_declaration_token13, - STATE(2962), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [67855] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3037), 1, - aux_sym_class_declaration_token13, - STATE(2963), 2, + [49726] = 2, + ACTIONS(6203), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [67869] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4146), 1, + [49734] = 2, + ACTIONS(3946), 1, aux_sym_class_declaration_token13, - STATE(2964), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [67883] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6112), 1, + [49742] = 2, + ACTIONS(6205), 1, aux_sym_class_declaration_token13, - STATE(2965), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [67897] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6114), 1, + [49750] = 2, + ACTIONS(6207), 1, aux_sym_class_declaration_token13, - STATE(2966), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [67911] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6116), 1, + [49758] = 2, + ACTIONS(6209), 1, anon_sym_DOT, - STATE(2967), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [67925] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6118), 1, + [49766] = 2, + ACTIONS(6211), 1, aux_sym_create_object_statement_token1, - STATE(2968), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [67939] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6120), 1, - anon_sym_DOT, - STATE(2969), 2, + [49774] = 2, + ACTIONS(2102), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [67953] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6122), 1, + [49782] = 2, + ACTIONS(6213), 1, anon_sym_DOT, - STATE(2970), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [67967] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6124), 1, + [49790] = 2, + ACTIONS(6215), 1, anon_sym_DOT, - STATE(2971), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [67981] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6126), 1, + [49798] = 2, + ACTIONS(6217), 1, aux_sym_call_function_token2, - STATE(2972), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [67995] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6128), 1, + [49806] = 2, + ACTIONS(6219), 1, anon_sym_EQ, - STATE(2973), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [68009] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6130), 1, - anon_sym_DOT, - STATE(2974), 2, + [49814] = 2, + ACTIONS(2874), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [68023] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4370), 1, - aux_sym_class_declaration_token13, - STATE(2975), 2, + [49822] = 2, + ACTIONS(6221), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [68037] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1906), 1, - aux_sym_class_declaration_token13, - STATE(2976), 2, + [49830] = 2, + ACTIONS(6223), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [68051] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6132), 1, + [49838] = 2, + ACTIONS(6225), 1, anon_sym_DOT, - STATE(2977), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [68065] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6134), 1, + [49846] = 2, + ACTIONS(6227), 1, anon_sym_DOT, - STATE(2978), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [68079] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6136), 1, + [49854] = 2, + ACTIONS(6229), 1, anon_sym_DOT, - STATE(2979), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [68093] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6138), 1, + [49862] = 2, + ACTIONS(6231), 1, sym_name, - STATE(2980), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [68107] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6140), 1, - anon_sym_DOT, - STATE(2981), 2, + [49870] = 2, + ACTIONS(3964), 1, + aux_sym_class_declaration_token12, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [68121] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6142), 1, + [49878] = 2, + ACTIONS(6233), 1, anon_sym_DOT, - STATE(2982), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [68135] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6144), 1, - anon_sym_LPAREN3, - STATE(2983), 2, + [49886] = 2, + ACTIONS(6235), 1, + anon_sym_LPAREN2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [68149] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6146), 1, - anon_sym_DOT, - STATE(2984), 2, + [49894] = 2, + ACTIONS(6237), 1, + aux_sym__data_object_typing_normal_token3, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [68163] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6148), 1, + [49902] = 2, + ACTIONS(6239), 1, anon_sym_DOT, - STATE(2985), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [68177] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6150), 1, + [49910] = 2, + ACTIONS(6241), 1, sym_name, - STATE(2986), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [68191] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6152), 1, + [49918] = 2, + ACTIONS(6243), 1, aux_sym_class_declaration_token12, - STATE(2987), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [68205] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3027), 1, + [49926] = 2, + ACTIONS(2880), 1, aux_sym_class_declaration_token13, - STATE(2988), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [68219] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6154), 1, + [49934] = 2, + ACTIONS(6245), 1, anon_sym_DOT, - STATE(2989), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [68233] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6156), 1, - aux_sym__data_object_typing_normal_token2, - STATE(2990), 2, + [49942] = 2, + ACTIONS(6247), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [68247] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6158), 1, + [49950] = 2, + ACTIONS(6249), 1, anon_sym_DOT, - STATE(2991), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [68261] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1882), 1, + [49958] = 2, + ACTIONS(6251), 1, aux_sym_class_declaration_token13, - STATE(2992), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [68275] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6160), 1, - aux_sym_class_declaration_token9, - STATE(2993), 2, - sym_eol_comment, - sym_bol_comment, - [68289] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6162), 1, - sym_name, - STATE(2994), 2, + [49966] = 2, + ACTIONS(6253), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [68303] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4222), 1, - aux_sym_class_declaration_token12, - STATE(2995), 2, + [49974] = 2, + ACTIONS(4071), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [68317] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4188), 1, - aux_sym_class_declaration_token12, - STATE(2996), 2, + [49982] = 2, + ACTIONS(6255), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [68331] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6164), 1, - anon_sym_EQ, - STATE(2997), 2, + [49990] = 2, + ACTIONS(6257), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [68345] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6166), 1, - aux_sym_class_declaration_token9, - STATE(2998), 2, + [49998] = 2, + ACTIONS(2882), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [68359] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6168), 1, - anon_sym_EQ, - STATE(2999), 2, + [50006] = 2, + ACTIONS(6259), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [68373] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1888), 1, + [50014] = 2, + ACTIONS(4095), 1, aux_sym_class_declaration_token13, - STATE(3000), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [68387] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6170), 1, + [50022] = 2, + ACTIONS(6261), 1, anon_sym_DOT, - STATE(3001), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [68401] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6172), 1, + [50030] = 2, + ACTIONS(6263), 1, anon_sym_DOT, - STATE(3002), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [68415] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6174), 1, - ts_builtin_sym_end, - STATE(3003), 2, + [50038] = 2, + ACTIONS(2894), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [68429] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6176), 1, + [50046] = 2, + ACTIONS(6265), 1, + sym_name, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [50054] = 2, + ACTIONS(6267), 1, anon_sym_DOT, - STATE(3004), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [68443] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6178), 1, - aux_sym_class_declaration_token10, - STATE(3005), 2, + [50062] = 2, + ACTIONS(4120), 1, + aux_sym_class_declaration_token12, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [68457] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6180), 1, - sym_name, - STATE(3006), 2, + [50070] = 2, + ACTIONS(6269), 1, + anon_sym_EQ, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [68471] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6182), 1, - anon_sym_DOT, - STATE(3007), 2, + [50078] = 2, + ACTIONS(6271), 1, + ts_builtin_sym_end, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [68485] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6184), 1, + [50086] = 2, + ACTIONS(6273), 1, anon_sym_DOT, - STATE(3008), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [68499] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6186), 1, + [50094] = 2, + ACTIONS(6275), 1, sym_name, - STATE(3009), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [68513] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6188), 1, + [50102] = 2, + ACTIONS(6277), 1, sym_name, - STATE(3010), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [68527] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6190), 1, - aux_sym_call_function_token2, - STATE(3011), 2, + [50110] = 2, + ACTIONS(6279), 1, + aux_sym_class_declaration_token10, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [68541] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6192), 1, + [50118] = 2, + ACTIONS(2054), 1, aux_sym_class_declaration_token13, - STATE(3012), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [68555] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6194), 1, - aux_sym__where_clause_token1, - STATE(3013), 2, + [50126] = 2, + ACTIONS(6281), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [68569] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6196), 1, + [50134] = 2, + ACTIONS(6283), 1, anon_sym_DOT, - STATE(3014), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [68583] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6198), 1, - anon_sym_DOT, - STATE(3015), 2, + [50142] = 2, + ACTIONS(6285), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [68597] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6200), 1, + [50150] = 2, + ACTIONS(6287), 1, anon_sym_DOT, - STATE(3016), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [68611] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6202), 1, + [50158] = 2, + ACTIONS(6289), 1, anon_sym_DOT, - STATE(3017), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [68625] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6204), 1, + [50166] = 2, + ACTIONS(6291), 1, aux_sym__data_object_typing_normal_token2, - STATE(3018), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [68639] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6206), 1, - aux_sym_generic_type_token2, - STATE(3019), 2, + [50174] = 2, + ACTIONS(6293), 1, + aux_sym_call_function_token2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [68653] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6208), 1, - sym_name, - STATE(3020), 2, + [50182] = 2, + ACTIONS(6295), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [68667] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6210), 1, + [50190] = 2, + ACTIONS(6297), 1, anon_sym_DOT, - STATE(3021), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [68681] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6212), 1, + [50198] = 2, + ACTIONS(6299), 1, anon_sym_DOT, - STATE(3022), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [68695] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6214), 1, + [50206] = 2, + ACTIONS(6301), 1, anon_sym_DOT, - STATE(3023), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [68709] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6216), 1, + [50214] = 2, + ACTIONS(6303), 1, anon_sym_DOT, - STATE(3024), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [68723] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6218), 1, + [50222] = 2, + ACTIONS(6305), 1, anon_sym_DOT, - STATE(3025), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [68737] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6220), 1, + [50230] = 2, + ACTIONS(6307), 1, anon_sym_DOT, - STATE(3026), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [68751] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6222), 1, + [50238] = 2, + ACTIONS(6309), 1, aux_sym__data_object_typing_normal_token2, - STATE(3027), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [68765] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(6224), 1, - anon_sym_STAR, - STATE(2002), 1, - sym_select_list, - STATE(3028), 2, + [50246] = 2, + ACTIONS(6311), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [68779] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6226), 1, - sym_name, - STATE(3029), 2, + [50254] = 2, + ACTIONS(6313), 1, + aux_sym_generic_type_token2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [68793] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6228), 1, + [50262] = 2, + ACTIONS(6315), 1, anon_sym_DOT, - STATE(3030), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [68807] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6230), 1, + [50270] = 2, + ACTIONS(6317), 1, anon_sym_DOT, - STATE(3031), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [68821] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6232), 1, + [50278] = 2, + ACTIONS(6319), 1, anon_sym_DOT, - STATE(3032), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [68835] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6234), 1, + [50286] = 2, + ACTIONS(6321), 1, anon_sym_DOT, - STATE(3033), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [68849] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6236), 1, - anon_sym_DOT, - STATE(3034), 2, + [50294] = 2, + ACTIONS(3709), 1, + aux_sym_class_declaration_token12, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [68863] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6238), 1, + [50302] = 2, + ACTIONS(6323), 1, anon_sym_DOT, - STATE(3035), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [68877] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6240), 1, + [50310] = 2, + ACTIONS(6325), 1, anon_sym_DOT, - STATE(3036), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [68891] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6242), 1, + [50318] = 2, + ACTIONS(6327), 1, anon_sym_DOT, - STATE(3037), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [68905] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6244), 1, + [50326] = 2, + ACTIONS(6329), 1, anon_sym_DOT, - STATE(3038), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [68919] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2993), 1, - aux_sym_class_declaration_token13, - STATE(3039), 2, + [50334] = 2, + ACTIONS(6331), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [68933] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6246), 1, + [50342] = 2, + ACTIONS(6333), 1, anon_sym_DOT, - STATE(3040), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [68947] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6248), 1, + [50350] = 2, + ACTIONS(6335), 1, anon_sym_DOT, - STATE(3041), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [68961] = 4, - ACTIONS(3), 1, - anon_sym_STAR, - ACTIONS(6250), 1, - anon_sym_DQUOTE, - ACTIONS(6252), 1, - aux_sym_eol_comment_token1, - STATE(3042), 2, + [50358] = 2, + ACTIONS(6337), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [68975] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6254), 1, + [50366] = 2, + ACTIONS(6339), 1, anon_sym_DOT, - STATE(3043), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [68989] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6256), 1, + [50374] = 2, + ACTIONS(6341), 1, anon_sym_DOT, - STATE(3044), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [69003] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6258), 1, + [50382] = 2, + ACTIONS(6343), 1, anon_sym_DOT, - STATE(3045), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [69017] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6260), 1, + [50390] = 2, + ACTIONS(6345), 1, anon_sym_DOT, - STATE(3046), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [69031] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6262), 1, + [50398] = 2, + ACTIONS(6347), 1, anon_sym_DOT, - STATE(3047), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [69045] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6264), 1, + [50406] = 2, + ACTIONS(6349), 1, anon_sym_DOT, - STATE(3048), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [69059] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6266), 1, + [50414] = 2, + ACTIONS(6351), 1, anon_sym_DOT, - STATE(3049), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [69073] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6268), 1, + [50422] = 2, + ACTIONS(6353), 1, anon_sym_DOT, - STATE(3050), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [69087] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6270), 1, + [50430] = 2, + ACTIONS(6355), 1, anon_sym_DOT, - STATE(3051), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [69101] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6272), 1, + [50438] = 2, + ACTIONS(6357), 1, anon_sym_DOT, - STATE(3052), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [69115] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6274), 1, + [50446] = 2, + ACTIONS(6359), 1, anon_sym_DOT, - STATE(3053), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [69129] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6276), 1, + [50454] = 2, + ACTIONS(6361), 1, anon_sym_DOT, - STATE(3054), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [69143] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6278), 1, - anon_sym_DOT, - STATE(3055), 2, + [50462] = 2, + ACTIONS(6363), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [69157] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6280), 1, + [50470] = 2, + ACTIONS(6365), 1, anon_sym_DOT, - STATE(3056), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [69171] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6282), 1, + [50478] = 2, + ACTIONS(6367), 1, sym_name, - STATE(3057), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [69185] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6284), 1, + [50486] = 2, + ACTIONS(6369), 1, sym_name, - STATE(3058), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [69199] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6286), 1, - anon_sym_DOT, - STATE(3059), 2, + [50494] = 2, + ACTIONS(6371), 1, + sym_name, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [69213] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6288), 1, + [50502] = 2, + ACTIONS(6373), 1, sym_name, - STATE(3060), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [69227] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4380), 1, - aux_sym_class_declaration_token13, - STATE(3061), 2, + [50510] = 2, + ACTIONS(6375), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [69241] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6290), 1, + [50518] = 2, + ACTIONS(6377), 1, sym_name, - STATE(3062), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [69255] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6292), 1, + [50526] = 2, + ACTIONS(6379), 1, sym_name, - STATE(3063), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [69269] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6294), 1, + [50534] = 2, + ACTIONS(6381), 1, sym_name, - STATE(3064), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [69283] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6296), 1, + [50542] = 2, + ACTIONS(6383), 1, anon_sym_DOT, - STATE(3065), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [69297] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6298), 1, + [50550] = 2, + ACTIONS(6385), 1, sym_name, - STATE(3066), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [69311] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6298), 1, + [50558] = 2, + ACTIONS(6385), 1, sym_field_symbol_name, - STATE(3067), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [69325] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6300), 1, - anon_sym_DOT, - STATE(3068), 2, + [50566] = 2, + ACTIONS(6387), 1, + aux_sym__where_clause_token1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [69339] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6302), 1, + [50574] = 2, + ACTIONS(6389), 1, sym_name, - STATE(3069), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [69353] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6304), 1, + [50582] = 2, + ACTIONS(6391), 1, aux_sym_class_declaration_token10, - STATE(3070), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [69367] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6306), 1, + [50590] = 2, + ACTIONS(6393), 1, sym_name, - STATE(3071), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [69381] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2777), 1, - aux_sym_class_declaration_token13, - STATE(3072), 2, + [50598] = 2, + ACTIONS(6395), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [69395] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6308), 1, + [50606] = 2, + ACTIONS(6397), 1, aux_sym_class_declaration_token10, - STATE(3073), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [69409] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6310), 1, + [50614] = 2, + ACTIONS(6399), 1, anon_sym_DOT, - STATE(3074), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [69423] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6312), 1, - aux_sym_loop_statement_token2, - STATE(3075), 2, + [50622] = 2, + ACTIONS(6401), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [69437] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6314), 1, + [50630] = 2, + ACTIONS(6403), 1, anon_sym_DOT, - STATE(3076), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [69451] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6316), 1, + [50638] = 2, + ACTIONS(6405), 1, aux_sym_class_declaration_token5, - STATE(3077), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [69465] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6318), 1, + [50646] = 2, + ACTIONS(6407), 1, anon_sym_DOT, - STATE(3078), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [69479] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6320), 1, + [50654] = 2, + ACTIONS(6409), 1, aux_sym_class_declaration_token10, - STATE(3079), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [69493] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6322), 1, + [50662] = 2, + ACTIONS(6411), 1, anon_sym_DOT, - STATE(3080), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [69507] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6324), 1, + [50670] = 2, + ACTIONS(6413), 1, anon_sym_DOT, - STATE(3081), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [69521] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6326), 1, + [50678] = 2, + ACTIONS(6415), 1, anon_sym_DOT, - STATE(3082), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [69535] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6328), 1, + [50686] = 2, + ACTIONS(6417), 1, aux_sym_class_declaration_token10, - STATE(3083), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [69549] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6330), 1, + [50694] = 2, + ACTIONS(6419), 1, anon_sym_DOT, - STATE(3084), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [69563] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6332), 1, - anon_sym_DOT, - STATE(3085), 2, + [50702] = 2, + ACTIONS(1954), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [69577] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6334), 1, + [50710] = 2, + ACTIONS(6421), 1, aux_sym_class_declaration_token10, - STATE(3086), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [69591] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6336), 1, + [50718] = 2, + ACTIONS(6423), 1, anon_sym_DOT, - STATE(3087), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [69605] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2763), 1, - aux_sym_class_declaration_token13, - STATE(3088), 2, + [50726] = 2, + ACTIONS(6425), 1, + aux_sym_loop_statement_token2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [69619] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6338), 1, - sym_name, - STATE(3089), 2, + [50734] = 2, + ACTIONS(6427), 1, + aux_sym_class_declaration_token10, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [69633] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6340), 1, + [50742] = 2, + ACTIONS(6429), 1, anon_sym_DOT, - STATE(3090), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [69647] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6342), 1, + [50750] = 2, + ACTIONS(6431), 1, aux_sym_class_declaration_token10, - STATE(3091), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [69661] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6344), 1, + [50758] = 2, + ACTIONS(6433), 1, aux_sym_class_declaration_token10, - STATE(3092), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [69675] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6346), 1, + [50766] = 2, + ACTIONS(6435), 1, anon_sym_DOT, - STATE(3093), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [69689] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6348), 1, + [50774] = 2, + ACTIONS(6437), 1, anon_sym_DOT, - STATE(3094), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [69703] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6350), 1, + [50782] = 2, + ACTIONS(6439), 1, aux_sym_class_declaration_token10, - STATE(3095), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [69717] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6352), 1, - anon_sym_DOT, - STATE(3096), 2, + [50790] = 2, + ACTIONS(4055), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [69731] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6354), 1, + [50798] = 2, + ACTIONS(6441), 1, aux_sym_class_declaration_token10, - STATE(3097), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [69745] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4438), 1, - aux_sym_class_declaration_token13, - STATE(3098), 2, + [50806] = 2, + ACTIONS(6443), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [69759] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6356), 1, + [50814] = 2, + ACTIONS(6445), 1, aux_sym_class_declaration_token10, - STATE(3099), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [69773] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6358), 1, + [50822] = 2, + ACTIONS(2968), 1, aux_sym_class_declaration_token13, - STATE(3100), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [69787] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6360), 1, - aux_sym_create_object_statement_token1, - STATE(3101), 2, + [50830] = 2, + ACTIONS(6447), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [69801] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6362), 1, + [50838] = 2, + ACTIONS(6449), 1, aux_sym_class_declaration_token10, - STATE(3102), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [69815] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6364), 1, - anon_sym_DOT, - STATE(3103), 2, + [50846] = 2, + ACTIONS(3978), 1, + aux_sym_class_declaration_token12, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [69829] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6366), 1, - anon_sym_DOT, - STATE(3104), 2, + [50854] = 2, + ACTIONS(6451), 1, + aux_sym_class_declaration_token10, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [69843] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6368), 1, + [50862] = 2, + ACTIONS(6453), 1, aux_sym_class_declaration_token10, - STATE(3105), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [69857] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4448), 1, + [50870] = 2, + ACTIONS(1892), 1, aux_sym_class_declaration_token13, - STATE(3106), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [69871] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6370), 1, + [50878] = 2, + ACTIONS(6455), 1, aux_sym_class_declaration_token10, - STATE(3107), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [69885] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6372), 1, + [50886] = 2, + ACTIONS(6457), 1, anon_sym_DOT, - STATE(3108), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [69899] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6374), 1, + [50894] = 2, + ACTIONS(6459), 1, anon_sym_DOT, - STATE(3109), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [69913] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6376), 1, - anon_sym_DOT, - STATE(3110), 2, + [50902] = 2, + ACTIONS(6461), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [69927] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6378), 1, + [50910] = 2, + ACTIONS(6463), 1, anon_sym_DOT, - STATE(3111), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [69941] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6380), 1, - anon_sym_DOT, - STATE(3112), 2, + [50918] = 2, + ACTIONS(6465), 1, + aux_sym_class_declaration_token12, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [69955] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2733), 1, + [50926] = 2, + ACTIONS(3874), 1, aux_sym_class_declaration_token13, - STATE(3113), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [69969] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2731), 1, - aux_sym_class_declaration_token13, - STATE(3114), 2, + [50934] = 2, + ACTIONS(6467), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [69983] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6382), 1, - anon_sym_DOT, - STATE(3115), 2, + [50942] = 2, + ACTIONS(2986), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [69997] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(6224), 1, - anon_sym_STAR, - STATE(1982), 1, - sym_select_list, - STATE(3116), 2, + [50950] = 2, + ACTIONS(6469), 1, + anon_sym_DOT, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [70011] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6384), 1, + [50958] = 2, + ACTIONS(6471), 1, aux_sym_generic_type_token2, - STATE(3117), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [70025] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6386), 1, - anon_sym_DOT, - STATE(3118), 2, + [50966] = 2, + ACTIONS(2441), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [70039] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6388), 1, + [50974] = 2, + ACTIONS(6473), 1, aux_sym_class_declaration_token5, - STATE(3119), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [70053] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6390), 1, + [50982] = 2, + ACTIONS(6475), 1, aux_sym_class_declaration_token9, - STATE(3120), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [70067] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1728), 1, + [50990] = 2, + ACTIONS(1746), 1, aux_sym_class_declaration_token12, - STATE(3121), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [70081] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6392), 1, + [50998] = 2, + ACTIONS(6477), 1, aux_sym_class_declaration_token5, - STATE(3122), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [70095] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6394), 1, + [51006] = 2, + ACTIONS(6479), 1, aux_sym_class_declaration_token9, - STATE(3123), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [70109] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1934), 1, + [51014] = 2, + ACTIONS(1968), 1, aux_sym_class_declaration_token12, - STATE(3124), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [70123] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6396), 1, + [51022] = 2, + ACTIONS(6481), 1, sym_name, - STATE(3125), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [70137] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6398), 1, + [51030] = 2, + ACTIONS(6483), 1, aux_sym_class_declaration_token9, - STATE(3126), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [70151] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2611), 1, + [51038] = 2, + ACTIONS(2657), 1, aux_sym_class_declaration_token12, - STATE(3127), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [70165] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6400), 1, + [51046] = 2, + ACTIONS(6485), 1, anon_sym_DOT, - STATE(3128), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [70179] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6402), 1, + [51054] = 2, + ACTIONS(6487), 1, aux_sym_class_declaration_token9, - STATE(3129), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [70193] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3155), 1, + [51062] = 2, + ACTIONS(3445), 1, aux_sym_class_declaration_token12, - STATE(3130), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [70207] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6404), 1, + [51070] = 2, + ACTIONS(6489), 1, aux_sym_class_declaration_token9, - STATE(3131), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [70221] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1898), 1, + [51078] = 2, + ACTIONS(1944), 1, aux_sym_class_declaration_token12, - STATE(3132), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [70235] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6406), 1, - anon_sym_DOT, - STATE(3133), 2, + [51086] = 2, + ACTIONS(2970), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [70249] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6408), 1, + [51094] = 2, + ACTIONS(6491), 1, aux_sym_class_declaration_token9, - STATE(3134), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [70263] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(1864), 1, + [51102] = 2, + ACTIONS(1930), 1, aux_sym_class_declaration_token12, - STATE(3135), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [70277] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6410), 1, + [51110] = 2, + ACTIONS(6493), 1, aux_sym_class_declaration_token9, - STATE(3136), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [70291] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4242), 1, + [51118] = 2, + ACTIONS(4132), 1, aux_sym_class_declaration_token12, - STATE(3137), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [70305] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6412), 1, + [51126] = 2, + ACTIONS(6495), 1, aux_sym_class_declaration_token9, - STATE(3138), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [70319] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2675), 1, + [51134] = 2, + ACTIONS(2720), 1, aux_sym_class_declaration_token12, - STATE(3139), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [70333] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6414), 1, + [51142] = 2, + ACTIONS(6497), 1, aux_sym_class_declaration_token9, - STATE(3140), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [70347] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(2697), 1, + [51150] = 2, + ACTIONS(2712), 1, aux_sym_class_declaration_token12, - STATE(3141), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [70361] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4284), 1, + [51158] = 2, + ACTIONS(4164), 1, aux_sym_class_declaration_token12, - STATE(3142), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [70375] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6416), 1, + [51166] = 2, + ACTIONS(6499), 1, aux_sym_class_declaration_token9, - STATE(3143), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [70389] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3238), 1, + [51174] = 2, + ACTIONS(3351), 1, aux_sym_class_declaration_token12, - STATE(3144), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [70403] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6418), 1, + [51182] = 2, + ACTIONS(6501), 1, aux_sym_class_declaration_token9, - STATE(3145), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [70417] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(3295), 1, + [51190] = 2, + ACTIONS(3319), 1, aux_sym_class_declaration_token12, - STATE(3146), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [70431] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4312), 1, + [51198] = 2, + ACTIONS(4204), 1, aux_sym_class_declaration_token12, - STATE(3147), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [70445] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6420), 1, + [51206] = 2, + ACTIONS(6503), 1, aux_sym_class_declaration_token9, - STATE(3148), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [70459] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4330), 1, + [51214] = 2, + ACTIONS(4243), 1, aux_sym_class_declaration_token12, - STATE(3149), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [70473] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6422), 1, + [51222] = 2, + ACTIONS(6505), 1, aux_sym_class_declaration_token9, - STATE(3150), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [70487] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4348), 1, + [51230] = 2, + ACTIONS(4265), 1, aux_sym_class_declaration_token12, - STATE(3151), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [70501] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6424), 1, + [51238] = 2, + ACTIONS(6507), 1, aux_sym_class_declaration_token12, - STATE(3152), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [70515] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4356), 1, + [51246] = 2, + ACTIONS(4283), 1, aux_sym_class_declaration_token12, - STATE(3153), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [70529] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4366), 1, + [51254] = 2, + ACTIONS(4293), 1, aux_sym_class_declaration_token12, - STATE(3154), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [70543] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4384), 1, + [51262] = 2, + ACTIONS(4325), 1, aux_sym_class_declaration_token12, - STATE(3155), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [70557] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(4400), 1, + [51270] = 2, + ACTIONS(4337), 1, aux_sym_class_declaration_token12, - STATE(3156), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [70571] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6426), 1, + [51278] = 2, + ACTIONS(6509), 1, aux_sym_class_declaration_token12, - STATE(3157), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [70585] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6428), 1, + [51286] = 2, + ACTIONS(6511), 1, aux_sym_class_declaration_token12, - STATE(3158), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [70599] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6430), 1, + [51294] = 2, + ACTIONS(6513), 1, sym_name, - STATE(3159), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [70613] = 4, - ACTIONS(3), 1, - anon_sym_STAR, - ACTIONS(6250), 1, - anon_sym_DQUOTE, - ACTIONS(6432), 1, - aux_sym_eol_comment_token1, - STATE(3160), 2, + [51302] = 2, + ACTIONS(6515), 1, + aux_sym_create_object_statement_token1, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [70627] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6434), 1, + [51310] = 2, + ACTIONS(6517), 1, anon_sym_DOT, - STATE(3161), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [70641] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6436), 1, + [51318] = 2, + ACTIONS(6519), 1, anon_sym_COMMA, - STATE(3162), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [70655] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6438), 1, + [51326] = 2, + ACTIONS(6521), 1, aux_sym_loop_statement_token2, - STATE(3163), 2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [70669] = 4, - ACTIONS(5), 1, - anon_sym_DQUOTE, - ACTIONS(35), 1, - anon_sym_STAR, - ACTIONS(6440), 1, + [51334] = 2, + ACTIONS(6523), 1, aux_sym_complete_typing_token2, - STATE(3164), 2, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [51342] = 2, + ACTIONS(6525), 1, + sym_name, + ACTIONS(3), 2, + sym_eol_comment, + sym_bol_comment, + [51350] = 2, + ACTIONS(6527), 1, + aux_sym__data_object_typing_normal_token2, + ACTIONS(3), 2, sym_eol_comment, sym_bol_comment, - [70683] = 1, - ACTIONS(6442), 1, - ts_builtin_sym_end, - [70687] = 1, - ACTIONS(6444), 1, - ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(31)] = 0, - [SMALL_STATE(32)] = 125, - [SMALL_STATE(33)] = 254, - [SMALL_STATE(34)] = 380, - [SMALL_STATE(35)] = 506, - [SMALL_STATE(36)] = 632, - [SMALL_STATE(37)] = 758, - [SMALL_STATE(38)] = 884, - [SMALL_STATE(39)] = 929, - [SMALL_STATE(40)] = 974, - [SMALL_STATE(41)] = 1019, - [SMALL_STATE(42)] = 1064, - [SMALL_STATE(43)] = 1109, - [SMALL_STATE(44)] = 1154, - [SMALL_STATE(45)] = 1199, - [SMALL_STATE(46)] = 1244, - [SMALL_STATE(47)] = 1289, - [SMALL_STATE(48)] = 1334, - [SMALL_STATE(49)] = 1379, - [SMALL_STATE(50)] = 1424, - [SMALL_STATE(51)] = 1469, - [SMALL_STATE(52)] = 1514, - [SMALL_STATE(53)] = 1559, - [SMALL_STATE(54)] = 1604, - [SMALL_STATE(55)] = 1649, - [SMALL_STATE(56)] = 1694, - [SMALL_STATE(57)] = 1739, - [SMALL_STATE(58)] = 1784, - [SMALL_STATE(59)] = 1829, - [SMALL_STATE(60)] = 1874, - [SMALL_STATE(61)] = 1919, - [SMALL_STATE(62)] = 1964, - [SMALL_STATE(63)] = 2009, - [SMALL_STATE(64)] = 2054, - [SMALL_STATE(65)] = 2099, - [SMALL_STATE(66)] = 2144, - [SMALL_STATE(67)] = 2189, - [SMALL_STATE(68)] = 2234, - [SMALL_STATE(69)] = 2279, - [SMALL_STATE(70)] = 2324, - [SMALL_STATE(71)] = 2369, - [SMALL_STATE(72)] = 2414, - [SMALL_STATE(73)] = 2459, - [SMALL_STATE(74)] = 2504, - [SMALL_STATE(75)] = 2549, - [SMALL_STATE(76)] = 2594, - [SMALL_STATE(77)] = 2639, - [SMALL_STATE(78)] = 2684, - [SMALL_STATE(79)] = 2729, - [SMALL_STATE(80)] = 2774, - [SMALL_STATE(81)] = 2819, - [SMALL_STATE(82)] = 2864, - [SMALL_STATE(83)] = 2909, - [SMALL_STATE(84)] = 2954, - [SMALL_STATE(85)] = 2999, - [SMALL_STATE(86)] = 3044, - [SMALL_STATE(87)] = 3089, - [SMALL_STATE(88)] = 3134, - [SMALL_STATE(89)] = 3179, - [SMALL_STATE(90)] = 3224, - [SMALL_STATE(91)] = 3269, - [SMALL_STATE(92)] = 3314, - [SMALL_STATE(93)] = 3359, - [SMALL_STATE(94)] = 3404, - [SMALL_STATE(95)] = 3449, - [SMALL_STATE(96)] = 3494, - [SMALL_STATE(97)] = 3539, - [SMALL_STATE(98)] = 3584, - [SMALL_STATE(99)] = 3630, - [SMALL_STATE(100)] = 3674, - [SMALL_STATE(101)] = 3720, - [SMALL_STATE(102)] = 3763, - [SMALL_STATE(103)] = 3806, - [SMALL_STATE(104)] = 3849, - [SMALL_STATE(105)] = 3892, - [SMALL_STATE(106)] = 3933, - [SMALL_STATE(107)] = 3976, - [SMALL_STATE(108)] = 4019, - [SMALL_STATE(109)] = 4062, - [SMALL_STATE(110)] = 4105, - [SMALL_STATE(111)] = 4148, - [SMALL_STATE(112)] = 4191, - [SMALL_STATE(113)] = 4234, - [SMALL_STATE(114)] = 4277, - [SMALL_STATE(115)] = 4320, - [SMALL_STATE(116)] = 4363, - [SMALL_STATE(117)] = 4406, - [SMALL_STATE(118)] = 4449, - [SMALL_STATE(119)] = 4492, - [SMALL_STATE(120)] = 4535, - [SMALL_STATE(121)] = 4578, - [SMALL_STATE(122)] = 4621, - [SMALL_STATE(123)] = 4664, - [SMALL_STATE(124)] = 4707, - [SMALL_STATE(125)] = 4750, - [SMALL_STATE(126)] = 4793, - [SMALL_STATE(127)] = 4836, - [SMALL_STATE(128)] = 4879, - [SMALL_STATE(129)] = 4922, - [SMALL_STATE(130)] = 4965, - [SMALL_STATE(131)] = 5008, - [SMALL_STATE(132)] = 5051, - [SMALL_STATE(133)] = 5094, - [SMALL_STATE(134)] = 5137, - [SMALL_STATE(135)] = 5180, - [SMALL_STATE(136)] = 5223, - [SMALL_STATE(137)] = 5266, - [SMALL_STATE(138)] = 5309, - [SMALL_STATE(139)] = 5352, - [SMALL_STATE(140)] = 5395, - [SMALL_STATE(141)] = 5438, - [SMALL_STATE(142)] = 5481, - [SMALL_STATE(143)] = 5524, - [SMALL_STATE(144)] = 5567, - [SMALL_STATE(145)] = 5610, - [SMALL_STATE(146)] = 5653, - [SMALL_STATE(147)] = 5696, - [SMALL_STATE(148)] = 5739, - [SMALL_STATE(149)] = 5782, - [SMALL_STATE(150)] = 5825, - [SMALL_STATE(151)] = 5868, - [SMALL_STATE(152)] = 5911, - [SMALL_STATE(153)] = 5954, - [SMALL_STATE(154)] = 5997, - [SMALL_STATE(155)] = 6040, - [SMALL_STATE(156)] = 6083, - [SMALL_STATE(157)] = 6126, - [SMALL_STATE(158)] = 6169, - [SMALL_STATE(159)] = 6212, - [SMALL_STATE(160)] = 6255, - [SMALL_STATE(161)] = 6298, - [SMALL_STATE(162)] = 6341, - [SMALL_STATE(163)] = 6384, - [SMALL_STATE(164)] = 6427, - [SMALL_STATE(165)] = 6470, - [SMALL_STATE(166)] = 6513, - [SMALL_STATE(167)] = 6556, - [SMALL_STATE(168)] = 6599, - [SMALL_STATE(169)] = 6642, - [SMALL_STATE(170)] = 6685, - [SMALL_STATE(171)] = 6728, - [SMALL_STATE(172)] = 6771, - [SMALL_STATE(173)] = 6814, - [SMALL_STATE(174)] = 6857, - [SMALL_STATE(175)] = 6900, - [SMALL_STATE(176)] = 6943, - [SMALL_STATE(177)] = 6986, - [SMALL_STATE(178)] = 7029, - [SMALL_STATE(179)] = 7072, - [SMALL_STATE(180)] = 7115, - [SMALL_STATE(181)] = 7158, - [SMALL_STATE(182)] = 7201, - [SMALL_STATE(183)] = 7244, - [SMALL_STATE(184)] = 7287, - [SMALL_STATE(185)] = 7330, - [SMALL_STATE(186)] = 7373, - [SMALL_STATE(187)] = 7416, - [SMALL_STATE(188)] = 7459, - [SMALL_STATE(189)] = 7502, - [SMALL_STATE(190)] = 7545, - [SMALL_STATE(191)] = 7588, - [SMALL_STATE(192)] = 7631, - [SMALL_STATE(193)] = 7674, - [SMALL_STATE(194)] = 7717, - [SMALL_STATE(195)] = 7760, - [SMALL_STATE(196)] = 7803, - [SMALL_STATE(197)] = 7846, - [SMALL_STATE(198)] = 7889, - [SMALL_STATE(199)] = 7932, - [SMALL_STATE(200)] = 7975, - [SMALL_STATE(201)] = 8018, - [SMALL_STATE(202)] = 8061, - [SMALL_STATE(203)] = 8104, - [SMALL_STATE(204)] = 8147, - [SMALL_STATE(205)] = 8190, - [SMALL_STATE(206)] = 8233, - [SMALL_STATE(207)] = 8276, - [SMALL_STATE(208)] = 8319, - [SMALL_STATE(209)] = 8362, - [SMALL_STATE(210)] = 8405, - [SMALL_STATE(211)] = 8448, - [SMALL_STATE(212)] = 8491, - [SMALL_STATE(213)] = 8534, - [SMALL_STATE(214)] = 8577, - [SMALL_STATE(215)] = 8620, - [SMALL_STATE(216)] = 8663, - [SMALL_STATE(217)] = 8706, - [SMALL_STATE(218)] = 8749, - [SMALL_STATE(219)] = 8792, - [SMALL_STATE(220)] = 8835, - [SMALL_STATE(221)] = 8878, - [SMALL_STATE(222)] = 8921, - [SMALL_STATE(223)] = 8964, - [SMALL_STATE(224)] = 9007, - [SMALL_STATE(225)] = 9050, - [SMALL_STATE(226)] = 9093, - [SMALL_STATE(227)] = 9136, - [SMALL_STATE(228)] = 9179, - [SMALL_STATE(229)] = 9222, - [SMALL_STATE(230)] = 9265, - [SMALL_STATE(231)] = 9308, - [SMALL_STATE(232)] = 9351, - [SMALL_STATE(233)] = 9394, - [SMALL_STATE(234)] = 9437, - [SMALL_STATE(235)] = 9480, - [SMALL_STATE(236)] = 9523, - [SMALL_STATE(237)] = 9566, - [SMALL_STATE(238)] = 9609, - [SMALL_STATE(239)] = 9652, - [SMALL_STATE(240)] = 9695, - [SMALL_STATE(241)] = 9738, - [SMALL_STATE(242)] = 9781, - [SMALL_STATE(243)] = 9824, - [SMALL_STATE(244)] = 9867, - [SMALL_STATE(245)] = 9910, - [SMALL_STATE(246)] = 9950, - [SMALL_STATE(247)] = 9990, - [SMALL_STATE(248)] = 10030, - [SMALL_STATE(249)] = 10070, - [SMALL_STATE(250)] = 10110, - [SMALL_STATE(251)] = 10155, - [SMALL_STATE(252)] = 10195, - [SMALL_STATE(253)] = 10235, - [SMALL_STATE(254)] = 10275, - [SMALL_STATE(255)] = 10315, - [SMALL_STATE(256)] = 10355, - [SMALL_STATE(257)] = 10395, - [SMALL_STATE(258)] = 10435, - [SMALL_STATE(259)] = 10475, - [SMALL_STATE(260)] = 10515, - [SMALL_STATE(261)] = 10555, - [SMALL_STATE(262)] = 10595, - [SMALL_STATE(263)] = 10635, - [SMALL_STATE(264)] = 10675, - [SMALL_STATE(265)] = 10715, - [SMALL_STATE(266)] = 10755, - [SMALL_STATE(267)] = 10795, - [SMALL_STATE(268)] = 10835, - [SMALL_STATE(269)] = 10875, - [SMALL_STATE(270)] = 10915, - [SMALL_STATE(271)] = 10955, - [SMALL_STATE(272)] = 10995, - [SMALL_STATE(273)] = 11035, - [SMALL_STATE(274)] = 11075, - [SMALL_STATE(275)] = 11115, - [SMALL_STATE(276)] = 11155, - [SMALL_STATE(277)] = 11195, - [SMALL_STATE(278)] = 11235, - [SMALL_STATE(279)] = 11275, - [SMALL_STATE(280)] = 11315, - [SMALL_STATE(281)] = 11355, - [SMALL_STATE(282)] = 11395, - [SMALL_STATE(283)] = 11435, - [SMALL_STATE(284)] = 11475, - [SMALL_STATE(285)] = 11515, - [SMALL_STATE(286)] = 11555, - [SMALL_STATE(287)] = 11595, - [SMALL_STATE(288)] = 11635, - [SMALL_STATE(289)] = 11675, - [SMALL_STATE(290)] = 11715, - [SMALL_STATE(291)] = 11755, - [SMALL_STATE(292)] = 11795, - [SMALL_STATE(293)] = 11835, - [SMALL_STATE(294)] = 11875, - [SMALL_STATE(295)] = 11915, - [SMALL_STATE(296)] = 11955, - [SMALL_STATE(297)] = 11995, - [SMALL_STATE(298)] = 12035, - [SMALL_STATE(299)] = 12075, - [SMALL_STATE(300)] = 12115, - [SMALL_STATE(301)] = 12155, - [SMALL_STATE(302)] = 12195, - [SMALL_STATE(303)] = 12235, - [SMALL_STATE(304)] = 12275, - [SMALL_STATE(305)] = 12315, - [SMALL_STATE(306)] = 12355, - [SMALL_STATE(307)] = 12395, - [SMALL_STATE(308)] = 12435, - [SMALL_STATE(309)] = 12475, - [SMALL_STATE(310)] = 12515, - [SMALL_STATE(311)] = 12555, - [SMALL_STATE(312)] = 12595, - [SMALL_STATE(313)] = 12635, - [SMALL_STATE(314)] = 12675, - [SMALL_STATE(315)] = 12715, - [SMALL_STATE(316)] = 12755, - [SMALL_STATE(317)] = 12795, - [SMALL_STATE(318)] = 12835, - [SMALL_STATE(319)] = 12875, - [SMALL_STATE(320)] = 12915, - [SMALL_STATE(321)] = 12955, - [SMALL_STATE(322)] = 12995, - [SMALL_STATE(323)] = 13035, - [SMALL_STATE(324)] = 13075, - [SMALL_STATE(325)] = 13115, - [SMALL_STATE(326)] = 13155, - [SMALL_STATE(327)] = 13195, - [SMALL_STATE(328)] = 13235, - [SMALL_STATE(329)] = 13275, - [SMALL_STATE(330)] = 13315, - [SMALL_STATE(331)] = 13355, - [SMALL_STATE(332)] = 13395, - [SMALL_STATE(333)] = 13435, - [SMALL_STATE(334)] = 13475, - [SMALL_STATE(335)] = 13515, - [SMALL_STATE(336)] = 13555, - [SMALL_STATE(337)] = 13595, - [SMALL_STATE(338)] = 13635, - [SMALL_STATE(339)] = 13675, - [SMALL_STATE(340)] = 13715, - [SMALL_STATE(341)] = 13755, - [SMALL_STATE(342)] = 13795, - [SMALL_STATE(343)] = 13835, - [SMALL_STATE(344)] = 13875, - [SMALL_STATE(345)] = 13915, - [SMALL_STATE(346)] = 13955, - [SMALL_STATE(347)] = 13995, - [SMALL_STATE(348)] = 14035, - [SMALL_STATE(349)] = 14075, - [SMALL_STATE(350)] = 14115, - [SMALL_STATE(351)] = 14155, - [SMALL_STATE(352)] = 14195, - [SMALL_STATE(353)] = 14235, - [SMALL_STATE(354)] = 14275, - [SMALL_STATE(355)] = 14315, - [SMALL_STATE(356)] = 14355, - [SMALL_STATE(357)] = 14395, - [SMALL_STATE(358)] = 14435, - [SMALL_STATE(359)] = 14475, - [SMALL_STATE(360)] = 14515, - [SMALL_STATE(361)] = 14555, - [SMALL_STATE(362)] = 14595, - [SMALL_STATE(363)] = 14635, - [SMALL_STATE(364)] = 14675, - [SMALL_STATE(365)] = 14715, - [SMALL_STATE(366)] = 14755, - [SMALL_STATE(367)] = 14795, - [SMALL_STATE(368)] = 14835, - [SMALL_STATE(369)] = 14875, - [SMALL_STATE(370)] = 14915, - [SMALL_STATE(371)] = 14955, - [SMALL_STATE(372)] = 14995, - [SMALL_STATE(373)] = 15035, - [SMALL_STATE(374)] = 15075, - [SMALL_STATE(375)] = 15115, - [SMALL_STATE(376)] = 15155, - [SMALL_STATE(377)] = 15195, - [SMALL_STATE(378)] = 15235, - [SMALL_STATE(379)] = 15275, - [SMALL_STATE(380)] = 15315, - [SMALL_STATE(381)] = 15355, - [SMALL_STATE(382)] = 15395, - [SMALL_STATE(383)] = 15435, - [SMALL_STATE(384)] = 15475, - [SMALL_STATE(385)] = 15515, - [SMALL_STATE(386)] = 15555, - [SMALL_STATE(387)] = 15595, - [SMALL_STATE(388)] = 15635, - [SMALL_STATE(389)] = 15675, - [SMALL_STATE(390)] = 15715, - [SMALL_STATE(391)] = 15755, - [SMALL_STATE(392)] = 15795, - [SMALL_STATE(393)] = 15835, - [SMALL_STATE(394)] = 15875, - [SMALL_STATE(395)] = 15915, - [SMALL_STATE(396)] = 15955, - [SMALL_STATE(397)] = 15995, - [SMALL_STATE(398)] = 16035, - [SMALL_STATE(399)] = 16075, - [SMALL_STATE(400)] = 16115, - [SMALL_STATE(401)] = 16155, - [SMALL_STATE(402)] = 16195, - [SMALL_STATE(403)] = 16235, - [SMALL_STATE(404)] = 16275, - [SMALL_STATE(405)] = 16315, - [SMALL_STATE(406)] = 16355, - [SMALL_STATE(407)] = 16395, - [SMALL_STATE(408)] = 16435, - [SMALL_STATE(409)] = 16475, - [SMALL_STATE(410)] = 16515, - [SMALL_STATE(411)] = 16555, - [SMALL_STATE(412)] = 16595, - [SMALL_STATE(413)] = 16635, - [SMALL_STATE(414)] = 16675, - [SMALL_STATE(415)] = 16715, - [SMALL_STATE(416)] = 16755, - [SMALL_STATE(417)] = 16795, - [SMALL_STATE(418)] = 16835, - [SMALL_STATE(419)] = 16875, - [SMALL_STATE(420)] = 16915, - [SMALL_STATE(421)] = 16955, - [SMALL_STATE(422)] = 16995, - [SMALL_STATE(423)] = 17035, - [SMALL_STATE(424)] = 17075, - [SMALL_STATE(425)] = 17115, - [SMALL_STATE(426)] = 17155, - [SMALL_STATE(427)] = 17195, - [SMALL_STATE(428)] = 17235, - [SMALL_STATE(429)] = 17275, - [SMALL_STATE(430)] = 17315, - [SMALL_STATE(431)] = 17355, - [SMALL_STATE(432)] = 17395, - [SMALL_STATE(433)] = 17435, - [SMALL_STATE(434)] = 17475, - [SMALL_STATE(435)] = 17515, - [SMALL_STATE(436)] = 17555, - [SMALL_STATE(437)] = 17595, - [SMALL_STATE(438)] = 17635, - [SMALL_STATE(439)] = 17675, - [SMALL_STATE(440)] = 17715, - [SMALL_STATE(441)] = 17755, - [SMALL_STATE(442)] = 17795, - [SMALL_STATE(443)] = 17835, - [SMALL_STATE(444)] = 17875, - [SMALL_STATE(445)] = 17915, - [SMALL_STATE(446)] = 17955, - [SMALL_STATE(447)] = 17995, - [SMALL_STATE(448)] = 18035, - [SMALL_STATE(449)] = 18075, - [SMALL_STATE(450)] = 18115, - [SMALL_STATE(451)] = 18155, - [SMALL_STATE(452)] = 18195, - [SMALL_STATE(453)] = 18235, - [SMALL_STATE(454)] = 18275, - [SMALL_STATE(455)] = 18317, - [SMALL_STATE(456)] = 18355, - [SMALL_STATE(457)] = 18393, - [SMALL_STATE(458)] = 18452, - [SMALL_STATE(459)] = 18511, - [SMALL_STATE(460)] = 18570, - [SMALL_STATE(461)] = 18629, - [SMALL_STATE(462)] = 18688, - [SMALL_STATE(463)] = 18747, - [SMALL_STATE(464)] = 18809, - [SMALL_STATE(465)] = 18871, - [SMALL_STATE(466)] = 18927, - [SMALL_STATE(467)] = 18980, - [SMALL_STATE(468)] = 19033, - [SMALL_STATE(469)] = 19086, - [SMALL_STATE(470)] = 19139, - [SMALL_STATE(471)] = 19192, - [SMALL_STATE(472)] = 19245, - [SMALL_STATE(473)] = 19298, - [SMALL_STATE(474)] = 19357, - [SMALL_STATE(475)] = 19391, - [SMALL_STATE(476)] = 19423, - [SMALL_STATE(477)] = 19452, - [SMALL_STATE(478)] = 19491, - [SMALL_STATE(479)] = 19544, - [SMALL_STATE(480)] = 19579, - [SMALL_STATE(481)] = 19608, - [SMALL_STATE(482)] = 19649, - [SMALL_STATE(483)] = 19678, - [SMALL_STATE(484)] = 19707, - [SMALL_STATE(485)] = 19736, - [SMALL_STATE(486)] = 19767, - [SMALL_STATE(487)] = 19810, - [SMALL_STATE(488)] = 19863, - [SMALL_STATE(489)] = 19892, - [SMALL_STATE(490)] = 19931, - [SMALL_STATE(491)] = 19962, - [SMALL_STATE(492)] = 19999, - [SMALL_STATE(493)] = 20034, - [SMALL_STATE(494)] = 20087, - [SMALL_STATE(495)] = 20131, - [SMALL_STATE(496)] = 20181, - [SMALL_STATE(497)] = 20225, - [SMALL_STATE(498)] = 20275, - [SMALL_STATE(499)] = 20325, - [SMALL_STATE(500)] = 20369, - [SMALL_STATE(501)] = 20407, - [SMALL_STATE(502)] = 20449, - [SMALL_STATE(503)] = 20493, - [SMALL_STATE(504)] = 20537, - [SMALL_STATE(505)] = 20569, - [SMALL_STATE(506)] = 20611, - [SMALL_STATE(507)] = 20655, - [SMALL_STATE(508)] = 20693, - [SMALL_STATE(509)] = 20719, - [SMALL_STATE(510)] = 20769, - [SMALL_STATE(511)] = 20808, - [SMALL_STATE(512)] = 20849, - [SMALL_STATE(513)] = 20874, - [SMALL_STATE(514)] = 20911, - [SMALL_STATE(515)] = 20958, - [SMALL_STATE(516)] = 20989, - [SMALL_STATE(517)] = 21036, - [SMALL_STATE(518)] = 21077, - [SMALL_STATE(519)] = 21108, - [SMALL_STATE(520)] = 21133, - [SMALL_STATE(521)] = 21174, - [SMALL_STATE(522)] = 21215, - [SMALL_STATE(523)] = 21248, - [SMALL_STATE(524)] = 21289, - [SMALL_STATE(525)] = 21330, - [SMALL_STATE(526)] = 21367, - [SMALL_STATE(527)] = 21408, - [SMALL_STATE(528)] = 21449, - [SMALL_STATE(529)] = 21476, - [SMALL_STATE(530)] = 21507, - [SMALL_STATE(531)] = 21532, - [SMALL_STATE(532)] = 21565, - [SMALL_STATE(533)] = 21590, - [SMALL_STATE(534)] = 21615, - [SMALL_STATE(535)] = 21659, - [SMALL_STATE(536)] = 21691, - [SMALL_STATE(537)] = 21735, - [SMALL_STATE(538)] = 21779, - [SMALL_STATE(539)] = 21823, - [SMALL_STATE(540)] = 21867, - [SMALL_STATE(541)] = 21899, - [SMALL_STATE(542)] = 21931, - [SMALL_STATE(543)] = 21975, - [SMALL_STATE(544)] = 22019, - [SMALL_STATE(545)] = 22051, - [SMALL_STATE(546)] = 22089, - [SMALL_STATE(547)] = 22124, - [SMALL_STATE(548)] = 22159, - [SMALL_STATE(549)] = 22194, - [SMALL_STATE(550)] = 22229, - [SMALL_STATE(551)] = 22264, - [SMALL_STATE(552)] = 22299, - [SMALL_STATE(553)] = 22334, - [SMALL_STATE(554)] = 22359, - [SMALL_STATE(555)] = 22394, - [SMALL_STATE(556)] = 22429, - [SMALL_STATE(557)] = 22454, - [SMALL_STATE(558)] = 22485, - [SMALL_STATE(559)] = 22510, - [SMALL_STATE(560)] = 22539, - [SMALL_STATE(561)] = 22564, - [SMALL_STATE(562)] = 22599, - [SMALL_STATE(563)] = 22634, - [SMALL_STATE(564)] = 22669, - [SMALL_STATE(565)] = 22704, - [SMALL_STATE(566)] = 22739, - [SMALL_STATE(567)] = 22774, - [SMALL_STATE(568)] = 22809, - [SMALL_STATE(569)] = 22844, - [SMALL_STATE(570)] = 22871, - [SMALL_STATE(571)] = 22906, - [SMALL_STATE(572)] = 22941, - [SMALL_STATE(573)] = 22976, - [SMALL_STATE(574)] = 23001, - [SMALL_STATE(575)] = 23036, - [SMALL_STATE(576)] = 23065, - [SMALL_STATE(577)] = 23100, - [SMALL_STATE(578)] = 23135, - [SMALL_STATE(579)] = 23170, - [SMALL_STATE(580)] = 23205, - [SMALL_STATE(581)] = 23240, - [SMALL_STATE(582)] = 23275, - [SMALL_STATE(583)] = 23310, - [SMALL_STATE(584)] = 23345, - [SMALL_STATE(585)] = 23380, - [SMALL_STATE(586)] = 23415, - [SMALL_STATE(587)] = 23450, - [SMALL_STATE(588)] = 23475, - [SMALL_STATE(589)] = 23513, - [SMALL_STATE(590)] = 23551, - [SMALL_STATE(591)] = 23583, - [SMALL_STATE(592)] = 23621, - [SMALL_STATE(593)] = 23659, - [SMALL_STATE(594)] = 23697, - [SMALL_STATE(595)] = 23725, - [SMALL_STATE(596)] = 23759, - [SMALL_STATE(597)] = 23793, - [SMALL_STATE(598)] = 23831, - [SMALL_STATE(599)] = 23869, - [SMALL_STATE(600)] = 23907, - [SMALL_STATE(601)] = 23941, - [SMALL_STATE(602)] = 23975, - [SMALL_STATE(603)] = 24013, - [SMALL_STATE(604)] = 24045, - [SMALL_STATE(605)] = 24083, - [SMALL_STATE(606)] = 24121, - [SMALL_STATE(607)] = 24159, - [SMALL_STATE(608)] = 24191, - [SMALL_STATE(609)] = 24225, - [SMALL_STATE(610)] = 24259, - [SMALL_STATE(611)] = 24297, - [SMALL_STATE(612)] = 24331, - [SMALL_STATE(613)] = 24369, - [SMALL_STATE(614)] = 24407, - [SMALL_STATE(615)] = 24445, - [SMALL_STATE(616)] = 24479, - [SMALL_STATE(617)] = 24506, - [SMALL_STATE(618)] = 24535, - [SMALL_STATE(619)] = 24570, - [SMALL_STATE(620)] = 24605, - [SMALL_STATE(621)] = 24632, - [SMALL_STATE(622)] = 24661, - [SMALL_STATE(623)] = 24696, - [SMALL_STATE(624)] = 24725, - [SMALL_STATE(625)] = 24760, - [SMALL_STATE(626)] = 24789, - [SMALL_STATE(627)] = 24822, - [SMALL_STATE(628)] = 24849, - [SMALL_STATE(629)] = 24874, - [SMALL_STATE(630)] = 24897, - [SMALL_STATE(631)] = 24932, - [SMALL_STATE(632)] = 24961, - [SMALL_STATE(633)] = 24994, - [SMALL_STATE(634)] = 25027, - [SMALL_STATE(635)] = 25056, - [SMALL_STATE(636)] = 25085, - [SMALL_STATE(637)] = 25115, - [SMALL_STATE(638)] = 25141, - [SMALL_STATE(639)] = 25173, - [SMALL_STATE(640)] = 25205, - [SMALL_STATE(641)] = 25237, - [SMALL_STATE(642)] = 25269, - [SMALL_STATE(643)] = 25301, - [SMALL_STATE(644)] = 25333, - [SMALL_STATE(645)] = 25365, - [SMALL_STATE(646)] = 25397, - [SMALL_STATE(647)] = 25423, - [SMALL_STATE(648)] = 25455, - [SMALL_STATE(649)] = 25487, - [SMALL_STATE(650)] = 25519, - [SMALL_STATE(651)] = 25551, - [SMALL_STATE(652)] = 25583, - [SMALL_STATE(653)] = 25615, - [SMALL_STATE(654)] = 25647, - [SMALL_STATE(655)] = 25679, - [SMALL_STATE(656)] = 25705, - [SMALL_STATE(657)] = 25731, - [SMALL_STATE(658)] = 25763, - [SMALL_STATE(659)] = 25795, - [SMALL_STATE(660)] = 25827, - [SMALL_STATE(661)] = 25853, - [SMALL_STATE(662)] = 25885, - [SMALL_STATE(663)] = 25917, - [SMALL_STATE(664)] = 25949, - [SMALL_STATE(665)] = 25981, - [SMALL_STATE(666)] = 26013, - [SMALL_STATE(667)] = 26045, - [SMALL_STATE(668)] = 26077, - [SMALL_STATE(669)] = 26109, - [SMALL_STATE(670)] = 26141, - [SMALL_STATE(671)] = 26173, - [SMALL_STATE(672)] = 26205, - [SMALL_STATE(673)] = 26237, - [SMALL_STATE(674)] = 26269, - [SMALL_STATE(675)] = 26301, - [SMALL_STATE(676)] = 26333, - [SMALL_STATE(677)] = 26365, - [SMALL_STATE(678)] = 26397, - [SMALL_STATE(679)] = 26429, - [SMALL_STATE(680)] = 26461, - [SMALL_STATE(681)] = 26493, - [SMALL_STATE(682)] = 26525, - [SMALL_STATE(683)] = 26557, - [SMALL_STATE(684)] = 26589, - [SMALL_STATE(685)] = 26615, - [SMALL_STATE(686)] = 26647, - [SMALL_STATE(687)] = 26679, - [SMALL_STATE(688)] = 26711, - [SMALL_STATE(689)] = 26741, - [SMALL_STATE(690)] = 26761, - [SMALL_STATE(691)] = 26787, - [SMALL_STATE(692)] = 26813, - [SMALL_STATE(693)] = 26845, - [SMALL_STATE(694)] = 26871, - [SMALL_STATE(695)] = 26901, - [SMALL_STATE(696)] = 26927, - [SMALL_STATE(697)] = 26959, - [SMALL_STATE(698)] = 26991, - [SMALL_STATE(699)] = 27023, - [SMALL_STATE(700)] = 27055, - [SMALL_STATE(701)] = 27087, - [SMALL_STATE(702)] = 27119, - [SMALL_STATE(703)] = 27151, - [SMALL_STATE(704)] = 27177, - [SMALL_STATE(705)] = 27209, - [SMALL_STATE(706)] = 27241, - [SMALL_STATE(707)] = 27273, - [SMALL_STATE(708)] = 27305, - [SMALL_STATE(709)] = 27337, - [SMALL_STATE(710)] = 27369, - [SMALL_STATE(711)] = 27401, - [SMALL_STATE(712)] = 27433, - [SMALL_STATE(713)] = 27465, - [SMALL_STATE(714)] = 27497, - [SMALL_STATE(715)] = 27529, - [SMALL_STATE(716)] = 27561, - [SMALL_STATE(717)] = 27593, - [SMALL_STATE(718)] = 27625, - [SMALL_STATE(719)] = 27657, - [SMALL_STATE(720)] = 27689, - [SMALL_STATE(721)] = 27721, - [SMALL_STATE(722)] = 27747, - [SMALL_STATE(723)] = 27773, - [SMALL_STATE(724)] = 27805, - [SMALL_STATE(725)] = 27837, - [SMALL_STATE(726)] = 27869, - [SMALL_STATE(727)] = 27901, - [SMALL_STATE(728)] = 27933, - [SMALL_STATE(729)] = 27965, - [SMALL_STATE(730)] = 27997, - [SMALL_STATE(731)] = 28029, - [SMALL_STATE(732)] = 28061, - [SMALL_STATE(733)] = 28093, - [SMALL_STATE(734)] = 28125, - [SMALL_STATE(735)] = 28151, - [SMALL_STATE(736)] = 28183, - [SMALL_STATE(737)] = 28215, - [SMALL_STATE(738)] = 28247, - [SMALL_STATE(739)] = 28279, - [SMALL_STATE(740)] = 28311, - [SMALL_STATE(741)] = 28343, - [SMALL_STATE(742)] = 28369, - [SMALL_STATE(743)] = 28401, - [SMALL_STATE(744)] = 28433, - [SMALL_STATE(745)] = 28465, - [SMALL_STATE(746)] = 28493, - [SMALL_STATE(747)] = 28525, - [SMALL_STATE(748)] = 28557, - [SMALL_STATE(749)] = 28589, - [SMALL_STATE(750)] = 28621, - [SMALL_STATE(751)] = 28653, - [SMALL_STATE(752)] = 28685, - [SMALL_STATE(753)] = 28717, - [SMALL_STATE(754)] = 28743, - [SMALL_STATE(755)] = 28775, - [SMALL_STATE(756)] = 28807, - [SMALL_STATE(757)] = 28839, - [SMALL_STATE(758)] = 28871, - [SMALL_STATE(759)] = 28903, - [SMALL_STATE(760)] = 28935, - [SMALL_STATE(761)] = 28967, - [SMALL_STATE(762)] = 28999, - [SMALL_STATE(763)] = 29031, - [SMALL_STATE(764)] = 29063, - [SMALL_STATE(765)] = 29089, - [SMALL_STATE(766)] = 29121, - [SMALL_STATE(767)] = 29143, - [SMALL_STATE(768)] = 29175, - [SMALL_STATE(769)] = 29201, - [SMALL_STATE(770)] = 29233, - [SMALL_STATE(771)] = 29265, - [SMALL_STATE(772)] = 29297, - [SMALL_STATE(773)] = 29329, - [SMALL_STATE(774)] = 29361, - [SMALL_STATE(775)] = 29387, - [SMALL_STATE(776)] = 29413, - [SMALL_STATE(777)] = 29445, - [SMALL_STATE(778)] = 29475, - [SMALL_STATE(779)] = 29501, - [SMALL_STATE(780)] = 29533, - [SMALL_STATE(781)] = 29565, - [SMALL_STATE(782)] = 29597, - [SMALL_STATE(783)] = 29629, - [SMALL_STATE(784)] = 29661, - [SMALL_STATE(785)] = 29693, - [SMALL_STATE(786)] = 29725, - [SMALL_STATE(787)] = 29757, - [SMALL_STATE(788)] = 29789, - [SMALL_STATE(789)] = 29821, - [SMALL_STATE(790)] = 29853, - [SMALL_STATE(791)] = 29885, - [SMALL_STATE(792)] = 29917, - [SMALL_STATE(793)] = 29949, - [SMALL_STATE(794)] = 29981, - [SMALL_STATE(795)] = 30013, - [SMALL_STATE(796)] = 30032, - [SMALL_STATE(797)] = 30051, - [SMALL_STATE(798)] = 30076, - [SMALL_STATE(799)] = 30095, - [SMALL_STATE(800)] = 30114, - [SMALL_STATE(801)] = 30133, - [SMALL_STATE(802)] = 30152, - [SMALL_STATE(803)] = 30171, - [SMALL_STATE(804)] = 30200, - [SMALL_STATE(805)] = 30219, - [SMALL_STATE(806)] = 30238, - [SMALL_STATE(807)] = 30257, - [SMALL_STATE(808)] = 30276, - [SMALL_STATE(809)] = 30295, - [SMALL_STATE(810)] = 30314, - [SMALL_STATE(811)] = 30333, - [SMALL_STATE(812)] = 30352, - [SMALL_STATE(813)] = 30371, - [SMALL_STATE(814)] = 30390, - [SMALL_STATE(815)] = 30409, - [SMALL_STATE(816)] = 30428, - [SMALL_STATE(817)] = 30447, - [SMALL_STATE(818)] = 30466, - [SMALL_STATE(819)] = 30485, - [SMALL_STATE(820)] = 30504, - [SMALL_STATE(821)] = 30523, - [SMALL_STATE(822)] = 30542, - [SMALL_STATE(823)] = 30561, - [SMALL_STATE(824)] = 30580, - [SMALL_STATE(825)] = 30599, - [SMALL_STATE(826)] = 30618, - [SMALL_STATE(827)] = 30637, - [SMALL_STATE(828)] = 30656, - [SMALL_STATE(829)] = 30675, - [SMALL_STATE(830)] = 30694, - [SMALL_STATE(831)] = 30713, - [SMALL_STATE(832)] = 30732, - [SMALL_STATE(833)] = 30751, - [SMALL_STATE(834)] = 30770, - [SMALL_STATE(835)] = 30789, - [SMALL_STATE(836)] = 30808, - [SMALL_STATE(837)] = 30827, - [SMALL_STATE(838)] = 30846, - [SMALL_STATE(839)] = 30865, - [SMALL_STATE(840)] = 30884, - [SMALL_STATE(841)] = 30903, - [SMALL_STATE(842)] = 30922, - [SMALL_STATE(843)] = 30941, - [SMALL_STATE(844)] = 30960, - [SMALL_STATE(845)] = 30979, - [SMALL_STATE(846)] = 30998, - [SMALL_STATE(847)] = 31017, - [SMALL_STATE(848)] = 31036, - [SMALL_STATE(849)] = 31055, - [SMALL_STATE(850)] = 31074, - [SMALL_STATE(851)] = 31093, - [SMALL_STATE(852)] = 31112, - [SMALL_STATE(853)] = 31131, - [SMALL_STATE(854)] = 31150, - [SMALL_STATE(855)] = 31169, - [SMALL_STATE(856)] = 31188, - [SMALL_STATE(857)] = 31207, - [SMALL_STATE(858)] = 31226, - [SMALL_STATE(859)] = 31245, - [SMALL_STATE(860)] = 31264, - [SMALL_STATE(861)] = 31283, - [SMALL_STATE(862)] = 31302, - [SMALL_STATE(863)] = 31321, - [SMALL_STATE(864)] = 31340, - [SMALL_STATE(865)] = 31359, - [SMALL_STATE(866)] = 31378, - [SMALL_STATE(867)] = 31397, - [SMALL_STATE(868)] = 31416, - [SMALL_STATE(869)] = 31435, - [SMALL_STATE(870)] = 31454, - [SMALL_STATE(871)] = 31479, - [SMALL_STATE(872)] = 31498, - [SMALL_STATE(873)] = 31517, - [SMALL_STATE(874)] = 31536, - [SMALL_STATE(875)] = 31555, - [SMALL_STATE(876)] = 31574, - [SMALL_STATE(877)] = 31593, - [SMALL_STATE(878)] = 31612, - [SMALL_STATE(879)] = 31631, - [SMALL_STATE(880)] = 31650, - [SMALL_STATE(881)] = 31669, - [SMALL_STATE(882)] = 31688, - [SMALL_STATE(883)] = 31707, - [SMALL_STATE(884)] = 31726, - [SMALL_STATE(885)] = 31745, - [SMALL_STATE(886)] = 31764, - [SMALL_STATE(887)] = 31783, - [SMALL_STATE(888)] = 31802, - [SMALL_STATE(889)] = 31821, - [SMALL_STATE(890)] = 31840, - [SMALL_STATE(891)] = 31859, - [SMALL_STATE(892)] = 31878, - [SMALL_STATE(893)] = 31897, - [SMALL_STATE(894)] = 31916, - [SMALL_STATE(895)] = 31935, - [SMALL_STATE(896)] = 31954, - [SMALL_STATE(897)] = 31973, - [SMALL_STATE(898)] = 31992, - [SMALL_STATE(899)] = 32011, - [SMALL_STATE(900)] = 32030, - [SMALL_STATE(901)] = 32049, - [SMALL_STATE(902)] = 32068, - [SMALL_STATE(903)] = 32087, - [SMALL_STATE(904)] = 32106, - [SMALL_STATE(905)] = 32125, - [SMALL_STATE(906)] = 32144, - [SMALL_STATE(907)] = 32163, - [SMALL_STATE(908)] = 32182, - [SMALL_STATE(909)] = 32201, - [SMALL_STATE(910)] = 32220, - [SMALL_STATE(911)] = 32239, - [SMALL_STATE(912)] = 32258, - [SMALL_STATE(913)] = 32277, - [SMALL_STATE(914)] = 32296, - [SMALL_STATE(915)] = 32315, - [SMALL_STATE(916)] = 32334, - [SMALL_STATE(917)] = 32353, - [SMALL_STATE(918)] = 32372, - [SMALL_STATE(919)] = 32391, - [SMALL_STATE(920)] = 32410, - [SMALL_STATE(921)] = 32429, - [SMALL_STATE(922)] = 32448, - [SMALL_STATE(923)] = 32467, - [SMALL_STATE(924)] = 32486, - [SMALL_STATE(925)] = 32505, - [SMALL_STATE(926)] = 32524, - [SMALL_STATE(927)] = 32543, - [SMALL_STATE(928)] = 32562, - [SMALL_STATE(929)] = 32581, - [SMALL_STATE(930)] = 32600, - [SMALL_STATE(931)] = 32619, - [SMALL_STATE(932)] = 32638, - [SMALL_STATE(933)] = 32657, - [SMALL_STATE(934)] = 32676, - [SMALL_STATE(935)] = 32695, - [SMALL_STATE(936)] = 32714, - [SMALL_STATE(937)] = 32737, - [SMALL_STATE(938)] = 32756, - [SMALL_STATE(939)] = 32775, - [SMALL_STATE(940)] = 32794, - [SMALL_STATE(941)] = 32813, - [SMALL_STATE(942)] = 32832, - [SMALL_STATE(943)] = 32851, - [SMALL_STATE(944)] = 32870, - [SMALL_STATE(945)] = 32889, - [SMALL_STATE(946)] = 32908, - [SMALL_STATE(947)] = 32927, - [SMALL_STATE(948)] = 32946, - [SMALL_STATE(949)] = 32965, - [SMALL_STATE(950)] = 32984, - [SMALL_STATE(951)] = 33013, - [SMALL_STATE(952)] = 33038, - [SMALL_STATE(953)] = 33057, - [SMALL_STATE(954)] = 33076, - [SMALL_STATE(955)] = 33095, - [SMALL_STATE(956)] = 33114, - [SMALL_STATE(957)] = 33133, - [SMALL_STATE(958)] = 33152, - [SMALL_STATE(959)] = 33171, - [SMALL_STATE(960)] = 33190, - [SMALL_STATE(961)] = 33209, - [SMALL_STATE(962)] = 33228, - [SMALL_STATE(963)] = 33247, - [SMALL_STATE(964)] = 33266, - [SMALL_STATE(965)] = 33285, - [SMALL_STATE(966)] = 33304, - [SMALL_STATE(967)] = 33323, - [SMALL_STATE(968)] = 33342, - [SMALL_STATE(969)] = 33361, - [SMALL_STATE(970)] = 33380, - [SMALL_STATE(971)] = 33399, - [SMALL_STATE(972)] = 33418, - [SMALL_STATE(973)] = 33437, - [SMALL_STATE(974)] = 33456, - [SMALL_STATE(975)] = 33475, - [SMALL_STATE(976)] = 33494, - [SMALL_STATE(977)] = 33519, - [SMALL_STATE(978)] = 33538, - [SMALL_STATE(979)] = 33557, - [SMALL_STATE(980)] = 33576, - [SMALL_STATE(981)] = 33595, - [SMALL_STATE(982)] = 33614, - [SMALL_STATE(983)] = 33633, - [SMALL_STATE(984)] = 33652, - [SMALL_STATE(985)] = 33677, - [SMALL_STATE(986)] = 33696, - [SMALL_STATE(987)] = 33715, - [SMALL_STATE(988)] = 33734, - [SMALL_STATE(989)] = 33753, - [SMALL_STATE(990)] = 33772, - [SMALL_STATE(991)] = 33791, - [SMALL_STATE(992)] = 33810, - [SMALL_STATE(993)] = 33839, - [SMALL_STATE(994)] = 33858, - [SMALL_STATE(995)] = 33877, - [SMALL_STATE(996)] = 33906, - [SMALL_STATE(997)] = 33927, - [SMALL_STATE(998)] = 33946, - [SMALL_STATE(999)] = 33975, - [SMALL_STATE(1000)] = 33994, - [SMALL_STATE(1001)] = 34013, - [SMALL_STATE(1002)] = 34032, - [SMALL_STATE(1003)] = 34061, - [SMALL_STATE(1004)] = 34082, - [SMALL_STATE(1005)] = 34105, - [SMALL_STATE(1006)] = 34128, - [SMALL_STATE(1007)] = 34147, - [SMALL_STATE(1008)] = 34176, - [SMALL_STATE(1009)] = 34195, - [SMALL_STATE(1010)] = 34224, - [SMALL_STATE(1011)] = 34243, - [SMALL_STATE(1012)] = 34262, - [SMALL_STATE(1013)] = 34291, - [SMALL_STATE(1014)] = 34310, - [SMALL_STATE(1015)] = 34329, - [SMALL_STATE(1016)] = 34348, - [SMALL_STATE(1017)] = 34377, - [SMALL_STATE(1018)] = 34406, - [SMALL_STATE(1019)] = 34425, - [SMALL_STATE(1020)] = 34444, - [SMALL_STATE(1021)] = 34471, - [SMALL_STATE(1022)] = 34490, - [SMALL_STATE(1023)] = 34519, - [SMALL_STATE(1024)] = 34538, - [SMALL_STATE(1025)] = 34567, - [SMALL_STATE(1026)] = 34586, - [SMALL_STATE(1027)] = 34605, - [SMALL_STATE(1028)] = 34634, - [SMALL_STATE(1029)] = 34655, - [SMALL_STATE(1030)] = 34674, - [SMALL_STATE(1031)] = 34700, - [SMALL_STATE(1032)] = 34726, - [SMALL_STATE(1033)] = 34752, - [SMALL_STATE(1034)] = 34778, - [SMALL_STATE(1035)] = 34802, - [SMALL_STATE(1036)] = 34828, - [SMALL_STATE(1037)] = 34854, - [SMALL_STATE(1038)] = 34880, - [SMALL_STATE(1039)] = 34906, - [SMALL_STATE(1040)] = 34932, - [SMALL_STATE(1041)] = 34958, - [SMALL_STATE(1042)] = 34982, - [SMALL_STATE(1043)] = 35008, - [SMALL_STATE(1044)] = 35034, - [SMALL_STATE(1045)] = 35060, - [SMALL_STATE(1046)] = 35086, - [SMALL_STATE(1047)] = 35112, - [SMALL_STATE(1048)] = 35138, - [SMALL_STATE(1049)] = 35164, - [SMALL_STATE(1050)] = 35190, - [SMALL_STATE(1051)] = 35216, - [SMALL_STATE(1052)] = 35242, - [SMALL_STATE(1053)] = 35268, - [SMALL_STATE(1054)] = 35294, - [SMALL_STATE(1055)] = 35320, - [SMALL_STATE(1056)] = 35344, - [SMALL_STATE(1057)] = 35370, - [SMALL_STATE(1058)] = 35396, - [SMALL_STATE(1059)] = 35422, - [SMALL_STATE(1060)] = 35448, - [SMALL_STATE(1061)] = 35474, - [SMALL_STATE(1062)] = 35500, - [SMALL_STATE(1063)] = 35526, - [SMALL_STATE(1064)] = 35552, - [SMALL_STATE(1065)] = 35578, - [SMALL_STATE(1066)] = 35604, - [SMALL_STATE(1067)] = 35630, - [SMALL_STATE(1068)] = 35656, - [SMALL_STATE(1069)] = 35682, - [SMALL_STATE(1070)] = 35708, - [SMALL_STATE(1071)] = 35734, - [SMALL_STATE(1072)] = 35760, - [SMALL_STATE(1073)] = 35786, - [SMALL_STATE(1074)] = 35812, - [SMALL_STATE(1075)] = 35838, - [SMALL_STATE(1076)] = 35864, - [SMALL_STATE(1077)] = 35890, - [SMALL_STATE(1078)] = 35916, - [SMALL_STATE(1079)] = 35942, - [SMALL_STATE(1080)] = 35968, - [SMALL_STATE(1081)] = 35994, - [SMALL_STATE(1082)] = 36018, - [SMALL_STATE(1083)] = 36044, - [SMALL_STATE(1084)] = 36068, - [SMALL_STATE(1085)] = 36094, - [SMALL_STATE(1086)] = 36120, - [SMALL_STATE(1087)] = 36146, - [SMALL_STATE(1088)] = 36172, - [SMALL_STATE(1089)] = 36198, - [SMALL_STATE(1090)] = 36224, - [SMALL_STATE(1091)] = 36250, - [SMALL_STATE(1092)] = 36274, - [SMALL_STATE(1093)] = 36298, - [SMALL_STATE(1094)] = 36324, - [SMALL_STATE(1095)] = 36350, - [SMALL_STATE(1096)] = 36374, - [SMALL_STATE(1097)] = 36400, - [SMALL_STATE(1098)] = 36426, - [SMALL_STATE(1099)] = 36452, - [SMALL_STATE(1100)] = 36478, - [SMALL_STATE(1101)] = 36504, - [SMALL_STATE(1102)] = 36530, - [SMALL_STATE(1103)] = 36556, - [SMALL_STATE(1104)] = 36582, - [SMALL_STATE(1105)] = 36600, - [SMALL_STATE(1106)] = 36626, - [SMALL_STATE(1107)] = 36652, - [SMALL_STATE(1108)] = 36678, - [SMALL_STATE(1109)] = 36704, - [SMALL_STATE(1110)] = 36730, - [SMALL_STATE(1111)] = 36756, - [SMALL_STATE(1112)] = 36782, - [SMALL_STATE(1113)] = 36808, - [SMALL_STATE(1114)] = 36834, - [SMALL_STATE(1115)] = 36858, - [SMALL_STATE(1116)] = 36884, - [SMALL_STATE(1117)] = 36910, - [SMALL_STATE(1118)] = 36936, - [SMALL_STATE(1119)] = 36962, - [SMALL_STATE(1120)] = 36980, - [SMALL_STATE(1121)] = 37006, - [SMALL_STATE(1122)] = 37032, - [SMALL_STATE(1123)] = 37058, - [SMALL_STATE(1124)] = 37084, - [SMALL_STATE(1125)] = 37110, - [SMALL_STATE(1126)] = 37136, - [SMALL_STATE(1127)] = 37162, - [SMALL_STATE(1128)] = 37188, - [SMALL_STATE(1129)] = 37214, - [SMALL_STATE(1130)] = 37240, - [SMALL_STATE(1131)] = 37266, - [SMALL_STATE(1132)] = 37292, - [SMALL_STATE(1133)] = 37318, - [SMALL_STATE(1134)] = 37344, - [SMALL_STATE(1135)] = 37370, - [SMALL_STATE(1136)] = 37396, - [SMALL_STATE(1137)] = 37422, - [SMALL_STATE(1138)] = 37448, - [SMALL_STATE(1139)] = 37474, - [SMALL_STATE(1140)] = 37500, - [SMALL_STATE(1141)] = 37526, - [SMALL_STATE(1142)] = 37552, - [SMALL_STATE(1143)] = 37578, - [SMALL_STATE(1144)] = 37604, - [SMALL_STATE(1145)] = 37628, - [SMALL_STATE(1146)] = 37652, - [SMALL_STATE(1147)] = 37678, - [SMALL_STATE(1148)] = 37704, - [SMALL_STATE(1149)] = 37730, - [SMALL_STATE(1150)] = 37754, - [SMALL_STATE(1151)] = 37780, - [SMALL_STATE(1152)] = 37804, - [SMALL_STATE(1153)] = 37830, - [SMALL_STATE(1154)] = 37856, - [SMALL_STATE(1155)] = 37880, - [SMALL_STATE(1156)] = 37906, - [SMALL_STATE(1157)] = 37932, - [SMALL_STATE(1158)] = 37958, - [SMALL_STATE(1159)] = 37984, - [SMALL_STATE(1160)] = 38010, - [SMALL_STATE(1161)] = 38036, - [SMALL_STATE(1162)] = 38062, - [SMALL_STATE(1163)] = 38088, - [SMALL_STATE(1164)] = 38114, - [SMALL_STATE(1165)] = 38140, - [SMALL_STATE(1166)] = 38166, - [SMALL_STATE(1167)] = 38192, - [SMALL_STATE(1168)] = 38218, - [SMALL_STATE(1169)] = 38244, - [SMALL_STATE(1170)] = 38270, - [SMALL_STATE(1171)] = 38296, - [SMALL_STATE(1172)] = 38320, - [SMALL_STATE(1173)] = 38346, - [SMALL_STATE(1174)] = 38372, - [SMALL_STATE(1175)] = 38398, - [SMALL_STATE(1176)] = 38424, - [SMALL_STATE(1177)] = 38450, - [SMALL_STATE(1178)] = 38476, - [SMALL_STATE(1179)] = 38502, - [SMALL_STATE(1180)] = 38528, - [SMALL_STATE(1181)] = 38554, - [SMALL_STATE(1182)] = 38578, - [SMALL_STATE(1183)] = 38604, - [SMALL_STATE(1184)] = 38630, - [SMALL_STATE(1185)] = 38656, - [SMALL_STATE(1186)] = 38682, - [SMALL_STATE(1187)] = 38702, - [SMALL_STATE(1188)] = 38728, - [SMALL_STATE(1189)] = 38754, - [SMALL_STATE(1190)] = 38780, - [SMALL_STATE(1191)] = 38806, - [SMALL_STATE(1192)] = 38832, - [SMALL_STATE(1193)] = 38858, - [SMALL_STATE(1194)] = 38884, - [SMALL_STATE(1195)] = 38908, - [SMALL_STATE(1196)] = 38934, - [SMALL_STATE(1197)] = 38960, - [SMALL_STATE(1198)] = 38986, - [SMALL_STATE(1199)] = 39012, - [SMALL_STATE(1200)] = 39038, - [SMALL_STATE(1201)] = 39064, - [SMALL_STATE(1202)] = 39090, - [SMALL_STATE(1203)] = 39116, - [SMALL_STATE(1204)] = 39142, - [SMALL_STATE(1205)] = 39168, - [SMALL_STATE(1206)] = 39194, - [SMALL_STATE(1207)] = 39220, - [SMALL_STATE(1208)] = 39246, - [SMALL_STATE(1209)] = 39272, - [SMALL_STATE(1210)] = 39298, - [SMALL_STATE(1211)] = 39322, - [SMALL_STATE(1212)] = 39348, - [SMALL_STATE(1213)] = 39374, - [SMALL_STATE(1214)] = 39400, - [SMALL_STATE(1215)] = 39426, - [SMALL_STATE(1216)] = 39452, - [SMALL_STATE(1217)] = 39469, - [SMALL_STATE(1218)] = 39486, - [SMALL_STATE(1219)] = 39503, - [SMALL_STATE(1220)] = 39520, - [SMALL_STATE(1221)] = 39537, - [SMALL_STATE(1222)] = 39554, - [SMALL_STATE(1223)] = 39571, - [SMALL_STATE(1224)] = 39588, - [SMALL_STATE(1225)] = 39605, - [SMALL_STATE(1226)] = 39622, - [SMALL_STATE(1227)] = 39639, - [SMALL_STATE(1228)] = 39656, - [SMALL_STATE(1229)] = 39673, - [SMALL_STATE(1230)] = 39690, - [SMALL_STATE(1231)] = 39713, - [SMALL_STATE(1232)] = 39730, - [SMALL_STATE(1233)] = 39747, - [SMALL_STATE(1234)] = 39764, - [SMALL_STATE(1235)] = 39781, - [SMALL_STATE(1236)] = 39798, - [SMALL_STATE(1237)] = 39815, - [SMALL_STATE(1238)] = 39832, - [SMALL_STATE(1239)] = 39849, - [SMALL_STATE(1240)] = 39866, - [SMALL_STATE(1241)] = 39889, - [SMALL_STATE(1242)] = 39912, - [SMALL_STATE(1243)] = 39933, - [SMALL_STATE(1244)] = 39956, - [SMALL_STATE(1245)] = 39973, - [SMALL_STATE(1246)] = 39996, - [SMALL_STATE(1247)] = 40017, - [SMALL_STATE(1248)] = 40040, - [SMALL_STATE(1249)] = 40059, - [SMALL_STATE(1250)] = 40082, - [SMALL_STATE(1251)] = 40105, - [SMALL_STATE(1252)] = 40128, - [SMALL_STATE(1253)] = 40151, - [SMALL_STATE(1254)] = 40174, - [SMALL_STATE(1255)] = 40197, - [SMALL_STATE(1256)] = 40220, - [SMALL_STATE(1257)] = 40237, - [SMALL_STATE(1258)] = 40260, - [SMALL_STATE(1259)] = 40283, - [SMALL_STATE(1260)] = 40306, - [SMALL_STATE(1261)] = 40327, - [SMALL_STATE(1262)] = 40344, - [SMALL_STATE(1263)] = 40361, - [SMALL_STATE(1264)] = 40378, - [SMALL_STATE(1265)] = 40399, - [SMALL_STATE(1266)] = 40416, - [SMALL_STATE(1267)] = 40439, - [SMALL_STATE(1268)] = 40456, - [SMALL_STATE(1269)] = 40473, - [SMALL_STATE(1270)] = 40490, - [SMALL_STATE(1271)] = 40507, - [SMALL_STATE(1272)] = 40524, - [SMALL_STATE(1273)] = 40541, - [SMALL_STATE(1274)] = 40564, - [SMALL_STATE(1275)] = 40585, - [SMALL_STATE(1276)] = 40602, - [SMALL_STATE(1277)] = 40619, - [SMALL_STATE(1278)] = 40636, - [SMALL_STATE(1279)] = 40657, - [SMALL_STATE(1280)] = 40674, - [SMALL_STATE(1281)] = 40691, - [SMALL_STATE(1282)] = 40708, - [SMALL_STATE(1283)] = 40725, - [SMALL_STATE(1284)] = 40742, - [SMALL_STATE(1285)] = 40759, - [SMALL_STATE(1286)] = 40776, - [SMALL_STATE(1287)] = 40799, - [SMALL_STATE(1288)] = 40816, - [SMALL_STATE(1289)] = 40833, - [SMALL_STATE(1290)] = 40850, - [SMALL_STATE(1291)] = 40867, - [SMALL_STATE(1292)] = 40884, - [SMALL_STATE(1293)] = 40901, - [SMALL_STATE(1294)] = 40918, - [SMALL_STATE(1295)] = 40935, - [SMALL_STATE(1296)] = 40952, - [SMALL_STATE(1297)] = 40973, - [SMALL_STATE(1298)] = 40990, - [SMALL_STATE(1299)] = 41007, - [SMALL_STATE(1300)] = 41024, - [SMALL_STATE(1301)] = 41041, - [SMALL_STATE(1302)] = 41058, - [SMALL_STATE(1303)] = 41079, - [SMALL_STATE(1304)] = 41096, - [SMALL_STATE(1305)] = 41113, - [SMALL_STATE(1306)] = 41130, - [SMALL_STATE(1307)] = 41147, - [SMALL_STATE(1308)] = 41164, - [SMALL_STATE(1309)] = 41187, - [SMALL_STATE(1310)] = 41204, - [SMALL_STATE(1311)] = 41221, - [SMALL_STATE(1312)] = 41238, - [SMALL_STATE(1313)] = 41255, - [SMALL_STATE(1314)] = 41272, - [SMALL_STATE(1315)] = 41289, - [SMALL_STATE(1316)] = 41306, - [SMALL_STATE(1317)] = 41323, - [SMALL_STATE(1318)] = 41340, - [SMALL_STATE(1319)] = 41357, - [SMALL_STATE(1320)] = 41380, - [SMALL_STATE(1321)] = 41397, - [SMALL_STATE(1322)] = 41414, - [SMALL_STATE(1323)] = 41431, - [SMALL_STATE(1324)] = 41448, - [SMALL_STATE(1325)] = 41465, - [SMALL_STATE(1326)] = 41488, - [SMALL_STATE(1327)] = 41505, - [SMALL_STATE(1328)] = 41522, - [SMALL_STATE(1329)] = 41539, - [SMALL_STATE(1330)] = 41556, - [SMALL_STATE(1331)] = 41573, - [SMALL_STATE(1332)] = 41590, - [SMALL_STATE(1333)] = 41613, - [SMALL_STATE(1334)] = 41630, - [SMALL_STATE(1335)] = 41647, - [SMALL_STATE(1336)] = 41664, - [SMALL_STATE(1337)] = 41681, - [SMALL_STATE(1338)] = 41698, - [SMALL_STATE(1339)] = 41715, - [SMALL_STATE(1340)] = 41732, - [SMALL_STATE(1341)] = 41749, - [SMALL_STATE(1342)] = 41766, - [SMALL_STATE(1343)] = 41789, - [SMALL_STATE(1344)] = 41806, - [SMALL_STATE(1345)] = 41823, - [SMALL_STATE(1346)] = 41840, - [SMALL_STATE(1347)] = 41861, - [SMALL_STATE(1348)] = 41878, - [SMALL_STATE(1349)] = 41895, - [SMALL_STATE(1350)] = 41912, - [SMALL_STATE(1351)] = 41929, - [SMALL_STATE(1352)] = 41946, - [SMALL_STATE(1353)] = 41969, - [SMALL_STATE(1354)] = 41986, - [SMALL_STATE(1355)] = 42003, - [SMALL_STATE(1356)] = 42020, - [SMALL_STATE(1357)] = 42037, - [SMALL_STATE(1358)] = 42054, - [SMALL_STATE(1359)] = 42071, - [SMALL_STATE(1360)] = 42088, - [SMALL_STATE(1361)] = 42105, - [SMALL_STATE(1362)] = 42122, - [SMALL_STATE(1363)] = 42145, - [SMALL_STATE(1364)] = 42162, - [SMALL_STATE(1365)] = 42179, - [SMALL_STATE(1366)] = 42196, - [SMALL_STATE(1367)] = 42213, - [SMALL_STATE(1368)] = 42230, - [SMALL_STATE(1369)] = 42247, - [SMALL_STATE(1370)] = 42264, - [SMALL_STATE(1371)] = 42281, - [SMALL_STATE(1372)] = 42298, - [SMALL_STATE(1373)] = 42315, - [SMALL_STATE(1374)] = 42332, - [SMALL_STATE(1375)] = 42355, - [SMALL_STATE(1376)] = 42372, - [SMALL_STATE(1377)] = 42389, - [SMALL_STATE(1378)] = 42406, - [SMALL_STATE(1379)] = 42423, - [SMALL_STATE(1380)] = 42440, - [SMALL_STATE(1381)] = 42457, - [SMALL_STATE(1382)] = 42474, - [SMALL_STATE(1383)] = 42491, - [SMALL_STATE(1384)] = 42508, - [SMALL_STATE(1385)] = 42525, - [SMALL_STATE(1386)] = 42542, - [SMALL_STATE(1387)] = 42563, - [SMALL_STATE(1388)] = 42586, - [SMALL_STATE(1389)] = 42603, - [SMALL_STATE(1390)] = 42624, - [SMALL_STATE(1391)] = 42641, - [SMALL_STATE(1392)] = 42658, - [SMALL_STATE(1393)] = 42679, - [SMALL_STATE(1394)] = 42696, - [SMALL_STATE(1395)] = 42713, - [SMALL_STATE(1396)] = 42736, - [SMALL_STATE(1397)] = 42753, - [SMALL_STATE(1398)] = 42770, - [SMALL_STATE(1399)] = 42793, - [SMALL_STATE(1400)] = 42814, - [SMALL_STATE(1401)] = 42831, - [SMALL_STATE(1402)] = 42848, - [SMALL_STATE(1403)] = 42865, - [SMALL_STATE(1404)] = 42886, - [SMALL_STATE(1405)] = 42909, - [SMALL_STATE(1406)] = 42926, - [SMALL_STATE(1407)] = 42943, - [SMALL_STATE(1408)] = 42960, - [SMALL_STATE(1409)] = 42981, - [SMALL_STATE(1410)] = 42998, - [SMALL_STATE(1411)] = 43015, - [SMALL_STATE(1412)] = 43032, - [SMALL_STATE(1413)] = 43049, - [SMALL_STATE(1414)] = 43066, - [SMALL_STATE(1415)] = 43083, - [SMALL_STATE(1416)] = 43100, - [SMALL_STATE(1417)] = 43117, - [SMALL_STATE(1418)] = 43134, - [SMALL_STATE(1419)] = 43151, - [SMALL_STATE(1420)] = 43168, - [SMALL_STATE(1421)] = 43185, - [SMALL_STATE(1422)] = 43202, - [SMALL_STATE(1423)] = 43219, - [SMALL_STATE(1424)] = 43236, - [SMALL_STATE(1425)] = 43253, - [SMALL_STATE(1426)] = 43270, - [SMALL_STATE(1427)] = 43287, - [SMALL_STATE(1428)] = 43304, - [SMALL_STATE(1429)] = 43321, - [SMALL_STATE(1430)] = 43338, - [SMALL_STATE(1431)] = 43355, - [SMALL_STATE(1432)] = 43372, - [SMALL_STATE(1433)] = 43389, - [SMALL_STATE(1434)] = 43406, - [SMALL_STATE(1435)] = 43423, - [SMALL_STATE(1436)] = 43440, - [SMALL_STATE(1437)] = 43457, - [SMALL_STATE(1438)] = 43474, - [SMALL_STATE(1439)] = 43491, - [SMALL_STATE(1440)] = 43514, - [SMALL_STATE(1441)] = 43531, - [SMALL_STATE(1442)] = 43548, - [SMALL_STATE(1443)] = 43565, - [SMALL_STATE(1444)] = 43582, - [SMALL_STATE(1445)] = 43599, - [SMALL_STATE(1446)] = 43616, - [SMALL_STATE(1447)] = 43633, - [SMALL_STATE(1448)] = 43650, - [SMALL_STATE(1449)] = 43667, - [SMALL_STATE(1450)] = 43684, - [SMALL_STATE(1451)] = 43701, - [SMALL_STATE(1452)] = 43718, - [SMALL_STATE(1453)] = 43735, - [SMALL_STATE(1454)] = 43752, - [SMALL_STATE(1455)] = 43769, - [SMALL_STATE(1456)] = 43786, - [SMALL_STATE(1457)] = 43803, - [SMALL_STATE(1458)] = 43820, - [SMALL_STATE(1459)] = 43837, - [SMALL_STATE(1460)] = 43854, - [SMALL_STATE(1461)] = 43871, - [SMALL_STATE(1462)] = 43888, - [SMALL_STATE(1463)] = 43905, - [SMALL_STATE(1464)] = 43922, - [SMALL_STATE(1465)] = 43939, - [SMALL_STATE(1466)] = 43956, - [SMALL_STATE(1467)] = 43973, - [SMALL_STATE(1468)] = 43990, - [SMALL_STATE(1469)] = 44007, - [SMALL_STATE(1470)] = 44024, - [SMALL_STATE(1471)] = 44041, - [SMALL_STATE(1472)] = 44058, - [SMALL_STATE(1473)] = 44075, - [SMALL_STATE(1474)] = 44092, - [SMALL_STATE(1475)] = 44109, - [SMALL_STATE(1476)] = 44126, - [SMALL_STATE(1477)] = 44143, - [SMALL_STATE(1478)] = 44160, - [SMALL_STATE(1479)] = 44177, - [SMALL_STATE(1480)] = 44194, - [SMALL_STATE(1481)] = 44211, - [SMALL_STATE(1482)] = 44228, - [SMALL_STATE(1483)] = 44245, - [SMALL_STATE(1484)] = 44262, - [SMALL_STATE(1485)] = 44279, - [SMALL_STATE(1486)] = 44296, - [SMALL_STATE(1487)] = 44313, - [SMALL_STATE(1488)] = 44330, - [SMALL_STATE(1489)] = 44347, - [SMALL_STATE(1490)] = 44364, - [SMALL_STATE(1491)] = 44381, - [SMALL_STATE(1492)] = 44398, - [SMALL_STATE(1493)] = 44421, - [SMALL_STATE(1494)] = 44438, - [SMALL_STATE(1495)] = 44455, - [SMALL_STATE(1496)] = 44472, - [SMALL_STATE(1497)] = 44489, - [SMALL_STATE(1498)] = 44512, - [SMALL_STATE(1499)] = 44529, - [SMALL_STATE(1500)] = 44546, - [SMALL_STATE(1501)] = 44563, - [SMALL_STATE(1502)] = 44580, - [SMALL_STATE(1503)] = 44597, - [SMALL_STATE(1504)] = 44614, - [SMALL_STATE(1505)] = 44631, - [SMALL_STATE(1506)] = 44648, - [SMALL_STATE(1507)] = 44665, - [SMALL_STATE(1508)] = 44682, - [SMALL_STATE(1509)] = 44699, - [SMALL_STATE(1510)] = 44722, - [SMALL_STATE(1511)] = 44739, - [SMALL_STATE(1512)] = 44762, - [SMALL_STATE(1513)] = 44779, - [SMALL_STATE(1514)] = 44802, - [SMALL_STATE(1515)] = 44819, - [SMALL_STATE(1516)] = 44836, - [SMALL_STATE(1517)] = 44853, - [SMALL_STATE(1518)] = 44876, - [SMALL_STATE(1519)] = 44893, - [SMALL_STATE(1520)] = 44910, - [SMALL_STATE(1521)] = 44929, - [SMALL_STATE(1522)] = 44946, - [SMALL_STATE(1523)] = 44969, - [SMALL_STATE(1524)] = 44986, - [SMALL_STATE(1525)] = 45003, - [SMALL_STATE(1526)] = 45026, - [SMALL_STATE(1527)] = 45043, - [SMALL_STATE(1528)] = 45060, - [SMALL_STATE(1529)] = 45077, - [SMALL_STATE(1530)] = 45094, - [SMALL_STATE(1531)] = 45111, - [SMALL_STATE(1532)] = 45134, - [SMALL_STATE(1533)] = 45157, - [SMALL_STATE(1534)] = 45180, - [SMALL_STATE(1535)] = 45197, - [SMALL_STATE(1536)] = 45220, - [SMALL_STATE(1537)] = 45243, - [SMALL_STATE(1538)] = 45266, - [SMALL_STATE(1539)] = 45289, - [SMALL_STATE(1540)] = 45312, - [SMALL_STATE(1541)] = 45335, - [SMALL_STATE(1542)] = 45355, - [SMALL_STATE(1543)] = 45375, - [SMALL_STATE(1544)] = 45395, - [SMALL_STATE(1545)] = 45415, - [SMALL_STATE(1546)] = 45435, - [SMALL_STATE(1547)] = 45455, - [SMALL_STATE(1548)] = 45471, - [SMALL_STATE(1549)] = 45491, - [SMALL_STATE(1550)] = 45511, - [SMALL_STATE(1551)] = 45531, - [SMALL_STATE(1552)] = 45551, - [SMALL_STATE(1553)] = 45571, - [SMALL_STATE(1554)] = 45591, - [SMALL_STATE(1555)] = 45611, - [SMALL_STATE(1556)] = 45631, - [SMALL_STATE(1557)] = 45651, - [SMALL_STATE(1558)] = 45671, - [SMALL_STATE(1559)] = 45691, - [SMALL_STATE(1560)] = 45711, - [SMALL_STATE(1561)] = 45731, - [SMALL_STATE(1562)] = 45751, - [SMALL_STATE(1563)] = 45771, - [SMALL_STATE(1564)] = 45791, - [SMALL_STATE(1565)] = 45811, - [SMALL_STATE(1566)] = 45831, - [SMALL_STATE(1567)] = 45851, - [SMALL_STATE(1568)] = 45871, - [SMALL_STATE(1569)] = 45891, - [SMALL_STATE(1570)] = 45911, - [SMALL_STATE(1571)] = 45931, - [SMALL_STATE(1572)] = 45951, - [SMALL_STATE(1573)] = 45971, - [SMALL_STATE(1574)] = 45991, - [SMALL_STATE(1575)] = 46011, - [SMALL_STATE(1576)] = 46031, - [SMALL_STATE(1577)] = 46051, - [SMALL_STATE(1578)] = 46071, - [SMALL_STATE(1579)] = 46091, - [SMALL_STATE(1580)] = 46107, - [SMALL_STATE(1581)] = 46127, - [SMALL_STATE(1582)] = 46147, - [SMALL_STATE(1583)] = 46167, - [SMALL_STATE(1584)] = 46183, - [SMALL_STATE(1585)] = 46203, - [SMALL_STATE(1586)] = 46223, - [SMALL_STATE(1587)] = 46239, - [SMALL_STATE(1588)] = 46259, - [SMALL_STATE(1589)] = 46279, - [SMALL_STATE(1590)] = 46299, - [SMALL_STATE(1591)] = 46319, - [SMALL_STATE(1592)] = 46335, - [SMALL_STATE(1593)] = 46355, - [SMALL_STATE(1594)] = 46375, - [SMALL_STATE(1595)] = 46395, - [SMALL_STATE(1596)] = 46415, - [SMALL_STATE(1597)] = 46435, - [SMALL_STATE(1598)] = 46451, - [SMALL_STATE(1599)] = 46471, - [SMALL_STATE(1600)] = 46491, - [SMALL_STATE(1601)] = 46511, - [SMALL_STATE(1602)] = 46531, - [SMALL_STATE(1603)] = 46551, - [SMALL_STATE(1604)] = 46571, - [SMALL_STATE(1605)] = 46587, - [SMALL_STATE(1606)] = 46607, - [SMALL_STATE(1607)] = 46627, - [SMALL_STATE(1608)] = 46647, - [SMALL_STATE(1609)] = 46663, - [SMALL_STATE(1610)] = 46683, - [SMALL_STATE(1611)] = 46699, - [SMALL_STATE(1612)] = 46719, - [SMALL_STATE(1613)] = 46739, - [SMALL_STATE(1614)] = 46759, - [SMALL_STATE(1615)] = 46779, - [SMALL_STATE(1616)] = 46795, - [SMALL_STATE(1617)] = 46815, - [SMALL_STATE(1618)] = 46833, - [SMALL_STATE(1619)] = 46853, - [SMALL_STATE(1620)] = 46869, - [SMALL_STATE(1621)] = 46885, - [SMALL_STATE(1622)] = 46905, - [SMALL_STATE(1623)] = 46925, - [SMALL_STATE(1624)] = 46945, - [SMALL_STATE(1625)] = 46965, - [SMALL_STATE(1626)] = 46985, - [SMALL_STATE(1627)] = 47005, - [SMALL_STATE(1628)] = 47025, - [SMALL_STATE(1629)] = 47045, - [SMALL_STATE(1630)] = 47065, - [SMALL_STATE(1631)] = 47081, - [SMALL_STATE(1632)] = 47101, - [SMALL_STATE(1633)] = 47121, - [SMALL_STATE(1634)] = 47141, - [SMALL_STATE(1635)] = 47161, - [SMALL_STATE(1636)] = 47181, - [SMALL_STATE(1637)] = 47201, - [SMALL_STATE(1638)] = 47221, - [SMALL_STATE(1639)] = 47237, - [SMALL_STATE(1640)] = 47257, - [SMALL_STATE(1641)] = 47277, - [SMALL_STATE(1642)] = 47297, - [SMALL_STATE(1643)] = 47317, - [SMALL_STATE(1644)] = 47333, - [SMALL_STATE(1645)] = 47353, - [SMALL_STATE(1646)] = 47373, - [SMALL_STATE(1647)] = 47393, - [SMALL_STATE(1648)] = 47413, - [SMALL_STATE(1649)] = 47433, - [SMALL_STATE(1650)] = 47453, - [SMALL_STATE(1651)] = 47473, - [SMALL_STATE(1652)] = 47493, - [SMALL_STATE(1653)] = 47509, - [SMALL_STATE(1654)] = 47529, - [SMALL_STATE(1655)] = 47545, - [SMALL_STATE(1656)] = 47565, - [SMALL_STATE(1657)] = 47585, - [SMALL_STATE(1658)] = 47605, - [SMALL_STATE(1659)] = 47625, - [SMALL_STATE(1660)] = 47645, - [SMALL_STATE(1661)] = 47665, - [SMALL_STATE(1662)] = 47685, - [SMALL_STATE(1663)] = 47705, - [SMALL_STATE(1664)] = 47725, - [SMALL_STATE(1665)] = 47745, - [SMALL_STATE(1666)] = 47765, - [SMALL_STATE(1667)] = 47785, - [SMALL_STATE(1668)] = 47801, - [SMALL_STATE(1669)] = 47821, - [SMALL_STATE(1670)] = 47841, - [SMALL_STATE(1671)] = 47861, - [SMALL_STATE(1672)] = 47881, - [SMALL_STATE(1673)] = 47901, - [SMALL_STATE(1674)] = 47921, - [SMALL_STATE(1675)] = 47941, - [SMALL_STATE(1676)] = 47961, - [SMALL_STATE(1677)] = 47981, - [SMALL_STATE(1678)] = 48001, - [SMALL_STATE(1679)] = 48021, - [SMALL_STATE(1680)] = 48041, - [SMALL_STATE(1681)] = 48059, - [SMALL_STATE(1682)] = 48079, - [SMALL_STATE(1683)] = 48099, - [SMALL_STATE(1684)] = 48119, - [SMALL_STATE(1685)] = 48139, - [SMALL_STATE(1686)] = 48159, - [SMALL_STATE(1687)] = 48179, - [SMALL_STATE(1688)] = 48199, - [SMALL_STATE(1689)] = 48219, - [SMALL_STATE(1690)] = 48239, - [SMALL_STATE(1691)] = 48259, - [SMALL_STATE(1692)] = 48277, - [SMALL_STATE(1693)] = 48297, - [SMALL_STATE(1694)] = 48317, - [SMALL_STATE(1695)] = 48337, - [SMALL_STATE(1696)] = 48357, - [SMALL_STATE(1697)] = 48377, - [SMALL_STATE(1698)] = 48397, - [SMALL_STATE(1699)] = 48417, - [SMALL_STATE(1700)] = 48437, - [SMALL_STATE(1701)] = 48457, - [SMALL_STATE(1702)] = 48477, - [SMALL_STATE(1703)] = 48497, - [SMALL_STATE(1704)] = 48513, - [SMALL_STATE(1705)] = 48533, - [SMALL_STATE(1706)] = 48553, - [SMALL_STATE(1707)] = 48573, - [SMALL_STATE(1708)] = 48593, - [SMALL_STATE(1709)] = 48609, - [SMALL_STATE(1710)] = 48629, - [SMALL_STATE(1711)] = 48649, - [SMALL_STATE(1712)] = 48665, - [SMALL_STATE(1713)] = 48685, - [SMALL_STATE(1714)] = 48705, - [SMALL_STATE(1715)] = 48725, - [SMALL_STATE(1716)] = 48745, - [SMALL_STATE(1717)] = 48761, - [SMALL_STATE(1718)] = 48781, - [SMALL_STATE(1719)] = 48797, - [SMALL_STATE(1720)] = 48817, - [SMALL_STATE(1721)] = 48837, - [SMALL_STATE(1722)] = 48857, - [SMALL_STATE(1723)] = 48877, - [SMALL_STATE(1724)] = 48897, - [SMALL_STATE(1725)] = 48917, - [SMALL_STATE(1726)] = 48937, - [SMALL_STATE(1727)] = 48957, - [SMALL_STATE(1728)] = 48977, - [SMALL_STATE(1729)] = 48997, - [SMALL_STATE(1730)] = 49017, - [SMALL_STATE(1731)] = 49037, - [SMALL_STATE(1732)] = 49057, - [SMALL_STATE(1733)] = 49077, - [SMALL_STATE(1734)] = 49097, - [SMALL_STATE(1735)] = 49117, - [SMALL_STATE(1736)] = 49137, - [SMALL_STATE(1737)] = 49157, - [SMALL_STATE(1738)] = 49177, - [SMALL_STATE(1739)] = 49197, - [SMALL_STATE(1740)] = 49217, - [SMALL_STATE(1741)] = 49237, - [SMALL_STATE(1742)] = 49257, - [SMALL_STATE(1743)] = 49277, - [SMALL_STATE(1744)] = 49297, - [SMALL_STATE(1745)] = 49317, - [SMALL_STATE(1746)] = 49337, - [SMALL_STATE(1747)] = 49353, - [SMALL_STATE(1748)] = 49373, - [SMALL_STATE(1749)] = 49393, - [SMALL_STATE(1750)] = 49413, - [SMALL_STATE(1751)] = 49433, - [SMALL_STATE(1752)] = 49453, - [SMALL_STATE(1753)] = 49473, - [SMALL_STATE(1754)] = 49493, - [SMALL_STATE(1755)] = 49513, - [SMALL_STATE(1756)] = 49533, - [SMALL_STATE(1757)] = 49553, - [SMALL_STATE(1758)] = 49573, - [SMALL_STATE(1759)] = 49593, - [SMALL_STATE(1760)] = 49613, - [SMALL_STATE(1761)] = 49633, - [SMALL_STATE(1762)] = 49653, - [SMALL_STATE(1763)] = 49673, - [SMALL_STATE(1764)] = 49693, - [SMALL_STATE(1765)] = 49713, - [SMALL_STATE(1766)] = 49733, - [SMALL_STATE(1767)] = 49753, - [SMALL_STATE(1768)] = 49773, - [SMALL_STATE(1769)] = 49793, - [SMALL_STATE(1770)] = 49813, - [SMALL_STATE(1771)] = 49833, - [SMALL_STATE(1772)] = 49853, - [SMALL_STATE(1773)] = 49873, - [SMALL_STATE(1774)] = 49893, - [SMALL_STATE(1775)] = 49913, - [SMALL_STATE(1776)] = 49933, - [SMALL_STATE(1777)] = 49953, - [SMALL_STATE(1778)] = 49973, - [SMALL_STATE(1779)] = 49993, - [SMALL_STATE(1780)] = 50013, - [SMALL_STATE(1781)] = 50033, - [SMALL_STATE(1782)] = 50053, - [SMALL_STATE(1783)] = 50073, - [SMALL_STATE(1784)] = 50093, - [SMALL_STATE(1785)] = 50113, - [SMALL_STATE(1786)] = 50133, - [SMALL_STATE(1787)] = 50153, - [SMALL_STATE(1788)] = 50173, - [SMALL_STATE(1789)] = 50193, - [SMALL_STATE(1790)] = 50213, - [SMALL_STATE(1791)] = 50233, - [SMALL_STATE(1792)] = 50253, - [SMALL_STATE(1793)] = 50273, - [SMALL_STATE(1794)] = 50289, - [SMALL_STATE(1795)] = 50309, - [SMALL_STATE(1796)] = 50325, - [SMALL_STATE(1797)] = 50345, - [SMALL_STATE(1798)] = 50365, - [SMALL_STATE(1799)] = 50381, - [SMALL_STATE(1800)] = 50401, - [SMALL_STATE(1801)] = 50421, - [SMALL_STATE(1802)] = 50441, - [SMALL_STATE(1803)] = 50457, - [SMALL_STATE(1804)] = 50477, - [SMALL_STATE(1805)] = 50497, - [SMALL_STATE(1806)] = 50517, - [SMALL_STATE(1807)] = 50533, - [SMALL_STATE(1808)] = 50549, - [SMALL_STATE(1809)] = 50565, - [SMALL_STATE(1810)] = 50585, - [SMALL_STATE(1811)] = 50605, - [SMALL_STATE(1812)] = 50625, - [SMALL_STATE(1813)] = 50645, - [SMALL_STATE(1814)] = 50661, - [SMALL_STATE(1815)] = 50681, - [SMALL_STATE(1816)] = 50701, - [SMALL_STATE(1817)] = 50721, - [SMALL_STATE(1818)] = 50741, - [SMALL_STATE(1819)] = 50761, - [SMALL_STATE(1820)] = 50781, - [SMALL_STATE(1821)] = 50801, - [SMALL_STATE(1822)] = 50821, - [SMALL_STATE(1823)] = 50841, - [SMALL_STATE(1824)] = 50861, - [SMALL_STATE(1825)] = 50881, - [SMALL_STATE(1826)] = 50901, - [SMALL_STATE(1827)] = 50921, - [SMALL_STATE(1828)] = 50941, - [SMALL_STATE(1829)] = 50961, - [SMALL_STATE(1830)] = 50981, - [SMALL_STATE(1831)] = 51001, - [SMALL_STATE(1832)] = 51021, - [SMALL_STATE(1833)] = 51041, - [SMALL_STATE(1834)] = 51061, - [SMALL_STATE(1835)] = 51081, - [SMALL_STATE(1836)] = 51101, - [SMALL_STATE(1837)] = 51117, - [SMALL_STATE(1838)] = 51137, - [SMALL_STATE(1839)] = 51157, - [SMALL_STATE(1840)] = 51177, - [SMALL_STATE(1841)] = 51197, - [SMALL_STATE(1842)] = 51213, - [SMALL_STATE(1843)] = 51233, - [SMALL_STATE(1844)] = 51253, - [SMALL_STATE(1845)] = 51269, - [SMALL_STATE(1846)] = 51289, - [SMALL_STATE(1847)] = 51309, - [SMALL_STATE(1848)] = 51329, - [SMALL_STATE(1849)] = 51349, - [SMALL_STATE(1850)] = 51369, - [SMALL_STATE(1851)] = 51385, - [SMALL_STATE(1852)] = 51405, - [SMALL_STATE(1853)] = 51425, - [SMALL_STATE(1854)] = 51445, - [SMALL_STATE(1855)] = 51465, - [SMALL_STATE(1856)] = 51481, - [SMALL_STATE(1857)] = 51501, - [SMALL_STATE(1858)] = 51521, - [SMALL_STATE(1859)] = 51541, - [SMALL_STATE(1860)] = 51561, - [SMALL_STATE(1861)] = 51577, - [SMALL_STATE(1862)] = 51597, - [SMALL_STATE(1863)] = 51617, - [SMALL_STATE(1864)] = 51633, - [SMALL_STATE(1865)] = 51653, - [SMALL_STATE(1866)] = 51673, - [SMALL_STATE(1867)] = 51693, - [SMALL_STATE(1868)] = 51709, - [SMALL_STATE(1869)] = 51729, - [SMALL_STATE(1870)] = 51745, - [SMALL_STATE(1871)] = 51765, - [SMALL_STATE(1872)] = 51785, - [SMALL_STATE(1873)] = 51805, - [SMALL_STATE(1874)] = 51825, - [SMALL_STATE(1875)] = 51845, - [SMALL_STATE(1876)] = 51865, - [SMALL_STATE(1877)] = 51881, - [SMALL_STATE(1878)] = 51901, - [SMALL_STATE(1879)] = 51921, - [SMALL_STATE(1880)] = 51941, - [SMALL_STATE(1881)] = 51961, - [SMALL_STATE(1882)] = 51981, - [SMALL_STATE(1883)] = 52001, - [SMALL_STATE(1884)] = 52021, - [SMALL_STATE(1885)] = 52041, - [SMALL_STATE(1886)] = 52061, - [SMALL_STATE(1887)] = 52081, - [SMALL_STATE(1888)] = 52101, - [SMALL_STATE(1889)] = 52121, - [SMALL_STATE(1890)] = 52141, - [SMALL_STATE(1891)] = 52161, - [SMALL_STATE(1892)] = 52181, - [SMALL_STATE(1893)] = 52201, - [SMALL_STATE(1894)] = 52221, - [SMALL_STATE(1895)] = 52241, - [SMALL_STATE(1896)] = 52261, - [SMALL_STATE(1897)] = 52281, - [SMALL_STATE(1898)] = 52301, - [SMALL_STATE(1899)] = 52321, - [SMALL_STATE(1900)] = 52341, - [SMALL_STATE(1901)] = 52361, - [SMALL_STATE(1902)] = 52381, - [SMALL_STATE(1903)] = 52401, - [SMALL_STATE(1904)] = 52421, - [SMALL_STATE(1905)] = 52441, - [SMALL_STATE(1906)] = 52461, - [SMALL_STATE(1907)] = 52481, - [SMALL_STATE(1908)] = 52501, - [SMALL_STATE(1909)] = 52521, - [SMALL_STATE(1910)] = 52541, - [SMALL_STATE(1911)] = 52561, - [SMALL_STATE(1912)] = 52581, - [SMALL_STATE(1913)] = 52601, - [SMALL_STATE(1914)] = 52621, - [SMALL_STATE(1915)] = 52641, - [SMALL_STATE(1916)] = 52661, - [SMALL_STATE(1917)] = 52681, - [SMALL_STATE(1918)] = 52701, - [SMALL_STATE(1919)] = 52721, - [SMALL_STATE(1920)] = 52741, - [SMALL_STATE(1921)] = 52761, - [SMALL_STATE(1922)] = 52781, - [SMALL_STATE(1923)] = 52801, - [SMALL_STATE(1924)] = 52821, - [SMALL_STATE(1925)] = 52841, - [SMALL_STATE(1926)] = 52861, - [SMALL_STATE(1927)] = 52881, - [SMALL_STATE(1928)] = 52901, - [SMALL_STATE(1929)] = 52921, - [SMALL_STATE(1930)] = 52941, - [SMALL_STATE(1931)] = 52961, - [SMALL_STATE(1932)] = 52981, - [SMALL_STATE(1933)] = 53001, - [SMALL_STATE(1934)] = 53021, - [SMALL_STATE(1935)] = 53041, - [SMALL_STATE(1936)] = 53061, - [SMALL_STATE(1937)] = 53081, - [SMALL_STATE(1938)] = 53101, - [SMALL_STATE(1939)] = 53121, - [SMALL_STATE(1940)] = 53141, - [SMALL_STATE(1941)] = 53161, - [SMALL_STATE(1942)] = 53181, - [SMALL_STATE(1943)] = 53201, - [SMALL_STATE(1944)] = 53221, - [SMALL_STATE(1945)] = 53241, - [SMALL_STATE(1946)] = 53261, - [SMALL_STATE(1947)] = 53281, - [SMALL_STATE(1948)] = 53301, - [SMALL_STATE(1949)] = 53321, - [SMALL_STATE(1950)] = 53338, - [SMALL_STATE(1951)] = 53355, - [SMALL_STATE(1952)] = 53372, - [SMALL_STATE(1953)] = 53389, - [SMALL_STATE(1954)] = 53406, - [SMALL_STATE(1955)] = 53423, - [SMALL_STATE(1956)] = 53440, - [SMALL_STATE(1957)] = 53457, - [SMALL_STATE(1958)] = 53474, - [SMALL_STATE(1959)] = 53491, - [SMALL_STATE(1960)] = 53508, - [SMALL_STATE(1961)] = 53525, - [SMALL_STATE(1962)] = 53542, - [SMALL_STATE(1963)] = 53559, - [SMALL_STATE(1964)] = 53576, - [SMALL_STATE(1965)] = 53593, - [SMALL_STATE(1966)] = 53610, - [SMALL_STATE(1967)] = 53627, - [SMALL_STATE(1968)] = 53644, - [SMALL_STATE(1969)] = 53661, - [SMALL_STATE(1970)] = 53678, - [SMALL_STATE(1971)] = 53695, - [SMALL_STATE(1972)] = 53712, - [SMALL_STATE(1973)] = 53727, - [SMALL_STATE(1974)] = 53744, - [SMALL_STATE(1975)] = 53761, - [SMALL_STATE(1976)] = 53778, - [SMALL_STATE(1977)] = 53795, - [SMALL_STATE(1978)] = 53812, - [SMALL_STATE(1979)] = 53829, - [SMALL_STATE(1980)] = 53846, - [SMALL_STATE(1981)] = 53863, - [SMALL_STATE(1982)] = 53880, - [SMALL_STATE(1983)] = 53897, - [SMALL_STATE(1984)] = 53914, - [SMALL_STATE(1985)] = 53931, - [SMALL_STATE(1986)] = 53948, - [SMALL_STATE(1987)] = 53965, - [SMALL_STATE(1988)] = 53980, - [SMALL_STATE(1989)] = 53997, - [SMALL_STATE(1990)] = 54014, - [SMALL_STATE(1991)] = 54031, - [SMALL_STATE(1992)] = 54048, - [SMALL_STATE(1993)] = 54065, - [SMALL_STATE(1994)] = 54082, - [SMALL_STATE(1995)] = 54099, - [SMALL_STATE(1996)] = 54116, - [SMALL_STATE(1997)] = 54133, - [SMALL_STATE(1998)] = 54150, - [SMALL_STATE(1999)] = 54167, - [SMALL_STATE(2000)] = 54184, - [SMALL_STATE(2001)] = 54201, - [SMALL_STATE(2002)] = 54216, - [SMALL_STATE(2003)] = 54233, - [SMALL_STATE(2004)] = 54250, - [SMALL_STATE(2005)] = 54267, - [SMALL_STATE(2006)] = 54284, - [SMALL_STATE(2007)] = 54301, - [SMALL_STATE(2008)] = 54316, - [SMALL_STATE(2009)] = 54333, - [SMALL_STATE(2010)] = 54350, - [SMALL_STATE(2011)] = 54365, - [SMALL_STATE(2012)] = 54382, - [SMALL_STATE(2013)] = 54399, - [SMALL_STATE(2014)] = 54416, - [SMALL_STATE(2015)] = 54433, - [SMALL_STATE(2016)] = 54448, - [SMALL_STATE(2017)] = 54465, - [SMALL_STATE(2018)] = 54482, - [SMALL_STATE(2019)] = 54499, - [SMALL_STATE(2020)] = 54514, - [SMALL_STATE(2021)] = 54531, - [SMALL_STATE(2022)] = 54548, - [SMALL_STATE(2023)] = 54565, - [SMALL_STATE(2024)] = 54582, - [SMALL_STATE(2025)] = 54599, - [SMALL_STATE(2026)] = 54616, - [SMALL_STATE(2027)] = 54633, - [SMALL_STATE(2028)] = 54648, - [SMALL_STATE(2029)] = 54665, - [SMALL_STATE(2030)] = 54682, - [SMALL_STATE(2031)] = 54699, - [SMALL_STATE(2032)] = 54716, - [SMALL_STATE(2033)] = 54733, - [SMALL_STATE(2034)] = 54750, - [SMALL_STATE(2035)] = 54767, - [SMALL_STATE(2036)] = 54784, - [SMALL_STATE(2037)] = 54801, - [SMALL_STATE(2038)] = 54818, - [SMALL_STATE(2039)] = 54833, - [SMALL_STATE(2040)] = 54850, - [SMALL_STATE(2041)] = 54867, - [SMALL_STATE(2042)] = 54882, - [SMALL_STATE(2043)] = 54899, - [SMALL_STATE(2044)] = 54916, - [SMALL_STATE(2045)] = 54933, - [SMALL_STATE(2046)] = 54950, - [SMALL_STATE(2047)] = 54967, - [SMALL_STATE(2048)] = 54982, - [SMALL_STATE(2049)] = 54999, - [SMALL_STATE(2050)] = 55014, - [SMALL_STATE(2051)] = 55031, - [SMALL_STATE(2052)] = 55048, - [SMALL_STATE(2053)] = 55065, - [SMALL_STATE(2054)] = 55082, - [SMALL_STATE(2055)] = 55097, - [SMALL_STATE(2056)] = 55112, - [SMALL_STATE(2057)] = 55129, - [SMALL_STATE(2058)] = 55146, - [SMALL_STATE(2059)] = 55161, - [SMALL_STATE(2060)] = 55178, - [SMALL_STATE(2061)] = 55193, - [SMALL_STATE(2062)] = 55210, - [SMALL_STATE(2063)] = 55227, - [SMALL_STATE(2064)] = 55242, - [SMALL_STATE(2065)] = 55259, - [SMALL_STATE(2066)] = 55276, - [SMALL_STATE(2067)] = 55291, - [SMALL_STATE(2068)] = 55308, - [SMALL_STATE(2069)] = 55325, - [SMALL_STATE(2070)] = 55342, - [SMALL_STATE(2071)] = 55357, - [SMALL_STATE(2072)] = 55374, - [SMALL_STATE(2073)] = 55391, - [SMALL_STATE(2074)] = 55406, - [SMALL_STATE(2075)] = 55423, - [SMALL_STATE(2076)] = 55437, - [SMALL_STATE(2077)] = 55451, - [SMALL_STATE(2078)] = 55465, - [SMALL_STATE(2079)] = 55479, - [SMALL_STATE(2080)] = 55493, - [SMALL_STATE(2081)] = 55507, - [SMALL_STATE(2082)] = 55521, - [SMALL_STATE(2083)] = 55535, - [SMALL_STATE(2084)] = 55549, - [SMALL_STATE(2085)] = 55563, - [SMALL_STATE(2086)] = 55577, - [SMALL_STATE(2087)] = 55591, - [SMALL_STATE(2088)] = 55605, - [SMALL_STATE(2089)] = 55619, - [SMALL_STATE(2090)] = 55633, - [SMALL_STATE(2091)] = 55647, - [SMALL_STATE(2092)] = 55661, - [SMALL_STATE(2093)] = 55675, - [SMALL_STATE(2094)] = 55689, - [SMALL_STATE(2095)] = 55703, - [SMALL_STATE(2096)] = 55717, - [SMALL_STATE(2097)] = 55731, - [SMALL_STATE(2098)] = 55745, - [SMALL_STATE(2099)] = 55759, - [SMALL_STATE(2100)] = 55773, - [SMALL_STATE(2101)] = 55787, - [SMALL_STATE(2102)] = 55801, - [SMALL_STATE(2103)] = 55815, - [SMALL_STATE(2104)] = 55829, - [SMALL_STATE(2105)] = 55843, - [SMALL_STATE(2106)] = 55857, - [SMALL_STATE(2107)] = 55871, - [SMALL_STATE(2108)] = 55885, - [SMALL_STATE(2109)] = 55899, - [SMALL_STATE(2110)] = 55913, - [SMALL_STATE(2111)] = 55927, - [SMALL_STATE(2112)] = 55941, - [SMALL_STATE(2113)] = 55955, - [SMALL_STATE(2114)] = 55969, - [SMALL_STATE(2115)] = 55983, - [SMALL_STATE(2116)] = 55997, - [SMALL_STATE(2117)] = 56011, - [SMALL_STATE(2118)] = 56025, - [SMALL_STATE(2119)] = 56039, - [SMALL_STATE(2120)] = 56053, - [SMALL_STATE(2121)] = 56067, - [SMALL_STATE(2122)] = 56081, - [SMALL_STATE(2123)] = 56095, - [SMALL_STATE(2124)] = 56109, - [SMALL_STATE(2125)] = 56123, - [SMALL_STATE(2126)] = 56137, - [SMALL_STATE(2127)] = 56151, - [SMALL_STATE(2128)] = 56165, - [SMALL_STATE(2129)] = 56179, - [SMALL_STATE(2130)] = 56193, - [SMALL_STATE(2131)] = 56207, - [SMALL_STATE(2132)] = 56221, - [SMALL_STATE(2133)] = 56235, - [SMALL_STATE(2134)] = 56249, - [SMALL_STATE(2135)] = 56263, - [SMALL_STATE(2136)] = 56277, - [SMALL_STATE(2137)] = 56291, - [SMALL_STATE(2138)] = 56305, - [SMALL_STATE(2139)] = 56319, - [SMALL_STATE(2140)] = 56333, - [SMALL_STATE(2141)] = 56347, - [SMALL_STATE(2142)] = 56361, - [SMALL_STATE(2143)] = 56375, - [SMALL_STATE(2144)] = 56389, - [SMALL_STATE(2145)] = 56403, - [SMALL_STATE(2146)] = 56417, - [SMALL_STATE(2147)] = 56431, - [SMALL_STATE(2148)] = 56445, - [SMALL_STATE(2149)] = 56459, - [SMALL_STATE(2150)] = 56473, - [SMALL_STATE(2151)] = 56487, - [SMALL_STATE(2152)] = 56501, - [SMALL_STATE(2153)] = 56515, - [SMALL_STATE(2154)] = 56529, - [SMALL_STATE(2155)] = 56543, - [SMALL_STATE(2156)] = 56557, - [SMALL_STATE(2157)] = 56571, - [SMALL_STATE(2158)] = 56585, - [SMALL_STATE(2159)] = 56599, - [SMALL_STATE(2160)] = 56613, - [SMALL_STATE(2161)] = 56627, - [SMALL_STATE(2162)] = 56641, - [SMALL_STATE(2163)] = 56655, - [SMALL_STATE(2164)] = 56669, - [SMALL_STATE(2165)] = 56683, - [SMALL_STATE(2166)] = 56697, - [SMALL_STATE(2167)] = 56711, - [SMALL_STATE(2168)] = 56725, - [SMALL_STATE(2169)] = 56739, - [SMALL_STATE(2170)] = 56753, - [SMALL_STATE(2171)] = 56767, - [SMALL_STATE(2172)] = 56781, - [SMALL_STATE(2173)] = 56795, - [SMALL_STATE(2174)] = 56809, - [SMALL_STATE(2175)] = 56823, - [SMALL_STATE(2176)] = 56837, - [SMALL_STATE(2177)] = 56851, - [SMALL_STATE(2178)] = 56865, - [SMALL_STATE(2179)] = 56879, - [SMALL_STATE(2180)] = 56893, - [SMALL_STATE(2181)] = 56907, - [SMALL_STATE(2182)] = 56921, - [SMALL_STATE(2183)] = 56935, - [SMALL_STATE(2184)] = 56949, - [SMALL_STATE(2185)] = 56963, - [SMALL_STATE(2186)] = 56977, - [SMALL_STATE(2187)] = 56991, - [SMALL_STATE(2188)] = 57005, - [SMALL_STATE(2189)] = 57019, - [SMALL_STATE(2190)] = 57033, - [SMALL_STATE(2191)] = 57047, - [SMALL_STATE(2192)] = 57061, - [SMALL_STATE(2193)] = 57075, - [SMALL_STATE(2194)] = 57089, - [SMALL_STATE(2195)] = 57103, - [SMALL_STATE(2196)] = 57117, - [SMALL_STATE(2197)] = 57131, - [SMALL_STATE(2198)] = 57145, - [SMALL_STATE(2199)] = 57159, - [SMALL_STATE(2200)] = 57173, - [SMALL_STATE(2201)] = 57187, - [SMALL_STATE(2202)] = 57201, - [SMALL_STATE(2203)] = 57215, - [SMALL_STATE(2204)] = 57229, - [SMALL_STATE(2205)] = 57243, - [SMALL_STATE(2206)] = 57257, - [SMALL_STATE(2207)] = 57271, - [SMALL_STATE(2208)] = 57285, - [SMALL_STATE(2209)] = 57299, - [SMALL_STATE(2210)] = 57313, - [SMALL_STATE(2211)] = 57327, - [SMALL_STATE(2212)] = 57341, - [SMALL_STATE(2213)] = 57355, - [SMALL_STATE(2214)] = 57369, - [SMALL_STATE(2215)] = 57383, - [SMALL_STATE(2216)] = 57397, - [SMALL_STATE(2217)] = 57411, - [SMALL_STATE(2218)] = 57425, - [SMALL_STATE(2219)] = 57439, - [SMALL_STATE(2220)] = 57453, - [SMALL_STATE(2221)] = 57467, - [SMALL_STATE(2222)] = 57481, - [SMALL_STATE(2223)] = 57495, - [SMALL_STATE(2224)] = 57509, - [SMALL_STATE(2225)] = 57523, - [SMALL_STATE(2226)] = 57537, - [SMALL_STATE(2227)] = 57551, - [SMALL_STATE(2228)] = 57565, - [SMALL_STATE(2229)] = 57579, - [SMALL_STATE(2230)] = 57593, - [SMALL_STATE(2231)] = 57607, - [SMALL_STATE(2232)] = 57621, - [SMALL_STATE(2233)] = 57635, - [SMALL_STATE(2234)] = 57649, - [SMALL_STATE(2235)] = 57663, - [SMALL_STATE(2236)] = 57677, - [SMALL_STATE(2237)] = 57691, - [SMALL_STATE(2238)] = 57705, - [SMALL_STATE(2239)] = 57719, - [SMALL_STATE(2240)] = 57733, - [SMALL_STATE(2241)] = 57747, - [SMALL_STATE(2242)] = 57761, - [SMALL_STATE(2243)] = 57775, - [SMALL_STATE(2244)] = 57789, - [SMALL_STATE(2245)] = 57803, - [SMALL_STATE(2246)] = 57817, - [SMALL_STATE(2247)] = 57831, - [SMALL_STATE(2248)] = 57845, - [SMALL_STATE(2249)] = 57859, - [SMALL_STATE(2250)] = 57873, - [SMALL_STATE(2251)] = 57887, - [SMALL_STATE(2252)] = 57901, - [SMALL_STATE(2253)] = 57915, - [SMALL_STATE(2254)] = 57929, - [SMALL_STATE(2255)] = 57943, - [SMALL_STATE(2256)] = 57957, - [SMALL_STATE(2257)] = 57971, - [SMALL_STATE(2258)] = 57985, - [SMALL_STATE(2259)] = 57999, - [SMALL_STATE(2260)] = 58013, - [SMALL_STATE(2261)] = 58027, - [SMALL_STATE(2262)] = 58041, - [SMALL_STATE(2263)] = 58055, - [SMALL_STATE(2264)] = 58069, - [SMALL_STATE(2265)] = 58083, - [SMALL_STATE(2266)] = 58097, - [SMALL_STATE(2267)] = 58111, - [SMALL_STATE(2268)] = 58125, - [SMALL_STATE(2269)] = 58139, - [SMALL_STATE(2270)] = 58153, - [SMALL_STATE(2271)] = 58167, - [SMALL_STATE(2272)] = 58181, - [SMALL_STATE(2273)] = 58195, - [SMALL_STATE(2274)] = 58209, - [SMALL_STATE(2275)] = 58223, - [SMALL_STATE(2276)] = 58237, - [SMALL_STATE(2277)] = 58251, - [SMALL_STATE(2278)] = 58265, - [SMALL_STATE(2279)] = 58279, - [SMALL_STATE(2280)] = 58293, - [SMALL_STATE(2281)] = 58307, - [SMALL_STATE(2282)] = 58321, - [SMALL_STATE(2283)] = 58335, - [SMALL_STATE(2284)] = 58349, - [SMALL_STATE(2285)] = 58363, - [SMALL_STATE(2286)] = 58377, - [SMALL_STATE(2287)] = 58391, - [SMALL_STATE(2288)] = 58405, - [SMALL_STATE(2289)] = 58419, - [SMALL_STATE(2290)] = 58433, - [SMALL_STATE(2291)] = 58447, - [SMALL_STATE(2292)] = 58461, - [SMALL_STATE(2293)] = 58475, - [SMALL_STATE(2294)] = 58489, - [SMALL_STATE(2295)] = 58503, - [SMALL_STATE(2296)] = 58517, - [SMALL_STATE(2297)] = 58531, - [SMALL_STATE(2298)] = 58545, - [SMALL_STATE(2299)] = 58559, - [SMALL_STATE(2300)] = 58573, - [SMALL_STATE(2301)] = 58587, - [SMALL_STATE(2302)] = 58601, - [SMALL_STATE(2303)] = 58615, - [SMALL_STATE(2304)] = 58629, - [SMALL_STATE(2305)] = 58643, - [SMALL_STATE(2306)] = 58657, - [SMALL_STATE(2307)] = 58671, - [SMALL_STATE(2308)] = 58685, - [SMALL_STATE(2309)] = 58699, - [SMALL_STATE(2310)] = 58713, - [SMALL_STATE(2311)] = 58727, - [SMALL_STATE(2312)] = 58741, - [SMALL_STATE(2313)] = 58755, - [SMALL_STATE(2314)] = 58769, - [SMALL_STATE(2315)] = 58783, - [SMALL_STATE(2316)] = 58797, - [SMALL_STATE(2317)] = 58811, - [SMALL_STATE(2318)] = 58825, - [SMALL_STATE(2319)] = 58839, - [SMALL_STATE(2320)] = 58853, - [SMALL_STATE(2321)] = 58867, - [SMALL_STATE(2322)] = 58881, - [SMALL_STATE(2323)] = 58895, - [SMALL_STATE(2324)] = 58909, - [SMALL_STATE(2325)] = 58923, - [SMALL_STATE(2326)] = 58937, - [SMALL_STATE(2327)] = 58951, - [SMALL_STATE(2328)] = 58965, - [SMALL_STATE(2329)] = 58979, - [SMALL_STATE(2330)] = 58993, - [SMALL_STATE(2331)] = 59007, - [SMALL_STATE(2332)] = 59021, - [SMALL_STATE(2333)] = 59035, - [SMALL_STATE(2334)] = 59049, - [SMALL_STATE(2335)] = 59063, - [SMALL_STATE(2336)] = 59077, - [SMALL_STATE(2337)] = 59091, - [SMALL_STATE(2338)] = 59105, - [SMALL_STATE(2339)] = 59119, - [SMALL_STATE(2340)] = 59133, - [SMALL_STATE(2341)] = 59147, - [SMALL_STATE(2342)] = 59161, - [SMALL_STATE(2343)] = 59175, - [SMALL_STATE(2344)] = 59189, - [SMALL_STATE(2345)] = 59203, - [SMALL_STATE(2346)] = 59217, - [SMALL_STATE(2347)] = 59231, - [SMALL_STATE(2348)] = 59245, - [SMALL_STATE(2349)] = 59259, - [SMALL_STATE(2350)] = 59273, - [SMALL_STATE(2351)] = 59287, - [SMALL_STATE(2352)] = 59301, - [SMALL_STATE(2353)] = 59315, - [SMALL_STATE(2354)] = 59329, - [SMALL_STATE(2355)] = 59343, - [SMALL_STATE(2356)] = 59357, - [SMALL_STATE(2357)] = 59371, - [SMALL_STATE(2358)] = 59385, - [SMALL_STATE(2359)] = 59399, - [SMALL_STATE(2360)] = 59413, - [SMALL_STATE(2361)] = 59427, - [SMALL_STATE(2362)] = 59441, - [SMALL_STATE(2363)] = 59455, - [SMALL_STATE(2364)] = 59469, - [SMALL_STATE(2365)] = 59483, - [SMALL_STATE(2366)] = 59497, - [SMALL_STATE(2367)] = 59511, - [SMALL_STATE(2368)] = 59525, - [SMALL_STATE(2369)] = 59539, - [SMALL_STATE(2370)] = 59553, - [SMALL_STATE(2371)] = 59567, - [SMALL_STATE(2372)] = 59581, - [SMALL_STATE(2373)] = 59595, - [SMALL_STATE(2374)] = 59609, - [SMALL_STATE(2375)] = 59623, - [SMALL_STATE(2376)] = 59637, - [SMALL_STATE(2377)] = 59651, - [SMALL_STATE(2378)] = 59665, - [SMALL_STATE(2379)] = 59679, - [SMALL_STATE(2380)] = 59693, - [SMALL_STATE(2381)] = 59707, - [SMALL_STATE(2382)] = 59721, - [SMALL_STATE(2383)] = 59735, - [SMALL_STATE(2384)] = 59749, - [SMALL_STATE(2385)] = 59763, - [SMALL_STATE(2386)] = 59777, - [SMALL_STATE(2387)] = 59791, - [SMALL_STATE(2388)] = 59805, - [SMALL_STATE(2389)] = 59819, - [SMALL_STATE(2390)] = 59833, - [SMALL_STATE(2391)] = 59847, - [SMALL_STATE(2392)] = 59861, - [SMALL_STATE(2393)] = 59875, - [SMALL_STATE(2394)] = 59889, - [SMALL_STATE(2395)] = 59903, - [SMALL_STATE(2396)] = 59917, - [SMALL_STATE(2397)] = 59931, - [SMALL_STATE(2398)] = 59945, - [SMALL_STATE(2399)] = 59959, - [SMALL_STATE(2400)] = 59973, - [SMALL_STATE(2401)] = 59987, - [SMALL_STATE(2402)] = 60001, - [SMALL_STATE(2403)] = 60015, - [SMALL_STATE(2404)] = 60029, - [SMALL_STATE(2405)] = 60043, - [SMALL_STATE(2406)] = 60057, - [SMALL_STATE(2407)] = 60071, - [SMALL_STATE(2408)] = 60085, - [SMALL_STATE(2409)] = 60099, - [SMALL_STATE(2410)] = 60113, - [SMALL_STATE(2411)] = 60127, - [SMALL_STATE(2412)] = 60141, - [SMALL_STATE(2413)] = 60155, - [SMALL_STATE(2414)] = 60169, - [SMALL_STATE(2415)] = 60183, - [SMALL_STATE(2416)] = 60197, - [SMALL_STATE(2417)] = 60211, - [SMALL_STATE(2418)] = 60225, - [SMALL_STATE(2419)] = 60239, - [SMALL_STATE(2420)] = 60253, - [SMALL_STATE(2421)] = 60267, - [SMALL_STATE(2422)] = 60281, - [SMALL_STATE(2423)] = 60295, - [SMALL_STATE(2424)] = 60309, - [SMALL_STATE(2425)] = 60323, - [SMALL_STATE(2426)] = 60337, - [SMALL_STATE(2427)] = 60351, - [SMALL_STATE(2428)] = 60365, - [SMALL_STATE(2429)] = 60379, - [SMALL_STATE(2430)] = 60393, - [SMALL_STATE(2431)] = 60407, - [SMALL_STATE(2432)] = 60421, - [SMALL_STATE(2433)] = 60435, - [SMALL_STATE(2434)] = 60449, - [SMALL_STATE(2435)] = 60463, - [SMALL_STATE(2436)] = 60477, - [SMALL_STATE(2437)] = 60491, - [SMALL_STATE(2438)] = 60505, - [SMALL_STATE(2439)] = 60519, - [SMALL_STATE(2440)] = 60533, - [SMALL_STATE(2441)] = 60547, - [SMALL_STATE(2442)] = 60561, - [SMALL_STATE(2443)] = 60575, - [SMALL_STATE(2444)] = 60589, - [SMALL_STATE(2445)] = 60603, - [SMALL_STATE(2446)] = 60617, - [SMALL_STATE(2447)] = 60631, - [SMALL_STATE(2448)] = 60645, - [SMALL_STATE(2449)] = 60659, - [SMALL_STATE(2450)] = 60673, - [SMALL_STATE(2451)] = 60687, - [SMALL_STATE(2452)] = 60701, - [SMALL_STATE(2453)] = 60715, - [SMALL_STATE(2454)] = 60729, - [SMALL_STATE(2455)] = 60743, - [SMALL_STATE(2456)] = 60757, - [SMALL_STATE(2457)] = 60771, - [SMALL_STATE(2458)] = 60785, - [SMALL_STATE(2459)] = 60799, - [SMALL_STATE(2460)] = 60813, - [SMALL_STATE(2461)] = 60827, - [SMALL_STATE(2462)] = 60841, - [SMALL_STATE(2463)] = 60855, - [SMALL_STATE(2464)] = 60869, - [SMALL_STATE(2465)] = 60883, - [SMALL_STATE(2466)] = 60897, - [SMALL_STATE(2467)] = 60911, - [SMALL_STATE(2468)] = 60925, - [SMALL_STATE(2469)] = 60939, - [SMALL_STATE(2470)] = 60953, - [SMALL_STATE(2471)] = 60967, - [SMALL_STATE(2472)] = 60981, - [SMALL_STATE(2473)] = 60995, - [SMALL_STATE(2474)] = 61009, - [SMALL_STATE(2475)] = 61023, - [SMALL_STATE(2476)] = 61037, - [SMALL_STATE(2477)] = 61051, - [SMALL_STATE(2478)] = 61065, - [SMALL_STATE(2479)] = 61079, - [SMALL_STATE(2480)] = 61093, - [SMALL_STATE(2481)] = 61107, - [SMALL_STATE(2482)] = 61121, - [SMALL_STATE(2483)] = 61135, - [SMALL_STATE(2484)] = 61149, - [SMALL_STATE(2485)] = 61163, - [SMALL_STATE(2486)] = 61177, - [SMALL_STATE(2487)] = 61191, - [SMALL_STATE(2488)] = 61205, - [SMALL_STATE(2489)] = 61219, - [SMALL_STATE(2490)] = 61233, - [SMALL_STATE(2491)] = 61247, - [SMALL_STATE(2492)] = 61261, - [SMALL_STATE(2493)] = 61275, - [SMALL_STATE(2494)] = 61289, - [SMALL_STATE(2495)] = 61303, - [SMALL_STATE(2496)] = 61317, - [SMALL_STATE(2497)] = 61331, - [SMALL_STATE(2498)] = 61345, - [SMALL_STATE(2499)] = 61359, - [SMALL_STATE(2500)] = 61373, - [SMALL_STATE(2501)] = 61387, - [SMALL_STATE(2502)] = 61401, - [SMALL_STATE(2503)] = 61415, - [SMALL_STATE(2504)] = 61429, - [SMALL_STATE(2505)] = 61443, - [SMALL_STATE(2506)] = 61457, - [SMALL_STATE(2507)] = 61471, - [SMALL_STATE(2508)] = 61485, - [SMALL_STATE(2509)] = 61499, - [SMALL_STATE(2510)] = 61513, - [SMALL_STATE(2511)] = 61527, - [SMALL_STATE(2512)] = 61541, - [SMALL_STATE(2513)] = 61555, - [SMALL_STATE(2514)] = 61569, - [SMALL_STATE(2515)] = 61583, - [SMALL_STATE(2516)] = 61597, - [SMALL_STATE(2517)] = 61611, - [SMALL_STATE(2518)] = 61625, - [SMALL_STATE(2519)] = 61639, - [SMALL_STATE(2520)] = 61653, - [SMALL_STATE(2521)] = 61667, - [SMALL_STATE(2522)] = 61681, - [SMALL_STATE(2523)] = 61695, - [SMALL_STATE(2524)] = 61709, - [SMALL_STATE(2525)] = 61723, - [SMALL_STATE(2526)] = 61737, - [SMALL_STATE(2527)] = 61751, - [SMALL_STATE(2528)] = 61765, - [SMALL_STATE(2529)] = 61779, - [SMALL_STATE(2530)] = 61793, - [SMALL_STATE(2531)] = 61807, - [SMALL_STATE(2532)] = 61821, - [SMALL_STATE(2533)] = 61835, - [SMALL_STATE(2534)] = 61849, - [SMALL_STATE(2535)] = 61863, - [SMALL_STATE(2536)] = 61877, - [SMALL_STATE(2537)] = 61891, - [SMALL_STATE(2538)] = 61905, - [SMALL_STATE(2539)] = 61919, - [SMALL_STATE(2540)] = 61933, - [SMALL_STATE(2541)] = 61947, - [SMALL_STATE(2542)] = 61961, - [SMALL_STATE(2543)] = 61975, - [SMALL_STATE(2544)] = 61989, - [SMALL_STATE(2545)] = 62003, - [SMALL_STATE(2546)] = 62017, - [SMALL_STATE(2547)] = 62031, - [SMALL_STATE(2548)] = 62045, - [SMALL_STATE(2549)] = 62059, - [SMALL_STATE(2550)] = 62073, - [SMALL_STATE(2551)] = 62087, - [SMALL_STATE(2552)] = 62101, - [SMALL_STATE(2553)] = 62115, - [SMALL_STATE(2554)] = 62129, - [SMALL_STATE(2555)] = 62143, - [SMALL_STATE(2556)] = 62157, - [SMALL_STATE(2557)] = 62171, - [SMALL_STATE(2558)] = 62185, - [SMALL_STATE(2559)] = 62199, - [SMALL_STATE(2560)] = 62213, - [SMALL_STATE(2561)] = 62227, - [SMALL_STATE(2562)] = 62241, - [SMALL_STATE(2563)] = 62255, - [SMALL_STATE(2564)] = 62269, - [SMALL_STATE(2565)] = 62283, - [SMALL_STATE(2566)] = 62297, - [SMALL_STATE(2567)] = 62311, - [SMALL_STATE(2568)] = 62325, - [SMALL_STATE(2569)] = 62339, - [SMALL_STATE(2570)] = 62353, - [SMALL_STATE(2571)] = 62367, - [SMALL_STATE(2572)] = 62381, - [SMALL_STATE(2573)] = 62395, - [SMALL_STATE(2574)] = 62409, - [SMALL_STATE(2575)] = 62423, - [SMALL_STATE(2576)] = 62437, - [SMALL_STATE(2577)] = 62451, - [SMALL_STATE(2578)] = 62465, - [SMALL_STATE(2579)] = 62479, - [SMALL_STATE(2580)] = 62493, - [SMALL_STATE(2581)] = 62507, - [SMALL_STATE(2582)] = 62521, - [SMALL_STATE(2583)] = 62535, - [SMALL_STATE(2584)] = 62549, - [SMALL_STATE(2585)] = 62563, - [SMALL_STATE(2586)] = 62577, - [SMALL_STATE(2587)] = 62591, - [SMALL_STATE(2588)] = 62605, - [SMALL_STATE(2589)] = 62619, - [SMALL_STATE(2590)] = 62633, - [SMALL_STATE(2591)] = 62647, - [SMALL_STATE(2592)] = 62661, - [SMALL_STATE(2593)] = 62675, - [SMALL_STATE(2594)] = 62689, - [SMALL_STATE(2595)] = 62703, - [SMALL_STATE(2596)] = 62717, - [SMALL_STATE(2597)] = 62731, - [SMALL_STATE(2598)] = 62745, - [SMALL_STATE(2599)] = 62759, - [SMALL_STATE(2600)] = 62773, - [SMALL_STATE(2601)] = 62787, - [SMALL_STATE(2602)] = 62801, - [SMALL_STATE(2603)] = 62815, - [SMALL_STATE(2604)] = 62829, - [SMALL_STATE(2605)] = 62843, - [SMALL_STATE(2606)] = 62857, - [SMALL_STATE(2607)] = 62871, - [SMALL_STATE(2608)] = 62885, - [SMALL_STATE(2609)] = 62899, - [SMALL_STATE(2610)] = 62913, - [SMALL_STATE(2611)] = 62927, - [SMALL_STATE(2612)] = 62941, - [SMALL_STATE(2613)] = 62955, - [SMALL_STATE(2614)] = 62969, - [SMALL_STATE(2615)] = 62983, - [SMALL_STATE(2616)] = 62997, - [SMALL_STATE(2617)] = 63011, - [SMALL_STATE(2618)] = 63025, - [SMALL_STATE(2619)] = 63039, - [SMALL_STATE(2620)] = 63053, - [SMALL_STATE(2621)] = 63067, - [SMALL_STATE(2622)] = 63081, - [SMALL_STATE(2623)] = 63095, - [SMALL_STATE(2624)] = 63109, - [SMALL_STATE(2625)] = 63123, - [SMALL_STATE(2626)] = 63137, - [SMALL_STATE(2627)] = 63151, - [SMALL_STATE(2628)] = 63165, - [SMALL_STATE(2629)] = 63179, - [SMALL_STATE(2630)] = 63193, - [SMALL_STATE(2631)] = 63207, - [SMALL_STATE(2632)] = 63221, - [SMALL_STATE(2633)] = 63235, - [SMALL_STATE(2634)] = 63249, - [SMALL_STATE(2635)] = 63263, - [SMALL_STATE(2636)] = 63277, - [SMALL_STATE(2637)] = 63291, - [SMALL_STATE(2638)] = 63305, - [SMALL_STATE(2639)] = 63319, - [SMALL_STATE(2640)] = 63333, - [SMALL_STATE(2641)] = 63347, - [SMALL_STATE(2642)] = 63361, - [SMALL_STATE(2643)] = 63375, - [SMALL_STATE(2644)] = 63389, - [SMALL_STATE(2645)] = 63403, - [SMALL_STATE(2646)] = 63417, - [SMALL_STATE(2647)] = 63431, - [SMALL_STATE(2648)] = 63445, - [SMALL_STATE(2649)] = 63459, - [SMALL_STATE(2650)] = 63473, - [SMALL_STATE(2651)] = 63487, - [SMALL_STATE(2652)] = 63501, - [SMALL_STATE(2653)] = 63515, - [SMALL_STATE(2654)] = 63529, - [SMALL_STATE(2655)] = 63543, - [SMALL_STATE(2656)] = 63557, - [SMALL_STATE(2657)] = 63571, - [SMALL_STATE(2658)] = 63585, - [SMALL_STATE(2659)] = 63599, - [SMALL_STATE(2660)] = 63613, - [SMALL_STATE(2661)] = 63627, - [SMALL_STATE(2662)] = 63641, - [SMALL_STATE(2663)] = 63655, - [SMALL_STATE(2664)] = 63669, - [SMALL_STATE(2665)] = 63683, - [SMALL_STATE(2666)] = 63697, - [SMALL_STATE(2667)] = 63711, - [SMALL_STATE(2668)] = 63725, - [SMALL_STATE(2669)] = 63739, - [SMALL_STATE(2670)] = 63753, - [SMALL_STATE(2671)] = 63767, - [SMALL_STATE(2672)] = 63781, - [SMALL_STATE(2673)] = 63795, - [SMALL_STATE(2674)] = 63809, - [SMALL_STATE(2675)] = 63823, - [SMALL_STATE(2676)] = 63837, - [SMALL_STATE(2677)] = 63851, - [SMALL_STATE(2678)] = 63865, - [SMALL_STATE(2679)] = 63879, - [SMALL_STATE(2680)] = 63893, - [SMALL_STATE(2681)] = 63907, - [SMALL_STATE(2682)] = 63921, - [SMALL_STATE(2683)] = 63935, - [SMALL_STATE(2684)] = 63949, - [SMALL_STATE(2685)] = 63963, - [SMALL_STATE(2686)] = 63977, - [SMALL_STATE(2687)] = 63991, - [SMALL_STATE(2688)] = 64005, - [SMALL_STATE(2689)] = 64019, - [SMALL_STATE(2690)] = 64033, - [SMALL_STATE(2691)] = 64047, - [SMALL_STATE(2692)] = 64061, - [SMALL_STATE(2693)] = 64075, - [SMALL_STATE(2694)] = 64089, - [SMALL_STATE(2695)] = 64103, - [SMALL_STATE(2696)] = 64117, - [SMALL_STATE(2697)] = 64131, - [SMALL_STATE(2698)] = 64145, - [SMALL_STATE(2699)] = 64159, - [SMALL_STATE(2700)] = 64173, - [SMALL_STATE(2701)] = 64187, - [SMALL_STATE(2702)] = 64201, - [SMALL_STATE(2703)] = 64215, - [SMALL_STATE(2704)] = 64229, - [SMALL_STATE(2705)] = 64243, - [SMALL_STATE(2706)] = 64257, - [SMALL_STATE(2707)] = 64271, - [SMALL_STATE(2708)] = 64285, - [SMALL_STATE(2709)] = 64299, - [SMALL_STATE(2710)] = 64313, - [SMALL_STATE(2711)] = 64327, - [SMALL_STATE(2712)] = 64341, - [SMALL_STATE(2713)] = 64355, - [SMALL_STATE(2714)] = 64369, - [SMALL_STATE(2715)] = 64383, - [SMALL_STATE(2716)] = 64397, - [SMALL_STATE(2717)] = 64411, - [SMALL_STATE(2718)] = 64425, - [SMALL_STATE(2719)] = 64439, - [SMALL_STATE(2720)] = 64453, - [SMALL_STATE(2721)] = 64467, - [SMALL_STATE(2722)] = 64481, - [SMALL_STATE(2723)] = 64495, - [SMALL_STATE(2724)] = 64509, - [SMALL_STATE(2725)] = 64523, - [SMALL_STATE(2726)] = 64537, - [SMALL_STATE(2727)] = 64551, - [SMALL_STATE(2728)] = 64565, - [SMALL_STATE(2729)] = 64579, - [SMALL_STATE(2730)] = 64593, - [SMALL_STATE(2731)] = 64607, - [SMALL_STATE(2732)] = 64621, - [SMALL_STATE(2733)] = 64635, - [SMALL_STATE(2734)] = 64649, - [SMALL_STATE(2735)] = 64663, - [SMALL_STATE(2736)] = 64677, - [SMALL_STATE(2737)] = 64691, - [SMALL_STATE(2738)] = 64705, - [SMALL_STATE(2739)] = 64719, - [SMALL_STATE(2740)] = 64733, - [SMALL_STATE(2741)] = 64747, - [SMALL_STATE(2742)] = 64761, - [SMALL_STATE(2743)] = 64775, - [SMALL_STATE(2744)] = 64789, - [SMALL_STATE(2745)] = 64803, - [SMALL_STATE(2746)] = 64817, - [SMALL_STATE(2747)] = 64831, - [SMALL_STATE(2748)] = 64845, - [SMALL_STATE(2749)] = 64859, - [SMALL_STATE(2750)] = 64873, - [SMALL_STATE(2751)] = 64887, - [SMALL_STATE(2752)] = 64901, - [SMALL_STATE(2753)] = 64915, - [SMALL_STATE(2754)] = 64929, - [SMALL_STATE(2755)] = 64943, - [SMALL_STATE(2756)] = 64957, - [SMALL_STATE(2757)] = 64971, - [SMALL_STATE(2758)] = 64985, - [SMALL_STATE(2759)] = 64999, - [SMALL_STATE(2760)] = 65013, - [SMALL_STATE(2761)] = 65027, - [SMALL_STATE(2762)] = 65041, - [SMALL_STATE(2763)] = 65055, - [SMALL_STATE(2764)] = 65069, - [SMALL_STATE(2765)] = 65083, - [SMALL_STATE(2766)] = 65097, - [SMALL_STATE(2767)] = 65111, - [SMALL_STATE(2768)] = 65125, - [SMALL_STATE(2769)] = 65139, - [SMALL_STATE(2770)] = 65153, - [SMALL_STATE(2771)] = 65167, - [SMALL_STATE(2772)] = 65181, - [SMALL_STATE(2773)] = 65195, - [SMALL_STATE(2774)] = 65209, - [SMALL_STATE(2775)] = 65223, - [SMALL_STATE(2776)] = 65237, - [SMALL_STATE(2777)] = 65251, - [SMALL_STATE(2778)] = 65265, - [SMALL_STATE(2779)] = 65279, - [SMALL_STATE(2780)] = 65293, - [SMALL_STATE(2781)] = 65307, - [SMALL_STATE(2782)] = 65321, - [SMALL_STATE(2783)] = 65335, - [SMALL_STATE(2784)] = 65349, - [SMALL_STATE(2785)] = 65363, - [SMALL_STATE(2786)] = 65377, - [SMALL_STATE(2787)] = 65391, - [SMALL_STATE(2788)] = 65405, - [SMALL_STATE(2789)] = 65419, - [SMALL_STATE(2790)] = 65433, - [SMALL_STATE(2791)] = 65447, - [SMALL_STATE(2792)] = 65461, - [SMALL_STATE(2793)] = 65475, - [SMALL_STATE(2794)] = 65489, - [SMALL_STATE(2795)] = 65503, - [SMALL_STATE(2796)] = 65517, - [SMALL_STATE(2797)] = 65531, - [SMALL_STATE(2798)] = 65545, - [SMALL_STATE(2799)] = 65559, - [SMALL_STATE(2800)] = 65573, - [SMALL_STATE(2801)] = 65587, - [SMALL_STATE(2802)] = 65601, - [SMALL_STATE(2803)] = 65615, - [SMALL_STATE(2804)] = 65629, - [SMALL_STATE(2805)] = 65643, - [SMALL_STATE(2806)] = 65657, - [SMALL_STATE(2807)] = 65671, - [SMALL_STATE(2808)] = 65685, - [SMALL_STATE(2809)] = 65699, - [SMALL_STATE(2810)] = 65713, - [SMALL_STATE(2811)] = 65727, - [SMALL_STATE(2812)] = 65741, - [SMALL_STATE(2813)] = 65755, - [SMALL_STATE(2814)] = 65769, - [SMALL_STATE(2815)] = 65783, - [SMALL_STATE(2816)] = 65797, - [SMALL_STATE(2817)] = 65811, - [SMALL_STATE(2818)] = 65825, - [SMALL_STATE(2819)] = 65839, - [SMALL_STATE(2820)] = 65853, - [SMALL_STATE(2821)] = 65867, - [SMALL_STATE(2822)] = 65881, - [SMALL_STATE(2823)] = 65895, - [SMALL_STATE(2824)] = 65909, - [SMALL_STATE(2825)] = 65923, - [SMALL_STATE(2826)] = 65937, - [SMALL_STATE(2827)] = 65951, - [SMALL_STATE(2828)] = 65965, - [SMALL_STATE(2829)] = 65979, - [SMALL_STATE(2830)] = 65993, - [SMALL_STATE(2831)] = 66007, - [SMALL_STATE(2832)] = 66021, - [SMALL_STATE(2833)] = 66035, - [SMALL_STATE(2834)] = 66049, - [SMALL_STATE(2835)] = 66063, - [SMALL_STATE(2836)] = 66077, - [SMALL_STATE(2837)] = 66091, - [SMALL_STATE(2838)] = 66105, - [SMALL_STATE(2839)] = 66119, - [SMALL_STATE(2840)] = 66133, - [SMALL_STATE(2841)] = 66147, - [SMALL_STATE(2842)] = 66161, - [SMALL_STATE(2843)] = 66175, - [SMALL_STATE(2844)] = 66189, - [SMALL_STATE(2845)] = 66203, - [SMALL_STATE(2846)] = 66217, - [SMALL_STATE(2847)] = 66231, - [SMALL_STATE(2848)] = 66245, - [SMALL_STATE(2849)] = 66259, - [SMALL_STATE(2850)] = 66273, - [SMALL_STATE(2851)] = 66287, - [SMALL_STATE(2852)] = 66301, - [SMALL_STATE(2853)] = 66315, - [SMALL_STATE(2854)] = 66329, - [SMALL_STATE(2855)] = 66343, - [SMALL_STATE(2856)] = 66357, - [SMALL_STATE(2857)] = 66371, - [SMALL_STATE(2858)] = 66385, - [SMALL_STATE(2859)] = 66399, - [SMALL_STATE(2860)] = 66413, - [SMALL_STATE(2861)] = 66427, - [SMALL_STATE(2862)] = 66441, - [SMALL_STATE(2863)] = 66455, - [SMALL_STATE(2864)] = 66469, - [SMALL_STATE(2865)] = 66483, - [SMALL_STATE(2866)] = 66497, - [SMALL_STATE(2867)] = 66511, - [SMALL_STATE(2868)] = 66525, - [SMALL_STATE(2869)] = 66539, - [SMALL_STATE(2870)] = 66553, - [SMALL_STATE(2871)] = 66567, - [SMALL_STATE(2872)] = 66581, - [SMALL_STATE(2873)] = 66595, - [SMALL_STATE(2874)] = 66609, - [SMALL_STATE(2875)] = 66623, - [SMALL_STATE(2876)] = 66637, - [SMALL_STATE(2877)] = 66651, - [SMALL_STATE(2878)] = 66665, - [SMALL_STATE(2879)] = 66679, - [SMALL_STATE(2880)] = 66693, - [SMALL_STATE(2881)] = 66707, - [SMALL_STATE(2882)] = 66721, - [SMALL_STATE(2883)] = 66735, - [SMALL_STATE(2884)] = 66749, - [SMALL_STATE(2885)] = 66763, - [SMALL_STATE(2886)] = 66777, - [SMALL_STATE(2887)] = 66791, - [SMALL_STATE(2888)] = 66805, - [SMALL_STATE(2889)] = 66819, - [SMALL_STATE(2890)] = 66833, - [SMALL_STATE(2891)] = 66847, - [SMALL_STATE(2892)] = 66861, - [SMALL_STATE(2893)] = 66875, - [SMALL_STATE(2894)] = 66889, - [SMALL_STATE(2895)] = 66903, - [SMALL_STATE(2896)] = 66917, - [SMALL_STATE(2897)] = 66931, - [SMALL_STATE(2898)] = 66945, - [SMALL_STATE(2899)] = 66959, - [SMALL_STATE(2900)] = 66973, - [SMALL_STATE(2901)] = 66987, - [SMALL_STATE(2902)] = 67001, - [SMALL_STATE(2903)] = 67015, - [SMALL_STATE(2904)] = 67029, - [SMALL_STATE(2905)] = 67043, - [SMALL_STATE(2906)] = 67057, - [SMALL_STATE(2907)] = 67071, - [SMALL_STATE(2908)] = 67085, - [SMALL_STATE(2909)] = 67099, - [SMALL_STATE(2910)] = 67113, - [SMALL_STATE(2911)] = 67127, - [SMALL_STATE(2912)] = 67141, - [SMALL_STATE(2913)] = 67155, - [SMALL_STATE(2914)] = 67169, - [SMALL_STATE(2915)] = 67183, - [SMALL_STATE(2916)] = 67197, - [SMALL_STATE(2917)] = 67211, - [SMALL_STATE(2918)] = 67225, - [SMALL_STATE(2919)] = 67239, - [SMALL_STATE(2920)] = 67253, - [SMALL_STATE(2921)] = 67267, - [SMALL_STATE(2922)] = 67281, - [SMALL_STATE(2923)] = 67295, - [SMALL_STATE(2924)] = 67309, - [SMALL_STATE(2925)] = 67323, - [SMALL_STATE(2926)] = 67337, - [SMALL_STATE(2927)] = 67351, - [SMALL_STATE(2928)] = 67365, - [SMALL_STATE(2929)] = 67379, - [SMALL_STATE(2930)] = 67393, - [SMALL_STATE(2931)] = 67407, - [SMALL_STATE(2932)] = 67421, - [SMALL_STATE(2933)] = 67435, - [SMALL_STATE(2934)] = 67449, - [SMALL_STATE(2935)] = 67463, - [SMALL_STATE(2936)] = 67477, - [SMALL_STATE(2937)] = 67491, - [SMALL_STATE(2938)] = 67505, - [SMALL_STATE(2939)] = 67519, - [SMALL_STATE(2940)] = 67533, - [SMALL_STATE(2941)] = 67547, - [SMALL_STATE(2942)] = 67561, - [SMALL_STATE(2943)] = 67575, - [SMALL_STATE(2944)] = 67589, - [SMALL_STATE(2945)] = 67603, - [SMALL_STATE(2946)] = 67617, - [SMALL_STATE(2947)] = 67631, - [SMALL_STATE(2948)] = 67645, - [SMALL_STATE(2949)] = 67659, - [SMALL_STATE(2950)] = 67673, - [SMALL_STATE(2951)] = 67687, - [SMALL_STATE(2952)] = 67701, - [SMALL_STATE(2953)] = 67715, - [SMALL_STATE(2954)] = 67729, - [SMALL_STATE(2955)] = 67743, - [SMALL_STATE(2956)] = 67757, - [SMALL_STATE(2957)] = 67771, - [SMALL_STATE(2958)] = 67785, - [SMALL_STATE(2959)] = 67799, - [SMALL_STATE(2960)] = 67813, - [SMALL_STATE(2961)] = 67827, - [SMALL_STATE(2962)] = 67841, - [SMALL_STATE(2963)] = 67855, - [SMALL_STATE(2964)] = 67869, - [SMALL_STATE(2965)] = 67883, - [SMALL_STATE(2966)] = 67897, - [SMALL_STATE(2967)] = 67911, - [SMALL_STATE(2968)] = 67925, - [SMALL_STATE(2969)] = 67939, - [SMALL_STATE(2970)] = 67953, - [SMALL_STATE(2971)] = 67967, - [SMALL_STATE(2972)] = 67981, - [SMALL_STATE(2973)] = 67995, - [SMALL_STATE(2974)] = 68009, - [SMALL_STATE(2975)] = 68023, - [SMALL_STATE(2976)] = 68037, - [SMALL_STATE(2977)] = 68051, - [SMALL_STATE(2978)] = 68065, - [SMALL_STATE(2979)] = 68079, - [SMALL_STATE(2980)] = 68093, - [SMALL_STATE(2981)] = 68107, - [SMALL_STATE(2982)] = 68121, - [SMALL_STATE(2983)] = 68135, - [SMALL_STATE(2984)] = 68149, - [SMALL_STATE(2985)] = 68163, - [SMALL_STATE(2986)] = 68177, - [SMALL_STATE(2987)] = 68191, - [SMALL_STATE(2988)] = 68205, - [SMALL_STATE(2989)] = 68219, - [SMALL_STATE(2990)] = 68233, - [SMALL_STATE(2991)] = 68247, - [SMALL_STATE(2992)] = 68261, - [SMALL_STATE(2993)] = 68275, - [SMALL_STATE(2994)] = 68289, - [SMALL_STATE(2995)] = 68303, - [SMALL_STATE(2996)] = 68317, - [SMALL_STATE(2997)] = 68331, - [SMALL_STATE(2998)] = 68345, - [SMALL_STATE(2999)] = 68359, - [SMALL_STATE(3000)] = 68373, - [SMALL_STATE(3001)] = 68387, - [SMALL_STATE(3002)] = 68401, - [SMALL_STATE(3003)] = 68415, - [SMALL_STATE(3004)] = 68429, - [SMALL_STATE(3005)] = 68443, - [SMALL_STATE(3006)] = 68457, - [SMALL_STATE(3007)] = 68471, - [SMALL_STATE(3008)] = 68485, - [SMALL_STATE(3009)] = 68499, - [SMALL_STATE(3010)] = 68513, - [SMALL_STATE(3011)] = 68527, - [SMALL_STATE(3012)] = 68541, - [SMALL_STATE(3013)] = 68555, - [SMALL_STATE(3014)] = 68569, - [SMALL_STATE(3015)] = 68583, - [SMALL_STATE(3016)] = 68597, - [SMALL_STATE(3017)] = 68611, - [SMALL_STATE(3018)] = 68625, - [SMALL_STATE(3019)] = 68639, - [SMALL_STATE(3020)] = 68653, - [SMALL_STATE(3021)] = 68667, - [SMALL_STATE(3022)] = 68681, - [SMALL_STATE(3023)] = 68695, - [SMALL_STATE(3024)] = 68709, - [SMALL_STATE(3025)] = 68723, - [SMALL_STATE(3026)] = 68737, - [SMALL_STATE(3027)] = 68751, - [SMALL_STATE(3028)] = 68765, - [SMALL_STATE(3029)] = 68779, - [SMALL_STATE(3030)] = 68793, - [SMALL_STATE(3031)] = 68807, - [SMALL_STATE(3032)] = 68821, - [SMALL_STATE(3033)] = 68835, - [SMALL_STATE(3034)] = 68849, - [SMALL_STATE(3035)] = 68863, - [SMALL_STATE(3036)] = 68877, - [SMALL_STATE(3037)] = 68891, - [SMALL_STATE(3038)] = 68905, - [SMALL_STATE(3039)] = 68919, - [SMALL_STATE(3040)] = 68933, - [SMALL_STATE(3041)] = 68947, - [SMALL_STATE(3042)] = 68961, - [SMALL_STATE(3043)] = 68975, - [SMALL_STATE(3044)] = 68989, - [SMALL_STATE(3045)] = 69003, - [SMALL_STATE(3046)] = 69017, - [SMALL_STATE(3047)] = 69031, - [SMALL_STATE(3048)] = 69045, - [SMALL_STATE(3049)] = 69059, - [SMALL_STATE(3050)] = 69073, - [SMALL_STATE(3051)] = 69087, - [SMALL_STATE(3052)] = 69101, - [SMALL_STATE(3053)] = 69115, - [SMALL_STATE(3054)] = 69129, - [SMALL_STATE(3055)] = 69143, - [SMALL_STATE(3056)] = 69157, - [SMALL_STATE(3057)] = 69171, - [SMALL_STATE(3058)] = 69185, - [SMALL_STATE(3059)] = 69199, - [SMALL_STATE(3060)] = 69213, - [SMALL_STATE(3061)] = 69227, - [SMALL_STATE(3062)] = 69241, - [SMALL_STATE(3063)] = 69255, - [SMALL_STATE(3064)] = 69269, - [SMALL_STATE(3065)] = 69283, - [SMALL_STATE(3066)] = 69297, - [SMALL_STATE(3067)] = 69311, - [SMALL_STATE(3068)] = 69325, - [SMALL_STATE(3069)] = 69339, - [SMALL_STATE(3070)] = 69353, - [SMALL_STATE(3071)] = 69367, - [SMALL_STATE(3072)] = 69381, - [SMALL_STATE(3073)] = 69395, - [SMALL_STATE(3074)] = 69409, - [SMALL_STATE(3075)] = 69423, - [SMALL_STATE(3076)] = 69437, - [SMALL_STATE(3077)] = 69451, - [SMALL_STATE(3078)] = 69465, - [SMALL_STATE(3079)] = 69479, - [SMALL_STATE(3080)] = 69493, - [SMALL_STATE(3081)] = 69507, - [SMALL_STATE(3082)] = 69521, - [SMALL_STATE(3083)] = 69535, - [SMALL_STATE(3084)] = 69549, - [SMALL_STATE(3085)] = 69563, - [SMALL_STATE(3086)] = 69577, - [SMALL_STATE(3087)] = 69591, - [SMALL_STATE(3088)] = 69605, - [SMALL_STATE(3089)] = 69619, - [SMALL_STATE(3090)] = 69633, - [SMALL_STATE(3091)] = 69647, - [SMALL_STATE(3092)] = 69661, - [SMALL_STATE(3093)] = 69675, - [SMALL_STATE(3094)] = 69689, - [SMALL_STATE(3095)] = 69703, - [SMALL_STATE(3096)] = 69717, - [SMALL_STATE(3097)] = 69731, - [SMALL_STATE(3098)] = 69745, - [SMALL_STATE(3099)] = 69759, - [SMALL_STATE(3100)] = 69773, - [SMALL_STATE(3101)] = 69787, - [SMALL_STATE(3102)] = 69801, - [SMALL_STATE(3103)] = 69815, - [SMALL_STATE(3104)] = 69829, - [SMALL_STATE(3105)] = 69843, - [SMALL_STATE(3106)] = 69857, - [SMALL_STATE(3107)] = 69871, - [SMALL_STATE(3108)] = 69885, - [SMALL_STATE(3109)] = 69899, - [SMALL_STATE(3110)] = 69913, - [SMALL_STATE(3111)] = 69927, - [SMALL_STATE(3112)] = 69941, - [SMALL_STATE(3113)] = 69955, - [SMALL_STATE(3114)] = 69969, - [SMALL_STATE(3115)] = 69983, - [SMALL_STATE(3116)] = 69997, - [SMALL_STATE(3117)] = 70011, - [SMALL_STATE(3118)] = 70025, - [SMALL_STATE(3119)] = 70039, - [SMALL_STATE(3120)] = 70053, - [SMALL_STATE(3121)] = 70067, - [SMALL_STATE(3122)] = 70081, - [SMALL_STATE(3123)] = 70095, - [SMALL_STATE(3124)] = 70109, - [SMALL_STATE(3125)] = 70123, - [SMALL_STATE(3126)] = 70137, - [SMALL_STATE(3127)] = 70151, - [SMALL_STATE(3128)] = 70165, - [SMALL_STATE(3129)] = 70179, - [SMALL_STATE(3130)] = 70193, - [SMALL_STATE(3131)] = 70207, - [SMALL_STATE(3132)] = 70221, - [SMALL_STATE(3133)] = 70235, - [SMALL_STATE(3134)] = 70249, - [SMALL_STATE(3135)] = 70263, - [SMALL_STATE(3136)] = 70277, - [SMALL_STATE(3137)] = 70291, - [SMALL_STATE(3138)] = 70305, - [SMALL_STATE(3139)] = 70319, - [SMALL_STATE(3140)] = 70333, - [SMALL_STATE(3141)] = 70347, - [SMALL_STATE(3142)] = 70361, - [SMALL_STATE(3143)] = 70375, - [SMALL_STATE(3144)] = 70389, - [SMALL_STATE(3145)] = 70403, - [SMALL_STATE(3146)] = 70417, - [SMALL_STATE(3147)] = 70431, - [SMALL_STATE(3148)] = 70445, - [SMALL_STATE(3149)] = 70459, - [SMALL_STATE(3150)] = 70473, - [SMALL_STATE(3151)] = 70487, - [SMALL_STATE(3152)] = 70501, - [SMALL_STATE(3153)] = 70515, - [SMALL_STATE(3154)] = 70529, - [SMALL_STATE(3155)] = 70543, - [SMALL_STATE(3156)] = 70557, - [SMALL_STATE(3157)] = 70571, - [SMALL_STATE(3158)] = 70585, - [SMALL_STATE(3159)] = 70599, - [SMALL_STATE(3160)] = 70613, - [SMALL_STATE(3161)] = 70627, - [SMALL_STATE(3162)] = 70641, - [SMALL_STATE(3163)] = 70655, - [SMALL_STATE(3164)] = 70669, - [SMALL_STATE(3165)] = 70683, - [SMALL_STATE(3166)] = 70687, + [SMALL_STATE(32)] = 115, + [SMALL_STATE(33)] = 228, + [SMALL_STATE(34)] = 340, + [SMALL_STATE(35)] = 452, + [SMALL_STATE(36)] = 564, + [SMALL_STATE(37)] = 676, + [SMALL_STATE(38)] = 788, + [SMALL_STATE(39)] = 834, + [SMALL_STATE(40)] = 880, + [SMALL_STATE(41)] = 926, + [SMALL_STATE(42)] = 965, + [SMALL_STATE(43)] = 1004, + [SMALL_STATE(44)] = 1043, + [SMALL_STATE(45)] = 1082, + [SMALL_STATE(46)] = 1121, + [SMALL_STATE(47)] = 1160, + [SMALL_STATE(48)] = 1199, + [SMALL_STATE(49)] = 1238, + [SMALL_STATE(50)] = 1277, + [SMALL_STATE(51)] = 1316, + [SMALL_STATE(52)] = 1355, + [SMALL_STATE(53)] = 1394, + [SMALL_STATE(54)] = 1433, + [SMALL_STATE(55)] = 1472, + [SMALL_STATE(56)] = 1511, + [SMALL_STATE(57)] = 1550, + [SMALL_STATE(58)] = 1589, + [SMALL_STATE(59)] = 1628, + [SMALL_STATE(60)] = 1667, + [SMALL_STATE(61)] = 1706, + [SMALL_STATE(62)] = 1745, + [SMALL_STATE(63)] = 1784, + [SMALL_STATE(64)] = 1823, + [SMALL_STATE(65)] = 1862, + [SMALL_STATE(66)] = 1901, + [SMALL_STATE(67)] = 1940, + [SMALL_STATE(68)] = 1979, + [SMALL_STATE(69)] = 2018, + [SMALL_STATE(70)] = 2057, + [SMALL_STATE(71)] = 2096, + [SMALL_STATE(72)] = 2135, + [SMALL_STATE(73)] = 2174, + [SMALL_STATE(74)] = 2213, + [SMALL_STATE(75)] = 2252, + [SMALL_STATE(76)] = 2291, + [SMALL_STATE(77)] = 2330, + [SMALL_STATE(78)] = 2369, + [SMALL_STATE(79)] = 2408, + [SMALL_STATE(80)] = 2447, + [SMALL_STATE(81)] = 2486, + [SMALL_STATE(82)] = 2527, + [SMALL_STATE(83)] = 2566, + [SMALL_STATE(84)] = 2605, + [SMALL_STATE(85)] = 2644, + [SMALL_STATE(86)] = 2683, + [SMALL_STATE(87)] = 2722, + [SMALL_STATE(88)] = 2761, + [SMALL_STATE(89)] = 2800, + [SMALL_STATE(90)] = 2839, + [SMALL_STATE(91)] = 2878, + [SMALL_STATE(92)] = 2917, + [SMALL_STATE(93)] = 2956, + [SMALL_STATE(94)] = 2995, + [SMALL_STATE(95)] = 3034, + [SMALL_STATE(96)] = 3073, + [SMALL_STATE(97)] = 3112, + [SMALL_STATE(98)] = 3151, + [SMALL_STATE(99)] = 3190, + [SMALL_STATE(100)] = 3229, + [SMALL_STATE(101)] = 3268, + [SMALL_STATE(102)] = 3307, + [SMALL_STATE(103)] = 3346, + [SMALL_STATE(104)] = 3385, + [SMALL_STATE(105)] = 3425, + [SMALL_STATE(106)] = 3465, + [SMALL_STATE(107)] = 3502, + [SMALL_STATE(108)] = 3539, + [SMALL_STATE(109)] = 3576, + [SMALL_STATE(110)] = 3613, + [SMALL_STATE(111)] = 3650, + [SMALL_STATE(112)] = 3687, + [SMALL_STATE(113)] = 3724, + [SMALL_STATE(114)] = 3761, + [SMALL_STATE(115)] = 3798, + [SMALL_STATE(116)] = 3835, + [SMALL_STATE(117)] = 3872, + [SMALL_STATE(118)] = 3909, + [SMALL_STATE(119)] = 3946, + [SMALL_STATE(120)] = 3983, + [SMALL_STATE(121)] = 4020, + [SMALL_STATE(122)] = 4057, + [SMALL_STATE(123)] = 4094, + [SMALL_STATE(124)] = 4131, + [SMALL_STATE(125)] = 4168, + [SMALL_STATE(126)] = 4205, + [SMALL_STATE(127)] = 4242, + [SMALL_STATE(128)] = 4279, + [SMALL_STATE(129)] = 4316, + [SMALL_STATE(130)] = 4353, + [SMALL_STATE(131)] = 4390, + [SMALL_STATE(132)] = 4427, + [SMALL_STATE(133)] = 4464, + [SMALL_STATE(134)] = 4501, + [SMALL_STATE(135)] = 4538, + [SMALL_STATE(136)] = 4575, + [SMALL_STATE(137)] = 4612, + [SMALL_STATE(138)] = 4649, + [SMALL_STATE(139)] = 4686, + [SMALL_STATE(140)] = 4723, + [SMALL_STATE(141)] = 4760, + [SMALL_STATE(142)] = 4797, + [SMALL_STATE(143)] = 4834, + [SMALL_STATE(144)] = 4871, + [SMALL_STATE(145)] = 4908, + [SMALL_STATE(146)] = 4945, + [SMALL_STATE(147)] = 4982, + [SMALL_STATE(148)] = 5019, + [SMALL_STATE(149)] = 5056, + [SMALL_STATE(150)] = 5093, + [SMALL_STATE(151)] = 5130, + [SMALL_STATE(152)] = 5167, + [SMALL_STATE(153)] = 5204, + [SMALL_STATE(154)] = 5241, + [SMALL_STATE(155)] = 5278, + [SMALL_STATE(156)] = 5315, + [SMALL_STATE(157)] = 5352, + [SMALL_STATE(158)] = 5389, + [SMALL_STATE(159)] = 5426, + [SMALL_STATE(160)] = 5463, + [SMALL_STATE(161)] = 5500, + [SMALL_STATE(162)] = 5537, + [SMALL_STATE(163)] = 5574, + [SMALL_STATE(164)] = 5611, + [SMALL_STATE(165)] = 5648, + [SMALL_STATE(166)] = 5685, + [SMALL_STATE(167)] = 5722, + [SMALL_STATE(168)] = 5759, + [SMALL_STATE(169)] = 5796, + [SMALL_STATE(170)] = 5833, + [SMALL_STATE(171)] = 5870, + [SMALL_STATE(172)] = 5907, + [SMALL_STATE(173)] = 5944, + [SMALL_STATE(174)] = 5981, + [SMALL_STATE(175)] = 6018, + [SMALL_STATE(176)] = 6055, + [SMALL_STATE(177)] = 6092, + [SMALL_STATE(178)] = 6129, + [SMALL_STATE(179)] = 6166, + [SMALL_STATE(180)] = 6203, + [SMALL_STATE(181)] = 6240, + [SMALL_STATE(182)] = 6277, + [SMALL_STATE(183)] = 6314, + [SMALL_STATE(184)] = 6351, + [SMALL_STATE(185)] = 6388, + [SMALL_STATE(186)] = 6425, + [SMALL_STATE(187)] = 6462, + [SMALL_STATE(188)] = 6499, + [SMALL_STATE(189)] = 6536, + [SMALL_STATE(190)] = 6573, + [SMALL_STATE(191)] = 6610, + [SMALL_STATE(192)] = 6647, + [SMALL_STATE(193)] = 6684, + [SMALL_STATE(194)] = 6721, + [SMALL_STATE(195)] = 6758, + [SMALL_STATE(196)] = 6795, + [SMALL_STATE(197)] = 6832, + [SMALL_STATE(198)] = 6869, + [SMALL_STATE(199)] = 6906, + [SMALL_STATE(200)] = 6943, + [SMALL_STATE(201)] = 6980, + [SMALL_STATE(202)] = 7017, + [SMALL_STATE(203)] = 7054, + [SMALL_STATE(204)] = 7091, + [SMALL_STATE(205)] = 7128, + [SMALL_STATE(206)] = 7165, + [SMALL_STATE(207)] = 7202, + [SMALL_STATE(208)] = 7239, + [SMALL_STATE(209)] = 7276, + [SMALL_STATE(210)] = 7313, + [SMALL_STATE(211)] = 7350, + [SMALL_STATE(212)] = 7387, + [SMALL_STATE(213)] = 7424, + [SMALL_STATE(214)] = 7461, + [SMALL_STATE(215)] = 7498, + [SMALL_STATE(216)] = 7535, + [SMALL_STATE(217)] = 7572, + [SMALL_STATE(218)] = 7609, + [SMALL_STATE(219)] = 7646, + [SMALL_STATE(220)] = 7683, + [SMALL_STATE(221)] = 7720, + [SMALL_STATE(222)] = 7757, + [SMALL_STATE(223)] = 7794, + [SMALL_STATE(224)] = 7831, + [SMALL_STATE(225)] = 7868, + [SMALL_STATE(226)] = 7905, + [SMALL_STATE(227)] = 7942, + [SMALL_STATE(228)] = 7979, + [SMALL_STATE(229)] = 8016, + [SMALL_STATE(230)] = 8053, + [SMALL_STATE(231)] = 8090, + [SMALL_STATE(232)] = 8127, + [SMALL_STATE(233)] = 8164, + [SMALL_STATE(234)] = 8201, + [SMALL_STATE(235)] = 8238, + [SMALL_STATE(236)] = 8275, + [SMALL_STATE(237)] = 8312, + [SMALL_STATE(238)] = 8349, + [SMALL_STATE(239)] = 8386, + [SMALL_STATE(240)] = 8431, + [SMALL_STATE(241)] = 8468, + [SMALL_STATE(242)] = 8505, + [SMALL_STATE(243)] = 8542, + [SMALL_STATE(244)] = 8579, + [SMALL_STATE(245)] = 8616, + [SMALL_STATE(246)] = 8653, + [SMALL_STATE(247)] = 8690, + [SMALL_STATE(248)] = 8727, + [SMALL_STATE(249)] = 8761, + [SMALL_STATE(250)] = 8795, + [SMALL_STATE(251)] = 8829, + [SMALL_STATE(252)] = 8863, + [SMALL_STATE(253)] = 8897, + [SMALL_STATE(254)] = 8931, + [SMALL_STATE(255)] = 8965, + [SMALL_STATE(256)] = 8999, + [SMALL_STATE(257)] = 9033, + [SMALL_STATE(258)] = 9067, + [SMALL_STATE(259)] = 9101, + [SMALL_STATE(260)] = 9135, + [SMALL_STATE(261)] = 9169, + [SMALL_STATE(262)] = 9203, + [SMALL_STATE(263)] = 9237, + [SMALL_STATE(264)] = 9271, + [SMALL_STATE(265)] = 9313, + [SMALL_STATE(266)] = 9351, + [SMALL_STATE(267)] = 9385, + [SMALL_STATE(268)] = 9419, + [SMALL_STATE(269)] = 9453, + [SMALL_STATE(270)] = 9487, + [SMALL_STATE(271)] = 9521, + [SMALL_STATE(272)] = 9555, + [SMALL_STATE(273)] = 9589, + [SMALL_STATE(274)] = 9623, + [SMALL_STATE(275)] = 9657, + [SMALL_STATE(276)] = 9691, + [SMALL_STATE(277)] = 9725, + [SMALL_STATE(278)] = 9759, + [SMALL_STATE(279)] = 9793, + [SMALL_STATE(280)] = 9827, + [SMALL_STATE(281)] = 9861, + [SMALL_STATE(282)] = 9895, + [SMALL_STATE(283)] = 9929, + [SMALL_STATE(284)] = 9963, + [SMALL_STATE(285)] = 9997, + [SMALL_STATE(286)] = 10031, + [SMALL_STATE(287)] = 10065, + [SMALL_STATE(288)] = 10099, + [SMALL_STATE(289)] = 10133, + [SMALL_STATE(290)] = 10167, + [SMALL_STATE(291)] = 10201, + [SMALL_STATE(292)] = 10235, + [SMALL_STATE(293)] = 10269, + [SMALL_STATE(294)] = 10303, + [SMALL_STATE(295)] = 10337, + [SMALL_STATE(296)] = 10371, + [SMALL_STATE(297)] = 10405, + [SMALL_STATE(298)] = 10439, + [SMALL_STATE(299)] = 10473, + [SMALL_STATE(300)] = 10507, + [SMALL_STATE(301)] = 10541, + [SMALL_STATE(302)] = 10575, + [SMALL_STATE(303)] = 10609, + [SMALL_STATE(304)] = 10643, + [SMALL_STATE(305)] = 10677, + [SMALL_STATE(306)] = 10711, + [SMALL_STATE(307)] = 10745, + [SMALL_STATE(308)] = 10779, + [SMALL_STATE(309)] = 10813, + [SMALL_STATE(310)] = 10847, + [SMALL_STATE(311)] = 10881, + [SMALL_STATE(312)] = 10915, + [SMALL_STATE(313)] = 10949, + [SMALL_STATE(314)] = 10983, + [SMALL_STATE(315)] = 11017, + [SMALL_STATE(316)] = 11051, + [SMALL_STATE(317)] = 11085, + [SMALL_STATE(318)] = 11119, + [SMALL_STATE(319)] = 11153, + [SMALL_STATE(320)] = 11187, + [SMALL_STATE(321)] = 11221, + [SMALL_STATE(322)] = 11255, + [SMALL_STATE(323)] = 11289, + [SMALL_STATE(324)] = 11323, + [SMALL_STATE(325)] = 11357, + [SMALL_STATE(326)] = 11391, + [SMALL_STATE(327)] = 11425, + [SMALL_STATE(328)] = 11459, + [SMALL_STATE(329)] = 11493, + [SMALL_STATE(330)] = 11527, + [SMALL_STATE(331)] = 11561, + [SMALL_STATE(332)] = 11595, + [SMALL_STATE(333)] = 11629, + [SMALL_STATE(334)] = 11663, + [SMALL_STATE(335)] = 11697, + [SMALL_STATE(336)] = 11731, + [SMALL_STATE(337)] = 11765, + [SMALL_STATE(338)] = 11799, + [SMALL_STATE(339)] = 11833, + [SMALL_STATE(340)] = 11867, + [SMALL_STATE(341)] = 11901, + [SMALL_STATE(342)] = 11935, + [SMALL_STATE(343)] = 11969, + [SMALL_STATE(344)] = 12003, + [SMALL_STATE(345)] = 12037, + [SMALL_STATE(346)] = 12071, + [SMALL_STATE(347)] = 12105, + [SMALL_STATE(348)] = 12139, + [SMALL_STATE(349)] = 12173, + [SMALL_STATE(350)] = 12207, + [SMALL_STATE(351)] = 12241, + [SMALL_STATE(352)] = 12275, + [SMALL_STATE(353)] = 12309, + [SMALL_STATE(354)] = 12343, + [SMALL_STATE(355)] = 12377, + [SMALL_STATE(356)] = 12411, + [SMALL_STATE(357)] = 12445, + [SMALL_STATE(358)] = 12479, + [SMALL_STATE(359)] = 12513, + [SMALL_STATE(360)] = 12547, + [SMALL_STATE(361)] = 12581, + [SMALL_STATE(362)] = 12615, + [SMALL_STATE(363)] = 12649, + [SMALL_STATE(364)] = 12683, + [SMALL_STATE(365)] = 12717, + [SMALL_STATE(366)] = 12751, + [SMALL_STATE(367)] = 12785, + [SMALL_STATE(368)] = 12819, + [SMALL_STATE(369)] = 12853, + [SMALL_STATE(370)] = 12887, + [SMALL_STATE(371)] = 12921, + [SMALL_STATE(372)] = 12955, + [SMALL_STATE(373)] = 12989, + [SMALL_STATE(374)] = 13023, + [SMALL_STATE(375)] = 13057, + [SMALL_STATE(376)] = 13091, + [SMALL_STATE(377)] = 13125, + [SMALL_STATE(378)] = 13159, + [SMALL_STATE(379)] = 13193, + [SMALL_STATE(380)] = 13227, + [SMALL_STATE(381)] = 13261, + [SMALL_STATE(382)] = 13295, + [SMALL_STATE(383)] = 13329, + [SMALL_STATE(384)] = 13363, + [SMALL_STATE(385)] = 13397, + [SMALL_STATE(386)] = 13431, + [SMALL_STATE(387)] = 13465, + [SMALL_STATE(388)] = 13499, + [SMALL_STATE(389)] = 13533, + [SMALL_STATE(390)] = 13567, + [SMALL_STATE(391)] = 13601, + [SMALL_STATE(392)] = 13635, + [SMALL_STATE(393)] = 13669, + [SMALL_STATE(394)] = 13703, + [SMALL_STATE(395)] = 13737, + [SMALL_STATE(396)] = 13771, + [SMALL_STATE(397)] = 13805, + [SMALL_STATE(398)] = 13839, + [SMALL_STATE(399)] = 13873, + [SMALL_STATE(400)] = 13907, + [SMALL_STATE(401)] = 13941, + [SMALL_STATE(402)] = 13975, + [SMALL_STATE(403)] = 14009, + [SMALL_STATE(404)] = 14043, + [SMALL_STATE(405)] = 14077, + [SMALL_STATE(406)] = 14111, + [SMALL_STATE(407)] = 14145, + [SMALL_STATE(408)] = 14179, + [SMALL_STATE(409)] = 14213, + [SMALL_STATE(410)] = 14247, + [SMALL_STATE(411)] = 14281, + [SMALL_STATE(412)] = 14315, + [SMALL_STATE(413)] = 14349, + [SMALL_STATE(414)] = 14383, + [SMALL_STATE(415)] = 14417, + [SMALL_STATE(416)] = 14451, + [SMALL_STATE(417)] = 14485, + [SMALL_STATE(418)] = 14519, + [SMALL_STATE(419)] = 14553, + [SMALL_STATE(420)] = 14587, + [SMALL_STATE(421)] = 14621, + [SMALL_STATE(422)] = 14655, + [SMALL_STATE(423)] = 14689, + [SMALL_STATE(424)] = 14723, + [SMALL_STATE(425)] = 14757, + [SMALL_STATE(426)] = 14791, + [SMALL_STATE(427)] = 14825, + [SMALL_STATE(428)] = 14859, + [SMALL_STATE(429)] = 14893, + [SMALL_STATE(430)] = 14927, + [SMALL_STATE(431)] = 14961, + [SMALL_STATE(432)] = 14995, + [SMALL_STATE(433)] = 15029, + [SMALL_STATE(434)] = 15063, + [SMALL_STATE(435)] = 15097, + [SMALL_STATE(436)] = 15131, + [SMALL_STATE(437)] = 15165, + [SMALL_STATE(438)] = 15199, + [SMALL_STATE(439)] = 15233, + [SMALL_STATE(440)] = 15267, + [SMALL_STATE(441)] = 15301, + [SMALL_STATE(442)] = 15335, + [SMALL_STATE(443)] = 15369, + [SMALL_STATE(444)] = 15403, + [SMALL_STATE(445)] = 15437, + [SMALL_STATE(446)] = 15471, + [SMALL_STATE(447)] = 15505, + [SMALL_STATE(448)] = 15539, + [SMALL_STATE(449)] = 15573, + [SMALL_STATE(450)] = 15607, + [SMALL_STATE(451)] = 15641, + [SMALL_STATE(452)] = 15675, + [SMALL_STATE(453)] = 15709, + [SMALL_STATE(454)] = 15754, + [SMALL_STATE(455)] = 15799, + [SMALL_STATE(456)] = 15844, + [SMALL_STATE(457)] = 15889, + [SMALL_STATE(458)] = 15934, + [SMALL_STATE(459)] = 15979, + [SMALL_STATE(460)] = 16029, + [SMALL_STATE(461)] = 16079, + [SMALL_STATE(462)] = 16119, + [SMALL_STATE(463)] = 16152, + [SMALL_STATE(464)] = 16189, + [SMALL_STATE(465)] = 16226, + [SMALL_STATE(466)] = 16263, + [SMALL_STATE(467)] = 16300, + [SMALL_STATE(468)] = 16337, + [SMALL_STATE(469)] = 16374, + [SMALL_STATE(470)] = 16411, + [SMALL_STATE(471)] = 16464, + [SMALL_STATE(472)] = 16497, + [SMALL_STATE(473)] = 16530, + [SMALL_STATE(474)] = 16564, + [SMALL_STATE(475)] = 16596, + [SMALL_STATE(476)] = 16628, + [SMALL_STATE(477)] = 16662, + [SMALL_STATE(478)] = 16694, + [SMALL_STATE(479)] = 16723, + [SMALL_STATE(480)] = 16754, + [SMALL_STATE(481)] = 16779, + [SMALL_STATE(482)] = 16808, + [SMALL_STATE(483)] = 16855, + [SMALL_STATE(484)] = 16886, + [SMALL_STATE(485)] = 16915, + [SMALL_STATE(486)] = 16946, + [SMALL_STATE(487)] = 16993, + [SMALL_STATE(488)] = 17040, + [SMALL_STATE(489)] = 17071, + [SMALL_STATE(490)] = 17102, + [SMALL_STATE(491)] = 17146, + [SMALL_STATE(492)] = 17190, + [SMALL_STATE(493)] = 17212, + [SMALL_STATE(494)] = 17256, + [SMALL_STATE(495)] = 17300, + [SMALL_STATE(496)] = 17322, + [SMALL_STATE(497)] = 17352, + [SMALL_STATE(498)] = 17374, + [SMALL_STATE(499)] = 17398, + [SMALL_STATE(500)] = 17420, + [SMALL_STATE(501)] = 17449, + [SMALL_STATE(502)] = 17478, + [SMALL_STATE(503)] = 17509, + [SMALL_STATE(504)] = 17534, + [SMALL_STATE(505)] = 17563, + [SMALL_STATE(506)] = 17604, + [SMALL_STATE(507)] = 17627, + [SMALL_STATE(508)] = 17650, + [SMALL_STATE(509)] = 17681, + [SMALL_STATE(510)] = 17710, + [SMALL_STATE(511)] = 17739, + [SMALL_STATE(512)] = 17764, + [SMALL_STATE(513)] = 17793, + [SMALL_STATE(514)] = 17824, + [SMALL_STATE(515)] = 17865, + [SMALL_STATE(516)] = 17894, + [SMALL_STATE(517)] = 17925, + [SMALL_STATE(518)] = 17950, + [SMALL_STATE(519)] = 17979, + [SMALL_STATE(520)] = 18017, + [SMALL_STATE(521)] = 18041, + [SMALL_STATE(522)] = 18067, + [SMALL_STATE(523)] = 18097, + [SMALL_STATE(524)] = 18135, + [SMALL_STATE(525)] = 18163, + [SMALL_STATE(526)] = 18201, + [SMALL_STATE(527)] = 18227, + [SMALL_STATE(528)] = 18253, + [SMALL_STATE(529)] = 18291, + [SMALL_STATE(530)] = 18329, + [SMALL_STATE(531)] = 18367, + [SMALL_STATE(532)] = 18405, + [SMALL_STATE(533)] = 18428, + [SMALL_STATE(534)] = 18447, + [SMALL_STATE(535)] = 18470, + [SMALL_STATE(536)] = 18493, + [SMALL_STATE(537)] = 18524, + [SMALL_STATE(538)] = 18547, + [SMALL_STATE(539)] = 18570, + [SMALL_STATE(540)] = 18589, + [SMALL_STATE(541)] = 18620, + [SMALL_STATE(542)] = 18643, + [SMALL_STATE(543)] = 18666, + [SMALL_STATE(544)] = 18689, + [SMALL_STATE(545)] = 18712, + [SMALL_STATE(546)] = 18735, + [SMALL_STATE(547)] = 18758, + [SMALL_STATE(548)] = 18781, + [SMALL_STATE(549)] = 18812, + [SMALL_STATE(550)] = 18835, + [SMALL_STATE(551)] = 18858, + [SMALL_STATE(552)] = 18881, + [SMALL_STATE(553)] = 18904, + [SMALL_STATE(554)] = 18923, + [SMALL_STATE(555)] = 18954, + [SMALL_STATE(556)] = 18977, + [SMALL_STATE(557)] = 19000, + [SMALL_STATE(558)] = 19023, + [SMALL_STATE(559)] = 19054, + [SMALL_STATE(560)] = 19077, + [SMALL_STATE(561)] = 19100, + [SMALL_STATE(562)] = 19123, + [SMALL_STATE(563)] = 19144, + [SMALL_STATE(564)] = 19165, + [SMALL_STATE(565)] = 19192, + [SMALL_STATE(566)] = 19215, + [SMALL_STATE(567)] = 19238, + [SMALL_STATE(568)] = 19261, + [SMALL_STATE(569)] = 19292, + [SMALL_STATE(570)] = 19315, + [SMALL_STATE(571)] = 19338, + [SMALL_STATE(572)] = 19361, + [SMALL_STATE(573)] = 19384, + [SMALL_STATE(574)] = 19407, + [SMALL_STATE(575)] = 19430, + [SMALL_STATE(576)] = 19453, + [SMALL_STATE(577)] = 19476, + [SMALL_STATE(578)] = 19499, + [SMALL_STATE(579)] = 19518, + [SMALL_STATE(580)] = 19550, + [SMALL_STATE(581)] = 19574, + [SMALL_STATE(582)] = 19602, + [SMALL_STATE(583)] = 19634, + [SMALL_STATE(584)] = 19666, + [SMALL_STATE(585)] = 19698, + [SMALL_STATE(586)] = 19730, + [SMALL_STATE(587)] = 19762, + [SMALL_STATE(588)] = 19786, + [SMALL_STATE(589)] = 19818, + [SMALL_STATE(590)] = 19850, + [SMALL_STATE(591)] = 19882, + [SMALL_STATE(592)] = 19914, + [SMALL_STATE(593)] = 19942, + [SMALL_STATE(594)] = 19974, + [SMALL_STATE(595)] = 19998, + [SMALL_STATE(596)] = 20022, + [SMALL_STATE(597)] = 20050, + [SMALL_STATE(598)] = 20078, + [SMALL_STATE(599)] = 20102, + [SMALL_STATE(600)] = 20130, + [SMALL_STATE(601)] = 20154, + [SMALL_STATE(602)] = 20178, + [SMALL_STATE(603)] = 20202, + [SMALL_STATE(604)] = 20226, + [SMALL_STATE(605)] = 20258, + [SMALL_STATE(606)] = 20290, + [SMALL_STATE(607)] = 20322, + [SMALL_STATE(608)] = 20354, + [SMALL_STATE(609)] = 20380, + [SMALL_STATE(610)] = 20412, + [SMALL_STATE(611)] = 20437, + [SMALL_STATE(612)] = 20462, + [SMALL_STATE(613)] = 20487, + [SMALL_STATE(614)] = 20506, + [SMALL_STATE(615)] = 20531, + [SMALL_STATE(616)] = 20560, + [SMALL_STATE(617)] = 20589, + [SMALL_STATE(618)] = 20614, + [SMALL_STATE(619)] = 20639, + [SMALL_STATE(620)] = 20664, + [SMALL_STATE(621)] = 20689, + [SMALL_STATE(622)] = 20714, + [SMALL_STATE(623)] = 20739, + [SMALL_STATE(624)] = 20764, + [SMALL_STATE(625)] = 20783, + [SMALL_STATE(626)] = 20808, + [SMALL_STATE(627)] = 20833, + [SMALL_STATE(628)] = 20858, + [SMALL_STATE(629)] = 20887, + [SMALL_STATE(630)] = 20912, + [SMALL_STATE(631)] = 20941, + [SMALL_STATE(632)] = 20966, + [SMALL_STATE(633)] = 20991, + [SMALL_STATE(634)] = 21020, + [SMALL_STATE(635)] = 21045, + [SMALL_STATE(636)] = 21068, + [SMALL_STATE(637)] = 21091, + [SMALL_STATE(638)] = 21114, + [SMALL_STATE(639)] = 21139, + [SMALL_STATE(640)] = 21154, + [SMALL_STATE(641)] = 21179, + [SMALL_STATE(642)] = 21204, + [SMALL_STATE(643)] = 21218, + [SMALL_STATE(644)] = 21232, + [SMALL_STATE(645)] = 21258, + [SMALL_STATE(646)] = 21284, + [SMALL_STATE(647)] = 21310, + [SMALL_STATE(648)] = 21330, + [SMALL_STATE(649)] = 21344, + [SMALL_STATE(650)] = 21370, + [SMALL_STATE(651)] = 21396, + [SMALL_STATE(652)] = 21410, + [SMALL_STATE(653)] = 21436, + [SMALL_STATE(654)] = 21462, + [SMALL_STATE(655)] = 21476, + [SMALL_STATE(656)] = 21494, + [SMALL_STATE(657)] = 21520, + [SMALL_STATE(658)] = 21546, + [SMALL_STATE(659)] = 21560, + [SMALL_STATE(660)] = 21574, + [SMALL_STATE(661)] = 21600, + [SMALL_STATE(662)] = 21626, + [SMALL_STATE(663)] = 21652, + [SMALL_STATE(664)] = 21678, + [SMALL_STATE(665)] = 21704, + [SMALL_STATE(666)] = 21730, + [SMALL_STATE(667)] = 21744, + [SMALL_STATE(668)] = 21758, + [SMALL_STATE(669)] = 21782, + [SMALL_STATE(670)] = 21808, + [SMALL_STATE(671)] = 21834, + [SMALL_STATE(672)] = 21860, + [SMALL_STATE(673)] = 21886, + [SMALL_STATE(674)] = 21900, + [SMALL_STATE(675)] = 21924, + [SMALL_STATE(676)] = 21950, + [SMALL_STATE(677)] = 21964, + [SMALL_STATE(678)] = 21990, + [SMALL_STATE(679)] = 22016, + [SMALL_STATE(680)] = 22042, + [SMALL_STATE(681)] = 22056, + [SMALL_STATE(682)] = 22070, + [SMALL_STATE(683)] = 22096, + [SMALL_STATE(684)] = 22122, + [SMALL_STATE(685)] = 22136, + [SMALL_STATE(686)] = 22162, + [SMALL_STATE(687)] = 22176, + [SMALL_STATE(688)] = 22202, + [SMALL_STATE(689)] = 22228, + [SMALL_STATE(690)] = 22242, + [SMALL_STATE(691)] = 22256, + [SMALL_STATE(692)] = 22270, + [SMALL_STATE(693)] = 22284, + [SMALL_STATE(694)] = 22298, + [SMALL_STATE(695)] = 22312, + [SMALL_STATE(696)] = 22338, + [SMALL_STATE(697)] = 22364, + [SMALL_STATE(698)] = 22390, + [SMALL_STATE(699)] = 22414, + [SMALL_STATE(700)] = 22440, + [SMALL_STATE(701)] = 22466, + [SMALL_STATE(702)] = 22492, + [SMALL_STATE(703)] = 22510, + [SMALL_STATE(704)] = 22536, + [SMALL_STATE(705)] = 22562, + [SMALL_STATE(706)] = 22588, + [SMALL_STATE(707)] = 22614, + [SMALL_STATE(708)] = 22640, + [SMALL_STATE(709)] = 22666, + [SMALL_STATE(710)] = 22692, + [SMALL_STATE(711)] = 22706, + [SMALL_STATE(712)] = 22720, + [SMALL_STATE(713)] = 22734, + [SMALL_STATE(714)] = 22748, + [SMALL_STATE(715)] = 22762, + [SMALL_STATE(716)] = 22776, + [SMALL_STATE(717)] = 22802, + [SMALL_STATE(718)] = 22816, + [SMALL_STATE(719)] = 22838, + [SMALL_STATE(720)] = 22864, + [SMALL_STATE(721)] = 22890, + [SMALL_STATE(722)] = 22916, + [SMALL_STATE(723)] = 22942, + [SMALL_STATE(724)] = 22968, + [SMALL_STATE(725)] = 22994, + [SMALL_STATE(726)] = 23020, + [SMALL_STATE(727)] = 23034, + [SMALL_STATE(728)] = 23048, + [SMALL_STATE(729)] = 23074, + [SMALL_STATE(730)] = 23100, + [SMALL_STATE(731)] = 23114, + [SMALL_STATE(732)] = 23128, + [SMALL_STATE(733)] = 23142, + [SMALL_STATE(734)] = 23156, + [SMALL_STATE(735)] = 23182, + [SMALL_STATE(736)] = 23196, + [SMALL_STATE(737)] = 23222, + [SMALL_STATE(738)] = 23248, + [SMALL_STATE(739)] = 23274, + [SMALL_STATE(740)] = 23300, + [SMALL_STATE(741)] = 23326, + [SMALL_STATE(742)] = 23340, + [SMALL_STATE(743)] = 23366, + [SMALL_STATE(744)] = 23380, + [SMALL_STATE(745)] = 23406, + [SMALL_STATE(746)] = 23420, + [SMALL_STATE(747)] = 23434, + [SMALL_STATE(748)] = 23448, + [SMALL_STATE(749)] = 23462, + [SMALL_STATE(750)] = 23476, + [SMALL_STATE(751)] = 23490, + [SMALL_STATE(752)] = 23516, + [SMALL_STATE(753)] = 23530, + [SMALL_STATE(754)] = 23544, + [SMALL_STATE(755)] = 23558, + [SMALL_STATE(756)] = 23572, + [SMALL_STATE(757)] = 23586, + [SMALL_STATE(758)] = 23600, + [SMALL_STATE(759)] = 23614, + [SMALL_STATE(760)] = 23628, + [SMALL_STATE(761)] = 23642, + [SMALL_STATE(762)] = 23668, + [SMALL_STATE(763)] = 23694, + [SMALL_STATE(764)] = 23708, + [SMALL_STATE(765)] = 23722, + [SMALL_STATE(766)] = 23736, + [SMALL_STATE(767)] = 23750, + [SMALL_STATE(768)] = 23764, + [SMALL_STATE(769)] = 23778, + [SMALL_STATE(770)] = 23792, + [SMALL_STATE(771)] = 23818, + [SMALL_STATE(772)] = 23832, + [SMALL_STATE(773)] = 23846, + [SMALL_STATE(774)] = 23860, + [SMALL_STATE(775)] = 23874, + [SMALL_STATE(776)] = 23888, + [SMALL_STATE(777)] = 23902, + [SMALL_STATE(778)] = 23916, + [SMALL_STATE(779)] = 23930, + [SMALL_STATE(780)] = 23944, + [SMALL_STATE(781)] = 23970, + [SMALL_STATE(782)] = 23984, + [SMALL_STATE(783)] = 24010, + [SMALL_STATE(784)] = 24034, + [SMALL_STATE(785)] = 24060, + [SMALL_STATE(786)] = 24086, + [SMALL_STATE(787)] = 24100, + [SMALL_STATE(788)] = 24114, + [SMALL_STATE(789)] = 24140, + [SMALL_STATE(790)] = 24154, + [SMALL_STATE(791)] = 24168, + [SMALL_STATE(792)] = 24194, + [SMALL_STATE(793)] = 24208, + [SMALL_STATE(794)] = 24234, + [SMALL_STATE(795)] = 24260, + [SMALL_STATE(796)] = 24274, + [SMALL_STATE(797)] = 24300, + [SMALL_STATE(798)] = 24314, + [SMALL_STATE(799)] = 24328, + [SMALL_STATE(800)] = 24354, + [SMALL_STATE(801)] = 24368, + [SMALL_STATE(802)] = 24382, + [SMALL_STATE(803)] = 24396, + [SMALL_STATE(804)] = 24422, + [SMALL_STATE(805)] = 24436, + [SMALL_STATE(806)] = 24450, + [SMALL_STATE(807)] = 24476, + [SMALL_STATE(808)] = 24502, + [SMALL_STATE(809)] = 24516, + [SMALL_STATE(810)] = 24530, + [SMALL_STATE(811)] = 24556, + [SMALL_STATE(812)] = 24582, + [SMALL_STATE(813)] = 24608, + [SMALL_STATE(814)] = 24622, + [SMALL_STATE(815)] = 24648, + [SMALL_STATE(816)] = 24674, + [SMALL_STATE(817)] = 24688, + [SMALL_STATE(818)] = 24702, + [SMALL_STATE(819)] = 24716, + [SMALL_STATE(820)] = 24730, + [SMALL_STATE(821)] = 24744, + [SMALL_STATE(822)] = 24758, + [SMALL_STATE(823)] = 24772, + [SMALL_STATE(824)] = 24786, + [SMALL_STATE(825)] = 24800, + [SMALL_STATE(826)] = 24814, + [SMALL_STATE(827)] = 24828, + [SMALL_STATE(828)] = 24842, + [SMALL_STATE(829)] = 24856, + [SMALL_STATE(830)] = 24870, + [SMALL_STATE(831)] = 24884, + [SMALL_STATE(832)] = 24898, + [SMALL_STATE(833)] = 24912, + [SMALL_STATE(834)] = 24926, + [SMALL_STATE(835)] = 24940, + [SMALL_STATE(836)] = 24954, + [SMALL_STATE(837)] = 24968, + [SMALL_STATE(838)] = 24982, + [SMALL_STATE(839)] = 24996, + [SMALL_STATE(840)] = 25010, + [SMALL_STATE(841)] = 25024, + [SMALL_STATE(842)] = 25038, + [SMALL_STATE(843)] = 25052, + [SMALL_STATE(844)] = 25066, + [SMALL_STATE(845)] = 25080, + [SMALL_STATE(846)] = 25094, + [SMALL_STATE(847)] = 25108, + [SMALL_STATE(848)] = 25122, + [SMALL_STATE(849)] = 25136, + [SMALL_STATE(850)] = 25150, + [SMALL_STATE(851)] = 25164, + [SMALL_STATE(852)] = 25178, + [SMALL_STATE(853)] = 25192, + [SMALL_STATE(854)] = 25206, + [SMALL_STATE(855)] = 25220, + [SMALL_STATE(856)] = 25234, + [SMALL_STATE(857)] = 25248, + [SMALL_STATE(858)] = 25262, + [SMALL_STATE(859)] = 25276, + [SMALL_STATE(860)] = 25290, + [SMALL_STATE(861)] = 25304, + [SMALL_STATE(862)] = 25318, + [SMALL_STATE(863)] = 25332, + [SMALL_STATE(864)] = 25346, + [SMALL_STATE(865)] = 25360, + [SMALL_STATE(866)] = 25374, + [SMALL_STATE(867)] = 25400, + [SMALL_STATE(868)] = 25426, + [SMALL_STATE(869)] = 25440, + [SMALL_STATE(870)] = 25454, + [SMALL_STATE(871)] = 25468, + [SMALL_STATE(872)] = 25482, + [SMALL_STATE(873)] = 25508, + [SMALL_STATE(874)] = 25522, + [SMALL_STATE(875)] = 25536, + [SMALL_STATE(876)] = 25550, + [SMALL_STATE(877)] = 25564, + [SMALL_STATE(878)] = 25578, + [SMALL_STATE(879)] = 25592, + [SMALL_STATE(880)] = 25606, + [SMALL_STATE(881)] = 25620, + [SMALL_STATE(882)] = 25638, + [SMALL_STATE(883)] = 25664, + [SMALL_STATE(884)] = 25678, + [SMALL_STATE(885)] = 25704, + [SMALL_STATE(886)] = 25730, + [SMALL_STATE(887)] = 25756, + [SMALL_STATE(888)] = 25782, + [SMALL_STATE(889)] = 25808, + [SMALL_STATE(890)] = 25834, + [SMALL_STATE(891)] = 25860, + [SMALL_STATE(892)] = 25886, + [SMALL_STATE(893)] = 25912, + [SMALL_STATE(894)] = 25938, + [SMALL_STATE(895)] = 25964, + [SMALL_STATE(896)] = 25990, + [SMALL_STATE(897)] = 26016, + [SMALL_STATE(898)] = 26042, + [SMALL_STATE(899)] = 26068, + [SMALL_STATE(900)] = 26094, + [SMALL_STATE(901)] = 26120, + [SMALL_STATE(902)] = 26146, + [SMALL_STATE(903)] = 26172, + [SMALL_STATE(904)] = 26198, + [SMALL_STATE(905)] = 26212, + [SMALL_STATE(906)] = 26226, + [SMALL_STATE(907)] = 26240, + [SMALL_STATE(908)] = 26254, + [SMALL_STATE(909)] = 26268, + [SMALL_STATE(910)] = 26282, + [SMALL_STATE(911)] = 26296, + [SMALL_STATE(912)] = 26310, + [SMALL_STATE(913)] = 26324, + [SMALL_STATE(914)] = 26338, + [SMALL_STATE(915)] = 26352, + [SMALL_STATE(916)] = 26378, + [SMALL_STATE(917)] = 26392, + [SMALL_STATE(918)] = 26406, + [SMALL_STATE(919)] = 26420, + [SMALL_STATE(920)] = 26434, + [SMALL_STATE(921)] = 26448, + [SMALL_STATE(922)] = 26462, + [SMALL_STATE(923)] = 26476, + [SMALL_STATE(924)] = 26502, + [SMALL_STATE(925)] = 26516, + [SMALL_STATE(926)] = 26530, + [SMALL_STATE(927)] = 26544, + [SMALL_STATE(928)] = 26558, + [SMALL_STATE(929)] = 26572, + [SMALL_STATE(930)] = 26586, + [SMALL_STATE(931)] = 26600, + [SMALL_STATE(932)] = 26614, + [SMALL_STATE(933)] = 26640, + [SMALL_STATE(934)] = 26666, + [SMALL_STATE(935)] = 26692, + [SMALL_STATE(936)] = 26718, + [SMALL_STATE(937)] = 26732, + [SMALL_STATE(938)] = 26746, + [SMALL_STATE(939)] = 26760, + [SMALL_STATE(940)] = 26774, + [SMALL_STATE(941)] = 26788, + [SMALL_STATE(942)] = 26802, + [SMALL_STATE(943)] = 26816, + [SMALL_STATE(944)] = 26830, + [SMALL_STATE(945)] = 26844, + [SMALL_STATE(946)] = 26870, + [SMALL_STATE(947)] = 26884, + [SMALL_STATE(948)] = 26898, + [SMALL_STATE(949)] = 26912, + [SMALL_STATE(950)] = 26926, + [SMALL_STATE(951)] = 26952, + [SMALL_STATE(952)] = 26966, + [SMALL_STATE(953)] = 26980, + [SMALL_STATE(954)] = 26994, + [SMALL_STATE(955)] = 27020, + [SMALL_STATE(956)] = 27046, + [SMALL_STATE(957)] = 27060, + [SMALL_STATE(958)] = 27074, + [SMALL_STATE(959)] = 27100, + [SMALL_STATE(960)] = 27126, + [SMALL_STATE(961)] = 27140, + [SMALL_STATE(962)] = 27166, + [SMALL_STATE(963)] = 27180, + [SMALL_STATE(964)] = 27194, + [SMALL_STATE(965)] = 27220, + [SMALL_STATE(966)] = 27234, + [SMALL_STATE(967)] = 27248, + [SMALL_STATE(968)] = 27262, + [SMALL_STATE(969)] = 27276, + [SMALL_STATE(970)] = 27290, + [SMALL_STATE(971)] = 27316, + [SMALL_STATE(972)] = 27342, + [SMALL_STATE(973)] = 27356, + [SMALL_STATE(974)] = 27370, + [SMALL_STATE(975)] = 27396, + [SMALL_STATE(976)] = 27410, + [SMALL_STATE(977)] = 27424, + [SMALL_STATE(978)] = 27450, + [SMALL_STATE(979)] = 27476, + [SMALL_STATE(980)] = 27490, + [SMALL_STATE(981)] = 27504, + [SMALL_STATE(982)] = 27518, + [SMALL_STATE(983)] = 27544, + [SMALL_STATE(984)] = 27558, + [SMALL_STATE(985)] = 27572, + [SMALL_STATE(986)] = 27598, + [SMALL_STATE(987)] = 27624, + [SMALL_STATE(988)] = 27650, + [SMALL_STATE(989)] = 27676, + [SMALL_STATE(990)] = 27702, + [SMALL_STATE(991)] = 27728, + [SMALL_STATE(992)] = 27747, + [SMALL_STATE(993)] = 27770, + [SMALL_STATE(994)] = 27789, + [SMALL_STATE(995)] = 27812, + [SMALL_STATE(996)] = 27835, + [SMALL_STATE(997)] = 27858, + [SMALL_STATE(998)] = 27877, + [SMALL_STATE(999)] = 27896, + [SMALL_STATE(1000)] = 27919, + [SMALL_STATE(1001)] = 27942, + [SMALL_STATE(1002)] = 27965, + [SMALL_STATE(1003)] = 27984, + [SMALL_STATE(1004)] = 28007, + [SMALL_STATE(1005)] = 28022, + [SMALL_STATE(1006)] = 28039, + [SMALL_STATE(1007)] = 28058, + [SMALL_STATE(1008)] = 28081, + [SMALL_STATE(1009)] = 28100, + [SMALL_STATE(1010)] = 28123, + [SMALL_STATE(1011)] = 28142, + [SMALL_STATE(1012)] = 28155, + [SMALL_STATE(1013)] = 28178, + [SMALL_STATE(1014)] = 28201, + [SMALL_STATE(1015)] = 28224, + [SMALL_STATE(1016)] = 28247, + [SMALL_STATE(1017)] = 28267, + [SMALL_STATE(1018)] = 28287, + [SMALL_STATE(1019)] = 28307, + [SMALL_STATE(1020)] = 28327, + [SMALL_STATE(1021)] = 28347, + [SMALL_STATE(1022)] = 28367, + [SMALL_STATE(1023)] = 28387, + [SMALL_STATE(1024)] = 28407, + [SMALL_STATE(1025)] = 28427, + [SMALL_STATE(1026)] = 28447, + [SMALL_STATE(1027)] = 28467, + [SMALL_STATE(1028)] = 28487, + [SMALL_STATE(1029)] = 28507, + [SMALL_STATE(1030)] = 28527, + [SMALL_STATE(1031)] = 28543, + [SMALL_STATE(1032)] = 28563, + [SMALL_STATE(1033)] = 28583, + [SMALL_STATE(1034)] = 28603, + [SMALL_STATE(1035)] = 28623, + [SMALL_STATE(1036)] = 28643, + [SMALL_STATE(1037)] = 28663, + [SMALL_STATE(1038)] = 28683, + [SMALL_STATE(1039)] = 28703, + [SMALL_STATE(1040)] = 28723, + [SMALL_STATE(1041)] = 28743, + [SMALL_STATE(1042)] = 28763, + [SMALL_STATE(1043)] = 28783, + [SMALL_STATE(1044)] = 28803, + [SMALL_STATE(1045)] = 28823, + [SMALL_STATE(1046)] = 28843, + [SMALL_STATE(1047)] = 28863, + [SMALL_STATE(1048)] = 28883, + [SMALL_STATE(1049)] = 28903, + [SMALL_STATE(1050)] = 28923, + [SMALL_STATE(1051)] = 28943, + [SMALL_STATE(1052)] = 28963, + [SMALL_STATE(1053)] = 28983, + [SMALL_STATE(1054)] = 29003, + [SMALL_STATE(1055)] = 29023, + [SMALL_STATE(1056)] = 29043, + [SMALL_STATE(1057)] = 29063, + [SMALL_STATE(1058)] = 29083, + [SMALL_STATE(1059)] = 29103, + [SMALL_STATE(1060)] = 29123, + [SMALL_STATE(1061)] = 29143, + [SMALL_STATE(1062)] = 29163, + [SMALL_STATE(1063)] = 29183, + [SMALL_STATE(1064)] = 29203, + [SMALL_STATE(1065)] = 29223, + [SMALL_STATE(1066)] = 29243, + [SMALL_STATE(1067)] = 29263, + [SMALL_STATE(1068)] = 29279, + [SMALL_STATE(1069)] = 29297, + [SMALL_STATE(1070)] = 29317, + [SMALL_STATE(1071)] = 29337, + [SMALL_STATE(1072)] = 29357, + [SMALL_STATE(1073)] = 29377, + [SMALL_STATE(1074)] = 29397, + [SMALL_STATE(1075)] = 29417, + [SMALL_STATE(1076)] = 29437, + [SMALL_STATE(1077)] = 29457, + [SMALL_STATE(1078)] = 29477, + [SMALL_STATE(1079)] = 29497, + [SMALL_STATE(1080)] = 29517, + [SMALL_STATE(1081)] = 29537, + [SMALL_STATE(1082)] = 29557, + [SMALL_STATE(1083)] = 29577, + [SMALL_STATE(1084)] = 29597, + [SMALL_STATE(1085)] = 29617, + [SMALL_STATE(1086)] = 29637, + [SMALL_STATE(1087)] = 29657, + [SMALL_STATE(1088)] = 29677, + [SMALL_STATE(1089)] = 29697, + [SMALL_STATE(1090)] = 29717, + [SMALL_STATE(1091)] = 29737, + [SMALL_STATE(1092)] = 29757, + [SMALL_STATE(1093)] = 29777, + [SMALL_STATE(1094)] = 29797, + [SMALL_STATE(1095)] = 29817, + [SMALL_STATE(1096)] = 29837, + [SMALL_STATE(1097)] = 29857, + [SMALL_STATE(1098)] = 29877, + [SMALL_STATE(1099)] = 29893, + [SMALL_STATE(1100)] = 29913, + [SMALL_STATE(1101)] = 29933, + [SMALL_STATE(1102)] = 29953, + [SMALL_STATE(1103)] = 29973, + [SMALL_STATE(1104)] = 29993, + [SMALL_STATE(1105)] = 30013, + [SMALL_STATE(1106)] = 30033, + [SMALL_STATE(1107)] = 30049, + [SMALL_STATE(1108)] = 30069, + [SMALL_STATE(1109)] = 30089, + [SMALL_STATE(1110)] = 30109, + [SMALL_STATE(1111)] = 30129, + [SMALL_STATE(1112)] = 30149, + [SMALL_STATE(1113)] = 30169, + [SMALL_STATE(1114)] = 30189, + [SMALL_STATE(1115)] = 30209, + [SMALL_STATE(1116)] = 30229, + [SMALL_STATE(1117)] = 30249, + [SMALL_STATE(1118)] = 30269, + [SMALL_STATE(1119)] = 30289, + [SMALL_STATE(1120)] = 30309, + [SMALL_STATE(1121)] = 30329, + [SMALL_STATE(1122)] = 30349, + [SMALL_STATE(1123)] = 30369, + [SMALL_STATE(1124)] = 30389, + [SMALL_STATE(1125)] = 30409, + [SMALL_STATE(1126)] = 30429, + [SMALL_STATE(1127)] = 30449, + [SMALL_STATE(1128)] = 30469, + [SMALL_STATE(1129)] = 30481, + [SMALL_STATE(1130)] = 30501, + [SMALL_STATE(1131)] = 30521, + [SMALL_STATE(1132)] = 30541, + [SMALL_STATE(1133)] = 30561, + [SMALL_STATE(1134)] = 30581, + [SMALL_STATE(1135)] = 30601, + [SMALL_STATE(1136)] = 30621, + [SMALL_STATE(1137)] = 30641, + [SMALL_STATE(1138)] = 30661, + [SMALL_STATE(1139)] = 30681, + [SMALL_STATE(1140)] = 30701, + [SMALL_STATE(1141)] = 30713, + [SMALL_STATE(1142)] = 30733, + [SMALL_STATE(1143)] = 30753, + [SMALL_STATE(1144)] = 30773, + [SMALL_STATE(1145)] = 30793, + [SMALL_STATE(1146)] = 30813, + [SMALL_STATE(1147)] = 30833, + [SMALL_STATE(1148)] = 30853, + [SMALL_STATE(1149)] = 30869, + [SMALL_STATE(1150)] = 30889, + [SMALL_STATE(1151)] = 30909, + [SMALL_STATE(1152)] = 30929, + [SMALL_STATE(1153)] = 30949, + [SMALL_STATE(1154)] = 30969, + [SMALL_STATE(1155)] = 30989, + [SMALL_STATE(1156)] = 31009, + [SMALL_STATE(1157)] = 31029, + [SMALL_STATE(1158)] = 31049, + [SMALL_STATE(1159)] = 31069, + [SMALL_STATE(1160)] = 31089, + [SMALL_STATE(1161)] = 31105, + [SMALL_STATE(1162)] = 31125, + [SMALL_STATE(1163)] = 31145, + [SMALL_STATE(1164)] = 31165, + [SMALL_STATE(1165)] = 31185, + [SMALL_STATE(1166)] = 31205, + [SMALL_STATE(1167)] = 31221, + [SMALL_STATE(1168)] = 31241, + [SMALL_STATE(1169)] = 31261, + [SMALL_STATE(1170)] = 31281, + [SMALL_STATE(1171)] = 31301, + [SMALL_STATE(1172)] = 31321, + [SMALL_STATE(1173)] = 31337, + [SMALL_STATE(1174)] = 31357, + [SMALL_STATE(1175)] = 31377, + [SMALL_STATE(1176)] = 31397, + [SMALL_STATE(1177)] = 31413, + [SMALL_STATE(1178)] = 31431, + [SMALL_STATE(1179)] = 31451, + [SMALL_STATE(1180)] = 31471, + [SMALL_STATE(1181)] = 31491, + [SMALL_STATE(1182)] = 31511, + [SMALL_STATE(1183)] = 31531, + [SMALL_STATE(1184)] = 31551, + [SMALL_STATE(1185)] = 31571, + [SMALL_STATE(1186)] = 31591, + [SMALL_STATE(1187)] = 31611, + [SMALL_STATE(1188)] = 31622, + [SMALL_STATE(1189)] = 31633, + [SMALL_STATE(1190)] = 31644, + [SMALL_STATE(1191)] = 31661, + [SMALL_STATE(1192)] = 31672, + [SMALL_STATE(1193)] = 31689, + [SMALL_STATE(1194)] = 31700, + [SMALL_STATE(1195)] = 31711, + [SMALL_STATE(1196)] = 31722, + [SMALL_STATE(1197)] = 31733, + [SMALL_STATE(1198)] = 31744, + [SMALL_STATE(1199)] = 31755, + [SMALL_STATE(1200)] = 31766, + [SMALL_STATE(1201)] = 31777, + [SMALL_STATE(1202)] = 31788, + [SMALL_STATE(1203)] = 31799, + [SMALL_STATE(1204)] = 31810, + [SMALL_STATE(1205)] = 31821, + [SMALL_STATE(1206)] = 31832, + [SMALL_STATE(1207)] = 31843, + [SMALL_STATE(1208)] = 31854, + [SMALL_STATE(1209)] = 31865, + [SMALL_STATE(1210)] = 31876, + [SMALL_STATE(1211)] = 31893, + [SMALL_STATE(1212)] = 31904, + [SMALL_STATE(1213)] = 31915, + [SMALL_STATE(1214)] = 31926, + [SMALL_STATE(1215)] = 31937, + [SMALL_STATE(1216)] = 31948, + [SMALL_STATE(1217)] = 31959, + [SMALL_STATE(1218)] = 31970, + [SMALL_STATE(1219)] = 31981, + [SMALL_STATE(1220)] = 31992, + [SMALL_STATE(1221)] = 32003, + [SMALL_STATE(1222)] = 32014, + [SMALL_STATE(1223)] = 32025, + [SMALL_STATE(1224)] = 32036, + [SMALL_STATE(1225)] = 32053, + [SMALL_STATE(1226)] = 32064, + [SMALL_STATE(1227)] = 32081, + [SMALL_STATE(1228)] = 32098, + [SMALL_STATE(1229)] = 32115, + [SMALL_STATE(1230)] = 32126, + [SMALL_STATE(1231)] = 32143, + [SMALL_STATE(1232)] = 32154, + [SMALL_STATE(1233)] = 32165, + [SMALL_STATE(1234)] = 32176, + [SMALL_STATE(1235)] = 32193, + [SMALL_STATE(1236)] = 32204, + [SMALL_STATE(1237)] = 32215, + [SMALL_STATE(1238)] = 32226, + [SMALL_STATE(1239)] = 32237, + [SMALL_STATE(1240)] = 32248, + [SMALL_STATE(1241)] = 32259, + [SMALL_STATE(1242)] = 32270, + [SMALL_STATE(1243)] = 32281, + [SMALL_STATE(1244)] = 32292, + [SMALL_STATE(1245)] = 32303, + [SMALL_STATE(1246)] = 32314, + [SMALL_STATE(1247)] = 32325, + [SMALL_STATE(1248)] = 32336, + [SMALL_STATE(1249)] = 32347, + [SMALL_STATE(1250)] = 32358, + [SMALL_STATE(1251)] = 32369, + [SMALL_STATE(1252)] = 32380, + [SMALL_STATE(1253)] = 32391, + [SMALL_STATE(1254)] = 32402, + [SMALL_STATE(1255)] = 32413, + [SMALL_STATE(1256)] = 32424, + [SMALL_STATE(1257)] = 32435, + [SMALL_STATE(1258)] = 32446, + [SMALL_STATE(1259)] = 32457, + [SMALL_STATE(1260)] = 32468, + [SMALL_STATE(1261)] = 32485, + [SMALL_STATE(1262)] = 32496, + [SMALL_STATE(1263)] = 32507, + [SMALL_STATE(1264)] = 32518, + [SMALL_STATE(1265)] = 32529, + [SMALL_STATE(1266)] = 32540, + [SMALL_STATE(1267)] = 32551, + [SMALL_STATE(1268)] = 32562, + [SMALL_STATE(1269)] = 32579, + [SMALL_STATE(1270)] = 32590, + [SMALL_STATE(1271)] = 32601, + [SMALL_STATE(1272)] = 32612, + [SMALL_STATE(1273)] = 32623, + [SMALL_STATE(1274)] = 32638, + [SMALL_STATE(1275)] = 32649, + [SMALL_STATE(1276)] = 32660, + [SMALL_STATE(1277)] = 32671, + [SMALL_STATE(1278)] = 32682, + [SMALL_STATE(1279)] = 32693, + [SMALL_STATE(1280)] = 32704, + [SMALL_STATE(1281)] = 32715, + [SMALL_STATE(1282)] = 32726, + [SMALL_STATE(1283)] = 32741, + [SMALL_STATE(1284)] = 32752, + [SMALL_STATE(1285)] = 32763, + [SMALL_STATE(1286)] = 32774, + [SMALL_STATE(1287)] = 32785, + [SMALL_STATE(1288)] = 32796, + [SMALL_STATE(1289)] = 32811, + [SMALL_STATE(1290)] = 32822, + [SMALL_STATE(1291)] = 32833, + [SMALL_STATE(1292)] = 32844, + [SMALL_STATE(1293)] = 32859, + [SMALL_STATE(1294)] = 32870, + [SMALL_STATE(1295)] = 32881, + [SMALL_STATE(1296)] = 32892, + [SMALL_STATE(1297)] = 32903, + [SMALL_STATE(1298)] = 32914, + [SMALL_STATE(1299)] = 32929, + [SMALL_STATE(1300)] = 32940, + [SMALL_STATE(1301)] = 32951, + [SMALL_STATE(1302)] = 32962, + [SMALL_STATE(1303)] = 32973, + [SMALL_STATE(1304)] = 32984, + [SMALL_STATE(1305)] = 32995, + [SMALL_STATE(1306)] = 33006, + [SMALL_STATE(1307)] = 33017, + [SMALL_STATE(1308)] = 33028, + [SMALL_STATE(1309)] = 33039, + [SMALL_STATE(1310)] = 33050, + [SMALL_STATE(1311)] = 33061, + [SMALL_STATE(1312)] = 33072, + [SMALL_STATE(1313)] = 33083, + [SMALL_STATE(1314)] = 33098, + [SMALL_STATE(1315)] = 33109, + [SMALL_STATE(1316)] = 33120, + [SMALL_STATE(1317)] = 33131, + [SMALL_STATE(1318)] = 33142, + [SMALL_STATE(1319)] = 33153, + [SMALL_STATE(1320)] = 33164, + [SMALL_STATE(1321)] = 33175, + [SMALL_STATE(1322)] = 33186, + [SMALL_STATE(1323)] = 33197, + [SMALL_STATE(1324)] = 33214, + [SMALL_STATE(1325)] = 33225, + [SMALL_STATE(1326)] = 33236, + [SMALL_STATE(1327)] = 33251, + [SMALL_STATE(1328)] = 33262, + [SMALL_STATE(1329)] = 33273, + [SMALL_STATE(1330)] = 33284, + [SMALL_STATE(1331)] = 33299, + [SMALL_STATE(1332)] = 33310, + [SMALL_STATE(1333)] = 33327, + [SMALL_STATE(1334)] = 33338, + [SMALL_STATE(1335)] = 33349, + [SMALL_STATE(1336)] = 33360, + [SMALL_STATE(1337)] = 33371, + [SMALL_STATE(1338)] = 33382, + [SMALL_STATE(1339)] = 33393, + [SMALL_STATE(1340)] = 33410, + [SMALL_STATE(1341)] = 33421, + [SMALL_STATE(1342)] = 33432, + [SMALL_STATE(1343)] = 33449, + [SMALL_STATE(1344)] = 33460, + [SMALL_STATE(1345)] = 33471, + [SMALL_STATE(1346)] = 33488, + [SMALL_STATE(1347)] = 33499, + [SMALL_STATE(1348)] = 33510, + [SMALL_STATE(1349)] = 33521, + [SMALL_STATE(1350)] = 33532, + [SMALL_STATE(1351)] = 33543, + [SMALL_STATE(1352)] = 33554, + [SMALL_STATE(1353)] = 33565, + [SMALL_STATE(1354)] = 33576, + [SMALL_STATE(1355)] = 33587, + [SMALL_STATE(1356)] = 33598, + [SMALL_STATE(1357)] = 33609, + [SMALL_STATE(1358)] = 33620, + [SMALL_STATE(1359)] = 33637, + [SMALL_STATE(1360)] = 33648, + [SMALL_STATE(1361)] = 33659, + [SMALL_STATE(1362)] = 33670, + [SMALL_STATE(1363)] = 33681, + [SMALL_STATE(1364)] = 33692, + [SMALL_STATE(1365)] = 33703, + [SMALL_STATE(1366)] = 33714, + [SMALL_STATE(1367)] = 33731, + [SMALL_STATE(1368)] = 33742, + [SMALL_STATE(1369)] = 33753, + [SMALL_STATE(1370)] = 33764, + [SMALL_STATE(1371)] = 33775, + [SMALL_STATE(1372)] = 33786, + [SMALL_STATE(1373)] = 33797, + [SMALL_STATE(1374)] = 33808, + [SMALL_STATE(1375)] = 33819, + [SMALL_STATE(1376)] = 33836, + [SMALL_STATE(1377)] = 33847, + [SMALL_STATE(1378)] = 33858, + [SMALL_STATE(1379)] = 33869, + [SMALL_STATE(1380)] = 33880, + [SMALL_STATE(1381)] = 33897, + [SMALL_STATE(1382)] = 33908, + [SMALL_STATE(1383)] = 33919, + [SMALL_STATE(1384)] = 33930, + [SMALL_STATE(1385)] = 33941, + [SMALL_STATE(1386)] = 33952, + [SMALL_STATE(1387)] = 33963, + [SMALL_STATE(1388)] = 33980, + [SMALL_STATE(1389)] = 33991, + [SMALL_STATE(1390)] = 34002, + [SMALL_STATE(1391)] = 34013, + [SMALL_STATE(1392)] = 34024, + [SMALL_STATE(1393)] = 34035, + [SMALL_STATE(1394)] = 34046, + [SMALL_STATE(1395)] = 34057, + [SMALL_STATE(1396)] = 34068, + [SMALL_STATE(1397)] = 34083, + [SMALL_STATE(1398)] = 34100, + [SMALL_STATE(1399)] = 34111, + [SMALL_STATE(1400)] = 34122, + [SMALL_STATE(1401)] = 34139, + [SMALL_STATE(1402)] = 34150, + [SMALL_STATE(1403)] = 34161, + [SMALL_STATE(1404)] = 34178, + [SMALL_STATE(1405)] = 34189, + [SMALL_STATE(1406)] = 34200, + [SMALL_STATE(1407)] = 34217, + [SMALL_STATE(1408)] = 34228, + [SMALL_STATE(1409)] = 34239, + [SMALL_STATE(1410)] = 34250, + [SMALL_STATE(1411)] = 34265, + [SMALL_STATE(1412)] = 34280, + [SMALL_STATE(1413)] = 34291, + [SMALL_STATE(1414)] = 34306, + [SMALL_STATE(1415)] = 34323, + [SMALL_STATE(1416)] = 34338, + [SMALL_STATE(1417)] = 34353, + [SMALL_STATE(1418)] = 34370, + [SMALL_STATE(1419)] = 34381, + [SMALL_STATE(1420)] = 34396, + [SMALL_STATE(1421)] = 34413, + [SMALL_STATE(1422)] = 34424, + [SMALL_STATE(1423)] = 34439, + [SMALL_STATE(1424)] = 34454, + [SMALL_STATE(1425)] = 34469, + [SMALL_STATE(1426)] = 34484, + [SMALL_STATE(1427)] = 34499, + [SMALL_STATE(1428)] = 34514, + [SMALL_STATE(1429)] = 34525, + [SMALL_STATE(1430)] = 34540, + [SMALL_STATE(1431)] = 34555, + [SMALL_STATE(1432)] = 34570, + [SMALL_STATE(1433)] = 34587, + [SMALL_STATE(1434)] = 34600, + [SMALL_STATE(1435)] = 34611, + [SMALL_STATE(1436)] = 34626, + [SMALL_STATE(1437)] = 34637, + [SMALL_STATE(1438)] = 34648, + [SMALL_STATE(1439)] = 34659, + [SMALL_STATE(1440)] = 34670, + [SMALL_STATE(1441)] = 34681, + [SMALL_STATE(1442)] = 34692, + [SMALL_STATE(1443)] = 34703, + [SMALL_STATE(1444)] = 34714, + [SMALL_STATE(1445)] = 34725, + [SMALL_STATE(1446)] = 34736, + [SMALL_STATE(1447)] = 34747, + [SMALL_STATE(1448)] = 34758, + [SMALL_STATE(1449)] = 34769, + [SMALL_STATE(1450)] = 34780, + [SMALL_STATE(1451)] = 34791, + [SMALL_STATE(1452)] = 34802, + [SMALL_STATE(1453)] = 34813, + [SMALL_STATE(1454)] = 34824, + [SMALL_STATE(1455)] = 34841, + [SMALL_STATE(1456)] = 34852, + [SMALL_STATE(1457)] = 34863, + [SMALL_STATE(1458)] = 34874, + [SMALL_STATE(1459)] = 34885, + [SMALL_STATE(1460)] = 34896, + [SMALL_STATE(1461)] = 34907, + [SMALL_STATE(1462)] = 34918, + [SMALL_STATE(1463)] = 34929, + [SMALL_STATE(1464)] = 34940, + [SMALL_STATE(1465)] = 34951, + [SMALL_STATE(1466)] = 34962, + [SMALL_STATE(1467)] = 34973, + [SMALL_STATE(1468)] = 34984, + [SMALL_STATE(1469)] = 34995, + [SMALL_STATE(1470)] = 35006, + [SMALL_STATE(1471)] = 35017, + [SMALL_STATE(1472)] = 35028, + [SMALL_STATE(1473)] = 35039, + [SMALL_STATE(1474)] = 35050, + [SMALL_STATE(1475)] = 35061, + [SMALL_STATE(1476)] = 35072, + [SMALL_STATE(1477)] = 35083, + [SMALL_STATE(1478)] = 35094, + [SMALL_STATE(1479)] = 35105, + [SMALL_STATE(1480)] = 35116, + [SMALL_STATE(1481)] = 35133, + [SMALL_STATE(1482)] = 35144, + [SMALL_STATE(1483)] = 35155, + [SMALL_STATE(1484)] = 35166, + [SMALL_STATE(1485)] = 35177, + [SMALL_STATE(1486)] = 35188, + [SMALL_STATE(1487)] = 35199, + [SMALL_STATE(1488)] = 35210, + [SMALL_STATE(1489)] = 35221, + [SMALL_STATE(1490)] = 35232, + [SMALL_STATE(1491)] = 35247, + [SMALL_STATE(1492)] = 35258, + [SMALL_STATE(1493)] = 35269, + [SMALL_STATE(1494)] = 35280, + [SMALL_STATE(1495)] = 35291, + [SMALL_STATE(1496)] = 35302, + [SMALL_STATE(1497)] = 35313, + [SMALL_STATE(1498)] = 35324, + [SMALL_STATE(1499)] = 35339, + [SMALL_STATE(1500)] = 35350, + [SMALL_STATE(1501)] = 35361, + [SMALL_STATE(1502)] = 35372, + [SMALL_STATE(1503)] = 35383, + [SMALL_STATE(1504)] = 35394, + [SMALL_STATE(1505)] = 35408, + [SMALL_STATE(1506)] = 35422, + [SMALL_STATE(1507)] = 35436, + [SMALL_STATE(1508)] = 35450, + [SMALL_STATE(1509)] = 35464, + [SMALL_STATE(1510)] = 35478, + [SMALL_STATE(1511)] = 35492, + [SMALL_STATE(1512)] = 35506, + [SMALL_STATE(1513)] = 35520, + [SMALL_STATE(1514)] = 35534, + [SMALL_STATE(1515)] = 35548, + [SMALL_STATE(1516)] = 35562, + [SMALL_STATE(1517)] = 35576, + [SMALL_STATE(1518)] = 35590, + [SMALL_STATE(1519)] = 35604, + [SMALL_STATE(1520)] = 35618, + [SMALL_STATE(1521)] = 35632, + [SMALL_STATE(1522)] = 35646, + [SMALL_STATE(1523)] = 35660, + [SMALL_STATE(1524)] = 35674, + [SMALL_STATE(1525)] = 35688, + [SMALL_STATE(1526)] = 35702, + [SMALL_STATE(1527)] = 35716, + [SMALL_STATE(1528)] = 35730, + [SMALL_STATE(1529)] = 35744, + [SMALL_STATE(1530)] = 35758, + [SMALL_STATE(1531)] = 35772, + [SMALL_STATE(1532)] = 35786, + [SMALL_STATE(1533)] = 35800, + [SMALL_STATE(1534)] = 35814, + [SMALL_STATE(1535)] = 35828, + [SMALL_STATE(1536)] = 35842, + [SMALL_STATE(1537)] = 35852, + [SMALL_STATE(1538)] = 35866, + [SMALL_STATE(1539)] = 35880, + [SMALL_STATE(1540)] = 35890, + [SMALL_STATE(1541)] = 35904, + [SMALL_STATE(1542)] = 35918, + [SMALL_STATE(1543)] = 35932, + [SMALL_STATE(1544)] = 35946, + [SMALL_STATE(1545)] = 35960, + [SMALL_STATE(1546)] = 35974, + [SMALL_STATE(1547)] = 35988, + [SMALL_STATE(1548)] = 36002, + [SMALL_STATE(1549)] = 36016, + [SMALL_STATE(1550)] = 36030, + [SMALL_STATE(1551)] = 36044, + [SMALL_STATE(1552)] = 36058, + [SMALL_STATE(1553)] = 36072, + [SMALL_STATE(1554)] = 36086, + [SMALL_STATE(1555)] = 36100, + [SMALL_STATE(1556)] = 36114, + [SMALL_STATE(1557)] = 36128, + [SMALL_STATE(1558)] = 36142, + [SMALL_STATE(1559)] = 36156, + [SMALL_STATE(1560)] = 36170, + [SMALL_STATE(1561)] = 36184, + [SMALL_STATE(1562)] = 36198, + [SMALL_STATE(1563)] = 36212, + [SMALL_STATE(1564)] = 36226, + [SMALL_STATE(1565)] = 36240, + [SMALL_STATE(1566)] = 36254, + [SMALL_STATE(1567)] = 36268, + [SMALL_STATE(1568)] = 36282, + [SMALL_STATE(1569)] = 36296, + [SMALL_STATE(1570)] = 36310, + [SMALL_STATE(1571)] = 36324, + [SMALL_STATE(1572)] = 36338, + [SMALL_STATE(1573)] = 36352, + [SMALL_STATE(1574)] = 36366, + [SMALL_STATE(1575)] = 36380, + [SMALL_STATE(1576)] = 36394, + [SMALL_STATE(1577)] = 36408, + [SMALL_STATE(1578)] = 36422, + [SMALL_STATE(1579)] = 36436, + [SMALL_STATE(1580)] = 36450, + [SMALL_STATE(1581)] = 36464, + [SMALL_STATE(1582)] = 36478, + [SMALL_STATE(1583)] = 36492, + [SMALL_STATE(1584)] = 36506, + [SMALL_STATE(1585)] = 36520, + [SMALL_STATE(1586)] = 36534, + [SMALL_STATE(1587)] = 36548, + [SMALL_STATE(1588)] = 36562, + [SMALL_STATE(1589)] = 36576, + [SMALL_STATE(1590)] = 36588, + [SMALL_STATE(1591)] = 36602, + [SMALL_STATE(1592)] = 36616, + [SMALL_STATE(1593)] = 36630, + [SMALL_STATE(1594)] = 36644, + [SMALL_STATE(1595)] = 36658, + [SMALL_STATE(1596)] = 36672, + [SMALL_STATE(1597)] = 36686, + [SMALL_STATE(1598)] = 36700, + [SMALL_STATE(1599)] = 36714, + [SMALL_STATE(1600)] = 36728, + [SMALL_STATE(1601)] = 36742, + [SMALL_STATE(1602)] = 36756, + [SMALL_STATE(1603)] = 36770, + [SMALL_STATE(1604)] = 36784, + [SMALL_STATE(1605)] = 36798, + [SMALL_STATE(1606)] = 36812, + [SMALL_STATE(1607)] = 36826, + [SMALL_STATE(1608)] = 36840, + [SMALL_STATE(1609)] = 36850, + [SMALL_STATE(1610)] = 36864, + [SMALL_STATE(1611)] = 36878, + [SMALL_STATE(1612)] = 36892, + [SMALL_STATE(1613)] = 36906, + [SMALL_STATE(1614)] = 36920, + [SMALL_STATE(1615)] = 36934, + [SMALL_STATE(1616)] = 36948, + [SMALL_STATE(1617)] = 36962, + [SMALL_STATE(1618)] = 36976, + [SMALL_STATE(1619)] = 36990, + [SMALL_STATE(1620)] = 37004, + [SMALL_STATE(1621)] = 37018, + [SMALL_STATE(1622)] = 37030, + [SMALL_STATE(1623)] = 37044, + [SMALL_STATE(1624)] = 37058, + [SMALL_STATE(1625)] = 37072, + [SMALL_STATE(1626)] = 37086, + [SMALL_STATE(1627)] = 37100, + [SMALL_STATE(1628)] = 37114, + [SMALL_STATE(1629)] = 37128, + [SMALL_STATE(1630)] = 37142, + [SMALL_STATE(1631)] = 37156, + [SMALL_STATE(1632)] = 37170, + [SMALL_STATE(1633)] = 37184, + [SMALL_STATE(1634)] = 37198, + [SMALL_STATE(1635)] = 37212, + [SMALL_STATE(1636)] = 37226, + [SMALL_STATE(1637)] = 37240, + [SMALL_STATE(1638)] = 37254, + [SMALL_STATE(1639)] = 37268, + [SMALL_STATE(1640)] = 37282, + [SMALL_STATE(1641)] = 37296, + [SMALL_STATE(1642)] = 37310, + [SMALL_STATE(1643)] = 37324, + [SMALL_STATE(1644)] = 37338, + [SMALL_STATE(1645)] = 37352, + [SMALL_STATE(1646)] = 37366, + [SMALL_STATE(1647)] = 37380, + [SMALL_STATE(1648)] = 37394, + [SMALL_STATE(1649)] = 37408, + [SMALL_STATE(1650)] = 37418, + [SMALL_STATE(1651)] = 37432, + [SMALL_STATE(1652)] = 37446, + [SMALL_STATE(1653)] = 37460, + [SMALL_STATE(1654)] = 37474, + [SMALL_STATE(1655)] = 37486, + [SMALL_STATE(1656)] = 37500, + [SMALL_STATE(1657)] = 37514, + [SMALL_STATE(1658)] = 37528, + [SMALL_STATE(1659)] = 37542, + [SMALL_STATE(1660)] = 37556, + [SMALL_STATE(1661)] = 37570, + [SMALL_STATE(1662)] = 37580, + [SMALL_STATE(1663)] = 37590, + [SMALL_STATE(1664)] = 37604, + [SMALL_STATE(1665)] = 37618, + [SMALL_STATE(1666)] = 37632, + [SMALL_STATE(1667)] = 37646, + [SMALL_STATE(1668)] = 37660, + [SMALL_STATE(1669)] = 37674, + [SMALL_STATE(1670)] = 37688, + [SMALL_STATE(1671)] = 37702, + [SMALL_STATE(1672)] = 37716, + [SMALL_STATE(1673)] = 37730, + [SMALL_STATE(1674)] = 37744, + [SMALL_STATE(1675)] = 37758, + [SMALL_STATE(1676)] = 37772, + [SMALL_STATE(1677)] = 37786, + [SMALL_STATE(1678)] = 37800, + [SMALL_STATE(1679)] = 37814, + [SMALL_STATE(1680)] = 37828, + [SMALL_STATE(1681)] = 37842, + [SMALL_STATE(1682)] = 37856, + [SMALL_STATE(1683)] = 37870, + [SMALL_STATE(1684)] = 37884, + [SMALL_STATE(1685)] = 37898, + [SMALL_STATE(1686)] = 37912, + [SMALL_STATE(1687)] = 37926, + [SMALL_STATE(1688)] = 37940, + [SMALL_STATE(1689)] = 37952, + [SMALL_STATE(1690)] = 37966, + [SMALL_STATE(1691)] = 37980, + [SMALL_STATE(1692)] = 37994, + [SMALL_STATE(1693)] = 38008, + [SMALL_STATE(1694)] = 38022, + [SMALL_STATE(1695)] = 38036, + [SMALL_STATE(1696)] = 38050, + [SMALL_STATE(1697)] = 38064, + [SMALL_STATE(1698)] = 38078, + [SMALL_STATE(1699)] = 38092, + [SMALL_STATE(1700)] = 38106, + [SMALL_STATE(1701)] = 38120, + [SMALL_STATE(1702)] = 38134, + [SMALL_STATE(1703)] = 38148, + [SMALL_STATE(1704)] = 38162, + [SMALL_STATE(1705)] = 38176, + [SMALL_STATE(1706)] = 38186, + [SMALL_STATE(1707)] = 38200, + [SMALL_STATE(1708)] = 38214, + [SMALL_STATE(1709)] = 38228, + [SMALL_STATE(1710)] = 38242, + [SMALL_STATE(1711)] = 38256, + [SMALL_STATE(1712)] = 38270, + [SMALL_STATE(1713)] = 38284, + [SMALL_STATE(1714)] = 38298, + [SMALL_STATE(1715)] = 38312, + [SMALL_STATE(1716)] = 38322, + [SMALL_STATE(1717)] = 38336, + [SMALL_STATE(1718)] = 38350, + [SMALL_STATE(1719)] = 38364, + [SMALL_STATE(1720)] = 38378, + [SMALL_STATE(1721)] = 38392, + [SMALL_STATE(1722)] = 38406, + [SMALL_STATE(1723)] = 38418, + [SMALL_STATE(1724)] = 38430, + [SMALL_STATE(1725)] = 38444, + [SMALL_STATE(1726)] = 38458, + [SMALL_STATE(1727)] = 38472, + [SMALL_STATE(1728)] = 38484, + [SMALL_STATE(1729)] = 38498, + [SMALL_STATE(1730)] = 38512, + [SMALL_STATE(1731)] = 38524, + [SMALL_STATE(1732)] = 38538, + [SMALL_STATE(1733)] = 38552, + [SMALL_STATE(1734)] = 38566, + [SMALL_STATE(1735)] = 38580, + [SMALL_STATE(1736)] = 38594, + [SMALL_STATE(1737)] = 38608, + [SMALL_STATE(1738)] = 38622, + [SMALL_STATE(1739)] = 38636, + [SMALL_STATE(1740)] = 38650, + [SMALL_STATE(1741)] = 38664, + [SMALL_STATE(1742)] = 38678, + [SMALL_STATE(1743)] = 38692, + [SMALL_STATE(1744)] = 38706, + [SMALL_STATE(1745)] = 38720, + [SMALL_STATE(1746)] = 38734, + [SMALL_STATE(1747)] = 38748, + [SMALL_STATE(1748)] = 38762, + [SMALL_STATE(1749)] = 38776, + [SMALL_STATE(1750)] = 38790, + [SMALL_STATE(1751)] = 38804, + [SMALL_STATE(1752)] = 38818, + [SMALL_STATE(1753)] = 38832, + [SMALL_STATE(1754)] = 38846, + [SMALL_STATE(1755)] = 38860, + [SMALL_STATE(1756)] = 38874, + [SMALL_STATE(1757)] = 38888, + [SMALL_STATE(1758)] = 38902, + [SMALL_STATE(1759)] = 38916, + [SMALL_STATE(1760)] = 38930, + [SMALL_STATE(1761)] = 38944, + [SMALL_STATE(1762)] = 38958, + [SMALL_STATE(1763)] = 38972, + [SMALL_STATE(1764)] = 38986, + [SMALL_STATE(1765)] = 39000, + [SMALL_STATE(1766)] = 39014, + [SMALL_STATE(1767)] = 39028, + [SMALL_STATE(1768)] = 39042, + [SMALL_STATE(1769)] = 39056, + [SMALL_STATE(1770)] = 39070, + [SMALL_STATE(1771)] = 39084, + [SMALL_STATE(1772)] = 39098, + [SMALL_STATE(1773)] = 39112, + [SMALL_STATE(1774)] = 39126, + [SMALL_STATE(1775)] = 39140, + [SMALL_STATE(1776)] = 39154, + [SMALL_STATE(1777)] = 39168, + [SMALL_STATE(1778)] = 39182, + [SMALL_STATE(1779)] = 39196, + [SMALL_STATE(1780)] = 39210, + [SMALL_STATE(1781)] = 39224, + [SMALL_STATE(1782)] = 39238, + [SMALL_STATE(1783)] = 39252, + [SMALL_STATE(1784)] = 39266, + [SMALL_STATE(1785)] = 39280, + [SMALL_STATE(1786)] = 39294, + [SMALL_STATE(1787)] = 39308, + [SMALL_STATE(1788)] = 39322, + [SMALL_STATE(1789)] = 39336, + [SMALL_STATE(1790)] = 39350, + [SMALL_STATE(1791)] = 39364, + [SMALL_STATE(1792)] = 39378, + [SMALL_STATE(1793)] = 39392, + [SMALL_STATE(1794)] = 39406, + [SMALL_STATE(1795)] = 39420, + [SMALL_STATE(1796)] = 39434, + [SMALL_STATE(1797)] = 39448, + [SMALL_STATE(1798)] = 39462, + [SMALL_STATE(1799)] = 39476, + [SMALL_STATE(1800)] = 39490, + [SMALL_STATE(1801)] = 39504, + [SMALL_STATE(1802)] = 39518, + [SMALL_STATE(1803)] = 39532, + [SMALL_STATE(1804)] = 39546, + [SMALL_STATE(1805)] = 39560, + [SMALL_STATE(1806)] = 39574, + [SMALL_STATE(1807)] = 39588, + [SMALL_STATE(1808)] = 39602, + [SMALL_STATE(1809)] = 39612, + [SMALL_STATE(1810)] = 39626, + [SMALL_STATE(1811)] = 39640, + [SMALL_STATE(1812)] = 39654, + [SMALL_STATE(1813)] = 39668, + [SMALL_STATE(1814)] = 39682, + [SMALL_STATE(1815)] = 39696, + [SMALL_STATE(1816)] = 39710, + [SMALL_STATE(1817)] = 39724, + [SMALL_STATE(1818)] = 39738, + [SMALL_STATE(1819)] = 39752, + [SMALL_STATE(1820)] = 39766, + [SMALL_STATE(1821)] = 39780, + [SMALL_STATE(1822)] = 39794, + [SMALL_STATE(1823)] = 39808, + [SMALL_STATE(1824)] = 39822, + [SMALL_STATE(1825)] = 39836, + [SMALL_STATE(1826)] = 39850, + [SMALL_STATE(1827)] = 39864, + [SMALL_STATE(1828)] = 39876, + [SMALL_STATE(1829)] = 39890, + [SMALL_STATE(1830)] = 39904, + [SMALL_STATE(1831)] = 39914, + [SMALL_STATE(1832)] = 39928, + [SMALL_STATE(1833)] = 39942, + [SMALL_STATE(1834)] = 39954, + [SMALL_STATE(1835)] = 39968, + [SMALL_STATE(1836)] = 39982, + [SMALL_STATE(1837)] = 39996, + [SMALL_STATE(1838)] = 40010, + [SMALL_STATE(1839)] = 40024, + [SMALL_STATE(1840)] = 40038, + [SMALL_STATE(1841)] = 40052, + [SMALL_STATE(1842)] = 40066, + [SMALL_STATE(1843)] = 40080, + [SMALL_STATE(1844)] = 40094, + [SMALL_STATE(1845)] = 40108, + [SMALL_STATE(1846)] = 40122, + [SMALL_STATE(1847)] = 40136, + [SMALL_STATE(1848)] = 40150, + [SMALL_STATE(1849)] = 40164, + [SMALL_STATE(1850)] = 40178, + [SMALL_STATE(1851)] = 40192, + [SMALL_STATE(1852)] = 40206, + [SMALL_STATE(1853)] = 40220, + [SMALL_STATE(1854)] = 40232, + [SMALL_STATE(1855)] = 40246, + [SMALL_STATE(1856)] = 40260, + [SMALL_STATE(1857)] = 40274, + [SMALL_STATE(1858)] = 40288, + [SMALL_STATE(1859)] = 40302, + [SMALL_STATE(1860)] = 40316, + [SMALL_STATE(1861)] = 40330, + [SMALL_STATE(1862)] = 40344, + [SMALL_STATE(1863)] = 40356, + [SMALL_STATE(1864)] = 40370, + [SMALL_STATE(1865)] = 40384, + [SMALL_STATE(1866)] = 40394, + [SMALL_STATE(1867)] = 40408, + [SMALL_STATE(1868)] = 40422, + [SMALL_STATE(1869)] = 40436, + [SMALL_STATE(1870)] = 40450, + [SMALL_STATE(1871)] = 40464, + [SMALL_STATE(1872)] = 40478, + [SMALL_STATE(1873)] = 40492, + [SMALL_STATE(1874)] = 40506, + [SMALL_STATE(1875)] = 40520, + [SMALL_STATE(1876)] = 40534, + [SMALL_STATE(1877)] = 40548, + [SMALL_STATE(1878)] = 40562, + [SMALL_STATE(1879)] = 40576, + [SMALL_STATE(1880)] = 40590, + [SMALL_STATE(1881)] = 40604, + [SMALL_STATE(1882)] = 40618, + [SMALL_STATE(1883)] = 40632, + [SMALL_STATE(1884)] = 40646, + [SMALL_STATE(1885)] = 40660, + [SMALL_STATE(1886)] = 40674, + [SMALL_STATE(1887)] = 40688, + [SMALL_STATE(1888)] = 40702, + [SMALL_STATE(1889)] = 40716, + [SMALL_STATE(1890)] = 40730, + [SMALL_STATE(1891)] = 40744, + [SMALL_STATE(1892)] = 40758, + [SMALL_STATE(1893)] = 40772, + [SMALL_STATE(1894)] = 40786, + [SMALL_STATE(1895)] = 40800, + [SMALL_STATE(1896)] = 40814, + [SMALL_STATE(1897)] = 40828, + [SMALL_STATE(1898)] = 40842, + [SMALL_STATE(1899)] = 40856, + [SMALL_STATE(1900)] = 40870, + [SMALL_STATE(1901)] = 40884, + [SMALL_STATE(1902)] = 40898, + [SMALL_STATE(1903)] = 40912, + [SMALL_STATE(1904)] = 40926, + [SMALL_STATE(1905)] = 40940, + [SMALL_STATE(1906)] = 40954, + [SMALL_STATE(1907)] = 40968, + [SMALL_STATE(1908)] = 40982, + [SMALL_STATE(1909)] = 40996, + [SMALL_STATE(1910)] = 41010, + [SMALL_STATE(1911)] = 41024, + [SMALL_STATE(1912)] = 41034, + [SMALL_STATE(1913)] = 41045, + [SMALL_STATE(1914)] = 41056, + [SMALL_STATE(1915)] = 41065, + [SMALL_STATE(1916)] = 41076, + [SMALL_STATE(1917)] = 41085, + [SMALL_STATE(1918)] = 41094, + [SMALL_STATE(1919)] = 41103, + [SMALL_STATE(1920)] = 41114, + [SMALL_STATE(1921)] = 41125, + [SMALL_STATE(1922)] = 41136, + [SMALL_STATE(1923)] = 41147, + [SMALL_STATE(1924)] = 41158, + [SMALL_STATE(1925)] = 41169, + [SMALL_STATE(1926)] = 41180, + [SMALL_STATE(1927)] = 41189, + [SMALL_STATE(1928)] = 41200, + [SMALL_STATE(1929)] = 41209, + [SMALL_STATE(1930)] = 41220, + [SMALL_STATE(1931)] = 41229, + [SMALL_STATE(1932)] = 41240, + [SMALL_STATE(1933)] = 41249, + [SMALL_STATE(1934)] = 41258, + [SMALL_STATE(1935)] = 41269, + [SMALL_STATE(1936)] = 41280, + [SMALL_STATE(1937)] = 41291, + [SMALL_STATE(1938)] = 41300, + [SMALL_STATE(1939)] = 41311, + [SMALL_STATE(1940)] = 41320, + [SMALL_STATE(1941)] = 41331, + [SMALL_STATE(1942)] = 41340, + [SMALL_STATE(1943)] = 41351, + [SMALL_STATE(1944)] = 41362, + [SMALL_STATE(1945)] = 41371, + [SMALL_STATE(1946)] = 41382, + [SMALL_STATE(1947)] = 41391, + [SMALL_STATE(1948)] = 41400, + [SMALL_STATE(1949)] = 41409, + [SMALL_STATE(1950)] = 41420, + [SMALL_STATE(1951)] = 41431, + [SMALL_STATE(1952)] = 41442, + [SMALL_STATE(1953)] = 41451, + [SMALL_STATE(1954)] = 41460, + [SMALL_STATE(1955)] = 41471, + [SMALL_STATE(1956)] = 41482, + [SMALL_STATE(1957)] = 41493, + [SMALL_STATE(1958)] = 41502, + [SMALL_STATE(1959)] = 41513, + [SMALL_STATE(1960)] = 41522, + [SMALL_STATE(1961)] = 41533, + [SMALL_STATE(1962)] = 41542, + [SMALL_STATE(1963)] = 41551, + [SMALL_STATE(1964)] = 41562, + [SMALL_STATE(1965)] = 41573, + [SMALL_STATE(1966)] = 41582, + [SMALL_STATE(1967)] = 41593, + [SMALL_STATE(1968)] = 41604, + [SMALL_STATE(1969)] = 41615, + [SMALL_STATE(1970)] = 41626, + [SMALL_STATE(1971)] = 41637, + [SMALL_STATE(1972)] = 41648, + [SMALL_STATE(1973)] = 41659, + [SMALL_STATE(1974)] = 41670, + [SMALL_STATE(1975)] = 41681, + [SMALL_STATE(1976)] = 41692, + [SMALL_STATE(1977)] = 41701, + [SMALL_STATE(1978)] = 41712, + [SMALL_STATE(1979)] = 41723, + [SMALL_STATE(1980)] = 41734, + [SMALL_STATE(1981)] = 41743, + [SMALL_STATE(1982)] = 41754, + [SMALL_STATE(1983)] = 41765, + [SMALL_STATE(1984)] = 41776, + [SMALL_STATE(1985)] = 41787, + [SMALL_STATE(1986)] = 41798, + [SMALL_STATE(1987)] = 41809, + [SMALL_STATE(1988)] = 41820, + [SMALL_STATE(1989)] = 41831, + [SMALL_STATE(1990)] = 41842, + [SMALL_STATE(1991)] = 41851, + [SMALL_STATE(1992)] = 41862, + [SMALL_STATE(1993)] = 41873, + [SMALL_STATE(1994)] = 41884, + [SMALL_STATE(1995)] = 41895, + [SMALL_STATE(1996)] = 41906, + [SMALL_STATE(1997)] = 41915, + [SMALL_STATE(1998)] = 41926, + [SMALL_STATE(1999)] = 41937, + [SMALL_STATE(2000)] = 41948, + [SMALL_STATE(2001)] = 41959, + [SMALL_STATE(2002)] = 41970, + [SMALL_STATE(2003)] = 41981, + [SMALL_STATE(2004)] = 41992, + [SMALL_STATE(2005)] = 42001, + [SMALL_STATE(2006)] = 42012, + [SMALL_STATE(2007)] = 42023, + [SMALL_STATE(2008)] = 42032, + [SMALL_STATE(2009)] = 42043, + [SMALL_STATE(2010)] = 42052, + [SMALL_STATE(2011)] = 42063, + [SMALL_STATE(2012)] = 42074, + [SMALL_STATE(2013)] = 42085, + [SMALL_STATE(2014)] = 42096, + [SMALL_STATE(2015)] = 42107, + [SMALL_STATE(2016)] = 42118, + [SMALL_STATE(2017)] = 42127, + [SMALL_STATE(2018)] = 42138, + [SMALL_STATE(2019)] = 42149, + [SMALL_STATE(2020)] = 42160, + [SMALL_STATE(2021)] = 42171, + [SMALL_STATE(2022)] = 42182, + [SMALL_STATE(2023)] = 42193, + [SMALL_STATE(2024)] = 42204, + [SMALL_STATE(2025)] = 42215, + [SMALL_STATE(2026)] = 42224, + [SMALL_STATE(2027)] = 42235, + [SMALL_STATE(2028)] = 42246, + [SMALL_STATE(2029)] = 42257, + [SMALL_STATE(2030)] = 42268, + [SMALL_STATE(2031)] = 42279, + [SMALL_STATE(2032)] = 42290, + [SMALL_STATE(2033)] = 42301, + [SMALL_STATE(2034)] = 42312, + [SMALL_STATE(2035)] = 42323, + [SMALL_STATE(2036)] = 42332, + [SMALL_STATE(2037)] = 42343, + [SMALL_STATE(2038)] = 42354, + [SMALL_STATE(2039)] = 42365, + [SMALL_STATE(2040)] = 42374, + [SMALL_STATE(2041)] = 42383, + [SMALL_STATE(2042)] = 42394, + [SMALL_STATE(2043)] = 42405, + [SMALL_STATE(2044)] = 42416, + [SMALL_STATE(2045)] = 42425, + [SMALL_STATE(2046)] = 42436, + [SMALL_STATE(2047)] = 42447, + [SMALL_STATE(2048)] = 42456, + [SMALL_STATE(2049)] = 42467, + [SMALL_STATE(2050)] = 42476, + [SMALL_STATE(2051)] = 42485, + [SMALL_STATE(2052)] = 42496, + [SMALL_STATE(2053)] = 42507, + [SMALL_STATE(2054)] = 42520, + [SMALL_STATE(2055)] = 42531, + [SMALL_STATE(2056)] = 42542, + [SMALL_STATE(2057)] = 42553, + [SMALL_STATE(2058)] = 42564, + [SMALL_STATE(2059)] = 42575, + [SMALL_STATE(2060)] = 42586, + [SMALL_STATE(2061)] = 42595, + [SMALL_STATE(2062)] = 42606, + [SMALL_STATE(2063)] = 42615, + [SMALL_STATE(2064)] = 42626, + [SMALL_STATE(2065)] = 42635, + [SMALL_STATE(2066)] = 42646, + [SMALL_STATE(2067)] = 42657, + [SMALL_STATE(2068)] = 42670, + [SMALL_STATE(2069)] = 42678, + [SMALL_STATE(2070)] = 42686, + [SMALL_STATE(2071)] = 42694, + [SMALL_STATE(2072)] = 42702, + [SMALL_STATE(2073)] = 42710, + [SMALL_STATE(2074)] = 42718, + [SMALL_STATE(2075)] = 42726, + [SMALL_STATE(2076)] = 42734, + [SMALL_STATE(2077)] = 42742, + [SMALL_STATE(2078)] = 42750, + [SMALL_STATE(2079)] = 42758, + [SMALL_STATE(2080)] = 42766, + [SMALL_STATE(2081)] = 42774, + [SMALL_STATE(2082)] = 42782, + [SMALL_STATE(2083)] = 42790, + [SMALL_STATE(2084)] = 42798, + [SMALL_STATE(2085)] = 42806, + [SMALL_STATE(2086)] = 42814, + [SMALL_STATE(2087)] = 42822, + [SMALL_STATE(2088)] = 42830, + [SMALL_STATE(2089)] = 42838, + [SMALL_STATE(2090)] = 42846, + [SMALL_STATE(2091)] = 42854, + [SMALL_STATE(2092)] = 42862, + [SMALL_STATE(2093)] = 42870, + [SMALL_STATE(2094)] = 42878, + [SMALL_STATE(2095)] = 42886, + [SMALL_STATE(2096)] = 42894, + [SMALL_STATE(2097)] = 42902, + [SMALL_STATE(2098)] = 42910, + [SMALL_STATE(2099)] = 42918, + [SMALL_STATE(2100)] = 42926, + [SMALL_STATE(2101)] = 42934, + [SMALL_STATE(2102)] = 42942, + [SMALL_STATE(2103)] = 42950, + [SMALL_STATE(2104)] = 42958, + [SMALL_STATE(2105)] = 42966, + [SMALL_STATE(2106)] = 42974, + [SMALL_STATE(2107)] = 42982, + [SMALL_STATE(2108)] = 42990, + [SMALL_STATE(2109)] = 42998, + [SMALL_STATE(2110)] = 43006, + [SMALL_STATE(2111)] = 43014, + [SMALL_STATE(2112)] = 43022, + [SMALL_STATE(2113)] = 43030, + [SMALL_STATE(2114)] = 43038, + [SMALL_STATE(2115)] = 43046, + [SMALL_STATE(2116)] = 43054, + [SMALL_STATE(2117)] = 43062, + [SMALL_STATE(2118)] = 43070, + [SMALL_STATE(2119)] = 43078, + [SMALL_STATE(2120)] = 43086, + [SMALL_STATE(2121)] = 43094, + [SMALL_STATE(2122)] = 43102, + [SMALL_STATE(2123)] = 43110, + [SMALL_STATE(2124)] = 43118, + [SMALL_STATE(2125)] = 43126, + [SMALL_STATE(2126)] = 43134, + [SMALL_STATE(2127)] = 43142, + [SMALL_STATE(2128)] = 43150, + [SMALL_STATE(2129)] = 43158, + [SMALL_STATE(2130)] = 43166, + [SMALL_STATE(2131)] = 43174, + [SMALL_STATE(2132)] = 43182, + [SMALL_STATE(2133)] = 43190, + [SMALL_STATE(2134)] = 43198, + [SMALL_STATE(2135)] = 43206, + [SMALL_STATE(2136)] = 43214, + [SMALL_STATE(2137)] = 43222, + [SMALL_STATE(2138)] = 43230, + [SMALL_STATE(2139)] = 43238, + [SMALL_STATE(2140)] = 43246, + [SMALL_STATE(2141)] = 43254, + [SMALL_STATE(2142)] = 43262, + [SMALL_STATE(2143)] = 43270, + [SMALL_STATE(2144)] = 43278, + [SMALL_STATE(2145)] = 43286, + [SMALL_STATE(2146)] = 43294, + [SMALL_STATE(2147)] = 43302, + [SMALL_STATE(2148)] = 43310, + [SMALL_STATE(2149)] = 43318, + [SMALL_STATE(2150)] = 43326, + [SMALL_STATE(2151)] = 43334, + [SMALL_STATE(2152)] = 43342, + [SMALL_STATE(2153)] = 43350, + [SMALL_STATE(2154)] = 43358, + [SMALL_STATE(2155)] = 43366, + [SMALL_STATE(2156)] = 43374, + [SMALL_STATE(2157)] = 43382, + [SMALL_STATE(2158)] = 43390, + [SMALL_STATE(2159)] = 43398, + [SMALL_STATE(2160)] = 43406, + [SMALL_STATE(2161)] = 43414, + [SMALL_STATE(2162)] = 43422, + [SMALL_STATE(2163)] = 43430, + [SMALL_STATE(2164)] = 43438, + [SMALL_STATE(2165)] = 43446, + [SMALL_STATE(2166)] = 43454, + [SMALL_STATE(2167)] = 43462, + [SMALL_STATE(2168)] = 43470, + [SMALL_STATE(2169)] = 43478, + [SMALL_STATE(2170)] = 43486, + [SMALL_STATE(2171)] = 43494, + [SMALL_STATE(2172)] = 43502, + [SMALL_STATE(2173)] = 43510, + [SMALL_STATE(2174)] = 43518, + [SMALL_STATE(2175)] = 43526, + [SMALL_STATE(2176)] = 43534, + [SMALL_STATE(2177)] = 43542, + [SMALL_STATE(2178)] = 43550, + [SMALL_STATE(2179)] = 43558, + [SMALL_STATE(2180)] = 43566, + [SMALL_STATE(2181)] = 43574, + [SMALL_STATE(2182)] = 43582, + [SMALL_STATE(2183)] = 43590, + [SMALL_STATE(2184)] = 43598, + [SMALL_STATE(2185)] = 43606, + [SMALL_STATE(2186)] = 43614, + [SMALL_STATE(2187)] = 43622, + [SMALL_STATE(2188)] = 43630, + [SMALL_STATE(2189)] = 43638, + [SMALL_STATE(2190)] = 43646, + [SMALL_STATE(2191)] = 43654, + [SMALL_STATE(2192)] = 43662, + [SMALL_STATE(2193)] = 43670, + [SMALL_STATE(2194)] = 43678, + [SMALL_STATE(2195)] = 43686, + [SMALL_STATE(2196)] = 43694, + [SMALL_STATE(2197)] = 43702, + [SMALL_STATE(2198)] = 43710, + [SMALL_STATE(2199)] = 43718, + [SMALL_STATE(2200)] = 43726, + [SMALL_STATE(2201)] = 43734, + [SMALL_STATE(2202)] = 43742, + [SMALL_STATE(2203)] = 43750, + [SMALL_STATE(2204)] = 43758, + [SMALL_STATE(2205)] = 43766, + [SMALL_STATE(2206)] = 43774, + [SMALL_STATE(2207)] = 43782, + [SMALL_STATE(2208)] = 43790, + [SMALL_STATE(2209)] = 43798, + [SMALL_STATE(2210)] = 43806, + [SMALL_STATE(2211)] = 43814, + [SMALL_STATE(2212)] = 43822, + [SMALL_STATE(2213)] = 43830, + [SMALL_STATE(2214)] = 43838, + [SMALL_STATE(2215)] = 43846, + [SMALL_STATE(2216)] = 43854, + [SMALL_STATE(2217)] = 43862, + [SMALL_STATE(2218)] = 43870, + [SMALL_STATE(2219)] = 43878, + [SMALL_STATE(2220)] = 43886, + [SMALL_STATE(2221)] = 43894, + [SMALL_STATE(2222)] = 43902, + [SMALL_STATE(2223)] = 43910, + [SMALL_STATE(2224)] = 43918, + [SMALL_STATE(2225)] = 43926, + [SMALL_STATE(2226)] = 43934, + [SMALL_STATE(2227)] = 43942, + [SMALL_STATE(2228)] = 43950, + [SMALL_STATE(2229)] = 43958, + [SMALL_STATE(2230)] = 43966, + [SMALL_STATE(2231)] = 43974, + [SMALL_STATE(2232)] = 43982, + [SMALL_STATE(2233)] = 43990, + [SMALL_STATE(2234)] = 43998, + [SMALL_STATE(2235)] = 44006, + [SMALL_STATE(2236)] = 44014, + [SMALL_STATE(2237)] = 44022, + [SMALL_STATE(2238)] = 44030, + [SMALL_STATE(2239)] = 44038, + [SMALL_STATE(2240)] = 44046, + [SMALL_STATE(2241)] = 44054, + [SMALL_STATE(2242)] = 44062, + [SMALL_STATE(2243)] = 44070, + [SMALL_STATE(2244)] = 44078, + [SMALL_STATE(2245)] = 44086, + [SMALL_STATE(2246)] = 44094, + [SMALL_STATE(2247)] = 44102, + [SMALL_STATE(2248)] = 44110, + [SMALL_STATE(2249)] = 44118, + [SMALL_STATE(2250)] = 44126, + [SMALL_STATE(2251)] = 44134, + [SMALL_STATE(2252)] = 44142, + [SMALL_STATE(2253)] = 44150, + [SMALL_STATE(2254)] = 44158, + [SMALL_STATE(2255)] = 44166, + [SMALL_STATE(2256)] = 44174, + [SMALL_STATE(2257)] = 44182, + [SMALL_STATE(2258)] = 44190, + [SMALL_STATE(2259)] = 44198, + [SMALL_STATE(2260)] = 44206, + [SMALL_STATE(2261)] = 44214, + [SMALL_STATE(2262)] = 44222, + [SMALL_STATE(2263)] = 44230, + [SMALL_STATE(2264)] = 44238, + [SMALL_STATE(2265)] = 44246, + [SMALL_STATE(2266)] = 44254, + [SMALL_STATE(2267)] = 44262, + [SMALL_STATE(2268)] = 44270, + [SMALL_STATE(2269)] = 44278, + [SMALL_STATE(2270)] = 44286, + [SMALL_STATE(2271)] = 44294, + [SMALL_STATE(2272)] = 44302, + [SMALL_STATE(2273)] = 44310, + [SMALL_STATE(2274)] = 44318, + [SMALL_STATE(2275)] = 44326, + [SMALL_STATE(2276)] = 44334, + [SMALL_STATE(2277)] = 44342, + [SMALL_STATE(2278)] = 44350, + [SMALL_STATE(2279)] = 44358, + [SMALL_STATE(2280)] = 44366, + [SMALL_STATE(2281)] = 44374, + [SMALL_STATE(2282)] = 44382, + [SMALL_STATE(2283)] = 44390, + [SMALL_STATE(2284)] = 44398, + [SMALL_STATE(2285)] = 44406, + [SMALL_STATE(2286)] = 44414, + [SMALL_STATE(2287)] = 44422, + [SMALL_STATE(2288)] = 44430, + [SMALL_STATE(2289)] = 44438, + [SMALL_STATE(2290)] = 44446, + [SMALL_STATE(2291)] = 44454, + [SMALL_STATE(2292)] = 44462, + [SMALL_STATE(2293)] = 44470, + [SMALL_STATE(2294)] = 44478, + [SMALL_STATE(2295)] = 44486, + [SMALL_STATE(2296)] = 44494, + [SMALL_STATE(2297)] = 44502, + [SMALL_STATE(2298)] = 44510, + [SMALL_STATE(2299)] = 44518, + [SMALL_STATE(2300)] = 44526, + [SMALL_STATE(2301)] = 44534, + [SMALL_STATE(2302)] = 44542, + [SMALL_STATE(2303)] = 44550, + [SMALL_STATE(2304)] = 44558, + [SMALL_STATE(2305)] = 44566, + [SMALL_STATE(2306)] = 44574, + [SMALL_STATE(2307)] = 44582, + [SMALL_STATE(2308)] = 44590, + [SMALL_STATE(2309)] = 44598, + [SMALL_STATE(2310)] = 44606, + [SMALL_STATE(2311)] = 44614, + [SMALL_STATE(2312)] = 44622, + [SMALL_STATE(2313)] = 44630, + [SMALL_STATE(2314)] = 44638, + [SMALL_STATE(2315)] = 44646, + [SMALL_STATE(2316)] = 44654, + [SMALL_STATE(2317)] = 44662, + [SMALL_STATE(2318)] = 44670, + [SMALL_STATE(2319)] = 44678, + [SMALL_STATE(2320)] = 44686, + [SMALL_STATE(2321)] = 44694, + [SMALL_STATE(2322)] = 44702, + [SMALL_STATE(2323)] = 44710, + [SMALL_STATE(2324)] = 44718, + [SMALL_STATE(2325)] = 44726, + [SMALL_STATE(2326)] = 44734, + [SMALL_STATE(2327)] = 44742, + [SMALL_STATE(2328)] = 44750, + [SMALL_STATE(2329)] = 44758, + [SMALL_STATE(2330)] = 44766, + [SMALL_STATE(2331)] = 44774, + [SMALL_STATE(2332)] = 44782, + [SMALL_STATE(2333)] = 44790, + [SMALL_STATE(2334)] = 44798, + [SMALL_STATE(2335)] = 44806, + [SMALL_STATE(2336)] = 44814, + [SMALL_STATE(2337)] = 44822, + [SMALL_STATE(2338)] = 44830, + [SMALL_STATE(2339)] = 44838, + [SMALL_STATE(2340)] = 44846, + [SMALL_STATE(2341)] = 44854, + [SMALL_STATE(2342)] = 44862, + [SMALL_STATE(2343)] = 44870, + [SMALL_STATE(2344)] = 44878, + [SMALL_STATE(2345)] = 44886, + [SMALL_STATE(2346)] = 44894, + [SMALL_STATE(2347)] = 44902, + [SMALL_STATE(2348)] = 44910, + [SMALL_STATE(2349)] = 44918, + [SMALL_STATE(2350)] = 44926, + [SMALL_STATE(2351)] = 44934, + [SMALL_STATE(2352)] = 44942, + [SMALL_STATE(2353)] = 44950, + [SMALL_STATE(2354)] = 44958, + [SMALL_STATE(2355)] = 44966, + [SMALL_STATE(2356)] = 44974, + [SMALL_STATE(2357)] = 44982, + [SMALL_STATE(2358)] = 44990, + [SMALL_STATE(2359)] = 44998, + [SMALL_STATE(2360)] = 45006, + [SMALL_STATE(2361)] = 45014, + [SMALL_STATE(2362)] = 45022, + [SMALL_STATE(2363)] = 45030, + [SMALL_STATE(2364)] = 45038, + [SMALL_STATE(2365)] = 45046, + [SMALL_STATE(2366)] = 45054, + [SMALL_STATE(2367)] = 45062, + [SMALL_STATE(2368)] = 45070, + [SMALL_STATE(2369)] = 45078, + [SMALL_STATE(2370)] = 45086, + [SMALL_STATE(2371)] = 45094, + [SMALL_STATE(2372)] = 45102, + [SMALL_STATE(2373)] = 45110, + [SMALL_STATE(2374)] = 45118, + [SMALL_STATE(2375)] = 45126, + [SMALL_STATE(2376)] = 45134, + [SMALL_STATE(2377)] = 45142, + [SMALL_STATE(2378)] = 45150, + [SMALL_STATE(2379)] = 45158, + [SMALL_STATE(2380)] = 45166, + [SMALL_STATE(2381)] = 45174, + [SMALL_STATE(2382)] = 45182, + [SMALL_STATE(2383)] = 45190, + [SMALL_STATE(2384)] = 45198, + [SMALL_STATE(2385)] = 45206, + [SMALL_STATE(2386)] = 45214, + [SMALL_STATE(2387)] = 45222, + [SMALL_STATE(2388)] = 45230, + [SMALL_STATE(2389)] = 45238, + [SMALL_STATE(2390)] = 45246, + [SMALL_STATE(2391)] = 45254, + [SMALL_STATE(2392)] = 45262, + [SMALL_STATE(2393)] = 45270, + [SMALL_STATE(2394)] = 45278, + [SMALL_STATE(2395)] = 45286, + [SMALL_STATE(2396)] = 45294, + [SMALL_STATE(2397)] = 45302, + [SMALL_STATE(2398)] = 45310, + [SMALL_STATE(2399)] = 45318, + [SMALL_STATE(2400)] = 45326, + [SMALL_STATE(2401)] = 45334, + [SMALL_STATE(2402)] = 45342, + [SMALL_STATE(2403)] = 45350, + [SMALL_STATE(2404)] = 45358, + [SMALL_STATE(2405)] = 45366, + [SMALL_STATE(2406)] = 45374, + [SMALL_STATE(2407)] = 45382, + [SMALL_STATE(2408)] = 45390, + [SMALL_STATE(2409)] = 45398, + [SMALL_STATE(2410)] = 45406, + [SMALL_STATE(2411)] = 45414, + [SMALL_STATE(2412)] = 45422, + [SMALL_STATE(2413)] = 45430, + [SMALL_STATE(2414)] = 45438, + [SMALL_STATE(2415)] = 45446, + [SMALL_STATE(2416)] = 45454, + [SMALL_STATE(2417)] = 45462, + [SMALL_STATE(2418)] = 45470, + [SMALL_STATE(2419)] = 45478, + [SMALL_STATE(2420)] = 45486, + [SMALL_STATE(2421)] = 45494, + [SMALL_STATE(2422)] = 45502, + [SMALL_STATE(2423)] = 45510, + [SMALL_STATE(2424)] = 45518, + [SMALL_STATE(2425)] = 45526, + [SMALL_STATE(2426)] = 45534, + [SMALL_STATE(2427)] = 45542, + [SMALL_STATE(2428)] = 45550, + [SMALL_STATE(2429)] = 45558, + [SMALL_STATE(2430)] = 45566, + [SMALL_STATE(2431)] = 45574, + [SMALL_STATE(2432)] = 45582, + [SMALL_STATE(2433)] = 45590, + [SMALL_STATE(2434)] = 45598, + [SMALL_STATE(2435)] = 45606, + [SMALL_STATE(2436)] = 45614, + [SMALL_STATE(2437)] = 45622, + [SMALL_STATE(2438)] = 45630, + [SMALL_STATE(2439)] = 45638, + [SMALL_STATE(2440)] = 45646, + [SMALL_STATE(2441)] = 45654, + [SMALL_STATE(2442)] = 45662, + [SMALL_STATE(2443)] = 45670, + [SMALL_STATE(2444)] = 45678, + [SMALL_STATE(2445)] = 45686, + [SMALL_STATE(2446)] = 45694, + [SMALL_STATE(2447)] = 45702, + [SMALL_STATE(2448)] = 45710, + [SMALL_STATE(2449)] = 45718, + [SMALL_STATE(2450)] = 45726, + [SMALL_STATE(2451)] = 45734, + [SMALL_STATE(2452)] = 45742, + [SMALL_STATE(2453)] = 45750, + [SMALL_STATE(2454)] = 45758, + [SMALL_STATE(2455)] = 45766, + [SMALL_STATE(2456)] = 45774, + [SMALL_STATE(2457)] = 45782, + [SMALL_STATE(2458)] = 45790, + [SMALL_STATE(2459)] = 45798, + [SMALL_STATE(2460)] = 45806, + [SMALL_STATE(2461)] = 45814, + [SMALL_STATE(2462)] = 45822, + [SMALL_STATE(2463)] = 45830, + [SMALL_STATE(2464)] = 45838, + [SMALL_STATE(2465)] = 45846, + [SMALL_STATE(2466)] = 45854, + [SMALL_STATE(2467)] = 45862, + [SMALL_STATE(2468)] = 45870, + [SMALL_STATE(2469)] = 45878, + [SMALL_STATE(2470)] = 45886, + [SMALL_STATE(2471)] = 45894, + [SMALL_STATE(2472)] = 45902, + [SMALL_STATE(2473)] = 45910, + [SMALL_STATE(2474)] = 45918, + [SMALL_STATE(2475)] = 45926, + [SMALL_STATE(2476)] = 45934, + [SMALL_STATE(2477)] = 45942, + [SMALL_STATE(2478)] = 45950, + [SMALL_STATE(2479)] = 45958, + [SMALL_STATE(2480)] = 45966, + [SMALL_STATE(2481)] = 45974, + [SMALL_STATE(2482)] = 45982, + [SMALL_STATE(2483)] = 45990, + [SMALL_STATE(2484)] = 45998, + [SMALL_STATE(2485)] = 46006, + [SMALL_STATE(2486)] = 46014, + [SMALL_STATE(2487)] = 46022, + [SMALL_STATE(2488)] = 46030, + [SMALL_STATE(2489)] = 46038, + [SMALL_STATE(2490)] = 46046, + [SMALL_STATE(2491)] = 46054, + [SMALL_STATE(2492)] = 46062, + [SMALL_STATE(2493)] = 46070, + [SMALL_STATE(2494)] = 46078, + [SMALL_STATE(2495)] = 46086, + [SMALL_STATE(2496)] = 46094, + [SMALL_STATE(2497)] = 46102, + [SMALL_STATE(2498)] = 46110, + [SMALL_STATE(2499)] = 46118, + [SMALL_STATE(2500)] = 46126, + [SMALL_STATE(2501)] = 46134, + [SMALL_STATE(2502)] = 46142, + [SMALL_STATE(2503)] = 46150, + [SMALL_STATE(2504)] = 46158, + [SMALL_STATE(2505)] = 46166, + [SMALL_STATE(2506)] = 46174, + [SMALL_STATE(2507)] = 46182, + [SMALL_STATE(2508)] = 46190, + [SMALL_STATE(2509)] = 46198, + [SMALL_STATE(2510)] = 46206, + [SMALL_STATE(2511)] = 46214, + [SMALL_STATE(2512)] = 46222, + [SMALL_STATE(2513)] = 46230, + [SMALL_STATE(2514)] = 46238, + [SMALL_STATE(2515)] = 46246, + [SMALL_STATE(2516)] = 46254, + [SMALL_STATE(2517)] = 46262, + [SMALL_STATE(2518)] = 46270, + [SMALL_STATE(2519)] = 46278, + [SMALL_STATE(2520)] = 46286, + [SMALL_STATE(2521)] = 46294, + [SMALL_STATE(2522)] = 46302, + [SMALL_STATE(2523)] = 46310, + [SMALL_STATE(2524)] = 46318, + [SMALL_STATE(2525)] = 46326, + [SMALL_STATE(2526)] = 46334, + [SMALL_STATE(2527)] = 46342, + [SMALL_STATE(2528)] = 46350, + [SMALL_STATE(2529)] = 46358, + [SMALL_STATE(2530)] = 46366, + [SMALL_STATE(2531)] = 46374, + [SMALL_STATE(2532)] = 46382, + [SMALL_STATE(2533)] = 46390, + [SMALL_STATE(2534)] = 46398, + [SMALL_STATE(2535)] = 46406, + [SMALL_STATE(2536)] = 46414, + [SMALL_STATE(2537)] = 46422, + [SMALL_STATE(2538)] = 46430, + [SMALL_STATE(2539)] = 46438, + [SMALL_STATE(2540)] = 46446, + [SMALL_STATE(2541)] = 46454, + [SMALL_STATE(2542)] = 46462, + [SMALL_STATE(2543)] = 46470, + [SMALL_STATE(2544)] = 46478, + [SMALL_STATE(2545)] = 46486, + [SMALL_STATE(2546)] = 46494, + [SMALL_STATE(2547)] = 46502, + [SMALL_STATE(2548)] = 46510, + [SMALL_STATE(2549)] = 46518, + [SMALL_STATE(2550)] = 46526, + [SMALL_STATE(2551)] = 46534, + [SMALL_STATE(2552)] = 46542, + [SMALL_STATE(2553)] = 46550, + [SMALL_STATE(2554)] = 46558, + [SMALL_STATE(2555)] = 46566, + [SMALL_STATE(2556)] = 46574, + [SMALL_STATE(2557)] = 46582, + [SMALL_STATE(2558)] = 46590, + [SMALL_STATE(2559)] = 46598, + [SMALL_STATE(2560)] = 46606, + [SMALL_STATE(2561)] = 46614, + [SMALL_STATE(2562)] = 46622, + [SMALL_STATE(2563)] = 46630, + [SMALL_STATE(2564)] = 46638, + [SMALL_STATE(2565)] = 46646, + [SMALL_STATE(2566)] = 46654, + [SMALL_STATE(2567)] = 46662, + [SMALL_STATE(2568)] = 46670, + [SMALL_STATE(2569)] = 46678, + [SMALL_STATE(2570)] = 46686, + [SMALL_STATE(2571)] = 46694, + [SMALL_STATE(2572)] = 46702, + [SMALL_STATE(2573)] = 46710, + [SMALL_STATE(2574)] = 46718, + [SMALL_STATE(2575)] = 46726, + [SMALL_STATE(2576)] = 46734, + [SMALL_STATE(2577)] = 46742, + [SMALL_STATE(2578)] = 46750, + [SMALL_STATE(2579)] = 46758, + [SMALL_STATE(2580)] = 46766, + [SMALL_STATE(2581)] = 46774, + [SMALL_STATE(2582)] = 46782, + [SMALL_STATE(2583)] = 46790, + [SMALL_STATE(2584)] = 46798, + [SMALL_STATE(2585)] = 46806, + [SMALL_STATE(2586)] = 46814, + [SMALL_STATE(2587)] = 46822, + [SMALL_STATE(2588)] = 46830, + [SMALL_STATE(2589)] = 46838, + [SMALL_STATE(2590)] = 46846, + [SMALL_STATE(2591)] = 46854, + [SMALL_STATE(2592)] = 46862, + [SMALL_STATE(2593)] = 46870, + [SMALL_STATE(2594)] = 46878, + [SMALL_STATE(2595)] = 46886, + [SMALL_STATE(2596)] = 46894, + [SMALL_STATE(2597)] = 46902, + [SMALL_STATE(2598)] = 46910, + [SMALL_STATE(2599)] = 46918, + [SMALL_STATE(2600)] = 46926, + [SMALL_STATE(2601)] = 46934, + [SMALL_STATE(2602)] = 46942, + [SMALL_STATE(2603)] = 46950, + [SMALL_STATE(2604)] = 46958, + [SMALL_STATE(2605)] = 46966, + [SMALL_STATE(2606)] = 46974, + [SMALL_STATE(2607)] = 46982, + [SMALL_STATE(2608)] = 46990, + [SMALL_STATE(2609)] = 46998, + [SMALL_STATE(2610)] = 47006, + [SMALL_STATE(2611)] = 47014, + [SMALL_STATE(2612)] = 47022, + [SMALL_STATE(2613)] = 47030, + [SMALL_STATE(2614)] = 47038, + [SMALL_STATE(2615)] = 47046, + [SMALL_STATE(2616)] = 47054, + [SMALL_STATE(2617)] = 47062, + [SMALL_STATE(2618)] = 47070, + [SMALL_STATE(2619)] = 47078, + [SMALL_STATE(2620)] = 47086, + [SMALL_STATE(2621)] = 47094, + [SMALL_STATE(2622)] = 47102, + [SMALL_STATE(2623)] = 47110, + [SMALL_STATE(2624)] = 47118, + [SMALL_STATE(2625)] = 47126, + [SMALL_STATE(2626)] = 47134, + [SMALL_STATE(2627)] = 47142, + [SMALL_STATE(2628)] = 47150, + [SMALL_STATE(2629)] = 47158, + [SMALL_STATE(2630)] = 47166, + [SMALL_STATE(2631)] = 47174, + [SMALL_STATE(2632)] = 47182, + [SMALL_STATE(2633)] = 47190, + [SMALL_STATE(2634)] = 47198, + [SMALL_STATE(2635)] = 47206, + [SMALL_STATE(2636)] = 47214, + [SMALL_STATE(2637)] = 47222, + [SMALL_STATE(2638)] = 47230, + [SMALL_STATE(2639)] = 47238, + [SMALL_STATE(2640)] = 47246, + [SMALL_STATE(2641)] = 47254, + [SMALL_STATE(2642)] = 47262, + [SMALL_STATE(2643)] = 47270, + [SMALL_STATE(2644)] = 47278, + [SMALL_STATE(2645)] = 47286, + [SMALL_STATE(2646)] = 47294, + [SMALL_STATE(2647)] = 47302, + [SMALL_STATE(2648)] = 47310, + [SMALL_STATE(2649)] = 47318, + [SMALL_STATE(2650)] = 47326, + [SMALL_STATE(2651)] = 47334, + [SMALL_STATE(2652)] = 47342, + [SMALL_STATE(2653)] = 47350, + [SMALL_STATE(2654)] = 47358, + [SMALL_STATE(2655)] = 47366, + [SMALL_STATE(2656)] = 47374, + [SMALL_STATE(2657)] = 47382, + [SMALL_STATE(2658)] = 47390, + [SMALL_STATE(2659)] = 47398, + [SMALL_STATE(2660)] = 47406, + [SMALL_STATE(2661)] = 47414, + [SMALL_STATE(2662)] = 47422, + [SMALL_STATE(2663)] = 47430, + [SMALL_STATE(2664)] = 47438, + [SMALL_STATE(2665)] = 47446, + [SMALL_STATE(2666)] = 47454, + [SMALL_STATE(2667)] = 47462, + [SMALL_STATE(2668)] = 47470, + [SMALL_STATE(2669)] = 47478, + [SMALL_STATE(2670)] = 47486, + [SMALL_STATE(2671)] = 47494, + [SMALL_STATE(2672)] = 47502, + [SMALL_STATE(2673)] = 47510, + [SMALL_STATE(2674)] = 47518, + [SMALL_STATE(2675)] = 47526, + [SMALL_STATE(2676)] = 47534, + [SMALL_STATE(2677)] = 47542, + [SMALL_STATE(2678)] = 47550, + [SMALL_STATE(2679)] = 47558, + [SMALL_STATE(2680)] = 47566, + [SMALL_STATE(2681)] = 47574, + [SMALL_STATE(2682)] = 47582, + [SMALL_STATE(2683)] = 47590, + [SMALL_STATE(2684)] = 47598, + [SMALL_STATE(2685)] = 47606, + [SMALL_STATE(2686)] = 47614, + [SMALL_STATE(2687)] = 47622, + [SMALL_STATE(2688)] = 47630, + [SMALL_STATE(2689)] = 47638, + [SMALL_STATE(2690)] = 47646, + [SMALL_STATE(2691)] = 47654, + [SMALL_STATE(2692)] = 47662, + [SMALL_STATE(2693)] = 47670, + [SMALL_STATE(2694)] = 47678, + [SMALL_STATE(2695)] = 47686, + [SMALL_STATE(2696)] = 47694, + [SMALL_STATE(2697)] = 47702, + [SMALL_STATE(2698)] = 47710, + [SMALL_STATE(2699)] = 47718, + [SMALL_STATE(2700)] = 47726, + [SMALL_STATE(2701)] = 47734, + [SMALL_STATE(2702)] = 47742, + [SMALL_STATE(2703)] = 47750, + [SMALL_STATE(2704)] = 47758, + [SMALL_STATE(2705)] = 47766, + [SMALL_STATE(2706)] = 47774, + [SMALL_STATE(2707)] = 47782, + [SMALL_STATE(2708)] = 47790, + [SMALL_STATE(2709)] = 47798, + [SMALL_STATE(2710)] = 47806, + [SMALL_STATE(2711)] = 47814, + [SMALL_STATE(2712)] = 47822, + [SMALL_STATE(2713)] = 47830, + [SMALL_STATE(2714)] = 47838, + [SMALL_STATE(2715)] = 47846, + [SMALL_STATE(2716)] = 47854, + [SMALL_STATE(2717)] = 47862, + [SMALL_STATE(2718)] = 47870, + [SMALL_STATE(2719)] = 47878, + [SMALL_STATE(2720)] = 47886, + [SMALL_STATE(2721)] = 47894, + [SMALL_STATE(2722)] = 47902, + [SMALL_STATE(2723)] = 47910, + [SMALL_STATE(2724)] = 47918, + [SMALL_STATE(2725)] = 47926, + [SMALL_STATE(2726)] = 47934, + [SMALL_STATE(2727)] = 47942, + [SMALL_STATE(2728)] = 47950, + [SMALL_STATE(2729)] = 47958, + [SMALL_STATE(2730)] = 47966, + [SMALL_STATE(2731)] = 47974, + [SMALL_STATE(2732)] = 47982, + [SMALL_STATE(2733)] = 47990, + [SMALL_STATE(2734)] = 47998, + [SMALL_STATE(2735)] = 48006, + [SMALL_STATE(2736)] = 48014, + [SMALL_STATE(2737)] = 48022, + [SMALL_STATE(2738)] = 48030, + [SMALL_STATE(2739)] = 48038, + [SMALL_STATE(2740)] = 48046, + [SMALL_STATE(2741)] = 48054, + [SMALL_STATE(2742)] = 48062, + [SMALL_STATE(2743)] = 48070, + [SMALL_STATE(2744)] = 48078, + [SMALL_STATE(2745)] = 48086, + [SMALL_STATE(2746)] = 48094, + [SMALL_STATE(2747)] = 48102, + [SMALL_STATE(2748)] = 48110, + [SMALL_STATE(2749)] = 48118, + [SMALL_STATE(2750)] = 48126, + [SMALL_STATE(2751)] = 48134, + [SMALL_STATE(2752)] = 48142, + [SMALL_STATE(2753)] = 48150, + [SMALL_STATE(2754)] = 48158, + [SMALL_STATE(2755)] = 48166, + [SMALL_STATE(2756)] = 48174, + [SMALL_STATE(2757)] = 48182, + [SMALL_STATE(2758)] = 48190, + [SMALL_STATE(2759)] = 48198, + [SMALL_STATE(2760)] = 48206, + [SMALL_STATE(2761)] = 48214, + [SMALL_STATE(2762)] = 48222, + [SMALL_STATE(2763)] = 48230, + [SMALL_STATE(2764)] = 48238, + [SMALL_STATE(2765)] = 48246, + [SMALL_STATE(2766)] = 48254, + [SMALL_STATE(2767)] = 48262, + [SMALL_STATE(2768)] = 48270, + [SMALL_STATE(2769)] = 48278, + [SMALL_STATE(2770)] = 48286, + [SMALL_STATE(2771)] = 48294, + [SMALL_STATE(2772)] = 48302, + [SMALL_STATE(2773)] = 48310, + [SMALL_STATE(2774)] = 48318, + [SMALL_STATE(2775)] = 48326, + [SMALL_STATE(2776)] = 48334, + [SMALL_STATE(2777)] = 48342, + [SMALL_STATE(2778)] = 48350, + [SMALL_STATE(2779)] = 48358, + [SMALL_STATE(2780)] = 48366, + [SMALL_STATE(2781)] = 48374, + [SMALL_STATE(2782)] = 48382, + [SMALL_STATE(2783)] = 48390, + [SMALL_STATE(2784)] = 48398, + [SMALL_STATE(2785)] = 48406, + [SMALL_STATE(2786)] = 48414, + [SMALL_STATE(2787)] = 48422, + [SMALL_STATE(2788)] = 48430, + [SMALL_STATE(2789)] = 48438, + [SMALL_STATE(2790)] = 48446, + [SMALL_STATE(2791)] = 48454, + [SMALL_STATE(2792)] = 48462, + [SMALL_STATE(2793)] = 48470, + [SMALL_STATE(2794)] = 48478, + [SMALL_STATE(2795)] = 48486, + [SMALL_STATE(2796)] = 48494, + [SMALL_STATE(2797)] = 48502, + [SMALL_STATE(2798)] = 48510, + [SMALL_STATE(2799)] = 48518, + [SMALL_STATE(2800)] = 48526, + [SMALL_STATE(2801)] = 48534, + [SMALL_STATE(2802)] = 48542, + [SMALL_STATE(2803)] = 48550, + [SMALL_STATE(2804)] = 48558, + [SMALL_STATE(2805)] = 48566, + [SMALL_STATE(2806)] = 48574, + [SMALL_STATE(2807)] = 48582, + [SMALL_STATE(2808)] = 48590, + [SMALL_STATE(2809)] = 48598, + [SMALL_STATE(2810)] = 48606, + [SMALL_STATE(2811)] = 48614, + [SMALL_STATE(2812)] = 48622, + [SMALL_STATE(2813)] = 48630, + [SMALL_STATE(2814)] = 48638, + [SMALL_STATE(2815)] = 48646, + [SMALL_STATE(2816)] = 48654, + [SMALL_STATE(2817)] = 48662, + [SMALL_STATE(2818)] = 48670, + [SMALL_STATE(2819)] = 48678, + [SMALL_STATE(2820)] = 48686, + [SMALL_STATE(2821)] = 48694, + [SMALL_STATE(2822)] = 48702, + [SMALL_STATE(2823)] = 48710, + [SMALL_STATE(2824)] = 48718, + [SMALL_STATE(2825)] = 48726, + [SMALL_STATE(2826)] = 48734, + [SMALL_STATE(2827)] = 48742, + [SMALL_STATE(2828)] = 48750, + [SMALL_STATE(2829)] = 48758, + [SMALL_STATE(2830)] = 48766, + [SMALL_STATE(2831)] = 48774, + [SMALL_STATE(2832)] = 48782, + [SMALL_STATE(2833)] = 48790, + [SMALL_STATE(2834)] = 48798, + [SMALL_STATE(2835)] = 48806, + [SMALL_STATE(2836)] = 48814, + [SMALL_STATE(2837)] = 48822, + [SMALL_STATE(2838)] = 48830, + [SMALL_STATE(2839)] = 48838, + [SMALL_STATE(2840)] = 48846, + [SMALL_STATE(2841)] = 48854, + [SMALL_STATE(2842)] = 48862, + [SMALL_STATE(2843)] = 48870, + [SMALL_STATE(2844)] = 48878, + [SMALL_STATE(2845)] = 48886, + [SMALL_STATE(2846)] = 48894, + [SMALL_STATE(2847)] = 48902, + [SMALL_STATE(2848)] = 48910, + [SMALL_STATE(2849)] = 48918, + [SMALL_STATE(2850)] = 48926, + [SMALL_STATE(2851)] = 48934, + [SMALL_STATE(2852)] = 48942, + [SMALL_STATE(2853)] = 48950, + [SMALL_STATE(2854)] = 48958, + [SMALL_STATE(2855)] = 48966, + [SMALL_STATE(2856)] = 48974, + [SMALL_STATE(2857)] = 48982, + [SMALL_STATE(2858)] = 48990, + [SMALL_STATE(2859)] = 48998, + [SMALL_STATE(2860)] = 49006, + [SMALL_STATE(2861)] = 49014, + [SMALL_STATE(2862)] = 49022, + [SMALL_STATE(2863)] = 49030, + [SMALL_STATE(2864)] = 49038, + [SMALL_STATE(2865)] = 49046, + [SMALL_STATE(2866)] = 49054, + [SMALL_STATE(2867)] = 49062, + [SMALL_STATE(2868)] = 49070, + [SMALL_STATE(2869)] = 49078, + [SMALL_STATE(2870)] = 49086, + [SMALL_STATE(2871)] = 49094, + [SMALL_STATE(2872)] = 49102, + [SMALL_STATE(2873)] = 49110, + [SMALL_STATE(2874)] = 49118, + [SMALL_STATE(2875)] = 49126, + [SMALL_STATE(2876)] = 49134, + [SMALL_STATE(2877)] = 49142, + [SMALL_STATE(2878)] = 49150, + [SMALL_STATE(2879)] = 49158, + [SMALL_STATE(2880)] = 49166, + [SMALL_STATE(2881)] = 49174, + [SMALL_STATE(2882)] = 49182, + [SMALL_STATE(2883)] = 49190, + [SMALL_STATE(2884)] = 49198, + [SMALL_STATE(2885)] = 49206, + [SMALL_STATE(2886)] = 49214, + [SMALL_STATE(2887)] = 49222, + [SMALL_STATE(2888)] = 49230, + [SMALL_STATE(2889)] = 49238, + [SMALL_STATE(2890)] = 49246, + [SMALL_STATE(2891)] = 49254, + [SMALL_STATE(2892)] = 49262, + [SMALL_STATE(2893)] = 49270, + [SMALL_STATE(2894)] = 49278, + [SMALL_STATE(2895)] = 49286, + [SMALL_STATE(2896)] = 49294, + [SMALL_STATE(2897)] = 49302, + [SMALL_STATE(2898)] = 49310, + [SMALL_STATE(2899)] = 49318, + [SMALL_STATE(2900)] = 49326, + [SMALL_STATE(2901)] = 49334, + [SMALL_STATE(2902)] = 49342, + [SMALL_STATE(2903)] = 49350, + [SMALL_STATE(2904)] = 49358, + [SMALL_STATE(2905)] = 49366, + [SMALL_STATE(2906)] = 49374, + [SMALL_STATE(2907)] = 49382, + [SMALL_STATE(2908)] = 49390, + [SMALL_STATE(2909)] = 49398, + [SMALL_STATE(2910)] = 49406, + [SMALL_STATE(2911)] = 49414, + [SMALL_STATE(2912)] = 49422, + [SMALL_STATE(2913)] = 49430, + [SMALL_STATE(2914)] = 49438, + [SMALL_STATE(2915)] = 49446, + [SMALL_STATE(2916)] = 49454, + [SMALL_STATE(2917)] = 49462, + [SMALL_STATE(2918)] = 49470, + [SMALL_STATE(2919)] = 49478, + [SMALL_STATE(2920)] = 49486, + [SMALL_STATE(2921)] = 49494, + [SMALL_STATE(2922)] = 49502, + [SMALL_STATE(2923)] = 49510, + [SMALL_STATE(2924)] = 49518, + [SMALL_STATE(2925)] = 49526, + [SMALL_STATE(2926)] = 49534, + [SMALL_STATE(2927)] = 49542, + [SMALL_STATE(2928)] = 49550, + [SMALL_STATE(2929)] = 49558, + [SMALL_STATE(2930)] = 49566, + [SMALL_STATE(2931)] = 49574, + [SMALL_STATE(2932)] = 49582, + [SMALL_STATE(2933)] = 49590, + [SMALL_STATE(2934)] = 49598, + [SMALL_STATE(2935)] = 49606, + [SMALL_STATE(2936)] = 49614, + [SMALL_STATE(2937)] = 49622, + [SMALL_STATE(2938)] = 49630, + [SMALL_STATE(2939)] = 49638, + [SMALL_STATE(2940)] = 49646, + [SMALL_STATE(2941)] = 49654, + [SMALL_STATE(2942)] = 49662, + [SMALL_STATE(2943)] = 49670, + [SMALL_STATE(2944)] = 49678, + [SMALL_STATE(2945)] = 49686, + [SMALL_STATE(2946)] = 49694, + [SMALL_STATE(2947)] = 49702, + [SMALL_STATE(2948)] = 49710, + [SMALL_STATE(2949)] = 49718, + [SMALL_STATE(2950)] = 49726, + [SMALL_STATE(2951)] = 49734, + [SMALL_STATE(2952)] = 49742, + [SMALL_STATE(2953)] = 49750, + [SMALL_STATE(2954)] = 49758, + [SMALL_STATE(2955)] = 49766, + [SMALL_STATE(2956)] = 49774, + [SMALL_STATE(2957)] = 49782, + [SMALL_STATE(2958)] = 49790, + [SMALL_STATE(2959)] = 49798, + [SMALL_STATE(2960)] = 49806, + [SMALL_STATE(2961)] = 49814, + [SMALL_STATE(2962)] = 49822, + [SMALL_STATE(2963)] = 49830, + [SMALL_STATE(2964)] = 49838, + [SMALL_STATE(2965)] = 49846, + [SMALL_STATE(2966)] = 49854, + [SMALL_STATE(2967)] = 49862, + [SMALL_STATE(2968)] = 49870, + [SMALL_STATE(2969)] = 49878, + [SMALL_STATE(2970)] = 49886, + [SMALL_STATE(2971)] = 49894, + [SMALL_STATE(2972)] = 49902, + [SMALL_STATE(2973)] = 49910, + [SMALL_STATE(2974)] = 49918, + [SMALL_STATE(2975)] = 49926, + [SMALL_STATE(2976)] = 49934, + [SMALL_STATE(2977)] = 49942, + [SMALL_STATE(2978)] = 49950, + [SMALL_STATE(2979)] = 49958, + [SMALL_STATE(2980)] = 49966, + [SMALL_STATE(2981)] = 49974, + [SMALL_STATE(2982)] = 49982, + [SMALL_STATE(2983)] = 49990, + [SMALL_STATE(2984)] = 49998, + [SMALL_STATE(2985)] = 50006, + [SMALL_STATE(2986)] = 50014, + [SMALL_STATE(2987)] = 50022, + [SMALL_STATE(2988)] = 50030, + [SMALL_STATE(2989)] = 50038, + [SMALL_STATE(2990)] = 50046, + [SMALL_STATE(2991)] = 50054, + [SMALL_STATE(2992)] = 50062, + [SMALL_STATE(2993)] = 50070, + [SMALL_STATE(2994)] = 50078, + [SMALL_STATE(2995)] = 50086, + [SMALL_STATE(2996)] = 50094, + [SMALL_STATE(2997)] = 50102, + [SMALL_STATE(2998)] = 50110, + [SMALL_STATE(2999)] = 50118, + [SMALL_STATE(3000)] = 50126, + [SMALL_STATE(3001)] = 50134, + [SMALL_STATE(3002)] = 50142, + [SMALL_STATE(3003)] = 50150, + [SMALL_STATE(3004)] = 50158, + [SMALL_STATE(3005)] = 50166, + [SMALL_STATE(3006)] = 50174, + [SMALL_STATE(3007)] = 50182, + [SMALL_STATE(3008)] = 50190, + [SMALL_STATE(3009)] = 50198, + [SMALL_STATE(3010)] = 50206, + [SMALL_STATE(3011)] = 50214, + [SMALL_STATE(3012)] = 50222, + [SMALL_STATE(3013)] = 50230, + [SMALL_STATE(3014)] = 50238, + [SMALL_STATE(3015)] = 50246, + [SMALL_STATE(3016)] = 50254, + [SMALL_STATE(3017)] = 50262, + [SMALL_STATE(3018)] = 50270, + [SMALL_STATE(3019)] = 50278, + [SMALL_STATE(3020)] = 50286, + [SMALL_STATE(3021)] = 50294, + [SMALL_STATE(3022)] = 50302, + [SMALL_STATE(3023)] = 50310, + [SMALL_STATE(3024)] = 50318, + [SMALL_STATE(3025)] = 50326, + [SMALL_STATE(3026)] = 50334, + [SMALL_STATE(3027)] = 50342, + [SMALL_STATE(3028)] = 50350, + [SMALL_STATE(3029)] = 50358, + [SMALL_STATE(3030)] = 50366, + [SMALL_STATE(3031)] = 50374, + [SMALL_STATE(3032)] = 50382, + [SMALL_STATE(3033)] = 50390, + [SMALL_STATE(3034)] = 50398, + [SMALL_STATE(3035)] = 50406, + [SMALL_STATE(3036)] = 50414, + [SMALL_STATE(3037)] = 50422, + [SMALL_STATE(3038)] = 50430, + [SMALL_STATE(3039)] = 50438, + [SMALL_STATE(3040)] = 50446, + [SMALL_STATE(3041)] = 50454, + [SMALL_STATE(3042)] = 50462, + [SMALL_STATE(3043)] = 50470, + [SMALL_STATE(3044)] = 50478, + [SMALL_STATE(3045)] = 50486, + [SMALL_STATE(3046)] = 50494, + [SMALL_STATE(3047)] = 50502, + [SMALL_STATE(3048)] = 50510, + [SMALL_STATE(3049)] = 50518, + [SMALL_STATE(3050)] = 50526, + [SMALL_STATE(3051)] = 50534, + [SMALL_STATE(3052)] = 50542, + [SMALL_STATE(3053)] = 50550, + [SMALL_STATE(3054)] = 50558, + [SMALL_STATE(3055)] = 50566, + [SMALL_STATE(3056)] = 50574, + [SMALL_STATE(3057)] = 50582, + [SMALL_STATE(3058)] = 50590, + [SMALL_STATE(3059)] = 50598, + [SMALL_STATE(3060)] = 50606, + [SMALL_STATE(3061)] = 50614, + [SMALL_STATE(3062)] = 50622, + [SMALL_STATE(3063)] = 50630, + [SMALL_STATE(3064)] = 50638, + [SMALL_STATE(3065)] = 50646, + [SMALL_STATE(3066)] = 50654, + [SMALL_STATE(3067)] = 50662, + [SMALL_STATE(3068)] = 50670, + [SMALL_STATE(3069)] = 50678, + [SMALL_STATE(3070)] = 50686, + [SMALL_STATE(3071)] = 50694, + [SMALL_STATE(3072)] = 50702, + [SMALL_STATE(3073)] = 50710, + [SMALL_STATE(3074)] = 50718, + [SMALL_STATE(3075)] = 50726, + [SMALL_STATE(3076)] = 50734, + [SMALL_STATE(3077)] = 50742, + [SMALL_STATE(3078)] = 50750, + [SMALL_STATE(3079)] = 50758, + [SMALL_STATE(3080)] = 50766, + [SMALL_STATE(3081)] = 50774, + [SMALL_STATE(3082)] = 50782, + [SMALL_STATE(3083)] = 50790, + [SMALL_STATE(3084)] = 50798, + [SMALL_STATE(3085)] = 50806, + [SMALL_STATE(3086)] = 50814, + [SMALL_STATE(3087)] = 50822, + [SMALL_STATE(3088)] = 50830, + [SMALL_STATE(3089)] = 50838, + [SMALL_STATE(3090)] = 50846, + [SMALL_STATE(3091)] = 50854, + [SMALL_STATE(3092)] = 50862, + [SMALL_STATE(3093)] = 50870, + [SMALL_STATE(3094)] = 50878, + [SMALL_STATE(3095)] = 50886, + [SMALL_STATE(3096)] = 50894, + [SMALL_STATE(3097)] = 50902, + [SMALL_STATE(3098)] = 50910, + [SMALL_STATE(3099)] = 50918, + [SMALL_STATE(3100)] = 50926, + [SMALL_STATE(3101)] = 50934, + [SMALL_STATE(3102)] = 50942, + [SMALL_STATE(3103)] = 50950, + [SMALL_STATE(3104)] = 50958, + [SMALL_STATE(3105)] = 50966, + [SMALL_STATE(3106)] = 50974, + [SMALL_STATE(3107)] = 50982, + [SMALL_STATE(3108)] = 50990, + [SMALL_STATE(3109)] = 50998, + [SMALL_STATE(3110)] = 51006, + [SMALL_STATE(3111)] = 51014, + [SMALL_STATE(3112)] = 51022, + [SMALL_STATE(3113)] = 51030, + [SMALL_STATE(3114)] = 51038, + [SMALL_STATE(3115)] = 51046, + [SMALL_STATE(3116)] = 51054, + [SMALL_STATE(3117)] = 51062, + [SMALL_STATE(3118)] = 51070, + [SMALL_STATE(3119)] = 51078, + [SMALL_STATE(3120)] = 51086, + [SMALL_STATE(3121)] = 51094, + [SMALL_STATE(3122)] = 51102, + [SMALL_STATE(3123)] = 51110, + [SMALL_STATE(3124)] = 51118, + [SMALL_STATE(3125)] = 51126, + [SMALL_STATE(3126)] = 51134, + [SMALL_STATE(3127)] = 51142, + [SMALL_STATE(3128)] = 51150, + [SMALL_STATE(3129)] = 51158, + [SMALL_STATE(3130)] = 51166, + [SMALL_STATE(3131)] = 51174, + [SMALL_STATE(3132)] = 51182, + [SMALL_STATE(3133)] = 51190, + [SMALL_STATE(3134)] = 51198, + [SMALL_STATE(3135)] = 51206, + [SMALL_STATE(3136)] = 51214, + [SMALL_STATE(3137)] = 51222, + [SMALL_STATE(3138)] = 51230, + [SMALL_STATE(3139)] = 51238, + [SMALL_STATE(3140)] = 51246, + [SMALL_STATE(3141)] = 51254, + [SMALL_STATE(3142)] = 51262, + [SMALL_STATE(3143)] = 51270, + [SMALL_STATE(3144)] = 51278, + [SMALL_STATE(3145)] = 51286, + [SMALL_STATE(3146)] = 51294, + [SMALL_STATE(3147)] = 51302, + [SMALL_STATE(3148)] = 51310, + [SMALL_STATE(3149)] = 51318, + [SMALL_STATE(3150)] = 51326, + [SMALL_STATE(3151)] = 51334, + [SMALL_STATE(3152)] = 51342, + [SMALL_STATE(3153)] = 51350, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3042), - [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), - [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 0, 0, 0), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3125), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3101), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3089), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3075), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3074), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3059), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2909), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3029), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3028), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3019), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3015), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3011), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3010), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3006), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3057), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2968), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3058), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3163), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3116), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3117), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2971), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2703), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2699), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2972), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3060), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2636), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), - [111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(464), - [114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3057), - [117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2968), - [120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3058), - [123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1996), - [126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1995), - [129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3163), - [132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), - [134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2425), - [137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2426), - [140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2427), - [143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2631), - [146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(470), - [149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(468), - [152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3116), - [155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3117), - [158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2971), - [161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(524), - [164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2972), - [167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3060), - [170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1949), - [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1055), - [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2636), - [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2027), - [182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(620), - [185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_statement, 5, 0, 37), - [187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_statement, 3, 0, 16), - [189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_block, 1, 0, 0), - [191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_block, 1, 0, 0), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2801), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2413), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2487), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2447), - [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3007), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2469), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2797), - [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2493), - [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2454), - [213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), - [215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(463), - [218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3125), - [221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3101), - [224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3089), - [227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1971), - [230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1978), - [233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3075), - [236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3074), - [239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3059), - [242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2909), - [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3029), - [248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(472), - [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(467), - [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3028), - [257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3019), - [260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3015), - [263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(523), - [266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3011), - [269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3010), - [272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1986), - [275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1171), - [278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3006), - [281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1987), - [284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2569), - [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), - [288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), - [290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1, 0, 0), - [292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3115), - [294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), - [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), - [298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2511), - [300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), - [302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2553), - [304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), - [306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_method_body_repeat1, 2, 0, 0), SHIFT_REPEAT(464), - [309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_method_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2968), - [312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_method_body_repeat1, 2, 0, 0), - [314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_method_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1996), - [317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_method_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1995), - [320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_method_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3163), - [323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_method_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2425), - [326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_method_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2426), - [329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_method_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2427), - [332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_method_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2631), - [335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_method_body_repeat1, 2, 0, 0), SHIFT_REPEAT(470), - [338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_method_body_repeat1, 2, 0, 0), SHIFT_REPEAT(468), - [341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_method_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3116), - [344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_method_body_repeat1, 2, 0, 0), SHIFT_REPEAT(3117), - [347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_method_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2971), - [350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_method_body_repeat1, 2, 0, 0), SHIFT_REPEAT(524), - [353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_method_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2972), - [356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_method_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1949), - [359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_method_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1055), - [362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_method_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2636), - [365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_method_body_repeat1, 2, 0, 0), SHIFT_REPEAT(2027), - [368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_method_body_repeat1, 2, 0, 0), SHIFT_REPEAT(620), - [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), - [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2459), - [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), - [377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_body, 1, 0, 0), - [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2474), - [383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_read_table_statement, 6, 0, 0), - [385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_read_table_statement, 6, 0, 0), - [387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 11, 0, 56), - [389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 11, 0, 56), - [391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_catch_statement, 5, 0, 0), - [393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_catch_statement, 5, 0, 0), - [395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_chained_write_statement, 5, 0, 0), - [397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chained_write_statement, 5, 0, 0), - [399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_function, 5, 0, 17), - [401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_function, 5, 0, 17), - [403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_function, 5, 0, 18), - [405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_function, 5, 0, 18), - [407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raise_exception_statement, 5, 0, 19), - [409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_exception_statement, 5, 0, 19), - [411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_append_statement, 5, 0, 20), - [413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_append_statement, 5, 0, 20), - [415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_statement, 5, 0, 0), - [417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_statement, 5, 0, 0), - [419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_method, 5, 0, 23), - [421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_method, 5, 0, 23), - [423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_create_object_statement, 6, 0, 24), - [425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_object_statement, 6, 0, 24), - [427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 0), - [429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 0), - [431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_statement_obsolete, 6, 0, 26), - [433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement_obsolete, 6, 0, 26), - [435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_catch_statement, 6, 0, 0), - [437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_catch_statement, 6, 0, 0), - [439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_function, 6, 0, 27), - [441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_function, 6, 0, 27), - [443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_method_static, 6, 0, 28), - [445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_method_static, 6, 0, 28), - [447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_method_instance, 6, 0, 29), - [449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_method_instance, 6, 0, 29), - [451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__implementation_statement, 1, 0, 0), - [453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__implementation_statement, 1, 0, 0), - [455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_statement_obsolete, 7, 0, 26), - [457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement_obsolete, 7, 0, 26), - [459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raise_exception_statement, 7, 0, 39), - [461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_exception_statement, 7, 0, 39), - [463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_method_static, 7, 0, 40), - [465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_method_static, 7, 0, 40), - [467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_method_instance, 7, 0, 41), - [469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_method_instance, 7, 0, 41), - [471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 4, 0, 0), - [473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 4, 0, 0), - [475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 8, 0, 56), - [477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 8, 0, 56), - [479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_statement_obsolete, 8, 0, 26), - [481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement_obsolete, 8, 0, 26), - [483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_method, 4, 0, 1), - [485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_method, 4, 0, 1), - [487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raise_exception_statement, 4, 0, 12), - [489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_exception_statement, 4, 0, 12), - [491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 9, 0, 56), - [493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 9, 0, 56), - [495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 10, 0, 56), - [497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 10, 0, 56), - [499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_statement_obsolete, 10, 0, 109), - [501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement_obsolete, 10, 0, 109), - [503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_chained_structure_declaration, 11, 0, 138), - [505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chained_structure_declaration, 11, 0, 138), - [507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 0), - [509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 0), - [511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_statement_obsolete, 11, 0, 109), - [513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement_obsolete, 11, 0, 109), - [515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_function, 4, 0, 11), - [517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_function, 4, 0, 11), - [519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_chained_structure_declaration, 12, 0, 166), - [521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chained_structure_declaration, 12, 0, 166), - [523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 12, 0, 56), - [525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 12, 0, 56), - [527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_statement_obsolete, 12, 0, 109), - [529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement_obsolete, 12, 0, 109), - [531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 13, 0, 56), - [533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 13, 0, 56), - [535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_write_statement, 4, 0, 0), - [537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_write_statement, 4, 0, 0), - [539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_chained_write_statement, 4, 0, 0), - [541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chained_write_statement, 4, 0, 0), - [543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_catch_statement, 4, 0, 0), - [545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_catch_statement, 4, 0, 0), - [547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_symbol_declaration, 4, 0, 10), - [549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_symbol_declaration, 4, 0, 10), - [551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 14, 0, 56), - [553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 14, 0, 56), - [555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 15, 0, 56), - [557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 15, 0, 56), - [559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_chained_field_symbol_declaration, 4, 0, 0), - [561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chained_field_symbol_declaration, 4, 0, 0), - [563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, 0, 8), - [565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, 0, 8), - [567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_chained_variable_declaration, 4, 0, 0), - [569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chained_variable_declaration, 4, 0, 0), - [571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_create_object_statement, 4, 0, 0), - [573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_object_statement, 4, 0, 0), - [575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_include, 3, 0, 6), - [577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_include, 3, 0, 6), - [579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 2, 0, 0), - [581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 2, 0, 0), - [583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_statement, 3, 0, 0), - [585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_statement, 3, 0, 0), - [587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_append_statement_obsolete, 3, 0, 3), - [589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_append_statement_obsolete, 3, 0, 3), - [591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_clear_statement, 3, 0, 0), - [593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_clear_statement, 3, 0, 0), - [595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raise_statement, 3, 0, 0), - [597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 3, 0, 0), - [599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_write_statement, 3, 0, 0), - [601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_write_statement, 3, 0, 0), - [603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_check_statement, 3, 0, 0), - [605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_check_statement, 3, 0, 0), - [607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_report_statement, 3, 0, 0), - [609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_report_statement, 3, 0, 0), - [611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), - [613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), - [615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_include, 2, 0, 1), - [617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_include, 2, 0, 1), - [619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), - [621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), - [623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_structured_data_object, 2, 0, 2), - [625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structured_data_object, 2, 0, 2), - [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_structured_data_object_repeat1, 2, 0, 0), - [631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_structured_data_object_repeat1, 2, 0, 0), - [633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_structured_data_object_repeat1, 2, 0, 0), SHIFT_REPEAT(2437), - [636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__data_object, 1, 0, 0), - [638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object, 1, 0, 0), - [640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, 0, 42), - [642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, 0, 42), - [644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 14, 0, 111), - [646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 14, 0, 111), - [648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 1, 0, 0), - [650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 1, 0, 0), - [652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1, 0, 0), - [654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), - [656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_structured_data_object_repeat1, 2, 0, 4), - [658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_structured_data_object_repeat1, 2, 0, 4), - [660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_publication, 5, 0, 15), - [662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_publication, 5, 0, 15), - [664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, 0, 15), - [666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, 0, 15), - [668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_implementation, 5, 0, 15), - [670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_implementation, 5, 0, 15), - [672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 15), - [674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 15), - [676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 18, 0, 211), - [678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 18, 0, 211), - [680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_publication, 6, 0, 15), - [682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_publication, 6, 0, 15), - [684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_implementation, 6, 0, 15), - [686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_implementation, 6, 0, 15), - [688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, 0, 15), - [690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, 0, 15), - [692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 18, 0, 228), - [694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 18, 0, 228), - [696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_implementation, 6, 0, 15), - [698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_implementation, 6, 0, 15), - [700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 15), - [702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 15), - [704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_local_friend_publication, 7, 0, 30), - [706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_local_friend_publication, 7, 0, 30), - [708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_implementation, 7, 0, 15), - [710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_implementation, 7, 0, 15), - [712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 7, 0, 15), - [714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 7, 0, 15), - [716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 18, 0, 237), - [718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 18, 0, 237), - [720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, 0, 15), - [722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, 0, 15), - [724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 9, 0, 15), - [726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 9, 0, 15), - [728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 9, 0, 30), - [730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 9, 0, 30), - [732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 9, 0, 57), - [734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 9, 0, 57), - [736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 9, 0, 42), - [738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 9, 0, 42), - [740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 10, 0, 81), - [742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 10, 0, 81), - [744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 10, 0, 15), - [746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 10, 0, 15), - [748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 10, 0, 82), - [750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 10, 0, 82), - [752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 10, 0, 30), - [754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 10, 0, 30), - [756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 10, 0, 57), - [758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 10, 0, 57), - [760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 10, 0, 42), - [762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 10, 0, 42), - [764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 18, 0, 229), - [766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 18, 0, 229), - [768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 11, 0, 81), - [770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 11, 0, 81), - [772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 11, 0, 110), - [774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 11, 0, 110), - [776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 11, 0, 15), - [778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 11, 0, 15), - [780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 11, 0, 82), - [782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 11, 0, 82), - [784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 11, 0, 30), - [786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 11, 0, 30), - [788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 11, 0, 57), - [790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 11, 0, 57), - [792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 11, 0, 111), - [794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 11, 0, 111), - [796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 11, 0, 42), - [798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 11, 0, 42), - [800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 12, 0, 81), - [802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 12, 0, 81), - [804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 12, 0, 139), - [806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 12, 0, 139), - [808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 12, 0, 15), - [810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 12, 0, 15), - [812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 12, 0, 140), - [814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 12, 0, 140), - [816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 12, 0, 110), - [818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 12, 0, 110), - [820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 12, 0, 82), - [822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 12, 0, 82), - [824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 12, 0, 30), - [826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 12, 0, 30), - [828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 12, 0, 57), - [830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 12, 0, 57), - [832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 12, 0, 141), - [834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 12, 0, 141), - [836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 12, 0, 111), - [838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 12, 0, 111), - [840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 13, 0, 81), - [842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 13, 0, 81), - [844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 13, 0, 167), - [846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 13, 0, 167), - [848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 13, 0, 139), - [850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 13, 0, 139), - [852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 13, 0, 15), - [854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 13, 0, 15), - [856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 13, 0, 140), - [858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 13, 0, 140), - [860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 13, 0, 110), - [862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 13, 0, 110), - [864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 13, 0, 168), - [866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 13, 0, 168), - [868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 13, 0, 82), - [870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 13, 0, 82), - [872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 13, 0, 169), - [874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 13, 0, 169), - [876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 13, 0, 57), - [878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 13, 0, 57), - [880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 13, 0, 141), - [882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 13, 0, 141), - [884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 13, 0, 111), - [886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 13, 0, 111), - [888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 14, 0, 189), - [890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 14, 0, 189), - [892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 14, 0, 81), - [894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 14, 0, 81), - [896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 14, 0, 167), - [898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 14, 0, 167), - [900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 14, 0, 139), - [902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 14, 0, 139), - [904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 14, 0, 190), - [906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 14, 0, 190), - [908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 14, 0, 15), - [910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 14, 0, 15), - [912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 14, 0, 140), - [914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 14, 0, 140), - [916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 14, 0, 110), - [918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 14, 0, 110), - [920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 14, 0, 168), - [922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 14, 0, 168), - [924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 14, 0, 57), - [926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 14, 0, 57), - [928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 14, 0, 191), - [930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 14, 0, 191), - [932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 14, 0, 169), - [934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 14, 0, 169), - [936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 14, 0, 141), - [938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 14, 0, 141), - [940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 18, 0, 227), - [942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 18, 0, 227), - [944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 15, 0, 81), - [946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 15, 0, 81), - [948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 15, 0, 210), - [950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 15, 0, 210), - [952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 15, 0, 189), - [954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 15, 0, 189), - [956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 15, 0, 167), - [958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 15, 0, 167), - [960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 15, 0, 139), - [962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 15, 0, 139), - [964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 15, 0, 211), - [966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 15, 0, 211), - [968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 15, 0, 190), - [970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 15, 0, 190), - [972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 15, 0, 15), - [974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 15, 0, 15), - [976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 15, 0, 140), - [978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 15, 0, 140), - [980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 15, 0, 168), - [982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 15, 0, 168), - [984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 15, 0, 57), - [986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 15, 0, 57), - [988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 15, 0, 191), - [990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 15, 0, 191), - [992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 15, 0, 169), - [994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 15, 0, 169), - [996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 15, 0, 212), - [998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 15, 0, 212), - [1000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 15, 0, 141), - [1002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 15, 0, 141), - [1004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 16, 0, 81), - [1006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 16, 0, 81), - [1008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 16, 0, 210), - [1010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 16, 0, 210), - [1012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 16, 0, 189), - [1014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 16, 0, 189), - [1016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 16, 0, 227), - [1018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 16, 0, 227), - [1020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 16, 0, 167), - [1022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 16, 0, 167), - [1024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 16, 0, 211), - [1026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 16, 0, 211), - [1028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 16, 0, 190), - [1030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 16, 0, 190), - [1032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 16, 0, 228), - [1034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 16, 0, 228), - [1036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 16, 0, 15), - [1038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 16, 0, 15), - [1040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 16, 0, 168), - [1042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 16, 0, 168), - [1044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 16, 0, 229), - [1046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 16, 0, 229), - [1048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 16, 0, 57), - [1050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 16, 0, 57), - [1052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 16, 0, 191), - [1054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 16, 0, 191), - [1056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 16, 0, 169), - [1058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 16, 0, 169), - [1060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 16, 0, 212), - [1062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 16, 0, 212), - [1064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 17, 0, 236), - [1066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 17, 0, 236), - [1068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 17, 0, 81), - [1070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 17, 0, 81), - [1072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 17, 0, 210), - [1074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 17, 0, 210), - [1076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 17, 0, 189), - [1078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 17, 0, 189), - [1080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 17, 0, 227), - [1082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 17, 0, 227), - [1084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 17, 0, 211), - [1086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 17, 0, 211), - [1088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 17, 0, 190), - [1090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 17, 0, 190), - [1092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 17, 0, 228), - [1094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 17, 0, 228), - [1096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 17, 0, 237), - [1098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 17, 0, 237), - [1100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 17, 0, 229), - [1102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 17, 0, 229), - [1104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 17, 0, 57), - [1106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 17, 0, 57), - [1108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 18, 0, 240), - [1110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 18, 0, 240), - [1112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 17, 0, 191), - [1114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 17, 0, 191), - [1116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 17, 0, 212), - [1118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 17, 0, 212), - [1120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 22, 0, 241), - [1122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 22, 0, 241), - [1124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 21, 0, 240), - [1126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 21, 0, 240), - [1128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 18, 0, 239), - [1130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 18, 0, 239), - [1132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 18, 0, 236), - [1134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 18, 0, 236), - [1136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 18, 0, 81), - [1138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 18, 0, 81), - [1140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 18, 0, 57), - [1142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 18, 0, 57), - [1144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 21, 0, 241), - [1146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 21, 0, 241), - [1148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 21, 0, 239), - [1150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 21, 0, 239), - [1152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 18, 0, 210), - [1154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 18, 0, 210), - [1156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 20, 0, 240), - [1158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 20, 0, 240), - [1160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 20, 0, 237), - [1162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 20, 0, 237), - [1164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 20, 0, 241), - [1166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 20, 0, 241), - [1168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 20, 0, 236), - [1170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 20, 0, 236), - [1172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 20, 0, 239), - [1174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 20, 0, 239), - [1176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 19, 0, 240), - [1178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 19, 0, 240), - [1180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 19, 0, 229), - [1182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 19, 0, 229), - [1184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 19, 0, 237), - [1186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 19, 0, 237), - [1188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 19, 0, 228), - [1190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 19, 0, 228), - [1192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 19, 0, 227), - [1194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 19, 0, 227), - [1196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 19, 0, 81), - [1198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 19, 0, 81), - [1200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 19, 0, 241), - [1202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 19, 0, 241), - [1204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 19, 0, 236), - [1206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 19, 0, 236), - [1208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 19, 0, 239), - [1210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 19, 0, 239), - [1212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 18, 0, 212), - [1214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 18, 0, 212), - [1216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arithmetic_expression, 3, 0, 0), - [1218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arithmetic_expression, 3, 0, 0), - [1220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_access_static, 3, 0, 5), - [1222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_access_static, 3, 0, 5), - [1224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__calculation_expression, 1, 0, 0), - [1226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__calculation_expression, 1, 0, 0), - [1228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__general_expression_position, 1, 0, 0), - [1230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__general_expression_position, 1, 0, 0), - [1232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), - [1234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), - [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [1238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [1240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_method_body_repeat1, 1, 0, 0), - [1242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_method_body_repeat1, 1, 0, 0), - [1244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), - [1246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), - [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), - [1250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), - [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), - [1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), - [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), - [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), - [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), - [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [1272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2804), - [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), - [1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), - [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [1284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), - [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), - [1292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), - [1294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), - [1296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), - [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), - [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), - [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), - [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), - [1322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 1, 0, 0), - [1324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 1, 0, 0), - [1326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), - [1328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_typing, 2, 0, 0), - [1330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_typing, 2, 0, 0), - [1332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_section, 3, 0, 0), - [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), - [1344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__operand, 1, 0, 0), - [1346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 0), - [1348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 0), - [1350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__method_declaration_importing_repeat1, 2, 0, 0), SHIFT_REPEAT(1708), - [1353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__method_declaration_importing_repeat1, 2, 0, 0), - [1355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__method_declaration_importing_repeat1, 2, 0, 0), - [1357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__method_declaration_importing_repeat1, 2, 0, 0), SHIFT_REPEAT(2235), - [1360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__method_declaration_importing_repeat1, 2, 0, 0), SHIFT_REPEAT(2786), - [1363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complete_typing, 4, 0, 25), - [1365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complete_typing, 4, 0, 25), - [1367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__typing, 1, 0, 0), - [1369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typing, 1, 0, 0), - [1371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complete_typing, 2, 0, 7), - [1373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complete_typing, 2, 0, 7), - [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), - [1377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_declaration_importing, 2, 0, 0), - [1379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__method_declaration_importing, 2, 0, 0), - [1381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), - [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), - [1387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_structured_data_object_repeat1, 2, 0, 0), SHIFT_REPEAT(2628), - [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_section, 4, 0, 0), - [1392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_public_section_repeat1, 2, 0, 0), - [1394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_public_section_repeat1, 2, 0, 0), SHIFT_REPEAT(2052), - [1397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_public_section_repeat1, 2, 0, 0), SHIFT_REPEAT(2051), - [1400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_public_section_repeat1, 2, 0, 0), SHIFT_REPEAT(2633), - [1403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_binding, 3, 0, 22), - [1405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_binding, 3, 0, 22), - [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), - [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [1425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_section, 3, 0, 0), - [1427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chained_write_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(474), - [1430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_chained_write_statement_repeat1, 2, 0, 0), - [1432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chained_write_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(566), - [1435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chained_write_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(533), - [1438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chained_write_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(490), - [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [1445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_declaration_exporting, 2, 0, 0), - [1447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__method_declaration_exporting, 2, 0, 0), - [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [1451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_section, 4, 0, 0), - [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [1455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_include_repeat1, 2, 0, 0), SHIFT_REPEAT(474), - [1458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_include_repeat1, 2, 0, 0), - [1460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_include_repeat1, 2, 0, 0), SHIFT_REPEAT(533), - [1463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_include_repeat1, 2, 0, 0), SHIFT_REPEAT(490), - [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [1468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_section, 4, 0, 0), - [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), - [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), - [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), - [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), - [1492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_parameters, 2, 0, 0), - [1494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_parameters, 2, 0, 0), - [1496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), - [1498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), - [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [1502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), - [1504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), - [1510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), - [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), - [1520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_declaration_changing, 2, 0, 0), - [1522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__method_declaration_changing, 2, 0, 0), - [1524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_parameters, 5, 0, 0), - [1526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_parameters, 5, 0, 0), - [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), - [1530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2645), - [1532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [1534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_chained_write_statement_repeat1, 1, 0, 0), - [1536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_chained_write_statement_repeat1, 1, 0, 0), - [1538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [1540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), - [1542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [1544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [1546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [1548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [1550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [1552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [1556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_section, 3, 0, 0), - [1558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [1560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_chained_write_statement_repeat1, 2, 0, 0), - [1562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [1564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_macro_include_repeat1, 1, 0, 0), - [1566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_include_repeat1, 1, 0, 0), - [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [1574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), - [1578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_line_spec_repeat1, 3, 0, 0), - [1580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_line_spec_repeat1, 3, 0, 0), - [1582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [1584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [1586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [1588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), - [1590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2424), - [1592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), - [1594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2422), - [1596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), - [1598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__method_declaration_importing_repeat1, 1, 0, 0), - [1600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__method_declaration_importing_repeat1, 1, 0, 0), - [1602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_parameters, 3, 0, 0), - [1604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_parameters, 3, 0, 0), - [1606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), - [1608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 1, 0, 0), - [1610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 1, 0, 0), - [1612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_parameters, 6, 0, 0), - [1614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_parameters, 6, 0, 0), - [1616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), - [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [1626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_parameters, 4, 0, 0), - [1628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_parameters, 4, 0, 0), - [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [1632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2387), - [1635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), - [1637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_list_repeat1, 2, 0, 0), - [1639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_parameters, 7, 0, 0), - [1641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_parameters, 7, 0, 0), - [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [1659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_expression, 3, 0, 0), - [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), - [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), - [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), - [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), - [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [1679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(2644), - [1682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(2643), - [1685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_declaration_repeat1, 2, 0, 0), - [1687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(2633), - [1690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [1692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [1694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [1696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), - [1700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [1702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [1704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [1706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), - [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), - [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), - [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [1724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), - [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), - [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [1730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), - [1740] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_parameter_list_exporting_repeat1, 2, 0, 0), SHIFT_REPEAT(2333), - [1743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_exporting_repeat1, 2, 0, 0), - [1745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_list_exporting_repeat1, 2, 0, 0), - [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), - [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), - [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), - [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), - [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), - [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2333), - [1779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list_exporting, 1, 0, 0), - [1781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list_exporting, 1, 0, 0), - [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), - [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), - [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), - [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), - [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), - [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [1811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_structured_data_object_repeat1, 2, 0, 0), SHIFT_REPEAT(2804), - [1814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_list_repeat1, 1, 0, 0), - [1816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 1, 0, 0), - [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [1822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comp_spec, 3, 0, 21), - [1824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comp_spec, 3, 0, 21), - [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), - [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), - [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), - [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), - [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), - [1852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [1854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [1858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [1860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), - [1862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), - [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [1866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [1868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), - [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [1872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), - [1874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [1876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [1878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), - [1880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), - [1882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), - [1884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), - [1886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), - [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), - [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), - [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), - [1898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [1900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), - [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [1920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), - [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [1924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), - [1926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), - [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), - [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), - [1934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [1936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [1940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), - [1944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), - [1946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), - [1948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), - [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [1958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), - [1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), - [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), - [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), - [1966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), - [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), - [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), - [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), - [1986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), - [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [1998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), - [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), - [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), - [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), - [2016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), - [2018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), - [2020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), - [2022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), - [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), - [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), - [2028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [2032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [2034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), - [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), - [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), - [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), - [2042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), - [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), - [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), - [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), - [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), - [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [2074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), - [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), - [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), - [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [2084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), - [2086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), - [2088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2438), - [2090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), - [2092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), - [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), - [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), - [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), - [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), - [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), - [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), - [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), - [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), - [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), - [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), - [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), - [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), - [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), - [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), - [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), - [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), - [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), - [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), - [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), - [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), - [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), - [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), - [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), - [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), - [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), - [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), - [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), - [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), - [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), - [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [2198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 6, 0, 43), - [2200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 5, 0, 31), - [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [2204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__explicit_parameter_list, 1, 0, 0), - [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [2208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, 0, 174), - [2210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, 0, 195), - [2212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, 0, 194), - [2214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, 0, 193), - [2216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 7, 0, 192), - [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), - [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), - [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [2226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 6, 0, 79), - [2228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 6, 0, 78), - [2230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 6, 0, 77), - [2232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 6, 0, 76), - [2234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 6, 0, 75), - [2236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 6, 0, 74), - [2238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 6, 0, 73), - [2240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 6, 0, 47), - [2242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 6, 0, 72), - [2244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 6, 0, 71), - [2246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 6, 0, 70), - [2248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 6, 0, 69), - [2250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 6, 0, 68), - [2252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 6, 0, 44), - [2254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 6, 0, 67), - [2256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 6, 0, 66), - [2258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 10, 0, 238), - [2260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 6, 0, 65), - [2262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 6, 0, 64), - [2264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 6, 0, 63), - [2266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, 0, 78), - [2268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, 0, 77), - [2270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, 0, 76), - [2272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, 0, 75), - [2274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, 0, 74), - [2276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, 0, 73), - [2278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, 0, 47), - [2280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, 0, 72), - [2282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, 0, 71), - [2284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, 0, 70), - [2286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, 0, 69), - [2288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, 0, 68), - [2290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, 0, 44), - [2292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, 0, 67), - [2294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, 0, 66), - [2296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, 0, 43), - [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, 0, 65), - [2300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, 0, 64), - [2302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, 0, 63), - [2304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, 0, 62), - [2306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, 0, 61), - [2308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, 0, 79), - [2310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, 0, 150), - [2312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, 0, 182), - [2314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, 0, 181), - [2316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, 0, 149), - [2318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, 0, 180), - [2320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, 0, 179), - [2322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, 0, 178), - [2324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, 0, 148), - [2326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, 0, 177), - [2328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, 0, 176), - [2330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, 0, 175), - [2332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, 0, 103), - [2334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, 0, 174), - [2336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 6, 0, 173), - [2338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 6, 0, 172), - [2340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 6, 0, 171), - [2342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 6, 0, 170), - [2344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, 0, 197), - [2346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, 0, 175), - [2348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, 0, 198), - [2350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, 0, 199), - [2352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, 0, 200), - [2354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, 0, 201), - [2356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, 0, 202), - [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [2362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, 0, 178), - [2364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, 0, 203), - [2366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, 0, 204), - [2368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, 0, 205), - [2370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, 0, 206), - [2372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, 0, 207), - [2374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, 0, 208), - [2376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, 0, 92), - [2378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, 0, 95), - [2380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, 0, 96), - [2382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, 0, 63), - [2384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, 0, 97), - [2386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, 0, 98), - [2388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, 0, 99), - [2390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 5, 0, 54), - [2392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 5, 0, 53), - [2394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, 0, 100), - [2396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, 0, 101), - [2398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 5, 0, 52), - [2400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 5, 0, 33), - [2402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 5, 0, 51), - [2404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 5, 0, 50), - [2406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, 0, 102), - [2408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 5, 0, 32), - [2410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 5, 0, 49), - [2412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 5, 0, 48), - [2414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 5, 0, 47), - [2416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 5, 0, 31), - [2418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 5, 0, 46), - [2420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 5, 0, 45), - [2422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 5, 0, 44), - [2424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 7, 0, 96), - [2426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 5, 0, 43), - [2428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 5, 0, 52), - [2430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 5, 0, 33), - [2432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 5, 0, 51), - [2434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 5, 0, 50), - [2436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 5, 0, 32), - [2438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 5, 0, 49), - [2440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 5, 0, 48), - [2442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 5, 0, 47), - [2444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, 0, 196), - [2446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 5, 0, 46), - [2448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 5, 0, 45), - [2450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 5, 0, 44), - [2452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, 0, 104), - [2454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 5, 0, 43), - [2456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_redefinition, 5, 0, 0), - [2458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 5, 0, 15), - [2460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 5, 0, 54), - [2462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 5, 0, 53), - [2464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 5, 0, 150), - [2466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, 0, 105), - [2468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 5, 0, 149), - [2470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, 0, 106), - [2472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, 0, 107), - [2474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 5, 0, 148), - [2476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 5, 0, 147), - [2478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 5, 0, 146), - [2480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 5, 0, 145), - [2482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 5, 0, 144), - [2484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 5, 0, 143), - [2486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 5, 0, 142), - [2488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, 0, 108), - [2490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 7, 0, 95), - [2492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_line_spec_repeat1, 2, 0, 0), SHIFT_REPEAT(2264), - [2495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_line_spec_repeat1, 2, 0, 0), - [2497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_line_spec_repeat1, 2, 0, 0), - [2499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 7, 0, 63), - [2501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 7, 0, 97), - [2503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 7, 0, 98), - [2505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 7, 0, 99), - [2507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 7, 0, 100), - [2509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 7, 0, 101), - [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 7, 0, 102), - [2513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 7, 0, 103), - [2515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 7, 0, 104), - [2517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 7, 0, 105), - [2519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 7, 0, 106), - [2521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 7, 0, 107), - [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 7, 0, 108), - [2525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 8, 0, 213), - [2527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 8, 0, 214), - [2529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 8, 0, 193), - [2531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 8, 0, 215), - [2533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 8, 0, 216), - [2535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 8, 0, 217), - [2537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 8, 0, 218), - [2539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 4, 0, 15), - [2541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 4, 0, 35), - [2543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 4, 0, 34), - [2545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 4, 0, 33), - [2547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 8, 0, 219), - [2549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 4, 0, 32), - [2551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 8, 0, 220), - [2553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 8, 0, 221), - [2555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 8, 0, 222), - [2557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 4, 0, 31), - [2559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 4, 0, 35), - [2561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 4, 0, 34), - [2563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 4, 0, 33), - [2565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 8, 0, 223), - [2567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 4, 0, 32), - [2569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 8, 0, 224), - [2571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 8, 0, 225), - [2573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 8, 0, 226), - [2575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 4, 0, 31), - [2577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 8, 0, 132), - [2579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 8, 0, 133), - [2581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_redefinition, 4, 0, 0), - [2583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 8, 0, 134), - [2585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 8, 0, 135), - [2587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 8, 0, 136), - [2589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 4, 0, 15), - [2591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 4, 0, 114), - [2593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 4, 0, 113), - [2595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 4, 0, 112), - [2597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 4, 0, 0), - [2599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 8, 0, 137), - [2601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 8, 0, 132), - [2603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 8, 0, 133), - [2605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 8, 0, 134), - [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), - [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), - [2611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [2615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 8, 0, 135), - [2617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 8, 0, 136), - [2619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 8, 0, 137), - [2621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_list_exporting_repeat1, 1, 0, 0), - [2623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_exporting_repeat1, 1, 0, 0), - [2625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__function_parameter_list, 2, 0, 0), - [2627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_parameter_list, 2, 0, 0), SHIFT_REPEAT(1398), - [2630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_parameter_list, 2, 0, 0), SHIFT_REPEAT(1395), - [2633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__explicit_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1522), - [2636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__explicit_parameter_list_repeat1, 2, 0, 0), - [2638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__explicit_parameter_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2022), - [2641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_components, 1, 0, 0), - [2643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_public_section_repeat1, 1, 0, 0), - [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), - [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), - [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [2653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 9, 0, 230), - [2655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 9, 0, 231), - [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), - [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [2665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 9, 0, 232), - [2667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 9, 0, 233), - [2669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 9, 0, 234), - [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), - [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), - [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [2679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 9, 0, 235), - [2681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 3, 0, 0), - [2683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2264), - [2685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_spec, 3, 0, 0), - [2687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_line_spec, 3, 0, 0), - [2689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), - [2691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 9, 0, 165), - [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), - [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), - [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [2701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 9, 0, 165), - [2703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 3, 0, 15), - [2705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 3, 0, 15), - [2707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_binding_exporting, 3, 0, 22), - [2709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_binding_exporting, 3, 0, 22), - [2711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_constructor_declaration, 3, 0, 0), - [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), - [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [2739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), - [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [2743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2990), - [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), - [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), - [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), - [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), - [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), - [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), - [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), - [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), - [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), - [2807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chained_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(870), - [2810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_chained_variable_declaration_repeat1, 2, 0, 0), - [2812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chained_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(2017), - [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), - [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [2827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__data_object_typing_normal, 2, 0, 7), - [2829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_normal, 2, 0, 7), - [2831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), - [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [2835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__data_object_typing_normal, 2, 0, 0), - [2837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_normal, 2, 0, 0), - [2839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), - [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [2847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_chained_field_symbol_declaration_repeat1, 2, 0, 0), - [2849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chained_field_symbol_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(2013), - [2852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chained_field_symbol_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1081), - [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), - [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), - [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), - [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), - [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), - [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), - [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), - [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), - [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), - [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), - [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), - [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), - [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [2921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__data_object_typing_reference, 4, 0, 25), - [2923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_reference, 4, 0, 25), - [2925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), - [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [2929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__data_object_typing_normal, 4, 0, 25), - [2931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_normal, 4, 0, 25), - [2933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), - [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), - [2943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__method_declaration_raising_repeat1, 2, 0, 0), SHIFT_REPEAT(1248), - [2946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__method_declaration_raising_repeat1, 2, 0, 0), - [2948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__method_declaration_raising_repeat1, 2, 0, 0), SHIFT_REPEAT(2233), - [2951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__method_declaration_raising_repeat1, 2, 0, 0), - [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [2955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__data_object_typing_reference, 4, 0, 0), - [2957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_reference, 4, 0, 0), - [2959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), - [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [2965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__data_object_typing_normal, 4, 0, 0), - [2967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_normal, 4, 0, 0), - [2969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), - [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), - [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), - [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), - [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), - [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), - [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), - [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), - [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), - [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), - [3013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), - [3015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_declaration_raising, 2, 0, 0), - [3017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), - [3019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__method_declaration_raising, 2, 0, 0), - [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), - [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), - [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), - [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), - [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [3031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), - [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), - [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), - [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), - [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), - [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), - [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), - [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), - [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), - [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), - [3067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, 0, 137), - [3069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, 0, 125), - [3071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 10, 0, 183), - [3073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 10, 0, 184), - [3075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 4, 0, 33), - [3077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 4, 0, 15), - [3079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 10, 0, 185), - [3081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 4, 0, 32), - [3083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 10, 0, 186), - [3085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 10, 0, 187), - [3087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 10, 0, 188), - [3089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 4, 0, 31), - [3091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 4, 0, 15), - [3093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 4, 0, 35), - [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), - [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), - [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [3103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 4, 0, 34), - [3105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 10, 0, 183), - [3107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 10, 0, 184), - [3109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 10, 0, 185), - [3111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 10, 0, 186), - [3113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 4, 0, 33), - [3115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 10, 0, 187), - [3117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 10, 0, 188), - [3119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 4, 0, 32), - [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), - [3123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2694), - [3125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__data_object_typing_normal, 5, 0, 7), - [3127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_normal, 5, 0, 7), - [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [3131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 4, 0, 31), - [3133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__data_object_typing_normal, 5, 0, 0), - [3135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_normal, 5, 0, 0), - [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [3147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__method_declaration_raising_repeat1, 1, 0, 0), - [3149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__method_declaration_raising_repeat1, 1, 0, 0), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [3159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, 0, 58), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [3169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exception_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2332), - [3172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exception_list_repeat1, 2, 0, 0), - [3174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, 0, 108), - [3176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, 0, 59), - [3178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, 0, 107), - [3180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, 0, 106), - [3182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, 0, 85), - [3184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, 0, 104), - [3186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, 0, 60), - [3188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, 0, 103), - [3190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, 0, 102), - [3192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, 0, 101), - [3194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), - [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), + [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), + [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 0), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), + [109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(460), + [112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3044), + [115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2955), + [118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3045), + [121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2021), + [124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2019), + [127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3150), + [130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), + [132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2408), + [135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2409), + [138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2410), + [141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2618), + [144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(463), + [147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(465), + [150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2053), + [153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3104), + [156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2958), + [159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(512), + [162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2959), + [165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3047), + [168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1993), + [171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1166), + [174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2623), + [177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1996), + [180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(655), + [183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 3, .production_id = 17), + [185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 5, .production_id = 38), + [187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_block, 1), + [189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_block, 1), + [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), + [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), + [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), + [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), + [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), + [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), + [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), + [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), + [213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(459), + [216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3029), + [219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3147), + [222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3112), + [225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2000), + [228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1972), + [231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3075), + [234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3063), + [237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3062), + [240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3061), + [243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3046), + [246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(467), + [249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(464), + [252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2067), + [255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3016), + [258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3015), + [261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(504), + [264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3006), + [267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3002), + [270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1974), + [273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1176), + [276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2997), + [279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1976), + [282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), + [292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), + [294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), + [298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), + [300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), + [302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_method_body_repeat1, 2), SHIFT_REPEAT(460), + [307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_method_body_repeat1, 2), SHIFT_REPEAT(2955), + [310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_method_body_repeat1, 2), + [312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_method_body_repeat1, 2), SHIFT_REPEAT(2021), + [315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_method_body_repeat1, 2), SHIFT_REPEAT(2019), + [318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_method_body_repeat1, 2), SHIFT_REPEAT(3150), + [321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_method_body_repeat1, 2), SHIFT_REPEAT(2408), + [324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_method_body_repeat1, 2), SHIFT_REPEAT(2409), + [327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_method_body_repeat1, 2), SHIFT_REPEAT(2410), + [330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_method_body_repeat1, 2), SHIFT_REPEAT(2618), + [333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_method_body_repeat1, 2), SHIFT_REPEAT(463), + [336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_method_body_repeat1, 2), SHIFT_REPEAT(465), + [339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_method_body_repeat1, 2), SHIFT_REPEAT(2053), + [342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_method_body_repeat1, 2), SHIFT_REPEAT(3104), + [345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_method_body_repeat1, 2), SHIFT_REPEAT(2958), + [348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_method_body_repeat1, 2), SHIFT_REPEAT(512), + [351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_method_body_repeat1, 2), SHIFT_REPEAT(2959), + [354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_method_body_repeat1, 2), SHIFT_REPEAT(1993), + [357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_method_body_repeat1, 2), SHIFT_REPEAT(1166), + [360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_method_body_repeat1, 2), SHIFT_REPEAT(2623), + [363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_method_body_repeat1, 2), SHIFT_REPEAT(1996), + [366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_method_body_repeat1, 2), SHIFT_REPEAT(655), + [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), + [373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_body, 1), + [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__data_object, 1), + [381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object, 1), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_structured_data_object_repeat1, 2), + [387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_structured_data_object_repeat1, 2), + [389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_structured_data_object_repeat1, 2), SHIFT_REPEAT(2420), + [392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_structured_data_object, 2, .production_id = 2), + [394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structured_data_object, 2, .production_id = 2), + [396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 12, .production_id = 57), + [398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 12, .production_id = 57), + [400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_chained_structure_declaration, 11, .production_id = 139), + [402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chained_structure_declaration, 11, .production_id = 139), + [404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_symbol_declaration, 4, .production_id = 11), + [406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_symbol_declaration, 4, .production_id = 11), + [408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_catch_statement, 4), + [410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_catch_statement, 4), + [412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_chained_write_statement, 4), + [414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chained_write_statement, 4), + [416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_write_statement, 4), + [418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_write_statement, 4), + [420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_function, 4, .production_id = 12), + [422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_function, 4, .production_id = 12), + [424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raise_exception_statement, 4, .production_id = 13), + [426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_exception_statement, 4, .production_id = 13), + [428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_method, 4, .production_id = 1), + [430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_method, 4, .production_id = 1), + [432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 4), + [434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 4), + [436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), + [438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), + [440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), + [442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), + [444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_chained_variable_declaration, 5), + [446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chained_variable_declaration, 5), + [448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_chained_field_symbol_declaration, 5), + [450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chained_field_symbol_declaration, 5), + [452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5), + [454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5), + [456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_catch_statement, 5), + [458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_catch_statement, 5), + [460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_chained_write_statement, 5), + [462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chained_write_statement, 5), + [464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_function, 5, .production_id = 18), + [466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_function, 5, .production_id = 18), + [468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_function, 5, .production_id = 19), + [470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_function, 5, .production_id = 19), + [472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_include, 2, .production_id = 1), + [474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_include, 2, .production_id = 1), + [476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raise_exception_statement, 5, .production_id = 20), + [478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_exception_statement, 5, .production_id = 20), + [480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_append_statement, 5, .production_id = 21), + [482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_append_statement, 5, .production_id = 21), + [484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_statement, 5), + [486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_statement, 5), + [488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_report_statement, 3), + [490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_report_statement, 3), + [492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_method, 5, .production_id = 24), + [494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_method, 5, .production_id = 24), + [496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_check_statement, 3), + [498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_check_statement, 3), + [500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_write_statement, 3), + [502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_write_statement, 3), + [504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raise_statement, 3), + [506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 3), + [508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_create_object_statement, 6, .production_id = 25), + [510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_object_statement, 6, .production_id = 25), + [512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_clear_statement, 3), + [514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_clear_statement, 3), + [516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6), + [518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6), + [520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_statement_obsolete, 6, .production_id = 27), + [522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement_obsolete, 6, .production_id = 27), + [524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_read_table_statement, 6), + [526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_read_table_statement, 6), + [528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_catch_statement, 6), + [530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_catch_statement, 6), + [532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_chained_write_statement, 6), + [534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chained_write_statement, 6), + [536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_function, 6, .production_id = 28), + [538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_function, 6, .production_id = 28), + [540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_append_statement_obsolete, 3, .production_id = 3), + [542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_append_statement_obsolete, 3, .production_id = 3), + [544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_method_static, 6, .production_id = 29), + [546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_method_static, 6, .production_id = 29), + [548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_method_instance, 6, .production_id = 30), + [550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_method_instance, 6, .production_id = 30), + [552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_statement, 3), + [554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_statement, 3), + [556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_structured_data_object_repeat1, 2, .production_id = 4), + [558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_structured_data_object_repeat1, 2, .production_id = 4), + [560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_statement_obsolete, 7, .production_id = 27), + [562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement_obsolete, 7, .production_id = 27), + [564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raise_exception_statement, 7, .production_id = 40), + [566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_exception_statement, 7, .production_id = 40), + [568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_method_static, 7, .production_id = 41), + [570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_method_static, 7, .production_id = 41), + [572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_method_instance, 7, .production_id = 42), + [574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_method_instance, 7, .production_id = 42), + [576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_include, 3, .production_id = 6), + [578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_include, 3, .production_id = 6), + [580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 15, .production_id = 57), + [582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 15, .production_id = 57), + [584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 8, .production_id = 57), + [586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 8, .production_id = 57), + [588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_statement_obsolete, 8, .production_id = 27), + [590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement_obsolete, 8, .production_id = 27), + [592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_create_object_statement, 4), + [594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_object_statement, 4), + [596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_chained_field_symbol_declaration, 4), + [598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chained_field_symbol_declaration, 4), + [600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_chained_variable_declaration, 4), + [602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chained_variable_declaration, 4), + [604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 14, .production_id = 57), + [606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 14, .production_id = 57), + [608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 9, .production_id = 57), + [610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 9, .production_id = 57), + [612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, .production_id = 9), + [614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, .production_id = 9), + [616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 11, .production_id = 57), + [618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 11, .production_id = 57), + [620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_statement_obsolete, 11, .production_id = 110), + [622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement_obsolete, 11, .production_id = 110), + [624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 13, .production_id = 57), + [626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 13, .production_id = 57), + [628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 2), + [630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 2), + [632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_chained_structure_declaration, 12, .production_id = 167), + [634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chained_structure_declaration, 12, .production_id = 167), + [636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 10, .production_id = 57), + [638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 10, .production_id = 57), + [640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_statement_obsolete, 10, .production_id = 110), + [642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement_obsolete, 10, .production_id = 110), + [644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_statement_obsolete, 12, .production_id = 110), + [646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement_obsolete, 12, .production_id = 110), + [648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arithmetic_expression, 3), + [650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arithmetic_expression, 3), + [652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_access_static, 3, .production_id = 5), + [654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_access_static, 3, .production_id = 5), + [656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 9, .production_id = 31), + [658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 9, .production_id = 31), + [660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 16, .production_id = 211), + [662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 16, .production_id = 211), + [664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 10, .production_id = 83), + [666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 10, .production_id = 83), + [668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 10, .production_id = 31), + [670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 10, .production_id = 31), + [672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 10, .production_id = 58), + [674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 10, .production_id = 58), + [676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 10, .production_id = 43), + [678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 10, .production_id = 43), + [680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 11, .production_id = 82), + [682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 11, .production_id = 82), + [684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 11, .production_id = 111), + [686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 11, .production_id = 111), + [688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 11, .production_id = 16), + [690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 11, .production_id = 16), + [692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 11, .production_id = 83), + [694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 11, .production_id = 83), + [696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 11, .production_id = 31), + [698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 11, .production_id = 31), + [700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 11, .production_id = 58), + [702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 11, .production_id = 58), + [704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 11, .production_id = 112), + [706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 11, .production_id = 112), + [708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 11, .production_id = 43), + [710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 11, .production_id = 43), + [712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 12, .production_id = 82), + [714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 12, .production_id = 82), + [716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 12, .production_id = 140), + [718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 12, .production_id = 140), + [720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 12, .production_id = 16), + [722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 12, .production_id = 16), + [724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 12, .production_id = 141), + [726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 12, .production_id = 141), + [728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 12, .production_id = 111), + [730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 12, .production_id = 111), + [732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 12, .production_id = 83), + [734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 12, .production_id = 83), + [736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 12, .production_id = 31), + [738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 12, .production_id = 31), + [740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 12, .production_id = 58), + [742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 12, .production_id = 58), + [744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 12, .production_id = 142), + [746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 12, .production_id = 142), + [748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 12, .production_id = 112), + [750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 12, .production_id = 112), + [752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 13, .production_id = 82), + [754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 13, .production_id = 82), + [756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 13, .production_id = 168), + [758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 13, .production_id = 168), + [760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 13, .production_id = 140), + [762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 13, .production_id = 140), + [764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 13, .production_id = 16), + [766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 13, .production_id = 16), + [768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 13, .production_id = 141), + [770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 13, .production_id = 141), + [772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 13, .production_id = 111), + [774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 13, .production_id = 111), + [776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 13, .production_id = 169), + [778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 13, .production_id = 169), + [780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 13, .production_id = 83), + [782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 13, .production_id = 83), + [784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 13, .production_id = 170), + [786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 13, .production_id = 170), + [788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 13, .production_id = 58), + [790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 13, .production_id = 58), + [792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 13, .production_id = 142), + [794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 13, .production_id = 142), + [796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 13, .production_id = 112), + [798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 13, .production_id = 112), + [800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 14, .production_id = 190), + [802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 14, .production_id = 190), + [804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 14, .production_id = 82), + [806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 14, .production_id = 82), + [808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 14, .production_id = 168), + [810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 14, .production_id = 168), + [812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 14, .production_id = 140), + [814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 14, .production_id = 140), + [816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 14, .production_id = 191), + [818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 14, .production_id = 191), + [820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 14, .production_id = 16), + [822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 14, .production_id = 16), + [824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 14, .production_id = 141), + [826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 14, .production_id = 141), + [828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 14, .production_id = 111), + [830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 14, .production_id = 111), + [832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 14, .production_id = 169), + [834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 14, .production_id = 169), + [836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 14, .production_id = 58), + [838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 14, .production_id = 58), + [840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 14, .production_id = 192), + [842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 14, .production_id = 192), + [844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_publication, 5, .production_id = 16), + [846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_publication, 5, .production_id = 16), + [848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 14, .production_id = 170), + [850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 14, .production_id = 170), + [852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 14, .production_id = 142), + [854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 14, .production_id = 142), + [856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 14, .production_id = 112), + [858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 14, .production_id = 112), + [860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 10, .production_id = 82), + [862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 10, .production_id = 82), + [864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 15, .production_id = 82), + [866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 15, .production_id = 82), + [868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 15, .production_id = 211), + [870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 15, .production_id = 211), + [872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 15, .production_id = 190), + [874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 15, .production_id = 190), + [876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 15, .production_id = 168), + [878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 15, .production_id = 168), + [880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 15, .production_id = 140), + [882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 15, .production_id = 140), + [884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 15, .production_id = 212), + [886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 15, .production_id = 212), + [888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 9, .production_id = 43), + [890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 9, .production_id = 43), + [892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 15, .production_id = 191), + [894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 15, .production_id = 191), + [896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 15, .production_id = 16), + [898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 15, .production_id = 16), + [900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 9, .production_id = 58), + [902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 9, .production_id = 58), + [904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 15, .production_id = 141), + [906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 15, .production_id = 141), + [908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 15, .production_id = 169), + [910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 15, .production_id = 169), + [912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 15, .production_id = 58), + [914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 15, .production_id = 58), + [916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 15, .production_id = 192), + [918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 15, .production_id = 192), + [920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 15, .production_id = 170), + [922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 15, .production_id = 170), + [924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 15, .production_id = 213), + [926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 15, .production_id = 213), + [928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 15, .production_id = 142), + [930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 15, .production_id = 142), + [932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 9, .production_id = 16), + [934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 9, .production_id = 16), + [936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 16, .production_id = 82), + [938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 16, .production_id = 82), + [940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 10, .production_id = 16), + [942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 10, .production_id = 16), + [944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 43), + [946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 43), + [948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 16, .production_id = 190), + [950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 16, .production_id = 190), + [952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 16, .production_id = 228), + [954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 16, .production_id = 228), + [956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 16, .production_id = 168), + [958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 16, .production_id = 168), + [960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 16, .production_id = 212), + [962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 16, .production_id = 212), + [964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 16, .production_id = 191), + [966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 16, .production_id = 191), + [968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 16, .production_id = 229), + [970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 16, .production_id = 229), + [972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 16, .production_id = 16), + [974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 16, .production_id = 16), + [976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 16, .production_id = 169), + [978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 16, .production_id = 169), + [980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 16, .production_id = 230), + [982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 16, .production_id = 230), + [984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 16, .production_id = 58), + [986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 16, .production_id = 58), + [988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 16, .production_id = 192), + [990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 16, .production_id = 192), + [992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 16, .production_id = 170), + [994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 16, .production_id = 170), + [996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 16, .production_id = 213), + [998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 16, .production_id = 213), + [1000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 17, .production_id = 237), + [1002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 17, .production_id = 237), + [1004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 17, .production_id = 82), + [1006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 17, .production_id = 82), + [1008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 16), + [1010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 16), + [1012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 7, .production_id = 16), + [1014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 7, .production_id = 16), + [1016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_implementation, 7, .production_id = 16), + [1018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_implementation, 7, .production_id = 16), + [1020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 17, .production_id = 211), + [1022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 17, .production_id = 211), + [1024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 17, .production_id = 190), + [1026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 17, .production_id = 190), + [1028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 17, .production_id = 228), + [1030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 17, .production_id = 228), + [1032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 17, .production_id = 212), + [1034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 17, .production_id = 212), + [1036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 17, .production_id = 191), + [1038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 17, .production_id = 191), + [1040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_local_friend_publication, 7, .production_id = 31), + [1042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_local_friend_publication, 7, .production_id = 31), + [1044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 17, .production_id = 229), + [1046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 17, .production_id = 229), + [1048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 17, .production_id = 238), + [1050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 17, .production_id = 238), + [1052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 17, .production_id = 230), + [1054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 17, .production_id = 230), + [1056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 17, .production_id = 58), + [1058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 17, .production_id = 58), + [1060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 17, .production_id = 192), + [1062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 17, .production_id = 192), + [1064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 17, .production_id = 213), + [1066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 17, .production_id = 213), + [1068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 16), + [1070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 16), + [1072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 18, .production_id = 240), + [1074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 18, .production_id = 240), + [1076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 18, .production_id = 237), + [1078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 18, .production_id = 237), + [1080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 18, .production_id = 82), + [1082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 18, .production_id = 82), + [1084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 18, .production_id = 211), + [1086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 18, .production_id = 211), + [1088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 18, .production_id = 228), + [1090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 18, .production_id = 228), + [1092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 18, .production_id = 212), + [1094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 18, .production_id = 212), + [1096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 18, .production_id = 229), + [1098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 18, .production_id = 229), + [1100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 18, .production_id = 238), + [1102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 18, .production_id = 238), + [1104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 18, .production_id = 230), + [1106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 18, .production_id = 230), + [1108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_implementation, 6, .production_id = 16), + [1110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_implementation, 6, .production_id = 16), + [1112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 18, .production_id = 241), + [1114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 18, .production_id = 241), + [1116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 18, .production_id = 58), + [1118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 18, .production_id = 58), + [1120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 18, .production_id = 213), + [1122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 18, .production_id = 213), + [1124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 19, .production_id = 240), + [1126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 19, .production_id = 240), + [1128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 19, .production_id = 237), + [1130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 19, .production_id = 237), + [1132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 19, .production_id = 242), + [1134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 19, .production_id = 242), + [1136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, .production_id = 16), + [1138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, .production_id = 16), + [1140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 19, .production_id = 82), + [1142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 19, .production_id = 82), + [1144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_implementation, 6, .production_id = 16), + [1146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_implementation, 6, .production_id = 16), + [1148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 19, .production_id = 228), + [1150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 19, .production_id = 228), + [1152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 19, .production_id = 229), + [1154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 19, .production_id = 229), + [1156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 19, .production_id = 238), + [1158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 19, .production_id = 238), + [1160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 19, .production_id = 230), + [1162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 19, .production_id = 230), + [1164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 19, .production_id = 241), + [1166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 19, .production_id = 241), + [1168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 20, .production_id = 240), + [1170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 20, .production_id = 240), + [1172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 20, .production_id = 237), + [1174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 20, .production_id = 237), + [1176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_publication, 6, .production_id = 16), + [1178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_publication, 6, .production_id = 16), + [1180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 16), + [1182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 16), + [1184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 20, .production_id = 242), + [1186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 20, .production_id = 242), + [1188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), + [1190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 20, .production_id = 238), + [1192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 20, .production_id = 238), + [1194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 20, .production_id = 241), + [1196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 20, .production_id = 241), + [1198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 21, .production_id = 240), + [1200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 21, .production_id = 240), + [1202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 21, .production_id = 242), + [1204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 21, .production_id = 242), + [1206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 21, .production_id = 241), + [1208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 21, .production_id = 241), + [1210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 22, .production_id = 242), + [1212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 22, .production_id = 242), + [1214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_implementation, 5, .production_id = 16), + [1216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_implementation, 5, .production_id = 16), + [1218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 16), + [1220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 16), + [1222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), + [1224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [1226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [1228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [1232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), + [1234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [1238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [1240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), + [1242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), + [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), + [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), + [1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [1266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2896), + [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), + [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), + [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), + [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [1284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), + [1286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), + [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), + [1292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_section, 3), + [1296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), + [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), + [1324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_public_section_repeat1, 2), + [1326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_public_section_repeat1, 2), SHIFT_REPEAT(1981), + [1329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_public_section_repeat1, 2), SHIFT_REPEAT(1983), + [1332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_public_section_repeat1, 2), SHIFT_REPEAT(2199), + [1335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_public_section_repeat1, 2), SHIFT_REPEAT(2755), + [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_section, 4), + [1340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_binding, 3, .production_id = 23), + [1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_binding, 3, .production_id = 23), + [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), + [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), + [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_section, 3), + [1352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__operand, 1), + [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_section, 4), + [1356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_structured_data_object_repeat1, 2), SHIFT_REPEAT(2615), + [1359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_section, 3), + [1361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 1), + [1363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 1), + [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [1371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), + [1373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_declaration_importing, 2), + [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), + [1385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_section, 4), + [1387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__method_declaration_importing_repeat1, 2), SHIFT_REPEAT(1067), + [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__method_declaration_importing_repeat1, 2), + [1392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__method_declaration_importing_repeat1, 2), SHIFT_REPEAT(2294), + [1395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__method_declaration_importing_repeat1, 2), SHIFT_REPEAT(2973), + [1398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complete_typing, 4, .production_id = 26), + [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complete_typing, 4, .production_id = 26), + [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [1408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_typing, 2), + [1410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_typing, 2), + [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_declaration_exporting, 2), + [1414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2), + [1416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2), + [1418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complete_typing, 2, .production_id = 8), + [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complete_typing, 2, .production_id = 8), + [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [1424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [1428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [1430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_parameters, 2), + [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_parameters, 2), + [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), + [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [1442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), + [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), + [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), + [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), + [1468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), + [1470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [1474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [1476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_declaration_changing, 2), + [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [1484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_line_spec_repeat1, 3), + [1486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_line_spec_repeat1, 3), + [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), + [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), + [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), + [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [1502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [1504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), + [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [1510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_macro_include_repeat1, 1), + [1512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_include_repeat1, 1), + [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [1516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_parameters, 5), + [1518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_parameters, 5), + [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [1522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), + [1524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_include_repeat1, 2), SHIFT_REPEAT(474), + [1527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_include_repeat1, 2), + [1529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_include_repeat1, 2), SHIFT_REPEAT(516), + [1532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_include_repeat1, 2), SHIFT_REPEAT(484), + [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), + [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), + [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), + [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), + [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), + [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), + [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [1579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_parameters, 6), + [1581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_parameters, 6), + [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [1595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_parameters, 7), + [1597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_parameters, 7), + [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [1631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_parameters, 3), + [1633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_parameters, 3), + [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2654), + [1657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 1), + [1659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(2654), + [1662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), + [1664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_expression, 3), + [1666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [1670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [1672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [1674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [1678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [1682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [1684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [1686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [1690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_parameters, 4), + [1692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_parameters, 4), + [1694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [1696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), + [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), + [1700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [1702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [1704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [1706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), + [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), + [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [1724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), + [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), + [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [1730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), + [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), + [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), + [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), + [1758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comp_spec, 3, .production_id = 22), + [1760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comp_spec, 3, .production_id = 22), + [1762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_declaration_repeat1, 2), SHIFT_REPEAT(2761), + [1765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_declaration_repeat1, 2), SHIFT_REPEAT(2760), + [1768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_declaration_repeat1, 2), + [1770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_declaration_repeat1, 2), SHIFT_REPEAT(2755), + [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), + [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [1787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_chained_write_statement_repeat1, 2), + [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), + [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [1797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2386), + [1799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list_exporting, 1), + [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), + [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), + [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), + [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), + [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), + [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), + [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), + [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), + [1839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_parameter_list_exporting_repeat1, 2), SHIFT_REPEAT(2386), + [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_exporting_repeat1, 2), + [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [1852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), + [1854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [1858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [1860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [1862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [1866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), + [1868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), + [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [1872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [1874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [1876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [1878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [1880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), + [1882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [1884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), + [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 9, .production_id = 232), + [1888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 6, .production_id = 70), + [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), + [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), + [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), + [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), + [1898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [1900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), + [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), + [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), + [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 4), + [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), + [1920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 4, .production_id = 114), + [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), + [1924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [1926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), + [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 4, .production_id = 16), + [1936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), + [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [1940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), + [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), + [1944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [1946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [1948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 4, .production_id = 113), + [1950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 4, .production_id = 115), + [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), + [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), + [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), + [1958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), + [1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), + [1966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), + [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [1972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_redefinition, 4), + [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 4, .production_id = 32), + [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), + [1986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 4, .production_id = 33), + [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [1996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 4, .production_id = 34), + [1998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), + [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [2004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 4, .production_id = 35), + [2006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 4, .production_id = 36), + [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [2016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [2018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [2020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 4, .production_id = 32), + [2022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [2024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 4, .production_id = 33), + [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [2028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), + [2030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 4, .production_id = 34), + [2032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 4, .production_id = 35), + [2034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 4, .production_id = 36), + [2036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 10, .production_id = 239), + [2038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 4, .production_id = 16), + [2040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chained_interface_declaration, 4), + [2042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), + [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), + [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), + [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), + [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), + [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), + [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), + [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [2070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 9, .production_id = 166), + [2072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 9, .production_id = 166), + [2074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 9, .production_id = 236), + [2076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 9, .production_id = 235), + [2078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 9, .production_id = 234), + [2080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 9, .production_id = 233), + [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), + [2084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 9, .production_id = 231), + [2086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), + [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), + [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), + [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), + [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), + [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), + [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), + [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), + [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), + [2110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 5, .production_id = 143), + [2112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 5, .production_id = 144), + [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), + [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), + [2118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 5, .production_id = 145), + [2120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 5, .production_id = 146), + [2122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 5, .production_id = 147), + [2124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 5, .production_id = 148), + [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [2128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 5, .production_id = 149), + [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), + [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), + [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [2140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 5, .production_id = 150), + [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [2144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 8, .production_id = 138), + [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [2148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 8, .production_id = 137), + [2150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 8, .production_id = 136), + [2152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 5, .production_id = 151), + [2154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 8, .production_id = 135), + [2156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 8, .production_id = 134), + [2158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 8, .production_id = 133), + [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), + [2162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 8, .production_id = 138), + [2164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 8, .production_id = 137), + [2166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 8, .production_id = 136), + [2168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 8, .production_id = 135), + [2170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 5, .production_id = 54), + [2172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 8, .production_id = 134), + [2174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 8, .production_id = 133), + [2176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 8, .production_id = 227), + [2178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 8, .production_id = 226), + [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), + [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [2184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 8, .production_id = 225), + [2186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 8, .production_id = 224), + [2188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 8, .production_id = 223), + [2190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 8, .production_id = 222), + [2192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 8, .production_id = 221), + [2194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 5, .production_id = 55), + [2196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 8, .production_id = 220), + [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), + [2200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 8, .production_id = 219), + [2202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 5, .production_id = 16), + [2204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 8, .production_id = 218), + [2206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 8, .production_id = 217), + [2208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_redefinition, 5), + [2210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 8, .production_id = 216), + [2212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 8, .production_id = 194), + [2214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 8, .production_id = 215), + [2216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 8, .production_id = 214), + [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), + [2220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 5, .production_id = 44), + [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), + [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [2230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 5, .production_id = 45), + [2232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 5, .production_id = 46), + [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [2236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 5, .production_id = 47), + [2238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 5, .production_id = 32), + [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), + [2242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 5, .production_id = 48), + [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [2248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 5, .production_id = 49), + [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [2252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 5, .production_id = 50), + [2254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 5, .production_id = 33), + [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), + [2258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 5, .production_id = 51), + [2260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 5, .production_id = 52), + [2262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 5, .production_id = 34), + [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [2266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 5, .production_id = 53), + [2268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 5, .production_id = 44), + [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), + [2274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 5, .production_id = 45), + [2276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 5, .production_id = 46), + [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), + [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [2292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 5, .production_id = 47), + [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 7, .production_id = 109), + [2300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 7, .production_id = 108), + [2302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 5, .production_id = 32), + [2304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 7, .production_id = 107), + [2306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 7, .production_id = 106), + [2308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 7, .production_id = 105), + [2310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 5, .production_id = 48), + [2312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 7, .production_id = 104), + [2314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 7, .production_id = 103), + [2316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 7, .production_id = 102), + [2318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 7, .production_id = 101), + [2320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 7, .production_id = 100), + [2322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 7, .production_id = 99), + [2324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 7, .production_id = 98), + [2326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 7, .production_id = 64), + [2328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 7, .production_id = 97), + [2330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 7, .production_id = 96), + [2332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 5, .production_id = 49), + [2334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 109), + [2336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 108), + [2338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 107), + [2340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 106), + [2342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 105), + [2344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 104), + [2346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 103), + [2348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 102), + [2350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 101), + [2352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 100), + [2354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 99), + [2356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 98), + [2358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 64), + [2360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 97), + [2362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 96), + [2364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 93), + [2366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 209), + [2368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 208), + [2370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 207), + [2372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 206), + [2374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 205), + [2376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 204), + [2378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 179), + [2380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 203), + [2382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 202), + [2384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 201), + [2386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 200), + [2388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 199), + [2390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 176), + [2392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 198), + [2394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 197), + [2396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 175), + [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [2402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 196), + [2404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 195), + [2406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 5, .production_id = 50), + [2408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 5, .production_id = 33), + [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [2412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 194), + [2414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 7, .production_id = 193), + [2416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 5, .production_id = 51), + [2418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 5, .production_id = 52), + [2420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 5, .production_id = 34), + [2422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 5, .production_id = 53), + [2424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 5, .production_id = 54), + [2426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 5, .production_id = 55), + [2428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_structured_data_object_repeat1, 2), SHIFT_REPEAT(2896), + [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [2433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chained_interface_declaration, 5), + [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), + [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), + [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), + [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), + [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), + [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), + [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), + [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), + [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), + [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), + [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [2473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 6, .production_id = 80), + [2475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 6, .production_id = 79), + [2477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 6, .production_id = 78), + [2479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 6, .production_id = 77), + [2481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 6, .production_id = 76), + [2483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 6, .production_id = 75), + [2485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 6, .production_id = 74), + [2487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 6, .production_id = 48), + [2489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 6, .production_id = 73), + [2491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 6, .production_id = 72), + [2493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 6, .production_id = 71), + [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), + [2497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 6, .production_id = 69), + [2499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 6, .production_id = 45), + [2501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 6, .production_id = 68), + [2503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 6, .production_id = 67), + [2505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 6, .production_id = 44), + [2507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 6, .production_id = 66), + [2509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 6, .production_id = 65), + [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [2513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 6, .production_id = 64), + [2515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 79), + [2517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 78), + [2519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 77), + [2521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 76), + [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 75), + [2525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 74), + [2527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 48), + [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), + [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), + [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [2537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 73), + [2539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 72), + [2541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 71), + [2543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 70), + [2545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 69), + [2547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 3, .production_id = 16), + [2549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 45), + [2551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 68), + [2553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 67), + [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), + [2557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 44), + [2559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 66), + [2561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 65), + [2563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_constructor_declaration, 3), + [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [2567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 64), + [2569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 63), + [2571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 62), + [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), + [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [2577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 80), + [2579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 151), + [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), + [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), + [2585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 183), + [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), + [2589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 182), + [2591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 150), + [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [2595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 181), + [2597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 180), + [2599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 3, .production_id = 16), + [2601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 179), + [2603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 149), + [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), + [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), + [2609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 178), + [2611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 177), + [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), + [2615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 3), + [2617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 176), + [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [2623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 175), + [2625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 6, .production_id = 174), + [2627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 6, .production_id = 173), + [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), + [2631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 6, .production_id = 172), + [2633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 6, .production_id = 171), + [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), + [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), + [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [2647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__explicit_parameter_list, 1), + [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), + [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), + [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [2669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__explicit_parameter_list_repeat1, 2), SHIFT_REPEAT(1435), + [2672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__explicit_parameter_list_repeat1, 2), + [2674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__explicit_parameter_list_repeat1, 2), SHIFT_REPEAT(2052), + [2677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_binding_exporting, 3, .production_id = 23), + [2679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_binding_exporting, 3, .production_id = 23), + [2681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_line_spec_repeat1, 2), SHIFT_REPEAT(2321), + [2684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_line_spec_repeat1, 2), + [2686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__function_parameter_list, 2), + [2688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_parameter_list, 2), SHIFT_REPEAT(1425), + [2691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_parameter_list, 2), SHIFT_REPEAT(1424), + [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), + [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), + [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [2702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), + [2704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_spec, 3), + [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), + [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), + [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), + [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), + [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), + [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), + [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), + [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), + [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), + [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), + [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), + [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), + [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), + [2816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), + [2818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_declaration_raising, 2), + [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), + [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), + [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), + [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), + [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), + [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), + [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), + [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), + [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), + [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), + [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), + [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), + [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), + [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), + [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), + [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), + [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), + [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), + [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), + [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), + [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), + [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), + [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), + [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), + [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), + [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), + [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), + [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), + [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), + [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), + [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), + [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [2978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__method_declaration_raising_repeat1, 2), SHIFT_REPEAT(1177), + [2981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__method_declaration_raising_repeat1, 2), + [2983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__method_declaration_raising_repeat1, 2), SHIFT_REPEAT(2293), + [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), + [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [2996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 9, .production_id = 161), + [2998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 93), + [3000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 5, .production_id = 53), + [3002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chained_structure_declaration_repeat1, 2), SHIFT_REPEAT(1098), + [3005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_chained_structure_declaration_repeat1, 2), + [3007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 5, .production_id = 54), + [3009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), + [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), + [3013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 5, .production_id = 55), + [3015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 5, .production_id = 34), + [3017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 5, .production_id = 52), + [3019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 5, .production_id = 51), + [3021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 5, .production_id = 33), + [3023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 5, .production_id = 50), + [3025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 5, .production_id = 49), + [3027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 5, .production_id = 48), + [3029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 5, .production_id = 32), + [3031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 5, .production_id = 47), + [3033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 5, .production_id = 46), + [3035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 5, .production_id = 45), + [3037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 5, .production_id = 44), + [3039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 5, .production_id = 16), + [3041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 5, .production_id = 55), + [3043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 5, .production_id = 54), + [3045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 5, .production_id = 53), + [3047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 5, .production_id = 34), + [3049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 5, .production_id = 52), + [3051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 5, .production_id = 51), + [3053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 5, .production_id = 33), + [3055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 5, .production_id = 50), + [3057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 5, .production_id = 49), + [3059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 5, .production_id = 48), + [3061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 5, .production_id = 32), + [3063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 5, .production_id = 47), + [3065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 5, .production_id = 46), + [3067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 5, .production_id = 45), + [3069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 5, .production_id = 44), + [3071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 5, .production_id = 16), + [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), + [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), + [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), + [3083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 4, .production_id = 32), + [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [3087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, .production_id = 59), + [3089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 4, .production_id = 16), + [3091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 4, .production_id = 36), + [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), + [3095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 4, .production_id = 35), + [3097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, .production_id = 60), + [3099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 11, .production_id = 210), + [3101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 11, .production_id = 210), + [3103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 4, .production_id = 34), + [3105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, .production_id = 61), + [3107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 4, .production_id = 33), + [3109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, .production_id = 62), + [3111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, .production_id = 63), + [3113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, .production_id = 16), + [3115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 4, .production_id = 16), + [3117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 4, .production_id = 36), + [3119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, .production_id = 64), + [3121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 4, .production_id = 35), + [3123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 4, .production_id = 34), + [3125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, .production_id = 65), + [3127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, .production_id = 66), + [3129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, .production_id = 44), + [3131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 4, .production_id = 33), + [3133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, .production_id = 67), + [3135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 4, .production_id = 32), + [3137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, .production_id = 68), + [3139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, .production_id = 45), + [3141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 109), + [3143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 108), + [3145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, .production_id = 69), + [3147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 107), + [3149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, .production_id = 70), + [3151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, .production_id = 71), + [3153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, .production_id = 72), + [3155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 106), + [3157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 105), + [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [3167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 104), + [3169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 103), + [3171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, .production_id = 73), + [3173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, .production_id = 48), + [3175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exception_list_repeat1, 2), SHIFT_REPEAT(2385), + [3178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exception_list_repeat1, 2), + [3180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, .production_id = 75), + [3182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, .production_id = 76), + [3184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 102), + [3186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, .production_id = 116), + [3188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, .production_id = 77), + [3190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, .production_id = 78), + [3192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 101), + [3194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, .production_id = 117), + [3196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_normal, 4), [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [3202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__data_object_typing_normal, 4, 0, 7), - [3204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_normal, 4, 0, 7), - [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [3208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, 0, 100), - [3210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, 0, 99), - [3212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, 0, 61), - [3214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__data_object_typing_normal, 6, 0, 0), - [3216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_normal, 6, 0, 0), - [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [3220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, 0, 62), - [3222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, 0, 98), - [3224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, 0, 97), - [3226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 5, 0, 15), - [3228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, 0, 15), - [3230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, 0, 63), - [3232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, 0, 96), - [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), - [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), - [3238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [3240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [3242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 4, 0, 34), - [3244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 3, 0, 15), - [3246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, 0, 63), - [3248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, 0, 94), - [3250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 5, 0, 43), - [3252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, 0, 93), - [3254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, 0, 115), - [3256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 3, 0, 15), - [3258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, 0, 92), - [3260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__data_object_typing_normal, 6, 0, 25), - [3262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_normal, 6, 0, 25), - [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [3266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, 0, 116), - [3268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, 0, 60), - [3270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, 0, 117), - [3272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, 0, 83), - [3274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, 0, 64), - [3276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_implementation_repeat1, 2, 0, 0), - [3278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_implementation_repeat1, 2, 0, 0), SHIFT_REPEAT(2364), - [3281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, 0, 118), - [3283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, 0, 91), - [3285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, 0, 119), - [3287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, 0, 84), - [3289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, 0, 65), - [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), - [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), - [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [3299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, 0, 120), - [3301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, 0, 121), - [3303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, 0, 90), - [3305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, 0, 122), - [3307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, 0, 123), - [3309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, 0, 43), - [3311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, 0, 124), - [3313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, 0, 87), - [3315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 5, 0, 44), - [3317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 5, 0, 47), - [3319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), - [3321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, 0, 126), - [3323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, 0, 66), - [3325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, 0, 127), - [3327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, 0, 128), - [3329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, 0, 129), - [3331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, 0, 130), - [3333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, 0, 131), - [3335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, 0, 59), - [3337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, 0, 67), - [3339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, 0, 132), - [3341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, 0, 133), - [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), - [3345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, 0, 134), - [3347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, 0, 135), - [3349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, 0, 136), - [3351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, 0, 137), - [3353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, 0, 115), - [3355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, 0, 44), - [3357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, 0, 89), - [3359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, 0, 88), - [3361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, 0, 116), - [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [3365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_list, 2, 0, 0), - [3367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, 0, 117), - [3369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, 0, 83), - [3371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 5, 0, 45), - [3373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chained_structure_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1194), - [3376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_chained_structure_declaration_repeat1, 2, 0, 0), - [3378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, 0, 118), - [3380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, 0, 87), - [3382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, 0, 119), - [3384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, 0, 84), - [3386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, 0, 68), - [3388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), - [3390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2273), - [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [3394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), - [3396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, 0, 120), - [3398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, 0, 121), - [3400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 5, 0, 46), - [3402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, 0, 122), - [3404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, 0, 123), - [3406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 5, 0, 31), - [3408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, 0, 124), - [3410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, 0, 87), - [3412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, 0, 69), - [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [3422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, 0, 125), - [3424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, 0, 126), - [3426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, 0, 58), - [3428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, 0, 127), - [3430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, 0, 128), - [3432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, 0, 129), - [3434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, 0, 86), - [3436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, 0, 130), - [3438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, 0, 131), - [3440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, 0, 132), - [3442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, 0, 133), - [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), - [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [3448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, 0, 134), - [3450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, 0, 135), - [3452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, 0, 136), - [3454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, 0, 95), - [3456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 4, 0, 35), - [3458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, 0, 105), - [3460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__create_addition, 2, 0, 0), - [3462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 5, 0, 54), - [3464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, 0, 84), - [3466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, 0, 70), - [3468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 5, 0, 53), - [3470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__data_object_typing_normal, 7, 0, 0), - [3472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_normal, 7, 0, 0), - [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [3476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, 0, 71), - [3478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__data_object_typing_reference, 7, 0, 0), - [3480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_reference, 7, 0, 0), - [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [3484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 5, 0, 52), - [3486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 5, 0, 48), - [3488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__table_expression_free_key, 2, 0, 0), SHIFT_REPEAT(2389), - [3491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__table_expression_free_key, 2, 0, 0), - [3493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_components, 1, 0, 0), - [3495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, 0, 72), - [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), - [3499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, 0, 83), - [3501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, 0, 108), - [3503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_catch_statement_repeat1, 2, 0, 0), - [3505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_catch_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2699), - [3508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, 0, 107), - [3510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, 0, 106), - [3512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 5, 0, 49), - [3514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__data_object_typing_normal, 7, 0, 25), - [3516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_normal, 7, 0, 25), - [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), - [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), - [3524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, 0, 73), - [3526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, 0, 105), - [3528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, 0, 104), - [3530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__data_object_typing_reference, 7, 0, 25), - [3532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_reference, 7, 0, 25), - [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [3536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, 0, 103), - [3538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, 0, 74), - [3540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, 0, 102), - [3542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, 0, 58), - [3544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 5, 0, 33), - [3546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, 0, 101), - [3548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, 0, 100), - [3550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, 0, 99), - [3552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, 0, 75), - [3554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 5, 0, 51), - [3556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, 0, 98), - [3558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, 0, 76), - [3560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, 0, 97), - [3562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 5, 0, 32), - [3564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 5, 0, 50), - [3566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, 0, 77), - [3568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, 0, 63), - [3570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, 0, 79), - [3572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, 0, 96), - [3574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, 0, 78), - [3576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 5, 0, 32), - [3578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, 0, 95), - [3580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, 0, 78), - [3582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, 0, 77), - [3584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 9, 0, 165), - [3586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 5, 0, 50), - [3588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 9, 0, 164), - [3590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, 0, 94), - [3592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, 0, 76), - [3594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 5, 0, 49), - [3596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [3598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), - [3600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), - [3602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 9, 0, 163), - [3604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 9, 0, 162), - [3606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 9, 0, 161), - [3608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, 0, 93), - [3610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, 0, 75), - [3612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 9, 0, 160), - [3614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 9, 0, 159), - [3616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, 0, 92), - [3618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 9, 0, 158), - [3620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 9, 0, 157), - [3622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 5, 0, 48), - [3624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, 0, 74), - [3626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 9, 0, 156), - [3628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, 0, 60), - [3630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, 0, 73), - [3632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 9, 0, 155), - [3634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_declaration_repeat1, 1, 0, 0), - [3636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 9, 0, 154), - [3638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 9, 0, 153), - [3640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, 0, 47), - [3642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, 0, 72), - [3644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, 0, 91), - [3646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, 0, 71), - [3648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, 0, 70), - [3650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 5, 0, 51), - [3652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 9, 0, 115), - [3654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, 0, 90), - [3656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 9, 0, 152), - [3658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, 0, 69), - [3660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 9, 0, 151), - [3662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 9, 0, 165), - [3664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 5, 0, 33), - [3666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, 0, 68), - [3668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 9, 0, 164), - [3670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 9, 0, 163), - [3672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 5, 0, 47), - [3674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, 0, 59), - [3676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 9, 0, 162), - [3678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, 0, 89), - [3680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, 0, 44), - [3682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 9, 0, 161), - [3684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, 0, 88), - [3686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, 0, 67), - [3688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 9, 0, 160), - [3690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, 0, 66), - [3692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 9, 0, 159), - [3694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 5, 0, 31), - [3696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 5, 0, 46), - [3698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, 0, 87), - [3700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 5, 0, 45), - [3702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 9, 0, 158), - [3704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, 0, 58), - [3706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, 0, 86), - [3708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, 0, 43), - [3710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, 0, 65), - [3712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 9, 0, 157), - [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), - [3716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 9, 0, 156), - [3718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 9, 0, 155), - [3720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 5, 0, 44), - [3722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, 0, 85), - [3724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, 0, 64), - [3726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 11, 0, 209), - [3728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, 0, 84), - [3730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 9, 0, 154), - [3732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 9, 0, 153), - [3734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 11, 0, 209), - [3736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 5, 0, 43), - [3738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, 0, 63), - [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), - [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [3744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 9, 0, 115), - [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [3748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 9, 0, 152), - [3750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, 0, 15), - [3752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, 0, 62), - [3754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 9, 0, 151), - [3756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, 0, 83), - [3758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__method_declaration_raising_repeat1, 4, 0, 0), - [3760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__method_declaration_raising_repeat1, 4, 0, 0), - [3762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 5, 0, 15), - [3764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 5, 0, 54), - [3766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, 0, 61), - [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), - [3770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 5, 0, 53), - [3772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, 0, 79), - [3774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, 0, 59), - [3776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 5, 0, 52), - [3778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, 0, 47), - [3780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3018), - [3782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, 0, 60), - [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), - [3786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3027), - [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), - [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), - [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [3852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__escaped_operand, 2, 0, 0), - [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [3858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__logical_expression, 2, 0, 0), - [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), - [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [3866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable, 2, 0, 0), - [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [3876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_chained_field_symbol_declaration_repeat1, 1, 0, 0), - [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [3888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing, 1, 0, 0), - [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), - [3892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_symbol, 2, 0, 9), - [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), - [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [3902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_chained_variable_declaration_repeat1, 1, 0, 0), - [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [3906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__logical_expression, 3, 0, 0), - [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), - [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [3922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_itabs, 7, 0, 80), - [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), - [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [3940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_normal, 3, 0, 7), - [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), - [3944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_normal, 3, 0, 0), - [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), - [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), - [3962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returning_parameter, 6, 0, 0), - [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [3978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(2038), - [3981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_declaration_repeat1, 2, 0, 0), - [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), - [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), - [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [3997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__select_target_repeat1, 2, 0, 0), SHIFT_REPEAT(2348), - [4000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__select_target_repeat1, 2, 0, 0), - [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), - [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [4018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_itabs, 4, 0, 25), - [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), - [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [4032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_itabs, 4, 0, 0), - [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), - [4040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__logical_expression, 1, 0, 0), - [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [4044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__select_target, 2, 0, 0), - [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), - [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), - [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [4070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_declaration_exceptions, 2, 0, 0), - [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), - [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), - [4082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__select_target, 5, 0, 0), - [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), - [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), - [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), - [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), - [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), - [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), - [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), - [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), - [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), - [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), - [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), - [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), - [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), - [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), - [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), - [4148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_reference, 5, 0, 25), - [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [4152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_normal, 5, 0, 25), - [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [4156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_itabs, 5, 0, 36), - [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [4164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_reference, 5, 0, 0), - [4166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_itabs, 5, 0, 0), - [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), - [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [4180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__select_target, 3, 0, 0), - [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), - [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), - [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [4194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sql_condition, 1, 0, 0), - [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), - [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [3202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, .production_id = 118), + [3204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, .production_id = 84), + [3206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, .production_id = 79), + [3208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, .production_id = 80), + [3210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, .production_id = 119), + [3212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_reference, 4), + [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), + [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [3218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, .production_id = 120), + [3220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, .production_id = 85), + [3222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, .production_id = 59), + [3224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_normal, 4, .production_id = 26), + [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [3230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, .production_id = 121), + [3232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, .production_id = 122), + [3234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, .production_id = 60), + [3236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, .production_id = 123), + [3238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, .production_id = 124), + [3240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_reference, 4, .production_id = 26), + [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), + [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [3246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, .production_id = 125), + [3248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, .production_id = 88), + [3250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, .production_id = 61), + [3252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, .production_id = 62), + [3254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, .production_id = 126), + [3256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, .production_id = 127), + [3258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 3, .production_id = 16), + [3260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, .production_id = 128), + [3262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, .production_id = 129), + [3264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, .production_id = 130), + [3266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, .production_id = 63), + [3268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, .production_id = 131), + [3270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, .production_id = 132), + [3272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 3, .production_id = 16), + [3274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_implementation_repeat1, 2), + [3276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_implementation_repeat1, 2), SHIFT_REPEAT(2488), + [3279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, .production_id = 133), + [3281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, .production_id = 134), + [3283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, .production_id = 16), + [3285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, .production_id = 135), + [3287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, .production_id = 136), + [3289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, .production_id = 137), + [3291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, .production_id = 138), + [3293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, .production_id = 116), + [3295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, .production_id = 64), + [3297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 100), + [3299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, .production_id = 117), + [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), + [3303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, .production_id = 118), + [3305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, .production_id = 84), + [3307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, .production_id = 65), + [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [3311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_list, 2), + [3313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, .production_id = 119), + [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), + [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [3323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, .production_id = 120), + [3325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, .production_id = 85), + [3327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, .production_id = 66), + [3329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, .production_id = 44), + [3331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, .production_id = 121), + [3333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, .production_id = 122), + [3335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), + [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), + [3343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, .production_id = 123), + [3345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, .production_id = 124), + [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), + [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), + [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [3355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, .production_id = 125), + [3357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, .production_id = 88), + [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [3367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, .production_id = 67), + [3369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, .production_id = 126), + [3371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, .production_id = 127), + [3373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, .production_id = 74), + [3375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, .production_id = 128), + [3377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, .production_id = 129), + [3379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, .production_id = 130), + [3381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, .production_id = 45), + [3383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, .production_id = 131), + [3385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, .production_id = 132), + [3387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, .production_id = 133), + [3389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, .production_id = 134), + [3391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, .production_id = 135), + [3393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, .production_id = 136), + [3395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, .production_id = 137), + [3397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, .production_id = 138), + [3399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 98), + [3401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, .production_id = 69), + [3403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 99), + [3405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 98), + [3407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, .production_id = 70), + [3409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 10, .production_id = 189), + [3411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 10, .production_id = 188), + [3413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 10, .production_id = 187), + [3415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 10, .production_id = 186), + [3417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 64), + [3419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 97), + [3421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 10, .production_id = 185), + [3423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 10, .production_id = 184), + [3425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 10, .production_id = 189), + [3427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 10, .production_id = 188), + [3429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 10, .production_id = 187), + [3431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 96), + [3433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 10, .production_id = 186), + [3435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 95), + [3437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 10, .production_id = 185), + [3439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 10, .production_id = 184), + [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), + [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), + [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [3449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, .production_id = 71), + [3451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, .production_id = 72), + [3453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, .production_id = 73), + [3455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, .production_id = 48), + [3457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 94), + [3459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 93), + [3461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, .production_id = 74), + [3463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, .production_id = 75), + [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), + [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), + [3469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, .production_id = 76), + [3471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, .production_id = 77), + [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [3481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, .production_id = 78), + [3483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, .production_id = 68), + [3485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, .production_id = 79), + [3487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 61), + [3489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 92), + [3491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, .production_id = 80), + [3493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__create_addition, 2), + [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), + [3499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 91), + [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), + [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [3511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 60), + [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), + [3515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__table_expression_free_key, 2), SHIFT_REPEAT(2660), + [3518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__table_expression_free_key, 2), + [3520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 90), + [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [3526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_catch_statement_repeat1, 2), + [3528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_catch_statement_repeat1, 2), SHIFT_REPEAT(2821), + [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), + [3533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 89), + [3535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_normal, 2), + [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [3541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_normal, 2, .production_id = 8), + [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [3547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__method_declaration_raising_repeat1, 4), + [3549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__method_declaration_raising_repeat1, 4), + [3551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 85), + [3553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 86), + [3555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 87), + [3557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 88), + [3559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 9, .production_id = 166), + [3561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 9, .production_id = 165), + [3563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 9, .production_id = 164), + [3565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 9, .production_id = 163), + [3567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 59), + [3569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 87), + [3571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 9, .production_id = 162), + [3573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 86), + [3575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 59), + [3577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 9, .production_id = 160), + [3579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 9, .production_id = 159), + [3581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 9, .production_id = 158), + [3583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 85), + [3585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 9, .production_id = 157), + [3587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 9, .production_id = 156), + [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), + [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), + [3593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 9, .production_id = 155), + [3595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 84), + [3597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 9, .production_id = 154), + [3599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 9, .production_id = 116), + [3601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 109), + [3603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 108), + [3605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 9, .production_id = 153), + [3607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 107), + [3609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 9, .production_id = 152), + [3611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 9, .production_id = 166), + [3613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 9, .production_id = 165), + [3615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 106), + [3617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 105), + [3619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 104), + [3621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 9, .production_id = 164), + [3623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 9, .production_id = 163), + [3625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 103), + [3627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 9, .production_id = 162), + [3629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 9, .production_id = 153), + [3631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 89), + [3633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 102), + [3635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 101), + [3637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 9, .production_id = 116), + [3639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 100), + [3641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 9, .production_id = 160), + [3643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), + [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), + [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [3649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 61), + [3651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 99), + [3653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 92), + [3655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 9, .production_id = 161), + [3657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 84), + [3659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 9, .production_id = 154), + [3661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 9, .production_id = 155), + [3663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 88), + [3665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 64), + [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), + [3669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 91), + [3671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 97), + [3673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 9, .production_id = 156), + [3675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 9, .production_id = 157), + [3677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 96), + [3679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 9, .production_id = 158), + [3681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 60), + [3683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 95), + [3685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 9, .production_id = 152), + [3687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 90), + [3689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 9, .production_id = 159), + [3691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 94), + [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), + [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), + [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), + [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), + [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), + [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [3745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__logical_expression, 2), + [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [3751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__escaped_operand, 2), + [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), + [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), + [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), + [3763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_chained_interface_declaration_repeat1, 2), + [3765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chained_interface_declaration_repeat1, 2), SHIFT_REPEAT(1925), + [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), + [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), + [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), + [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), + [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), + [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), + [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), + [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), + [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), + [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), + [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), + [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [3822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_normal, 6, .production_id = 26), + [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), + [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), + [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), + [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [3864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_normal, 6), + [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), + [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), + [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), + [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), + [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), + [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), + [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [3904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__select_target, 4), + [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [3912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__logical_expression, 3), + [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), + [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), + [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), + [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), + [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), + [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), + [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [3984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_spec, 5), + [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [3996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__select_target_repeat1, 2), + [3998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__select_target_repeat1, 2), SHIFT_REPEAT(2129), + [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [4005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__select_target, 5), + [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [4017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_normal, 7), + [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [4021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_reference, 7), + [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), + [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [4033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_normal, 7, .production_id = 26), + [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [4039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_reference, 7, .production_id = 26), + [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [4045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), + [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), + [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), + [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), + [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), + [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), + [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), + [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [4103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_chained_variable_declaration_repeat1, 2), + [4105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chained_variable_declaration_repeat1, 2), SHIFT_REPEAT(2038), + [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), + [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), + [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), + [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), + [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), + [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [4168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_chained_field_symbol_declaration_repeat1, 2), + [4170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chained_field_symbol_declaration_repeat1, 2), SHIFT_REPEAT(2034), + [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [4181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sql_condition, 1), + [4183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__select_target, 3), + [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [4189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chained_write_statement_repeat1, 2), SHIFT_REPEAT(537), + [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), + [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [4218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_itabs, 6, 0, 55), - [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), - [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [4232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__select_target, 6, 0, 0), - [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), - [4236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_spec, 5, 0, 0), - [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), - [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [4250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_normal, 8, 0, 0), - [4252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_reference, 8, 0, 0), - [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), - [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), - [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [4262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_normal, 8, 0, 25), - [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), - [4268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__select_target, 4, 0, 0), - [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [4274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_reference, 8, 0, 25), - [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), - [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [4294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_normal, 6, 0, 7), - [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), - [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), - [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), - [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), - [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), - [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), - [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), - [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), - [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), - [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), - [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [4452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), - [4454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), - [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), - [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), - [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), - [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [4468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_implementation, 6, 0, 15), - [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), - [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [4480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2831), - [4482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), - [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), - [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), - [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), - [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [4512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_list, 1, 0, 0), - [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), - [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), - [4518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), - [4520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2691), - [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), - [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), - [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [4534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_structure_component, 3, 0, 0), - [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), - [4540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_catch_statement_repeat1, 1, 0, 0), - [4542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__table_expression_free_key, 1, 0, 0), - [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [4550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2449), - [4552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2657), - [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), - [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), - [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), - [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), - [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [4584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_declaration_repeat1, 1, 0, 0), - [4586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_implementation_repeat1, 1, 0, 0), - [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [4592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), - [4594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), - [4596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), - [4598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), - [4600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), - [4602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), - [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [4608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__read_table_result, 2, 0, 0), - [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), - [4612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exception_list_repeat1, 1, 0, 0), - [4614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), - [4616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), - [4618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), - [4620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), - [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [4626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), - [4628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), - [4630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__read_table_result, 3, 0, 0), - [4632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), - [4634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2764), - [4636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 4, 0, 16), - [4638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_implementation, 5, 0, 15), - [4640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_chained_structure_declaration_repeat1, 1, 0, 0), - [4642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), - [4644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2670), - [4646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), - [4648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2440), - [4650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_code_binding, 3, 0, 38), - [4652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 6, 0, 37), - [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), - [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), - [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), - [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), - [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), - [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), - [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), - [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), - [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), - [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), - [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), - [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), - [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), - [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), - [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), - [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), - [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), - [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), - [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), - [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), - [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), - [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), - [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), - [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), - [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), - [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), - [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [5040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_expression, 4, 0, 13), - [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), - [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), - [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), - [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), - [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [5102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_clause, 2, 0, 0), - [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), - [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), - [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), - [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), - [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), - [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), - [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), - [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), - [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), - [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [5184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_expression, 4, 0, 14), - [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), - [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), - [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), - [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), - [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), - [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), - [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), - [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), - [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [5788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [5802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [5804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [5808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [5812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), - [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), - [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), - [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), - [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [5850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), - [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), - [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), - [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), - [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), - [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), - [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), - [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), - [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), - [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), - [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), - [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [5988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [5990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), - [5992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [5994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), - [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [5998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [6000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), - [6002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [6004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [6006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), - [6008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [6010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [6012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), - [6016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), - [6018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), - [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), - [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), - [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [6040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), - [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [6048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [6054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), - [6056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [6062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), - [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), - [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), - [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), - [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), - [6082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), - [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), - [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), - [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), - [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [6100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [6102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), - [6104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), - [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), - [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), - [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), - [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), - [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), - [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [6152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), - [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), - [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [6164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__writeable_expression, 1, 0, 0), - [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), - [6168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [6170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [6174] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [6176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [6184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), - [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), - [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [6194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_all_entries, 5, 0, 0), - [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), - [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), - [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), - [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), - [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), - [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [6236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [6240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [6250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3160), - [6252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3165), - [6254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [6256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [6258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [6270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [6272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [6274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [6276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), - [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), - [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), - [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), - [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), - [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), - [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), - [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), - [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), - [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), - [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), - [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), - [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), - [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), - [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), - [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), - [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), - [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), - [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), - [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), - [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), - [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [6432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3166), - [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), - [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [6442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bol_comment, 2, 0, 0), - [6444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_eol_comment, 2, 0, 0), + [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [4214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_declaration_repeat1, 2), SHIFT_REPEAT(1824), + [4217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_declaration_repeat1, 2), + [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [4221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_normal, 5), + [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [4229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returning_parameter, 6), + [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [4233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), + [4235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_normal, 5, .production_id = 8), + [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), + [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), + [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [4277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_normal, 4, .production_id = 8), + [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), + [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), + [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [4307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__select_target, 2), + [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), + [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), + [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [4359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_declaration_exceptions, 2), + [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [4399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__select_target, 6), + [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [4405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_normal, 8), + [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [4409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_reference, 8), + [4411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_normal, 8, .production_id = 26), + [4413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_reference, 8, .production_id = 26), + [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [4427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 4, .production_id = 17), + [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [4431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__read_table_result, 3), + [4433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_itabs, 4), + [4435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), + [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [4439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_itabs, 4, .production_id = 26), + [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [4443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_chained_structure_declaration_repeat1, 1), + [4445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_chained_structure_declaration_repeat1, 1), + [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [4455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_reference, 5, .production_id = 26), + [4457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), + [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), + [4461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_normal, 5, .production_id = 26), + [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), + [4469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_itabs, 5, .production_id = 37), + [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [4473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_implementation, 5, .production_id = 16), + [4475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_reference, 5), + [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [4479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_itabs, 5), + [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [4487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__read_table_result, 2), + [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [4491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_code_binding, 3, .production_id = 39), + [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [4495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_normal, 3), + [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [4499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), + [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [4503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_normal, 3, .production_id = 8), + [4505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), + [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), + [4517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), + [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [4533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2917), + [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), + [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), + [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [4551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [4557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), + [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), + [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [4575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), + [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [4585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), + [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [4591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_structure_component, 3), + [4593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structure_component, 3), + [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), + [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), + [4615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_itabs, 7, .production_id = 81), + [4617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), + [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), + [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), + [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), + [4641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 6, .production_id = 38), + [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [4659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), + [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), + [4663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_list, 1), + [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), + [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [4681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_symbol, 2, .production_id = 10), + [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [4687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable, 2, .production_id = 7), + [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), + [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), + [4695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__table_expression_free_key, 1), + [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), + [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [4703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_implementation, 6, .production_id = 16), + [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [4707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_normal, 6, .production_id = 8), + [4709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface, 1, .production_id = 1), + [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [4713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), + [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [4717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2814), + [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), + [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), + [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), + [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), + [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), + [4735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_itabs, 6, .production_id = 56), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), + [4743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing, 1), + [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), + [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), + [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), + [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), + [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), + [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), + [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [5019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_clause, 2), + [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), + [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), + [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), + [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), + [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), + [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), + [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), + [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), + [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), + [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), + [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), + [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [5611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [5663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [5667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [5673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [5679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [5681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [5683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [5685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [5687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [5689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [5697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [5705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [5709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [5713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [5715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [5717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [5719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [5721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [5729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [5747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [5757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), + [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), + [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), + [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), + [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), + [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), + [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [5819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_expression, 4, .production_id = 15), + [5821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_expression, 4, .production_id = 14), + [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [5839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [5851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [5853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [5857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [5859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [5861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [5863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [5867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [5869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [5871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), + [5873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [5875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [5879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), + [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), + [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), + [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), + [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), + [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), + [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), + [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [5961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), + [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), + [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [5991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), + [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), + [6007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [6025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [6031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), + [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), + [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [6045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [6047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [6051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [6057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [6061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [6065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [6069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [6071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [6073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [6075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [6079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [6081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [6083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [6085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [6087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [6089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [6093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [6095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [6099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), + [6101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), + [6103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [6105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [6107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [6109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [6111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [6113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), + [6115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), + [6119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [6121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [6123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [6125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [6127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [6129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [6131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [6133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [6135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), + [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [6141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [6143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), + [6149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [6151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [6153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), + [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [6161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [6163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [6165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), + [6167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), + [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), + [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), + [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), + [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), + [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), + [6193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), + [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [6199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), + [6201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), + [6207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), + [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), + [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [6221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [6223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [6225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [6227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [6229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [6233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [6235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [6237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), + [6239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [6243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [6245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), + [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [6271] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), + [6287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), + [6293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), + [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [6301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), + [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), + [6315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [6319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [6333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [6345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [6361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), + [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), + [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), + [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), + [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [6385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [6387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_all_entries, 5), + [6389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [6391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [6393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [6395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [6397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [6399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [6401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [6403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [6405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), + [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [6411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [6415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [6417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [6419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [6421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [6423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [6425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), + [6427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [6429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [6431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [6433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [6435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [6443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [6449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), + [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [6469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [6471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), + [6473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), + [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), + [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), + [6479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), + [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), + [6485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), + [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), + [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), + [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), + [6495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), + [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), + [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), + [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), + [6503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), + [6505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), + [6507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [6509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [6511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [6513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [6515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), + [6517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [6519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), + [6523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [6525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [6527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), }; #ifdef __cplusplus extern "C" { #endif -#ifdef TREE_SITTER_HIDE_SYMBOLS -#define TS_PUBLIC -#elif defined(_WIN32) -#define TS_PUBLIC __declspec(dllexport) -#else -#define TS_PUBLIC __attribute__((visibility("default"))) +#ifdef _WIN32 +#define extern __declspec(dllexport) #endif -TS_PUBLIC const TSLanguage *tree_sitter_abap(void) { +extern const TSLanguage *tree_sitter_abap(void) { static const TSLanguage language = { .version = LANGUAGE_VERSION, .symbol_count = SYMBOL_COUNT, diff --git a/src/tree_sitter/parser.h b/src/tree_sitter/parser.h index 17f0e94..2b14ac1 100644 --- a/src/tree_sitter/parser.h +++ b/src/tree_sitter/parser.h @@ -13,8 +13,9 @@ extern "C" { #define ts_builtin_sym_end 0 #define TREE_SITTER_SERIALIZATION_BUFFER_SIZE 1024 -#ifndef TREE_SITTER_API_H_ typedef uint16_t TSStateId; + +#ifndef TREE_SITTER_API_H_ typedef uint16_t TSSymbol; typedef uint16_t TSFieldId; typedef struct TSLanguage TSLanguage; @@ -86,11 +87,6 @@ typedef union { } entry; } TSParseActionEntry; -typedef struct { - int32_t start; - int32_t end; -} TSCharacterRange; - struct TSLanguage { uint32_t version; uint32_t symbol_count; @@ -130,38 +126,13 @@ struct TSLanguage { const TSStateId *primary_state_ids; }; -static inline bool set_contains(TSCharacterRange *ranges, uint32_t len, int32_t lookahead) { - uint32_t index = 0; - uint32_t size = len - index; - while (size > 1) { - uint32_t half_size = size / 2; - uint32_t mid_index = index + half_size; - TSCharacterRange *range = &ranges[mid_index]; - if (lookahead >= range->start && lookahead <= range->end) { - return true; - } else if (lookahead > range->end) { - index = mid_index; - } - size -= half_size; - } - TSCharacterRange *range = &ranges[index]; - return (lookahead >= range->start && lookahead <= range->end); -} - /* * Lexer Macros */ -#ifdef _MSC_VER -#define UNUSED __pragma(warning(suppress : 4101)) -#else -#define UNUSED __attribute__((unused)) -#endif - #define START_LEXER() \ bool result = false; \ bool skip = false; \ - UNUSED \ bool eof = false; \ int32_t lookahead; \ goto start; \ @@ -177,17 +148,6 @@ static inline bool set_contains(TSCharacterRange *ranges, uint32_t len, int32_t goto next_state; \ } -#define ADVANCE_MAP(...) \ - { \ - static const uint16_t map[] = { __VA_ARGS__ }; \ - for (uint32_t i = 0; i < sizeof(map) / sizeof(map[0]); i += 2) { \ - if (map[i] == lookahead) { \ - state = map[i + 1]; \ - goto next_state; \ - } \ - } \ - } - #define SKIP(state_value) \ { \ skip = true; \ @@ -206,7 +166,7 @@ static inline bool set_contains(TSCharacterRange *ranges, uint32_t len, int32_t * Parse Table Macros */ -#define SMALL_STATE(id) ((id) - LARGE_STATE_COUNT) +#define SMALL_STATE(id) id - LARGE_STATE_COUNT #define STATE(id) id @@ -216,7 +176,7 @@ static inline bool set_contains(TSCharacterRange *ranges, uint32_t len, int32_t {{ \ .shift = { \ .type = TSParseActionTypeShift, \ - .state = (state_value) \ + .state = state_value \ } \ }} @@ -224,7 +184,7 @@ static inline bool set_contains(TSCharacterRange *ranges, uint32_t len, int32_t {{ \ .shift = { \ .type = TSParseActionTypeShift, \ - .state = (state_value), \ + .state = state_value, \ .repetition = true \ } \ }} @@ -237,15 +197,14 @@ static inline bool set_contains(TSCharacterRange *ranges, uint32_t len, int32_t } \ }} -#define REDUCE(symbol_name, children, precedence, prod_id) \ - {{ \ - .reduce = { \ - .type = TSParseActionTypeReduce, \ - .symbol = symbol_name, \ - .child_count = children, \ - .dynamic_precedence = precedence, \ - .production_id = prod_id \ - }, \ +#define REDUCE(symbol_val, child_count_val, ...) \ + {{ \ + .reduce = { \ + .type = TSParseActionTypeReduce, \ + .symbol = symbol_val, \ + .child_count = child_count_val, \ + __VA_ARGS__ \ + }, \ }} #define RECOVER() \ From c2411344922e7bb192ae070f5ad832cbdcdfca6f Mon Sep 17 00:00:00 2001 From: Galen Hunt Date: Thu, 1 May 2025 15:17:58 -0700 Subject: [PATCH 3/3] Improved support for bol_comments. --- binding.gyp | 1 + grammar.js | 6 +- src/grammar.json | 39 +- src/parser.c | 66620 ++++++++++++++++++++++++--------------------- src/scanner.c | 105 + 5 files changed, 34980 insertions(+), 31791 deletions(-) create mode 100644 src/scanner.c diff --git a/binding.gyp b/binding.gyp index 4f3d68d..39a89f1 100644 --- a/binding.gyp +++ b/binding.gyp @@ -11,6 +11,7 @@ "sources": [ "bindings/node/binding.cc", "src/parser.c", + "src/scanner.c", # NOTE: if your language has an external scanner, add it here. ], "conditions": [ diff --git a/grammar.js b/grammar.js index eb2fdcd..bf348ae 100644 --- a/grammar.js +++ b/grammar.js @@ -3,7 +3,9 @@ module.exports = grammar({ word: $ => $.name, - extras: $ => [/\s+/, $.eol_comment, $.bol_comment], + externals: $ => [ $._whitespace, $.bol_comment, $.error_sentinel ], + + extras: $ => [ $._whitespace, $.bol_comment, $.eol_comment], rules: { program: $ => repeat($._statement), @@ -941,8 +943,6 @@ module.exports = grammar({ eol_comment: _ => token(seq('"', /[^\n]*/)), - bol_comment: _ => token(seq("*", /[^\n]*/)), - name: $ => token(prec(-1, /[a-zA-Z_][a-zA-Z0-9_]*/)), field_symbol_name: $ => token(prec(-1, /<[a-zA-Z0-9_]*>/)), diff --git a/src/grammar.json b/src/grammar.json index 969338a..13da776 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -6428,22 +6428,6 @@ ] } }, - "bol_comment": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "*" - }, - { - "type": "PATTERN", - "value": "[^\\n]*" - } - ] - } - }, "name": { "type": "TOKEN", "content": { @@ -6469,21 +6453,34 @@ }, "extras": [ { - "type": "PATTERN", - "value": "\\s+" + "type": "SYMBOL", + "name": "_whitespace" }, { "type": "SYMBOL", - "name": "eol_comment" + "name": "bol_comment" }, { "type": "SYMBOL", - "name": "bol_comment" + "name": "eol_comment" } ], "conflicts": [], "precedences": [], - "externals": [], + "externals": [ + { + "type": "SYMBOL", + "name": "_whitespace" + }, + { + "type": "SYMBOL", + "name": "bol_comment" + }, + { + "type": "SYMBOL", + "name": "error_sentinel" + } + ], "inline": [], "supertypes": [] } diff --git a/src/parser.c b/src/parser.c index 2a60e2c..bcd0ef4 100644 --- a/src/parser.c +++ b/src/parser.c @@ -8,10 +8,10 @@ #define LANGUAGE_VERSION 14 #define STATE_COUNT 3154 #define LARGE_STATE_COUNT 31 -#define SYMBOL_COUNT 268 +#define SYMBOL_COUNT 270 #define ALIAS_COUNT 8 -#define TOKEN_COUNT 140 -#define EXTERNAL_TOKEN_COUNT 0 +#define TOKEN_COUNT 142 +#define EXTERNAL_TOKEN_COUNT 3 #define FIELD_COUNT 24 #define MAX_ALIAS_SEQUENCE_LENGTH 22 #define PRODUCTION_ID_COUNT 243 @@ -154,144 +154,146 @@ enum { sym_numeric_literal = 135, sym_character_literal = 136, sym_eol_comment = 137, - sym_bol_comment = 138, - sym_field_symbol_name = 139, - sym_program = 140, - sym__statement = 141, - sym__implementation_statement = 142, - sym_class_declaration = 143, - sym__create_addition = 144, - sym_public_section = 145, - sym_protected_section = 146, - sym_private_section = 147, - sym__class_components = 148, - sym_class_implementation = 149, - sym_method_declaration_class = 150, - sym__method_declaration_importing = 151, - sym__method_declaration_exporting = 152, - sym__method_declaration_changing = 153, - sym__method_declaration_raising = 154, - sym__method_declaration_exceptions = 155, - sym_method_parameters = 156, - sym_returning_parameter = 157, - sym_constructor_declaration = 158, - sym_class_constructor_declaration = 159, - sym_method_redefinition = 160, - sym_class_method_declaration_class = 161, - sym_class_method_declaration_interface = 162, - sym_method_implementation = 163, - sym_method_body = 164, - sym_class_publication = 165, - sym_class_local_friend_publication = 166, - sym_chained_interface_declaration = 167, - sym_interface = 168, - sym_interface_declaration = 169, - sym__interface_components = 170, - sym_method_declaration_interface = 171, - sym__typing = 172, - sym_generic_typing = 173, - sym_complete_typing = 174, - sym_generic_type = 175, - sym__data_object_typing = 176, - sym__data_object_typing_normal = 177, - sym__data_object_typing_reference = 178, - sym__data_object_typing_itabs = 179, - sym_variable_declaration = 180, - sym_chained_variable_declaration = 181, - sym_variable = 182, - sym_chained_structure_declaration = 183, - sym_structure_component = 184, - sym_field_symbol_declaration = 185, - sym_chained_field_symbol_declaration = 186, - sym_field_symbol = 187, - sym_loop_statement = 188, - sym_exit_statement = 189, - sym_continue_statement = 190, - sym_return_statement = 191, - sym_report_statement = 192, - sym_if_statement = 193, - sym_check_statement = 194, - sym__logical_expression = 195, - sym_comparison_expression = 196, - sym__general_expression_position = 197, - sym__calculation_expression = 198, - sym_arithmetic_expression = 199, - sym__writeable_expression = 200, - sym_table_expression = 201, - aux_sym__table_expression_free_key = 202, - sym_comp_spec = 203, - sym_select_statement_obsolete = 204, - sym_select_list = 205, - sym__select_target = 206, - sym_for_all_entries = 207, - sym__where_clause = 208, - sym__sql_condition = 209, - sym_read_table_statement = 210, - sym_line_spec = 211, - sym__read_table_result = 212, - sym__data_object = 213, - sym_structured_data_object = 214, - sym_attribute_access_static = 215, - sym_assignment = 216, - sym_try_catch_statement = 217, - sym_try_block = 218, - sym_catch_statement = 219, - sym_catch_block = 220, - sym_write_statement = 221, - sym_chained_write_statement = 222, - sym_call_method = 223, - sym_parameter_list = 224, - sym__explicit_parameter_list = 225, - sym_parameter_list_exporting = 226, - sym_parameter_binding = 227, - sym_parameter_binding_exporting = 228, - sym_call_method_static = 229, - sym_call_method_instance = 230, - sym_call_function = 231, - aux_sym__function_parameter_list = 232, - sym_exception_list = 233, - sym_return_code_binding = 234, - sym_raise_exception_statement = 235, - sym_clear_statement = 236, - sym_append_statement = 237, - sym_append_statement_obsolete = 238, - sym_create_object_statement = 239, - sym_include_statement = 240, - sym_macro_include = 241, - sym_function_implementation = 242, - sym_raise_statement = 243, - sym__operand = 244, - sym__escaped_operand = 245, - aux_sym_program_repeat1 = 246, - aux_sym_class_declaration_repeat1 = 247, - aux_sym_public_section_repeat1 = 248, - aux_sym_class_implementation_repeat1 = 249, - aux_sym__method_declaration_importing_repeat1 = 250, - aux_sym__method_declaration_raising_repeat1 = 251, - aux_sym_method_body_repeat1 = 252, - aux_sym_chained_interface_declaration_repeat1 = 253, - aux_sym_interface_declaration_repeat1 = 254, - aux_sym_chained_variable_declaration_repeat1 = 255, - aux_sym_chained_structure_declaration_repeat1 = 256, - aux_sym_chained_field_symbol_declaration_repeat1 = 257, - aux_sym__select_target_repeat1 = 258, - aux_sym_line_spec_repeat1 = 259, - aux_sym_structured_data_object_repeat1 = 260, - aux_sym_try_catch_statement_repeat1 = 261, - aux_sym_chained_write_statement_repeat1 = 262, - aux_sym_parameter_list_repeat1 = 263, - aux_sym__explicit_parameter_list_repeat1 = 264, - aux_sym_parameter_list_exporting_repeat1 = 265, - aux_sym_exception_list_repeat1 = 266, - aux_sym_macro_include_repeat1 = 267, - alias_sym_component_name = 268, - alias_sym_data_source = 269, - alias_sym_free_key = 270, - alias_sym_itab = 271, - alias_sym_result = 272, - alias_sym_structure_components = 273, - alias_sym_structure_name = 274, - alias_sym_type = 275, + sym_field_symbol_name = 138, + sym__whitespace = 139, + sym_bol_comment = 140, + sym_error_sentinel = 141, + sym_program = 142, + sym__statement = 143, + sym__implementation_statement = 144, + sym_class_declaration = 145, + sym__create_addition = 146, + sym_public_section = 147, + sym_protected_section = 148, + sym_private_section = 149, + sym__class_components = 150, + sym_class_implementation = 151, + sym_method_declaration_class = 152, + sym__method_declaration_importing = 153, + sym__method_declaration_exporting = 154, + sym__method_declaration_changing = 155, + sym__method_declaration_raising = 156, + sym__method_declaration_exceptions = 157, + sym_method_parameters = 158, + sym_returning_parameter = 159, + sym_constructor_declaration = 160, + sym_class_constructor_declaration = 161, + sym_method_redefinition = 162, + sym_class_method_declaration_class = 163, + sym_class_method_declaration_interface = 164, + sym_method_implementation = 165, + sym_method_body = 166, + sym_class_publication = 167, + sym_class_local_friend_publication = 168, + sym_chained_interface_declaration = 169, + sym_interface = 170, + sym_interface_declaration = 171, + sym__interface_components = 172, + sym_method_declaration_interface = 173, + sym__typing = 174, + sym_generic_typing = 175, + sym_complete_typing = 176, + sym_generic_type = 177, + sym__data_object_typing = 178, + sym__data_object_typing_normal = 179, + sym__data_object_typing_reference = 180, + sym__data_object_typing_itabs = 181, + sym_variable_declaration = 182, + sym_chained_variable_declaration = 183, + sym_variable = 184, + sym_chained_structure_declaration = 185, + sym_structure_component = 186, + sym_field_symbol_declaration = 187, + sym_chained_field_symbol_declaration = 188, + sym_field_symbol = 189, + sym_loop_statement = 190, + sym_exit_statement = 191, + sym_continue_statement = 192, + sym_return_statement = 193, + sym_report_statement = 194, + sym_if_statement = 195, + sym_check_statement = 196, + sym__logical_expression = 197, + sym_comparison_expression = 198, + sym__general_expression_position = 199, + sym__calculation_expression = 200, + sym_arithmetic_expression = 201, + sym__writeable_expression = 202, + sym_table_expression = 203, + aux_sym__table_expression_free_key = 204, + sym_comp_spec = 205, + sym_select_statement_obsolete = 206, + sym_select_list = 207, + sym__select_target = 208, + sym_for_all_entries = 209, + sym__where_clause = 210, + sym__sql_condition = 211, + sym_read_table_statement = 212, + sym_line_spec = 213, + sym__read_table_result = 214, + sym__data_object = 215, + sym_structured_data_object = 216, + sym_attribute_access_static = 217, + sym_assignment = 218, + sym_try_catch_statement = 219, + sym_try_block = 220, + sym_catch_statement = 221, + sym_catch_block = 222, + sym_write_statement = 223, + sym_chained_write_statement = 224, + sym_call_method = 225, + sym_parameter_list = 226, + sym__explicit_parameter_list = 227, + sym_parameter_list_exporting = 228, + sym_parameter_binding = 229, + sym_parameter_binding_exporting = 230, + sym_call_method_static = 231, + sym_call_method_instance = 232, + sym_call_function = 233, + aux_sym__function_parameter_list = 234, + sym_exception_list = 235, + sym_return_code_binding = 236, + sym_raise_exception_statement = 237, + sym_clear_statement = 238, + sym_append_statement = 239, + sym_append_statement_obsolete = 240, + sym_create_object_statement = 241, + sym_include_statement = 242, + sym_macro_include = 243, + sym_function_implementation = 244, + sym_raise_statement = 245, + sym__operand = 246, + sym__escaped_operand = 247, + aux_sym_program_repeat1 = 248, + aux_sym_class_declaration_repeat1 = 249, + aux_sym_public_section_repeat1 = 250, + aux_sym_class_implementation_repeat1 = 251, + aux_sym__method_declaration_importing_repeat1 = 252, + aux_sym__method_declaration_raising_repeat1 = 253, + aux_sym_method_body_repeat1 = 254, + aux_sym_chained_interface_declaration_repeat1 = 255, + aux_sym_interface_declaration_repeat1 = 256, + aux_sym_chained_variable_declaration_repeat1 = 257, + aux_sym_chained_structure_declaration_repeat1 = 258, + aux_sym_chained_field_symbol_declaration_repeat1 = 259, + aux_sym__select_target_repeat1 = 260, + aux_sym_line_spec_repeat1 = 261, + aux_sym_structured_data_object_repeat1 = 262, + aux_sym_try_catch_statement_repeat1 = 263, + aux_sym_chained_write_statement_repeat1 = 264, + aux_sym_parameter_list_repeat1 = 265, + aux_sym__explicit_parameter_list_repeat1 = 266, + aux_sym_parameter_list_exporting_repeat1 = 267, + aux_sym_exception_list_repeat1 = 268, + aux_sym_macro_include_repeat1 = 269, + alias_sym_component_name = 270, + alias_sym_data_source = 271, + alias_sym_free_key = 272, + alias_sym_itab = 273, + alias_sym_result = 274, + alias_sym_structure_components = 275, + alias_sym_structure_name = 276, + alias_sym_type = 277, }; static const char * const ts_symbol_names[] = { @@ -433,8 +435,10 @@ static const char * const ts_symbol_names[] = { [sym_numeric_literal] = "numeric_literal", [sym_character_literal] = "character_literal", [sym_eol_comment] = "eol_comment", - [sym_bol_comment] = "bol_comment", [sym_field_symbol_name] = "field_symbol_name", + [sym__whitespace] = "_whitespace", + [sym_bol_comment] = "bol_comment", + [sym_error_sentinel] = "error_sentinel", [sym_program] = "program", [sym__statement] = "_statement", [sym__implementation_statement] = "_implementation_statement", @@ -712,8 +716,10 @@ static const TSSymbol ts_symbol_map[] = { [sym_numeric_literal] = sym_numeric_literal, [sym_character_literal] = sym_character_literal, [sym_eol_comment] = sym_eol_comment, - [sym_bol_comment] = sym_bol_comment, [sym_field_symbol_name] = sym_field_symbol_name, + [sym__whitespace] = sym__whitespace, + [sym_bol_comment] = sym_bol_comment, + [sym_error_sentinel] = sym_error_sentinel, [sym_program] = sym_program, [sym__statement] = sym__statement, [sym__implementation_statement] = sym__implementation_statement, @@ -1405,11 +1411,19 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_field_symbol_name] = { + .visible = true, + .named = true, + }, + [sym__whitespace] = { + .visible = false, + .named = true, + }, [sym_bol_comment] = { .visible = true, .named = true, }, - [sym_field_symbol_name] = { + [sym_error_sentinel] = { .visible = true, .named = true, }, @@ -3295,31 +3309,31 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [10] = 10, [11] = 11, [12] = 12, - [13] = 10, + [13] = 13, [14] = 14, [15] = 15, - [16] = 16, - [17] = 16, + [16] = 4, + [17] = 17, [18] = 18, - [19] = 19, - [20] = 4, - [21] = 9, - [22] = 14, - [23] = 11, - [24] = 18, - [25] = 15, - [26] = 19, + [19] = 17, + [20] = 14, + [21] = 11, + [22] = 22, + [23] = 9, + [24] = 15, + [25] = 13, + [26] = 10, [27] = 27, - [28] = 28, - [29] = 27, - [30] = 12, + [28] = 12, + [29] = 22, + [30] = 18, [31] = 31, [32] = 32, [33] = 33, [34] = 34, - [35] = 35, + [35] = 34, [36] = 33, - [37] = 34, + [37] = 37, [38] = 38, [39] = 39, [40] = 40, @@ -3529,244 +3543,244 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [244] = 244, [245] = 245, [246] = 246, - [247] = 247, - [248] = 148, - [249] = 78, - [250] = 113, - [251] = 119, - [252] = 245, - [253] = 244, - [254] = 243, - [255] = 242, - [256] = 178, - [257] = 241, - [258] = 240, - [259] = 238, - [260] = 117, - [261] = 118, - [262] = 116, - [263] = 112, - [264] = 264, - [265] = 265, - [266] = 235, - [267] = 153, - [268] = 234, - [269] = 115, - [270] = 233, - [271] = 102, - [272] = 232, - [273] = 99, - [274] = 231, - [275] = 51, - [276] = 52, - [277] = 230, - [278] = 247, - [279] = 229, - [280] = 194, - [281] = 227, - [282] = 53, - [283] = 225, - [284] = 224, - [285] = 223, - [286] = 222, - [287] = 221, - [288] = 220, - [289] = 218, - [290] = 217, - [291] = 216, - [292] = 85, - [293] = 84, - [294] = 83, - [295] = 215, - [296] = 214, - [297] = 54, - [298] = 213, - [299] = 212, - [300] = 211, - [301] = 210, - [302] = 55, - [303] = 82, - [304] = 208, - [305] = 101, - [306] = 207, - [307] = 206, - [308] = 60, - [309] = 205, - [310] = 204, - [311] = 49, - [312] = 203, - [313] = 201, - [314] = 56, - [315] = 200, - [316] = 57, - [317] = 199, - [318] = 198, - [319] = 197, - [320] = 42, - [321] = 193, - [322] = 192, - [323] = 96, - [324] = 50, - [325] = 58, - [326] = 191, - [327] = 48, - [328] = 59, - [329] = 246, - [330] = 190, - [331] = 189, - [332] = 61, - [333] = 188, - [334] = 62, - [335] = 63, - [336] = 187, - [337] = 97, - [338] = 186, - [339] = 120, - [340] = 185, - [341] = 65, - [342] = 121, - [343] = 184, - [344] = 122, - [345] = 47, - [346] = 123, - [347] = 46, - [348] = 64, - [349] = 45, - [350] = 124, - [351] = 183, - [352] = 125, - [353] = 126, - [354] = 127, - [355] = 128, - [356] = 129, - [357] = 44, - [358] = 182, - [359] = 181, - [360] = 88, - [361] = 180, - [362] = 100, + [247] = 147, + [248] = 157, + [249] = 46, + [250] = 111, + [251] = 110, + [252] = 116, + [253] = 188, + [254] = 187, + [255] = 186, + [256] = 185, + [257] = 184, + [258] = 183, + [259] = 182, + [260] = 57, + [261] = 86, + [262] = 114, + [263] = 115, + [264] = 113, + [265] = 109, + [266] = 181, + [267] = 180, + [268] = 133, + [269] = 179, + [270] = 189, + [271] = 177, + [272] = 39, + [273] = 190, + [274] = 243, + [275] = 242, + [276] = 176, + [277] = 191, + [278] = 194, + [279] = 241, + [280] = 192, + [281] = 175, + [282] = 50, + [283] = 240, + [284] = 62, + [285] = 87, + [286] = 79, + [287] = 287, + [288] = 164, + [289] = 156, + [290] = 173, + [291] = 172, + [292] = 99, + [293] = 193, + [294] = 171, + [295] = 197, + [296] = 170, + [297] = 51, + [298] = 63, + [299] = 239, + [300] = 169, + [301] = 235, + [302] = 52, + [303] = 166, + [304] = 101, + [305] = 174, + [306] = 168, + [307] = 234, + [308] = 64, + [309] = 66, + [310] = 45, + [311] = 93, + [312] = 233, + [313] = 73, + [314] = 53, + [315] = 167, + [316] = 54, + [317] = 178, + [318] = 232, + [319] = 231, + [320] = 94, + [321] = 230, + [322] = 229, + [323] = 227, + [324] = 44, + [325] = 55, + [326] = 95, + [327] = 226, + [328] = 56, + [329] = 238, + [330] = 224, + [331] = 96, + [332] = 58, + [333] = 117, + [334] = 59, + [335] = 60, + [336] = 102, + [337] = 118, + [338] = 223, + [339] = 119, + [340] = 195, + [341] = 61, + [342] = 120, + [343] = 47, + [344] = 43, + [345] = 42, + [346] = 121, + [347] = 244, + [348] = 41, + [349] = 222, + [350] = 122, + [351] = 123, + [352] = 124, + [353] = 125, + [354] = 126, + [355] = 48, + [356] = 40, + [357] = 221, + [358] = 76, + [359] = 220, + [360] = 98, + [361] = 38, + [362] = 202, [363] = 237, - [364] = 41, - [365] = 66, + [364] = 165, + [365] = 91, [366] = 236, - [367] = 179, + [367] = 127, [368] = 228, - [369] = 103, - [370] = 107, - [371] = 176, - [372] = 69, - [373] = 226, - [374] = 87, - [375] = 130, - [376] = 89, - [377] = 175, - [378] = 106, - [379] = 67, - [380] = 131, - [381] = 132, - [382] = 43, - [383] = 174, - [384] = 173, - [385] = 133, - [386] = 172, - [387] = 171, - [388] = 170, - [389] = 169, - [390] = 68, - [391] = 70, - [392] = 167, + [369] = 198, + [370] = 163, + [371] = 162, + [372] = 65, + [373] = 225, + [374] = 128, + [375] = 129, + [376] = 218, + [377] = 217, + [378] = 216, + [379] = 215, + [380] = 130, + [381] = 90, + [382] = 161, + [383] = 160, + [384] = 214, + [385] = 131, + [386] = 199, + [387] = 159, + [388] = 132, + [389] = 213, + [390] = 209, + [391] = 158, + [392] = 212, [393] = 134, [394] = 135, - [395] = 77, - [396] = 164, - [397] = 91, - [398] = 136, - [399] = 95, - [400] = 80, - [401] = 168, + [395] = 89, + [396] = 83, + [397] = 88, + [398] = 85, + [399] = 200, + [400] = 155, + [401] = 136, [402] = 137, - [403] = 111, + [403] = 108, [404] = 138, - [405] = 139, - [406] = 110, - [407] = 140, - [408] = 141, - [409] = 109, - [410] = 108, - [411] = 92, - [412] = 166, - [413] = 195, - [414] = 177, - [415] = 196, - [416] = 202, - [417] = 71, - [418] = 157, - [419] = 165, - [420] = 94, - [421] = 163, - [422] = 162, - [423] = 72, - [424] = 161, - [425] = 160, - [426] = 159, - [427] = 90, - [428] = 209, - [429] = 98, - [430] = 158, - [431] = 142, - [432] = 73, - [433] = 143, - [434] = 144, - [435] = 145, - [436] = 74, - [437] = 75, - [438] = 146, - [439] = 93, - [440] = 147, + [405] = 107, + [406] = 139, + [407] = 106, + [408] = 105, + [409] = 104, + [410] = 84, + [411] = 103, + [412] = 49, + [413] = 82, + [414] = 92, + [415] = 81, + [416] = 154, + [417] = 67, + [418] = 211, + [419] = 210, + [420] = 153, + [421] = 80, + [422] = 208, + [423] = 68, + [424] = 207, + [425] = 77, + [426] = 78, + [427] = 97, + [428] = 206, + [429] = 140, + [430] = 141, + [431] = 143, + [432] = 69, + [433] = 144, + [434] = 145, + [435] = 146, + [436] = 70, + [437] = 71, + [438] = 112, + [439] = 205, + [440] = 148, [441] = 149, - [442] = 76, + [442] = 72, [443] = 219, [444] = 150, - [445] = 114, + [445] = 74, [446] = 151, - [447] = 79, - [448] = 152, - [449] = 156, - [450] = 155, - [451] = 86, - [452] = 154, - [453] = 453, - [454] = 454, - [455] = 454, - [456] = 456, - [457] = 456, - [458] = 453, + [447] = 75, + [448] = 204, + [449] = 203, + [450] = 201, + [451] = 152, + [452] = 196, + [453] = 142, + [454] = 287, + [455] = 245, + [456] = 246, + [457] = 457, + [458] = 458, [459] = 459, - [460] = 459, - [461] = 461, - [462] = 462, - [463] = 463, + [460] = 460, + [461] = 459, + [462] = 457, + [463] = 460, [464] = 464, - [465] = 464, - [466] = 466, - [467] = 463, - [468] = 468, - [469] = 469, + [465] = 458, + [466] = 464, + [467] = 467, + [468] = 467, + [469] = 287, [470] = 470, [471] = 471, [472] = 472, - [473] = 473, - [474] = 239, + [473] = 471, + [474] = 474, [475] = 475, [476] = 476, [477] = 477, - [478] = 39, + [478] = 478, [479] = 479, - [480] = 480, - [481] = 40, + [480] = 475, + [481] = 481, [482] = 482, - [483] = 239, - [484] = 38, + [483] = 483, + [484] = 484, [485] = 485, [486] = 486, [487] = 487, @@ -3780,42 +3794,42 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [495] = 495, [496] = 496, [497] = 497, - [498] = 81, + [498] = 498, [499] = 499, [500] = 500, [501] = 501, [502] = 502, [503] = 503, [504] = 504, - [505] = 505, - [506] = 104, - [507] = 105, + [505] = 458, + [506] = 506, + [507] = 464, [508] = 508, - [509] = 264, + [509] = 509, [510] = 510, - [511] = 265, - [512] = 504, + [511] = 510, + [512] = 512, [513] = 513, - [514] = 505, - [515] = 500, + [514] = 100, + [515] = 515, [516] = 516, [517] = 517, - [518] = 518, - [519] = 519, - [520] = 265, - [521] = 264, + [518] = 504, + [519] = 484, + [520] = 520, + [521] = 520, [522] = 522, [523] = 523, - [524] = 524, + [524] = 458, [525] = 525, [526] = 526, - [527] = 526, + [527] = 527, [528] = 528, [529] = 529, - [530] = 530, + [530] = 464, [531] = 531, [532] = 532, - [533] = 533, + [533] = 526, [534] = 534, [535] = 535, [536] = 536, @@ -3828,116 +3842,116 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [543] = 543, [544] = 544, [545] = 545, - [546] = 545, + [546] = 543, [547] = 547, - [548] = 536, - [549] = 549, - [550] = 550, - [551] = 541, + [548] = 544, + [549] = 541, + [550] = 542, + [551] = 539, [552] = 552, [553] = 553, - [554] = 540, - [555] = 538, - [556] = 550, - [557] = 542, - [558] = 558, - [559] = 559, + [554] = 554, + [555] = 555, + [556] = 536, + [557] = 547, + [558] = 539, + [559] = 542, [560] = 560, - [561] = 559, - [562] = 562, + [561] = 541, + [562] = 539, [563] = 563, - [564] = 564, - [565] = 565, - [566] = 532, - [567] = 552, - [568] = 558, + [564] = 554, + [565] = 537, + [566] = 566, + [567] = 542, + [568] = 541, [569] = 569, - [570] = 535, - [571] = 565, + [570] = 570, + [571] = 571, [572] = 545, - [573] = 547, - [574] = 552, - [575] = 549, - [576] = 547, - [577] = 543, - [578] = 578, - [579] = 579, + [573] = 573, + [574] = 574, + [575] = 570, + [576] = 555, + [577] = 563, + [578] = 552, + [579] = 573, [580] = 580, [581] = 581, [582] = 582, [583] = 583, - [584] = 584, - [585] = 585, + [584] = 583, + [585] = 538, [586] = 586, [587] = 587, [588] = 588, [589] = 589, [590] = 590, - [591] = 588, - [592] = 581, - [593] = 593, + [591] = 591, + [592] = 592, + [593] = 586, [594] = 594, - [595] = 594, + [595] = 595, [596] = 596, [597] = 597, [598] = 598, - [599] = 596, - [600] = 587, + [599] = 599, + [600] = 589, [601] = 601, - [602] = 601, - [603] = 580, + [602] = 587, + [603] = 603, [604] = 604, [605] = 605, [606] = 606, [607] = 607, [608] = 608, [609] = 609, - [610] = 610, + [610] = 609, [611] = 611, [612] = 612, - [613] = 613, + [613] = 604, [614] = 614, - [615] = 615, - [616] = 616, - [617] = 612, + [615] = 611, + [616] = 596, + [617] = 617, [618] = 618, [619] = 619, [620] = 620, - [621] = 618, - [622] = 619, - [623] = 611, + [621] = 85, + [622] = 622, + [623] = 623, [624] = 624, [625] = 625, - [626] = 620, - [627] = 627, - [628] = 615, - [629] = 610, - [630] = 616, - [631] = 614, - [632] = 632, - [633] = 633, - [634] = 634, + [626] = 626, + [627] = 626, + [628] = 628, + [629] = 629, + [630] = 618, + [631] = 631, + [632] = 622, + [633] = 629, + [634] = 631, [635] = 635, [636] = 636, [637] = 637, - [638] = 625, - [639] = 95, - [640] = 627, - [641] = 632, - [642] = 642, + [638] = 638, + [639] = 635, + [640] = 636, + [641] = 620, + [642] = 623, [643] = 643, - [644] = 644, + [644] = 628, [645] = 645, - [646] = 646, - [647] = 239, - [648] = 648, + [646] = 625, + [647] = 647, + [648] = 624, [649] = 649, [650] = 650, [651] = 651, [652] = 652, [653] = 653, [654] = 654, - [655] = 38, + [655] = 655, [656] = 656, [657] = 657, [658] = 658, @@ -3947,13 +3961,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [662] = 662, [663] = 663, [664] = 664, - [665] = 645, + [665] = 665, [666] = 666, [667] = 667, [668] = 668, [669] = 669, [670] = 670, - [671] = 671, + [671] = 657, [672] = 672, [673] = 673, [674] = 674, @@ -3964,7 +3978,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [679] = 679, [680] = 680, [681] = 681, - [682] = 653, + [682] = 682, [683] = 683, [684] = 684, [685] = 685, @@ -3973,27 +3987,27 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [688] = 688, [689] = 689, [690] = 690, - [691] = 691, + [691] = 660, [692] = 692, [693] = 693, [694] = 694, [695] = 695, - [696] = 650, + [696] = 696, [697] = 697, - [698] = 668, + [698] = 698, [699] = 699, - [700] = 700, + [700] = 659, [701] = 701, - [702] = 40, + [702] = 680, [703] = 703, - [704] = 677, + [704] = 704, [705] = 705, - [706] = 706, + [706] = 687, [707] = 707, - [708] = 699, + [708] = 708, [709] = 709, [710] = 710, - [711] = 711, + [711] = 705, [712] = 712, [713] = 713, [714] = 714, @@ -4001,9 +4015,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [716] = 716, [717] = 717, [718] = 718, - [719] = 688, + [719] = 719, [720] = 720, - [721] = 721, + [721] = 697, [722] = 722, [723] = 723, [724] = 724, @@ -4022,10 +4036,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [737] = 737, [738] = 738, [739] = 739, - [740] = 695, + [740] = 740, [741] = 741, [742] = 742, - [743] = 743, + [743] = 701, [744] = 744, [745] = 745, [746] = 746, @@ -4033,7 +4047,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [748] = 748, [749] = 749, [750] = 750, - [751] = 652, + [751] = 751, [752] = 752, [753] = 753, [754] = 754, @@ -4062,44 +4076,44 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [777] = 777, [778] = 778, [779] = 779, - [780] = 706, + [780] = 780, [781] = 781, [782] = 782, - [783] = 674, + [783] = 783, [784] = 784, [785] = 785, [786] = 786, [787] = 787, - [788] = 697, + [788] = 788, [789] = 789, - [790] = 790, + [790] = 703, [791] = 791, [792] = 792, - [793] = 793, - [794] = 724, + [793] = 684, + [794] = 794, [795] = 795, - [796] = 722, + [796] = 796, [797] = 797, [798] = 798, [799] = 799, - [800] = 800, - [801] = 801, - [802] = 802, - [803] = 725, - [804] = 804, + [800] = 726, + [801] = 724, + [802] = 668, + [803] = 803, + [804] = 728, [805] = 805, - [806] = 806, - [807] = 701, + [806] = 709, + [807] = 807, [808] = 808, [809] = 809, [810] = 810, - [811] = 657, - [812] = 703, + [811] = 811, + [812] = 663, [813] = 813, - [814] = 720, + [814] = 727, [815] = 815, - [816] = 816, - [817] = 817, + [816] = 708, + [817] = 707, [818] = 818, [819] = 819, [820] = 820, @@ -4148,7 +4162,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [863] = 863, [864] = 864, [865] = 865, - [866] = 700, + [866] = 866, [867] = 867, [868] = 868, [869] = 869, @@ -4162,31 +4176,31 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [877] = 877, [878] = 878, [879] = 879, - [880] = 880, - [881] = 39, - [882] = 709, + [880] = 704, + [881] = 881, + [882] = 882, [883] = 883, - [884] = 707, - [885] = 671, - [886] = 716, - [887] = 679, - [888] = 888, - [889] = 670, - [890] = 644, - [891] = 669, - [892] = 663, - [893] = 656, - [894] = 736, - [895] = 721, - [896] = 723, - [897] = 662, - [898] = 888, - [899] = 799, - [900] = 762, - [901] = 901, - [902] = 705, - [903] = 903, - [904] = 904, + [884] = 720, + [885] = 885, + [886] = 718, + [887] = 676, + [888] = 722, + [889] = 889, + [890] = 890, + [891] = 655, + [892] = 682, + [893] = 664, + [894] = 710, + [895] = 741, + [896] = 653, + [897] = 725, + [898] = 729, + [899] = 654, + [900] = 656, + [901] = 673, + [902] = 785, + [903] = 784, + [904] = 666, [905] = 905, [906] = 906, [907] = 907, @@ -4197,10 +4211,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [912] = 912, [913] = 913, [914] = 914, - [915] = 738, + [915] = 915, [916] = 916, [917] = 917, - [918] = 918, + [918] = 744, [919] = 919, [920] = 920, [921] = 921, @@ -4214,9 +4228,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [929] = 929, [930] = 930, [931] = 931, - [932] = 761, - [933] = 660, - [934] = 661, + [932] = 751, + [933] = 669, + [934] = 761, [935] = 935, [936] = 936, [937] = 937, @@ -4232,7 +4246,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [947] = 947, [948] = 948, [949] = 949, - [950] = 770, + [950] = 950, [951] = 951, [952] = 952, [953] = 953, @@ -4243,7 +4257,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [958] = 958, [959] = 959, [960] = 960, - [961] = 782, + [961] = 770, [962] = 962, [963] = 963, [964] = 964, @@ -4252,54 +4266,54 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [967] = 967, [968] = 968, [969] = 969, - [970] = 791, + [970] = 782, [971] = 971, [972] = 972, [973] = 973, - [974] = 945, - [975] = 975, + [974] = 974, + [975] = 791, [976] = 976, - [977] = 977, + [977] = 945, [978] = 978, [979] = 979, [980] = 980, [981] = 981, - [982] = 954, + [982] = 982, [983] = 983, [984] = 984, - [985] = 958, - [986] = 729, - [987] = 971, - [988] = 728, - [989] = 964, + [985] = 985, + [986] = 986, + [987] = 964, + [988] = 954, + [989] = 955, [990] = 959, - [991] = 991, - [992] = 992, - [993] = 993, + [991] = 958, + [992] = 734, + [993] = 732, [994] = 994, [995] = 995, [996] = 996, - [997] = 993, - [998] = 993, - [999] = 992, + [997] = 997, + [998] = 994, + [999] = 999, [1000] = 1000, - [1001] = 1001, - [1002] = 1002, - [1003] = 994, + [1001] = 1000, + [1002] = 997, + [1003] = 1003, [1004] = 1004, - [1005] = 1005, + [1005] = 1000, [1006] = 1006, [1007] = 996, [1008] = 1008, - [1009] = 1001, + [1009] = 1009, [1010] = 1010, - [1011] = 81, + [1011] = 999, [1012] = 1012, - [1013] = 1000, - [1014] = 995, - [1015] = 1012, + [1013] = 1013, + [1014] = 1003, + [1015] = 995, [1016] = 1016, - [1017] = 1017, + [1017] = 1004, [1018] = 1018, [1019] = 1019, [1020] = 1020, @@ -4362,113 +4376,113 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1077] = 1077, [1078] = 1078, [1079] = 1079, - [1080] = 1018, - [1081] = 1029, - [1082] = 1082, + [1080] = 1080, + [1081] = 1031, + [1082] = 1037, [1083] = 1083, - [1084] = 1034, + [1084] = 1021, [1085] = 1085, - [1086] = 1032, + [1086] = 1086, [1087] = 1087, [1088] = 1088, - [1089] = 1089, - [1090] = 1026, + [1089] = 1034, + [1090] = 1022, [1091] = 1091, - [1092] = 1092, + [1092] = 1027, [1093] = 1093, [1094] = 1094, [1095] = 1095, [1096] = 1096, - [1097] = 1035, + [1097] = 1097, [1098] = 1098, - [1099] = 1065, - [1100] = 1037, + [1099] = 1039, + [1100] = 1042, [1101] = 1101, - [1102] = 1077, + [1102] = 1102, [1103] = 1103, - [1104] = 1072, + [1104] = 1074, [1105] = 1105, - [1106] = 1106, - [1107] = 1038, - [1108] = 1049, - [1109] = 1066, - [1110] = 1031, - [1111] = 1111, - [1112] = 1112, - [1113] = 1112, - [1114] = 1045, - [1115] = 1047, - [1116] = 1062, - [1117] = 1061, - [1118] = 1059, - [1119] = 1103, - [1120] = 1120, - [1121] = 1063, - [1122] = 1071, - [1123] = 1123, + [1106] = 1072, + [1107] = 1107, + [1108] = 1044, + [1109] = 1052, + [1110] = 1110, + [1111] = 1068, + [1112] = 1030, + [1113] = 1113, + [1114] = 1114, + [1115] = 1049, + [1116] = 1050, + [1117] = 1102, + [1118] = 1064, + [1119] = 1065, + [1120] = 1057, + [1121] = 1066, + [1122] = 1073, + [1123] = 1077, [1124] = 1124, - [1125] = 1075, + [1125] = 1125, [1126] = 1126, [1127] = 1127, [1128] = 1128, [1129] = 1129, - [1130] = 1016, - [1131] = 1105, - [1132] = 1132, + [1130] = 1130, + [1131] = 1093, + [1132] = 1107, [1133] = 1133, - [1134] = 1079, + [1134] = 1113, [1135] = 1135, - [1136] = 1089, + [1136] = 1110, [1137] = 1137, [1138] = 1138, [1139] = 1139, [1140] = 1140, - [1141] = 1111, + [1141] = 1141, [1142] = 1142, [1143] = 1143, [1144] = 1144, - [1145] = 1145, - [1146] = 1129, - [1147] = 1073, - [1148] = 1148, + [1145] = 1083, + [1146] = 1133, + [1147] = 1147, + [1148] = 1143, [1149] = 1149, - [1150] = 1139, + [1150] = 1150, [1151] = 1151, - [1152] = 1085, - [1153] = 1153, + [1152] = 1152, + [1153] = 1067, [1154] = 1043, [1155] = 1155, - [1156] = 1039, - [1157] = 1157, - [1158] = 1022, + [1156] = 1096, + [1157] = 1142, + [1158] = 1023, [1159] = 1159, - [1160] = 1160, - [1161] = 1095, - [1162] = 1145, - [1163] = 1023, - [1164] = 1021, - [1165] = 1165, + [1160] = 1041, + [1161] = 1161, + [1162] = 1162, + [1163] = 1163, + [1164] = 1020, + [1165] = 1079, [1166] = 1166, - [1167] = 1044, - [1168] = 1064, - [1169] = 1169, - [1170] = 1170, + [1167] = 1047, + [1168] = 1033, + [1169] = 1151, + [1170] = 1097, [1171] = 1171, - [1172] = 1160, - [1173] = 1096, - [1174] = 1028, - [1175] = 1124, - [1176] = 1166, - [1177] = 1177, - [1178] = 1033, - [1179] = 1101, - [1180] = 1169, - [1181] = 1155, + [1172] = 1163, + [1173] = 1032, + [1174] = 1035, + [1175] = 1125, + [1176] = 1176, + [1177] = 1086, + [1178] = 1038, + [1179] = 1166, + [1180] = 1180, + [1181] = 1181, [1182] = 1182, - [1183] = 1041, + [1183] = 1045, [1184] = 1184, - [1185] = 1185, - [1186] = 1186, + [1185] = 1162, + [1186] = 1103, [1187] = 1187, [1188] = 1188, [1189] = 1189, @@ -4491,7 +4505,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1206] = 1206, [1207] = 1207, [1208] = 1208, - [1209] = 1209, + [1209] = 1203, [1210] = 1210, [1211] = 1211, [1212] = 1212, @@ -4502,21 +4516,21 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1217] = 1217, [1218] = 1218, [1219] = 1219, - [1220] = 1220, - [1221] = 1221, + [1220] = 1213, + [1221] = 1210, [1222] = 1222, - [1223] = 1223, - [1224] = 1224, - [1225] = 105, - [1226] = 1226, + [1223] = 1202, + [1224] = 1206, + [1225] = 1205, + [1226] = 1222, [1227] = 1227, - [1228] = 1192, - [1229] = 1229, + [1228] = 1218, + [1229] = 1201, [1230] = 1230, [1231] = 1231, - [1232] = 1232, - [1233] = 1233, - [1234] = 1230, + [1232] = 1217, + [1233] = 1200, + [1234] = 1234, [1235] = 1235, [1236] = 1236, [1237] = 1237, @@ -4525,8 +4539,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1240] = 1240, [1241] = 1241, [1242] = 1242, - [1243] = 1243, - [1244] = 1244, + [1243] = 1199, + [1244] = 1198, [1245] = 1245, [1246] = 1246, [1247] = 1247, @@ -4538,10 +4552,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1253] = 1253, [1254] = 1254, [1255] = 1255, - [1256] = 1256, + [1256] = 1192, [1257] = 1257, - [1258] = 1258, - [1259] = 1259, + [1258] = 1197, + [1259] = 1196, [1260] = 1260, [1261] = 1261, [1262] = 1262, @@ -4614,17 +4628,17 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1329] = 1329, [1330] = 1330, [1331] = 1331, - [1332] = 1332, + [1332] = 1191, [1333] = 1333, [1334] = 1334, - [1335] = 1335, - [1336] = 1336, + [1335] = 1195, + [1336] = 1194, [1337] = 1337, [1338] = 1338, [1339] = 1339, [1340] = 1340, [1341] = 1341, - [1342] = 1224, + [1342] = 1342, [1343] = 1343, [1344] = 1344, [1345] = 1345, @@ -4640,7 +4654,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1355] = 1355, [1356] = 1356, [1357] = 1357, - [1358] = 1210, + [1358] = 1358, [1359] = 1359, [1360] = 1360, [1361] = 1361, @@ -4648,7 +4662,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1363] = 1363, [1364] = 1364, [1365] = 1365, - [1366] = 1226, + [1366] = 1366, [1367] = 1367, [1368] = 1368, [1369] = 1369, @@ -4657,19 +4671,19 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1372] = 1372, [1373] = 1373, [1374] = 1374, - [1375] = 1227, + [1375] = 1375, [1376] = 1376, [1377] = 1377, [1378] = 1378, [1379] = 1379, - [1380] = 1260, + [1380] = 1380, [1381] = 1381, [1382] = 1382, [1383] = 1383, [1384] = 1384, [1385] = 1385, [1386] = 1386, - [1387] = 1268, + [1387] = 1387, [1388] = 1388, [1389] = 1389, [1390] = 1390, @@ -4679,10 +4693,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1394] = 1394, [1395] = 1395, [1396] = 1396, - [1397] = 1323, + [1397] = 1397, [1398] = 1398, [1399] = 1399, - [1400] = 1345, + [1400] = 1400, [1401] = 1401, [1402] = 1402, [1403] = 1403, @@ -4696,29 +4710,29 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1411] = 1411, [1412] = 1412, [1413] = 1413, - [1414] = 1403, - [1415] = 1410, + [1414] = 1414, + [1415] = 1415, [1416] = 1416, - [1417] = 1332, + [1417] = 1417, [1418] = 1418, [1419] = 1419, [1420] = 1420, [1421] = 1421, - [1422] = 1396, - [1423] = 1326, + [1422] = 1422, + [1423] = 1423, [1424] = 1424, [1425] = 1425, [1426] = 1426, - [1427] = 1419, + [1427] = 1427, [1428] = 1428, [1429] = 1429, [1430] = 1430, - [1431] = 1416, - [1432] = 1406, + [1431] = 1431, + [1432] = 1432, [1433] = 1433, [1434] = 1434, [1435] = 1435, - [1436] = 1436, + [1436] = 1193, [1437] = 1437, [1438] = 1438, [1439] = 1439, @@ -4772,7 +4786,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1487] = 1487, [1488] = 1488, [1489] = 1489, - [1490] = 1411, + [1490] = 1490, [1491] = 1491, [1492] = 1492, [1493] = 1493, @@ -4780,7 +4794,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1495] = 1495, [1496] = 1496, [1497] = 1497, - [1498] = 1413, + [1498] = 1498, [1499] = 1499, [1500] = 1500, [1501] = 1501, @@ -4843,7 +4857,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1558] = 1558, [1559] = 1559, [1560] = 1560, - [1561] = 1561, + [1561] = 1559, [1562] = 1562, [1563] = 1563, [1564] = 1564, @@ -4855,17 +4869,17 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1570] = 1570, [1571] = 1571, [1572] = 1572, - [1573] = 1504, + [1573] = 1573, [1574] = 1574, [1575] = 1575, [1576] = 1576, [1577] = 1577, - [1578] = 1555, - [1579] = 1562, + [1578] = 1578, + [1579] = 1579, [1580] = 1580, [1581] = 1581, - [1582] = 1547, - [1583] = 1507, + [1582] = 1582, + [1583] = 1583, [1584] = 1584, [1585] = 1585, [1586] = 1586, @@ -4875,126 +4889,126 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1590] = 1590, [1591] = 1591, [1592] = 1592, - [1593] = 1577, - [1594] = 1554, + [1593] = 1593, + [1594] = 1594, [1595] = 1595, [1596] = 1596, [1597] = 1597, [1598] = 1598, - [1599] = 1599, - [1600] = 1600, - [1601] = 1552, + [1599] = 1573, + [1600] = 1572, + [1601] = 1601, [1602] = 1602, [1603] = 1603, - [1604] = 1586, - [1605] = 1551, + [1604] = 1604, + [1605] = 1605, [1606] = 1606, [1607] = 1607, - [1608] = 1608, - [1609] = 1575, + [1608] = 1586, + [1609] = 1609, [1610] = 1610, [1611] = 1611, - [1612] = 1602, - [1613] = 1548, + [1612] = 1612, + [1613] = 1613, [1614] = 1614, - [1615] = 1564, + [1615] = 1615, [1616] = 1616, - [1617] = 1527, + [1617] = 1617, [1618] = 1618, - [1619] = 1603, + [1619] = 1619, [1620] = 1620, [1621] = 1621, [1622] = 1622, - [1623] = 1623, - [1624] = 1546, + [1623] = 1570, + [1624] = 1624, [1625] = 1625, - [1626] = 1611, - [1627] = 1544, - [1628] = 1614, + [1626] = 1626, + [1627] = 1627, + [1628] = 1628, [1629] = 1629, - [1630] = 1572, - [1631] = 1631, + [1630] = 1630, + [1631] = 1569, [1632] = 1632, [1633] = 1633, - [1634] = 1543, + [1634] = 1634, [1635] = 1635, [1636] = 1636, [1637] = 1637, - [1638] = 1541, + [1638] = 1638, [1639] = 1639, [1640] = 1640, [1641] = 1641, - [1642] = 1540, - [1643] = 1556, + [1642] = 1642, + [1643] = 1643, [1644] = 1644, [1645] = 1645, - [1646] = 1622, + [1646] = 1641, [1647] = 1647, [1648] = 1648, [1649] = 1649, - [1650] = 1650, - [1651] = 1651, + [1650] = 1611, + [1651] = 1612, [1652] = 1652, - [1653] = 1653, - [1654] = 1654, - [1655] = 1655, - [1656] = 1629, + [1653] = 1590, + [1654] = 1548, + [1655] = 1542, + [1656] = 1534, [1657] = 1657, [1658] = 1658, - [1659] = 1570, + [1659] = 1513, [1660] = 1660, [1661] = 1661, - [1662] = 1662, - [1663] = 1663, + [1662] = 1591, + [1663] = 1610, [1664] = 1664, - [1665] = 1665, - [1666] = 1666, - [1667] = 1667, - [1668] = 1668, - [1669] = 1633, - [1670] = 1670, + [1665] = 1527, + [1666] = 1532, + [1667] = 1515, + [1668] = 1609, + [1669] = 1525, + [1670] = 1531, [1671] = 1671, - [1672] = 1672, - [1673] = 1635, + [1672] = 1539, + [1673] = 1673, [1674] = 1674, - [1675] = 1675, - [1676] = 1676, + [1675] = 1554, + [1676] = 1557, [1677] = 1677, - [1678] = 1678, - [1679] = 1679, - [1680] = 1680, - [1681] = 1681, - [1682] = 1639, + [1678] = 1621, + [1679] = 1592, + [1680] = 1595, + [1681] = 1587, + [1682] = 1682, [1683] = 1683, [1684] = 1684, - [1685] = 1636, + [1685] = 1685, [1686] = 1686, [1687] = 1687, [1688] = 1688, [1689] = 1689, - [1690] = 1690, + [1690] = 1616, [1691] = 1691, [1692] = 1692, [1693] = 1693, [1694] = 1694, - [1695] = 1567, - [1696] = 1640, + [1695] = 1695, + [1696] = 1597, [1697] = 1697, - [1698] = 1675, + [1698] = 1617, [1699] = 1699, [1700] = 1700, [1701] = 1701, - [1702] = 1653, - [1703] = 1566, - [1704] = 1667, + [1702] = 1702, + [1703] = 1598, + [1704] = 1704, [1705] = 1705, - [1706] = 1665, + [1706] = 1706, [1707] = 1707, [1708] = 1708, [1709] = 1709, - [1710] = 1679, + [1710] = 1710, [1711] = 1711, - [1712] = 1606, + [1712] = 1712, [1713] = 1713, [1714] = 1714, [1715] = 1715, @@ -5002,198 +5016,198 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1717] = 1717, [1718] = 1718, [1719] = 1719, - [1720] = 1652, + [1720] = 1720, [1721] = 1721, - [1722] = 1722, + [1722] = 1642, [1723] = 1723, [1724] = 1724, - [1725] = 1697, + [1725] = 1638, [1726] = 1726, [1727] = 1727, [1728] = 1728, - [1729] = 1651, + [1729] = 1634, [1730] = 1730, [1731] = 1731, - [1732] = 1732, - [1733] = 1598, - [1734] = 1734, + [1732] = 1627, + [1733] = 1733, + [1734] = 1624, [1735] = 1735, - [1736] = 1647, - [1737] = 1714, - [1738] = 1597, - [1739] = 1739, + [1736] = 1613, + [1737] = 1605, + [1738] = 1601, + [1739] = 1683, [1740] = 1740, [1741] = 1741, - [1742] = 1742, - [1743] = 1719, + [1742] = 1594, + [1743] = 1743, [1744] = 1744, [1745] = 1745, - [1746] = 1584, - [1747] = 1645, + [1746] = 1746, + [1747] = 1606, [1748] = 1748, [1749] = 1749, [1750] = 1585, [1751] = 1751, - [1752] = 1680, - [1753] = 1650, + [1752] = 1752, + [1753] = 1743, [1754] = 1754, - [1755] = 1632, - [1756] = 1732, + [1755] = 1684, + [1756] = 1756, [1757] = 1757, - [1758] = 1758, + [1758] = 1744, [1759] = 1759, - [1760] = 1760, - [1761] = 1588, - [1762] = 1563, - [1763] = 1655, + [1760] = 1574, + [1761] = 1761, + [1762] = 1576, + [1763] = 1562, [1764] = 1764, [1765] = 1765, - [1766] = 1592, - [1767] = 1767, - [1768] = 1768, - [1769] = 1560, - [1770] = 1770, - [1771] = 1657, - [1772] = 1528, - [1773] = 1595, + [1766] = 1766, + [1767] = 1509, + [1768] = 1745, + [1769] = 1640, + [1770] = 1628, + [1771] = 1582, + [1772] = 1614, + [1773] = 1773, [1774] = 1774, - [1775] = 1775, + [1775] = 1547, [1776] = 1776, - [1777] = 1777, - [1778] = 1521, - [1779] = 1779, + [1777] = 1746, + [1778] = 1778, + [1779] = 1648, [1780] = 1780, - [1781] = 1781, - [1782] = 1782, - [1783] = 1663, - [1784] = 1534, - [1785] = 1779, - [1786] = 1666, - [1787] = 1787, - [1788] = 1532, - [1789] = 1718, - [1790] = 1780, - [1791] = 1558, - [1792] = 1531, - [1793] = 1641, - [1794] = 1716, - [1795] = 1777, - [1796] = 1796, - [1797] = 1724, - [1798] = 1798, + [1781] = 1567, + [1782] = 1685, + [1783] = 1783, + [1784] = 1714, + [1785] = 1604, + [1786] = 1658, + [1787] = 1661, + [1788] = 1713, + [1789] = 1673, + [1790] = 1677, + [1791] = 1689, + [1792] = 1712, + [1793] = 1764, + [1794] = 1794, + [1795] = 1699, + [1796] = 1774, + [1797] = 1797, + [1798] = 1720, [1799] = 1799, - [1800] = 1726, + [1800] = 1800, [1801] = 1801, [1802] = 1802, - [1803] = 1506, - [1804] = 1782, - [1805] = 1525, - [1806] = 1806, - [1807] = 1798, + [1803] = 1686, + [1804] = 1652, + [1805] = 1708, + [1806] = 1629, + [1807] = 1807, [1808] = 1808, - [1809] = 1523, - [1810] = 1745, - [1811] = 1811, + [1809] = 1706, + [1810] = 1647, + [1811] = 1649, [1812] = 1812, - [1813] = 1699, - [1814] = 1814, + [1813] = 1813, + [1814] = 1682, [1815] = 1815, - [1816] = 1816, - [1817] = 1692, - [1818] = 1677, - [1819] = 1749, - [1820] = 1686, - [1821] = 1821, - [1822] = 1760, - [1823] = 1823, + [1816] = 1692, + [1817] = 1817, + [1818] = 1818, + [1819] = 1819, + [1820] = 1820, + [1821] = 1566, + [1822] = 1822, + [1823] = 1748, [1824] = 1824, - [1825] = 1519, - [1826] = 1742, + [1825] = 1704, + [1826] = 1688, [1827] = 1827, - [1828] = 1676, - [1829] = 1518, + [1828] = 1828, + [1829] = 1702, [1830] = 1830, - [1831] = 1508, + [1831] = 1831, [1832] = 1832, [1833] = 1833, - [1834] = 1510, - [1835] = 1522, - [1836] = 1658, - [1837] = 1648, - [1838] = 1517, - [1839] = 1512, + [1834] = 1834, + [1835] = 1761, + [1836] = 1836, + [1837] = 1837, + [1838] = 1700, + [1839] = 1759, [1840] = 1840, - [1841] = 1535, - [1842] = 1842, - [1843] = 1843, + [1841] = 1817, + [1842] = 1749, + [1843] = 1815, [1844] = 1844, [1845] = 1845, [1846] = 1846, - [1847] = 1847, - [1848] = 1514, - [1849] = 1557, + [1847] = 1819, + [1848] = 1848, + [1849] = 1639, [1850] = 1850, - [1851] = 1851, + [1851] = 1691, [1852] = 1852, - [1853] = 1853, - [1854] = 1700, - [1855] = 1855, - [1856] = 1708, - [1857] = 1775, + [1853] = 1837, + [1854] = 1622, + [1855] = 1635, + [1856] = 1856, + [1857] = 1578, [1858] = 1858, - [1859] = 1620, - [1860] = 1860, - [1861] = 1774, + [1859] = 1824, + [1860] = 1626, + [1861] = 1752, [1862] = 1862, - [1863] = 1757, + [1863] = 1863, [1864] = 1864, - [1865] = 1865, - [1866] = 1513, - [1867] = 1867, + [1865] = 1693, + [1866] = 1827, + [1867] = 1754, [1868] = 1868, - [1869] = 1843, - [1870] = 1870, - [1871] = 1871, - [1872] = 1872, + [1869] = 1869, + [1870] = 1799, + [1871] = 1802, + [1872] = 1506, [1873] = 1873, - [1874] = 1691, - [1875] = 1684, + [1874] = 1874, + [1875] = 1875, [1876] = 1876, - [1877] = 1764, - [1878] = 1599, - [1879] = 1600, - [1880] = 1678, - [1881] = 1767, - [1882] = 1882, + [1877] = 1695, + [1878] = 1878, + [1879] = 1711, + [1880] = 1705, + [1881] = 1881, + [1882] = 1697, [1883] = 1883, [1884] = 1884, - [1885] = 1623, - [1886] = 1631, - [1887] = 1670, - [1888] = 1888, + [1885] = 1885, + [1886] = 1756, + [1887] = 1645, + [1888] = 1563, [1889] = 1889, - [1890] = 1781, - [1891] = 1891, - [1892] = 1821, + [1890] = 1890, + [1891] = 1588, + [1892] = 1892, [1893] = 1893, [1894] = 1894, - [1895] = 1895, - [1896] = 1505, + [1895] = 1579, + [1896] = 1512, [1897] = 1897, [1898] = 1898, - [1899] = 1899, + [1899] = 1580, [1900] = 1900, - [1901] = 1770, + [1901] = 1864, [1902] = 1902, [1903] = 1903, [1904] = 1904, - [1905] = 1905, - [1906] = 1668, + [1905] = 1636, + [1906] = 1830, [1907] = 1907, - [1908] = 1908, + [1908] = 1632, [1909] = 1909, - [1910] = 1910, - [1911] = 1911, + [1910] = 1863, + [1911] = 1776, [1912] = 1912, [1913] = 1913, [1914] = 1914, @@ -5205,8 +5219,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1920] = 1920, [1921] = 1921, [1922] = 1922, - [1923] = 1922, - [1924] = 1921, + [1923] = 1923, + [1924] = 1924, [1925] = 1925, [1926] = 1926, [1927] = 1927, @@ -5234,40 +5248,40 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1949] = 1949, [1950] = 1950, [1951] = 1951, - [1952] = 1952, + [1952] = 1943, [1953] = 1953, [1954] = 1954, - [1955] = 1920, - [1956] = 1956, - [1957] = 1957, + [1955] = 1955, + [1956] = 1942, + [1957] = 1936, [1958] = 1958, [1959] = 1959, - [1960] = 1935, + [1960] = 1951, [1961] = 1961, [1962] = 1962, - [1963] = 1936, + [1963] = 1963, [1964] = 1964, [1965] = 1965, [1966] = 1966, [1967] = 1967, [1968] = 1968, [1969] = 1969, - [1970] = 1954, + [1970] = 1948, [1971] = 1971, [1972] = 1972, [1973] = 1973, [1974] = 1974, - [1975] = 1975, + [1975] = 1935, [1976] = 1976, [1977] = 1977, [1978] = 1978, [1979] = 1979, [1980] = 1980, [1981] = 1981, - [1982] = 1950, + [1982] = 1982, [1983] = 1983, [1984] = 1984, - [1985] = 1943, + [1985] = 1985, [1986] = 1986, [1987] = 1987, [1988] = 1988, @@ -5275,82 +5289,82 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1990] = 1990, [1991] = 1991, [1992] = 1992, - [1993] = 1974, + [1993] = 1993, [1994] = 1994, [1995] = 1995, - [1996] = 1976, - [1997] = 1984, + [1996] = 1996, + [1997] = 1997, [1998] = 1998, [1999] = 1999, - [2000] = 2000, + [2000] = 1931, [2001] = 2001, [2002] = 2002, - [2003] = 2003, - [2004] = 2004, - [2005] = 2005, - [2006] = 1927, + [2003] = 1929, + [2004] = 1927, + [2005] = 1949, + [2006] = 2006, [2007] = 2007, [2008] = 2008, [2009] = 2009, [2010] = 2010, - [2011] = 2002, - [2012] = 1975, - [2013] = 1979, - [2014] = 1915, - [2015] = 1978, + [2011] = 2011, + [2012] = 2012, + [2013] = 2013, + [2014] = 2014, + [2015] = 2015, [2016] = 2016, - [2017] = 1992, + [2017] = 1978, [2018] = 2018, - [2019] = 1972, - [2020] = 1977, - [2021] = 2000, - [2022] = 1991, - [2023] = 1912, - [2024] = 2024, - [2025] = 2025, - [2026] = 2010, - [2027] = 1987, - [2028] = 1994, - [2029] = 1929, + [2019] = 1946, + [2020] = 2020, + [2021] = 2013, + [2022] = 2012, + [2023] = 2023, + [2024] = 1945, + [2025] = 1944, + [2026] = 2026, + [2027] = 2027, + [2028] = 2028, + [2029] = 2029, [2030] = 2030, [2031] = 2031, - [2032] = 2018, - [2033] = 1999, - [2034] = 2034, - [2035] = 2035, - [2036] = 2001, - [2037] = 1913, - [2038] = 2038, - [2039] = 2039, - [2040] = 2040, - [2041] = 1973, - [2042] = 1919, - [2043] = 2003, + [2032] = 2008, + [2033] = 1976, + [2034] = 1950, + [2035] = 1913, + [2036] = 1941, + [2037] = 1947, + [2038] = 1997, + [2039] = 1998, + [2040] = 2006, + [2041] = 2011, + [2042] = 2015, + [2043] = 1999, [2044] = 2044, - [2045] = 1942, - [2046] = 1986, - [2047] = 2047, - [2048] = 1989, - [2049] = 2049, - [2050] = 2050, - [2051] = 1938, - [2052] = 2052, - [2053] = 2053, - [2054] = 2030, - [2055] = 2005, - [2056] = 1998, - [2057] = 1967, - [2058] = 2058, - [2059] = 1968, - [2060] = 2060, - [2061] = 2008, + [2045] = 1985, + [2046] = 1995, + [2047] = 2001, + [2048] = 2048, + [2049] = 2007, + [2050] = 2010, + [2051] = 1928, + [2052] = 2029, + [2053] = 1958, + [2054] = 2054, + [2055] = 1932, + [2056] = 1961, + [2057] = 1972, + [2058] = 2031, + [2059] = 2020, + [2060] = 1968, + [2061] = 1953, [2062] = 2062, - [2063] = 2058, - [2064] = 2064, - [2065] = 2065, - [2066] = 1971, - [2067] = 2053, - [2068] = 2068, + [2063] = 2063, + [2064] = 1938, + [2065] = 2002, + [2066] = 1993, + [2067] = 2067, + [2068] = 1939, [2069] = 2069, [2070] = 2070, [2071] = 2071, @@ -5446,10 +5460,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2161] = 2161, [2162] = 2162, [2163] = 2163, - [2164] = 2164, + [2164] = 2070, [2165] = 2165, [2166] = 2166, - [2167] = 2069, + [2167] = 2167, [2168] = 2168, [2169] = 2169, [2170] = 2170, @@ -5734,43 +5748,43 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2449] = 2449, [2450] = 2450, [2451] = 2451, - [2452] = 2380, - [2453] = 2443, - [2454] = 2441, - [2455] = 2397, - [2456] = 2456, - [2457] = 2391, - [2458] = 2389, - [2459] = 2459, - [2460] = 2383, - [2461] = 2382, - [2462] = 2351, - [2463] = 2378, - [2464] = 2369, - [2465] = 2465, - [2466] = 2359, - [2467] = 2357, - [2468] = 2323, - [2469] = 2314, - [2470] = 2313, - [2471] = 2312, - [2472] = 2305, - [2473] = 2297, - [2474] = 2242, - [2475] = 2234, - [2476] = 2223, - [2477] = 2217, - [2478] = 2208, - [2479] = 2204, - [2480] = 2122, - [2481] = 2162, - [2482] = 2169, - [2483] = 2320, - [2484] = 2187, - [2485] = 2222, - [2486] = 2125, - [2487] = 2487, - [2488] = 2488, + [2452] = 2452, + [2453] = 2380, + [2454] = 2454, + [2455] = 2443, + [2456] = 2398, + [2457] = 2454, + [2458] = 2392, + [2459] = 2390, + [2460] = 2460, + [2461] = 2384, + [2462] = 2383, + [2463] = 2381, + [2464] = 2464, + [2465] = 2379, + [2466] = 2370, + [2467] = 2467, + [2468] = 2360, + [2469] = 2358, + [2470] = 2324, + [2471] = 2315, + [2472] = 2314, + [2473] = 2313, + [2474] = 2306, + [2475] = 2298, + [2476] = 2243, + [2477] = 2235, + [2478] = 2224, + [2479] = 2218, + [2480] = 2209, + [2481] = 2206, + [2482] = 2147, + [2483] = 2212, + [2484] = 2219, + [2485] = 2237, + [2486] = 2244, + [2487] = 2261, + [2488] = 2275, [2489] = 2489, [2490] = 2490, [2491] = 2491, @@ -5781,10 +5795,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2496] = 2496, [2497] = 2497, [2498] = 2498, - [2499] = 2499, - [2500] = 2500, - [2501] = 2501, - [2502] = 2502, + [2499] = 2228, + [2500] = 2279, + [2501] = 2180, + [2502] = 2357, [2503] = 2503, [2504] = 2504, [2505] = 2505, @@ -5794,12 +5808,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2509] = 2509, [2510] = 2510, [2511] = 2511, - [2512] = 2512, - [2513] = 2513, - [2514] = 2514, - [2515] = 2515, - [2516] = 2516, - [2517] = 2517, + [2512] = 2356, + [2513] = 2367, + [2514] = 2395, + [2515] = 2413, + [2516] = 2437, + [2517] = 2467, [2518] = 2518, [2519] = 2519, [2520] = 2520, @@ -5822,89 +5836,89 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2537] = 2537, [2538] = 2538, [2539] = 2539, - [2540] = 2425, - [2541] = 2423, - [2542] = 2419, - [2543] = 2413, - [2544] = 2401, - [2545] = 2398, - [2546] = 2396, - [2547] = 2394, - [2548] = 2387, - [2549] = 2384, - [2550] = 2372, - [2551] = 2366, - [2552] = 2361, - [2553] = 2356, - [2554] = 2353, - [2555] = 2347, - [2556] = 2269, - [2557] = 2266, - [2558] = 2263, - [2559] = 2260, - [2560] = 2256, - [2561] = 2251, - [2562] = 2249, - [2563] = 2246, - [2564] = 2241, - [2565] = 2231, - [2566] = 2228, - [2567] = 2225, - [2568] = 2218, - [2569] = 2212, - [2570] = 2207, - [2571] = 2206, - [2572] = 2148, - [2573] = 2142, - [2574] = 2135, - [2575] = 2128, - [2576] = 2126, - [2577] = 2120, - [2578] = 2115, - [2579] = 2111, - [2580] = 2103, - [2581] = 2092, - [2582] = 2070, - [2583] = 2071, - [2584] = 2074, - [2585] = 2081, - [2586] = 2083, - [2587] = 2086, - [2588] = 2088, - [2589] = 2093, - [2590] = 2096, - [2591] = 2099, - [2592] = 2102, - [2593] = 2106, - [2594] = 2110, - [2595] = 2114, - [2596] = 2116, - [2597] = 2119, - [2598] = 2123, - [2599] = 2127, - [2600] = 2131, - [2601] = 2133, - [2602] = 2136, - [2603] = 2138, - [2604] = 2141, - [2605] = 2143, - [2606] = 2149, - [2607] = 2152, - [2608] = 2154, - [2609] = 2161, - [2610] = 2164, - [2611] = 2611, - [2612] = 2068, - [2613] = 2174, - [2614] = 2177, - [2615] = 2420, - [2616] = 2424, - [2617] = 2427, + [2540] = 2540, + [2541] = 2541, + [2542] = 2542, + [2543] = 2543, + [2544] = 2544, + [2545] = 2545, + [2546] = 2546, + [2547] = 2547, + [2548] = 2548, + [2549] = 2549, + [2550] = 2550, + [2551] = 2551, + [2552] = 2552, + [2553] = 2553, + [2554] = 2554, + [2555] = 2555, + [2556] = 2556, + [2557] = 2557, + [2558] = 2341, + [2559] = 2338, + [2560] = 2336, + [2561] = 2328, + [2562] = 2321, + [2563] = 2307, + [2564] = 2300, + [2565] = 2293, + [2566] = 2290, + [2567] = 2282, + [2568] = 2276, + [2569] = 2273, + [2570] = 2269, + [2571] = 2265, + [2572] = 2260, + [2573] = 2259, + [2574] = 2125, + [2575] = 2188, + [2576] = 2179, + [2577] = 2173, + [2578] = 2172, + [2579] = 2157, + [2580] = 2146, + [2581] = 2144, + [2582] = 2129, + [2583] = 2072, + [2584] = 2075, + [2585] = 2076, + [2586] = 2080, + [2587] = 2089, + [2588] = 2092, + [2589] = 2095, + [2590] = 2097, + [2591] = 2102, + [2592] = 2104, + [2593] = 2105, + [2594] = 2108, + [2595] = 2111, + [2596] = 2114, + [2597] = 2117, + [2598] = 2119, + [2599] = 2121, + [2600] = 2123, + [2601] = 2127, + [2602] = 2131, + [2603] = 2133, + [2604] = 2136, + [2605] = 2138, + [2606] = 2141, + [2607] = 2143, + [2608] = 2149, + [2609] = 2152, + [2610] = 2154, + [2611] = 2161, + [2612] = 2612, + [2613] = 2167, + [2614] = 2170, + [2615] = 2174, + [2616] = 2177, + [2617] = 2424, [2618] = 2618, [2619] = 2619, - [2620] = 2487, + [2620] = 2620, [2621] = 2621, - [2622] = 2451, + [2622] = 2452, [2623] = 2623, [2624] = 2624, [2625] = 2625, @@ -5917,13 +5931,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2632] = 2632, [2633] = 2633, [2634] = 2634, - [2635] = 2450, + [2635] = 2451, [2636] = 2636, [2637] = 2637, [2638] = 2638, [2639] = 2639, [2640] = 2640, - [2641] = 2641, + [2641] = 2522, [2642] = 2642, [2643] = 2643, [2644] = 2644, @@ -5932,385 +5946,385 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2647] = 2647, [2648] = 2648, [2649] = 2649, - [2650] = 2650, + [2650] = 2518, [2651] = 2651, [2652] = 2652, - [2653] = 2449, - [2654] = 2654, + [2653] = 2450, + [2654] = 2449, [2655] = 2655, [2656] = 2656, - [2657] = 2657, + [2657] = 2557, [2658] = 2658, - [2659] = 2659, + [2659] = 2511, [2660] = 2660, [2661] = 2661, [2662] = 2662, [2663] = 2448, [2664] = 2664, [2665] = 2629, - [2666] = 2489, + [2666] = 2666, [2667] = 2667, [2668] = 2447, - [2669] = 2669, - [2670] = 2670, - [2671] = 2379, + [2669] = 2556, + [2670] = 2519, + [2671] = 2352, [2672] = 2445, - [2673] = 2377, + [2673] = 2378, [2674] = 2444, [2675] = 2675, - [2676] = 2676, - [2677] = 2367, - [2678] = 2490, + [2676] = 2555, + [2677] = 2368, + [2678] = 2510, [2679] = 2679, [2680] = 2680, - [2681] = 2681, - [2682] = 2491, + [2681] = 2554, + [2682] = 2682, [2683] = 2683, - [2684] = 2303, + [2684] = 2304, [2685] = 2685, [2686] = 2440, - [2687] = 2687, + [2687] = 2553, [2688] = 2688, - [2689] = 2295, - [2690] = 2492, + [2689] = 2296, + [2690] = 2552, [2691] = 2691, [2692] = 2692, [2693] = 2693, - [2694] = 2221, + [2694] = 2222, [2695] = 2695, [2696] = 2696, - [2697] = 2493, + [2697] = 2697, [2698] = 2698, - [2699] = 2215, - [2700] = 2700, - [2701] = 2701, - [2702] = 2702, - [2703] = 2205, - [2704] = 2494, - [2705] = 2202, + [2699] = 2216, + [2700] = 2551, + [2701] = 2520, + [2702] = 2550, + [2703] = 2207, + [2704] = 2704, + [2705] = 2204, [2706] = 2706, - [2707] = 2707, + [2707] = 2549, [2708] = 2439, [2709] = 2709, [2710] = 2710, - [2711] = 2168, + [2711] = 2213, [2712] = 2712, - [2713] = 2539, - [2714] = 2176, + [2713] = 2713, + [2714] = 2223, [2715] = 2715, - [2716] = 2716, - [2717] = 2717, - [2718] = 2538, - [2719] = 2184, - [2720] = 2495, - [2721] = 2193, + [2716] = 2548, + [2717] = 2547, + [2718] = 2718, + [2719] = 2242, + [2720] = 2546, + [2721] = 2246, [2722] = 2722, [2723] = 2723, [2724] = 2724, - [2725] = 2227, + [2725] = 2270, [2726] = 2726, - [2727] = 2243, - [2728] = 2626, + [2727] = 2278, + [2728] = 2728, [2729] = 2729, [2730] = 2730, [2731] = 2731, - [2732] = 2537, - [2733] = 2669, - [2734] = 2496, + [2732] = 2732, + [2733] = 2733, + [2734] = 2734, [2735] = 2735, [2736] = 2736, [2737] = 2737, [2738] = 2738, - [2739] = 2680, - [2740] = 2683, - [2741] = 2536, + [2739] = 2739, + [2740] = 2740, + [2741] = 2545, [2742] = 2742, [2743] = 2743, - [2744] = 2693, - [2745] = 2700, + [2744] = 2744, + [2745] = 2745, [2746] = 2746, - [2747] = 2535, - [2748] = 2706, - [2749] = 2749, + [2747] = 2521, + [2748] = 2748, + [2749] = 2544, [2750] = 2750, [2751] = 2751, - [2752] = 2534, - [2753] = 2723, - [2754] = 2754, + [2752] = 2543, + [2753] = 2753, + [2754] = 2252, [2755] = 2755, - [2756] = 2533, + [2756] = 2756, [2757] = 2436, - [2758] = 2758, - [2759] = 2759, + [2758] = 2542, + [2759] = 2373, [2760] = 2760, [2761] = 2761, - [2762] = 2762, - [2763] = 2532, + [2762] = 2509, + [2763] = 2763, [2764] = 2764, - [2765] = 2765, - [2766] = 2531, + [2765] = 2524, + [2766] = 2766, [2767] = 2767, [2768] = 2768, [2769] = 2769, [2770] = 2770, - [2771] = 2771, + [2771] = 2523, [2772] = 2772, [2773] = 2773, - [2774] = 2530, - [2775] = 2775, + [2774] = 2774, + [2775] = 2723, [2776] = 2776, - [2777] = 2529, - [2778] = 2778, + [2777] = 2777, + [2778] = 2627, [2779] = 2779, [2780] = 2780, [2781] = 2781, - [2782] = 2528, - [2783] = 2783, + [2782] = 2782, + [2783] = 2667, [2784] = 2784, - [2785] = 2785, + [2785] = 2651, [2786] = 2786, [2787] = 2787, - [2788] = 2527, - [2789] = 2789, + [2788] = 2788, + [2789] = 2422, [2790] = 2648, [2791] = 2791, [2792] = 2433, [2793] = 2793, - [2794] = 2794, - [2795] = 2526, - [2796] = 2796, + [2794] = 2446, + [2795] = 2525, + [2796] = 2624, [2797] = 2797, [2798] = 2798, - [2799] = 2799, - [2800] = 2525, - [2801] = 2801, - [2802] = 2802, + [2799] = 2666, + [2800] = 2800, + [2801] = 2697, + [2802] = 2704, [2803] = 2803, [2804] = 2804, [2805] = 2805, - [2806] = 2806, - [2807] = 2807, + [2806] = 2763, + [2807] = 2508, [2808] = 2646, [2809] = 2645, - [2810] = 2810, - [2811] = 2811, - [2812] = 2812, + [2810] = 2526, + [2811] = 2776, + [2812] = 2782, [2813] = 2813, [2814] = 2432, [2815] = 2815, - [2816] = 2816, + [2816] = 2800, [2817] = 2817, [2818] = 2644, - [2819] = 2819, - [2820] = 2820, + [2819] = 2772, + [2820] = 2507, [2821] = 2821, - [2822] = 2822, - [2823] = 2791, - [2824] = 2784, + [2822] = 2817, + [2823] = 2823, + [2824] = 2824, [2825] = 2825, [2826] = 2428, [2827] = 2827, - [2828] = 2779, - [2829] = 2776, + [2828] = 2828, + [2829] = 2829, [2830] = 2830, [2831] = 2831, - [2832] = 2832, - [2833] = 2769, - [2834] = 2658, - [2835] = 2762, + [2832] = 2728, + [2833] = 2833, + [2834] = 2834, + [2835] = 2835, [2836] = 2836, [2837] = 2837, - [2838] = 2750, + [2838] = 2838, [2839] = 2839, [2840] = 2840, - [2841] = 2743, + [2841] = 2841, [2842] = 2427, [2843] = 2843, - [2844] = 2738, + [2844] = 2844, [2845] = 2845, - [2846] = 2724, - [2847] = 2847, + [2846] = 2846, + [2847] = 2489, [2848] = 2848, - [2849] = 2717, + [2849] = 2849, [2850] = 2850, [2851] = 2426, [2852] = 2852, - [2853] = 2421, + [2853] = 2750, [2854] = 2854, [2855] = 2855, - [2856] = 2418, + [2856] = 2746, [2857] = 2857, - [2858] = 2411, + [2858] = 2738, [2859] = 2859, [2860] = 2860, - [2861] = 2400, + [2861] = 2718, [2862] = 2862, [2863] = 2863, - [2864] = 2395, + [2864] = 2710, [2865] = 2865, - [2866] = 2393, + [2866] = 2706, [2867] = 2424, - [2868] = 2373, - [2869] = 2370, + [2868] = 2693, + [2869] = 2688, [2870] = 2870, [2871] = 2871, - [2872] = 2365, + [2872] = 2683, [2873] = 2873, - [2874] = 2253, - [2875] = 2355, + [2874] = 2680, + [2875] = 2675, [2876] = 2876, [2877] = 2877, [2878] = 2878, - [2879] = 2349, - [2880] = 2880, + [2879] = 2664, + [2880] = 2491, [2881] = 2881, - [2882] = 2264, - [2883] = 2883, - [2884] = 2262, - [2885] = 2259, + [2882] = 2337, + [2883] = 2733, + [2884] = 2335, + [2885] = 2325, [2886] = 2886, [2887] = 2887, [2888] = 2888, - [2889] = 2240, + [2889] = 2310, [2890] = 2890, - [2891] = 2247, - [2892] = 2245, - [2893] = 2893, - [2894] = 2894, - [2895] = 2236, + [2891] = 2299, + [2892] = 2291, + [2893] = 2538, + [2894] = 2492, + [2895] = 2284, [2896] = 2420, [2897] = 2897, - [2898] = 2898, - [2899] = 2224, - [2900] = 2216, - [2901] = 2211, - [2902] = 2902, + [2898] = 2739, + [2899] = 2272, + [2900] = 2267, + [2901] = 2263, + [2902] = 2493, [2903] = 2903, - [2904] = 2203, - [2905] = 2905, + [2904] = 2257, + [2905] = 2740, [2906] = 2417, [2907] = 2907, - [2908] = 2144, - [2909] = 2140, - [2910] = 2134, + [2908] = 2192, + [2909] = 2183, + [2910] = 2176, [2911] = 2911, - [2912] = 2912, - [2913] = 2087, - [2914] = 2117, + [2912] = 2494, + [2913] = 2169, + [2914] = 2155, [2915] = 2915, - [2916] = 2108, + [2916] = 2137, [2917] = 2416, [2918] = 2918, - [2919] = 2095, - [2920] = 2920, - [2921] = 2090, - [2922] = 2922, - [2923] = 2073, - [2924] = 2075, + [2919] = 2071, + [2920] = 2744, + [2921] = 2073, + [2922] = 2495, + [2923] = 2078, + [2924] = 2081, [2925] = 2925, [2926] = 2926, - [2927] = 2082, - [2928] = 2928, - [2929] = 2084, + [2927] = 2091, + [2928] = 2745, + [2929] = 2093, [2930] = 2633, - [2931] = 2091, - [2932] = 2094, - [2933] = 2100, + [2931] = 2100, + [2932] = 2103, + [2933] = 2106, [2934] = 2934, - [2935] = 2104, - [2936] = 2107, + [2935] = 2109, + [2936] = 2112, [2937] = 2937, [2938] = 2938, - [2939] = 2113, - [2940] = 2817, - [2941] = 2121, + [2939] = 2116, + [2940] = 2940, + [2941] = 2122, [2942] = 2124, - [2943] = 2524, - [2944] = 2944, + [2943] = 2496, + [2944] = 2748, [2945] = 2130, [2946] = 2139, - [2947] = 2816, + [2947] = 2947, [2948] = 2145, [2949] = 2150, - [2950] = 2523, + [2950] = 2950, [2951] = 2156, [2952] = 2165, [2953] = 2171, [2954] = 2954, [2955] = 2955, - [2956] = 2812, - [2957] = 2522, + [2956] = 2541, + [2957] = 2497, [2958] = 2958, [2959] = 2959, [2960] = 2960, - [2961] = 2811, - [2962] = 2521, - [2963] = 2963, + [2961] = 2849, + [2962] = 2540, + [2963] = 2753, [2964] = 2925, [2965] = 2886, [2966] = 2877, [2967] = 2831, - [2968] = 2968, - [2969] = 2520, + [2968] = 2498, + [2969] = 2969, [2970] = 2787, [2971] = 2971, - [2972] = 2972, + [2972] = 2846, [2973] = 2973, [2974] = 2773, - [2975] = 2806, + [2975] = 2503, [2976] = 2412, [2977] = 2977, - [2978] = 2519, - [2979] = 2802, - [2980] = 2518, - [2981] = 2801, - [2982] = 2517, + [2978] = 2539, + [2979] = 2979, + [2980] = 2506, + [2981] = 2844, + [2982] = 2770, [2983] = 2983, - [2984] = 2799, - [2985] = 2516, - [2986] = 2796, - [2987] = 2515, - [2988] = 2988, - [2989] = 2794, + [2984] = 2823, + [2985] = 2841, + [2986] = 2537, + [2987] = 2987, + [2988] = 2838, + [2989] = 2536, [2990] = 2625, - [2991] = 2514, - [2992] = 2992, + [2991] = 2535, + [2992] = 2505, [2993] = 2960, [2994] = 2994, [2995] = 2995, - [2996] = 2233, + [2996] = 2234, [2997] = 2623, - [2998] = 2998, - [2999] = 2789, - [3000] = 2513, - [3001] = 2512, + [2998] = 2835, + [2999] = 2767, + [3000] = 2534, + [3001] = 2834, [3002] = 3002, - [3003] = 3003, - [3004] = 2511, - [3005] = 2076, + [3003] = 2533, + [3004] = 2833, + [3005] = 2084, [3006] = 2959, - [3007] = 2510, + [3007] = 2504, [3008] = 3008, - [3009] = 3009, + [3009] = 2532, [3010] = 3010, - [3011] = 3011, - [3012] = 3012, - [3013] = 3013, - [3014] = 2628, + [3011] = 2829, + [3012] = 2531, + [3013] = 2828, + [3014] = 2837, [3015] = 2958, [3016] = 3016, - [3017] = 3017, + [3017] = 2530, [3018] = 3018, - [3019] = 3019, - [3020] = 3020, + [3019] = 2824, + [3020] = 2529, [3021] = 3021, - [3022] = 3022, + [3022] = 2528, [3023] = 3023, [3024] = 3024, [3025] = 3025, [3026] = 3026, [3027] = 3027, - [3028] = 3028, + [3028] = 2527, [3029] = 3029, [3030] = 3030, [3031] = 3031, @@ -6322,15 +6336,15 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3037] = 3037, [3038] = 3038, [3039] = 3039, - [3040] = 2497, + [3040] = 3040, [3041] = 3041, - [3042] = 2754, + [3042] = 3042, [3043] = 3043, [3044] = 3029, [3045] = 3045, [3046] = 2618, [3047] = 3002, - [3048] = 2498, + [3048] = 3048, [3049] = 2937, [3050] = 2804, [3051] = 2887, @@ -6340,54 +6354,54 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3055] = 3055, [3056] = 2639, [3057] = 2638, - [3058] = 2376, + [3058] = 2377, [3059] = 3059, - [3060] = 2371, + [3060] = 2372, [3061] = 2410, [3062] = 2409, [3063] = 2408, - [3064] = 2322, - [3065] = 2499, - [3066] = 2307, + [3064] = 2323, + [3065] = 3065, + [3066] = 2308, [3067] = 3067, - [3068] = 3068, - [3069] = 2500, - [3070] = 2226, + [3068] = 2764, + [3069] = 3069, + [3070] = 2227, [3071] = 3071, - [3072] = 2759, - [3073] = 2210, + [3072] = 3072, + [3073] = 2211, [3074] = 3074, [3075] = 3075, [3076] = 3076, [3077] = 3077, - [3078] = 2159, - [3079] = 2178, + [3078] = 2210, + [3079] = 2225, [3080] = 3080, [3081] = 3081, - [3082] = 2209, - [3083] = 2785, - [3084] = 2659, - [3085] = 2509, - [3086] = 2701, - [3087] = 2783, - [3088] = 2508, - [3089] = 3076, + [3082] = 2255, + [3083] = 3083, + [3084] = 2871, + [3085] = 3085, + [3086] = 2934, + [3087] = 3087, + [3088] = 3088, + [3089] = 2464, [3090] = 3090, [3091] = 3091, - [3092] = 3091, - [3093] = 2778, - [3094] = 2998, - [3095] = 2507, - [3096] = 2506, - [3097] = 2775, - [3098] = 2505, + [3092] = 2685, + [3093] = 3093, + [3094] = 2423, + [3095] = 3095, + [3096] = 3096, + [3097] = 3097, + [3098] = 3098, [3099] = 3099, - [3100] = 2772, - [3101] = 2504, - [3102] = 2770, - [3103] = 2503, + [3100] = 3100, + [3101] = 3101, + [3102] = 3102, + [3103] = 3103, [3104] = 3016, - [3105] = 2767, + [3105] = 3105, [3106] = 2786, [3107] = 2781, [3108] = 2780, @@ -6395,43 +6409,43 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3110] = 2649, [3111] = 2647, [3112] = 3045, - [3113] = 2375, - [3114] = 2374, - [3115] = 2502, - [3116] = 2311, - [3117] = 2310, - [3118] = 2301, - [3119] = 2300, - [3120] = 2764, - [3121] = 2230, - [3122] = 2229, - [3123] = 2220, - [3124] = 2219, - [3125] = 2214, - [3126] = 2213, - [3127] = 2155, - [3128] = 2157, - [3129] = 2182, - [3130] = 2194, - [3131] = 2201, - [3132] = 2651, - [3133] = 2656, - [3134] = 2675, - [3135] = 2710, - [3136] = 2716, - [3137] = 2170, - [3138] = 3021, - [3139] = 3099, - [3140] = 3090, - [3141] = 2992, - [3142] = 2968, - [3143] = 2797, - [3144] = 2722, - [3145] = 2407, + [3113] = 2376, + [3114] = 2375, + [3115] = 3115, + [3116] = 2312, + [3117] = 2311, + [3118] = 2302, + [3119] = 2301, + [3120] = 3120, + [3121] = 2231, + [3122] = 2230, + [3123] = 2221, + [3124] = 2220, + [3125] = 2215, + [3126] = 2214, + [3127] = 2202, + [3128] = 2203, + [3129] = 2229, + [3130] = 2247, + [3131] = 2250, + [3132] = 2860, + [3133] = 2863, + [3134] = 2890, + [3135] = 2947, + [3136] = 2950, + [3137] = 2382, + [3138] = 2397, + [3139] = 2859, + [3140] = 2679, + [3141] = 2431, + [3142] = 2766, + [3143] = 3025, + [3144] = 2969, + [3145] = 2734, [3146] = 2977, [3147] = 2955, - [3148] = 2501, - [3149] = 2344, + [3148] = 3148, + [3149] = 2345, [3150] = 3075, [3151] = 2830, [3152] = 2751, @@ -6443,660 +6457,508 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(44); - if (lookahead == '!') ADVANCE(69); - if (lookahead == '"') ADVANCE(72); - if (lookahead == '\'') ADVANCE(40); - if (lookahead == '(') ADVANCE(67); - if (lookahead == ')') ADVANCE(47); - if (lookahead == '*') ADVANCE(58); - if (lookahead == '+') ADVANCE(56); - if (lookahead == ',') ADVANCE(50); - if (lookahead == '-') ADVANCE(65); - if (lookahead == '.') ADVANCE(45); - if (lookahead == '/') ADVANCE(60); - if (lookahead == ':') ADVANCE(49); - if (lookahead == '<') ADVANCE(16); - if (lookahead == '=') ADVANCE(54); - if (lookahead == '[') ADVANCE(62); - if (lookahead == ']') ADVANCE(63); + if (eof) ADVANCE(38); + if (lookahead == '!') ADVANCE(62); + if (lookahead == '"') ADVANCE(65); + if (lookahead == '\'') ADVANCE(36); + if (lookahead == '(') ADVANCE(60); + if (lookahead == ')') ADVANCE(41); + if (lookahead == '*') ADVANCE(52); + if (lookahead == '+') ADVANCE(50); + if (lookahead == ',') ADVANCE(44); + if (lookahead == '-') ADVANCE(58); + if (lookahead == '.') ADVANCE(39); + if (lookahead == '/') ADVANCE(53); + if (lookahead == ':') ADVANCE(43); + if (lookahead == '<') ADVANCE(13); + if (lookahead == '=') ADVANCE(48); + if (lookahead == '[') ADVANCE(55); + if (lookahead == ']') ADVANCE(56); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(83); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(41) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(70); + lookahead == 'f') ADVANCE(75); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(63); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(88); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(80); END_STATE(); case 1: - if (lookahead == '!') ADVANCE(69); - if (lookahead == '"') ADVANCE(72); - if (lookahead == '\'') ADVANCE(40); - if (lookahead == '(') ADVANCE(67); - if (lookahead == ')') ADVANCE(47); - if (lookahead == '*') ADVANCE(73); - if (lookahead == ',') ADVANCE(50); - if (lookahead == '-') ADVANCE(65); - if (lookahead == '.') ADVANCE(45); - if (lookahead == '/') ADVANCE(60); - if (lookahead == ':') ADVANCE(49); - if (lookahead == '<') ADVANCE(18); - if (lookahead == '=') ADVANCE(54); - if (lookahead == '[') ADVANCE(62); - if (lookahead == ']') ADVANCE(63); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(2) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(70); + if (lookahead == '!') ADVANCE(62); + if (lookahead == '"') ADVANCE(65); + if (lookahead == '\'') ADVANCE(36); + if (lookahead == ')') ADVANCE(41); + if (lookahead == '*') ADVANCE(52); + if (lookahead == '+') ADVANCE(50); + if (lookahead == ',') ADVANCE(44); + if (lookahead == '-') ADVANCE(57); + if (lookahead == '.') ADVANCE(39); + if (lookahead == '/') ADVANCE(53); + if (lookahead == ':') ADVANCE(43); + if (lookahead == '<') ADVANCE(14); + if (lookahead == '=') ADVANCE(48); + if (lookahead == ']') ADVANCE(56); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(63); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(88); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(80); END_STATE(); case 2: - if (lookahead == '!') ADVANCE(69); - if (lookahead == '"') ADVANCE(72); - if (lookahead == '\'') ADVANCE(40); - if (lookahead == ')') ADVANCE(47); - if (lookahead == '*') ADVANCE(73); - if (lookahead == ',') ADVANCE(50); - if (lookahead == '.') ADVANCE(45); - if (lookahead == '/') ADVANCE(60); - if (lookahead == ':') ADVANCE(49); - if (lookahead == '<') ADVANCE(18); - if (lookahead == '=') ADVANCE(53); - if (lookahead == ']') ADVANCE(63); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(2) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(70); + if (lookahead == '!') ADVANCE(62); + if (lookahead == '"') ADVANCE(65); + if (lookahead == '(') ADVANCE(40); + if (lookahead == ')') ADVANCE(41); + if (lookahead == '*') ADVANCE(52); + if (lookahead == '+') ADVANCE(50); + if (lookahead == ',') ADVANCE(44); + if (lookahead == '-') ADVANCE(51); + if (lookahead == '.') ADVANCE(39); + if (lookahead == '/') ADVANCE(53); + if (lookahead == ':') ADVANCE(43); + if (lookahead == '<') ADVANCE(12); + if (lookahead == '=') ADVANCE(47); + if (lookahead == ']') ADVANCE(56); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(88); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(80); END_STATE(); case 3: - if (lookahead == '"') ADVANCE(72); - if (lookahead == '\'') ADVANCE(40); - if (lookahead == '*') ADVANCE(58); - if (lookahead == '+') ADVANCE(56); - if (lookahead == '-') ADVANCE(57); - if (lookahead == '.') ADVANCE(45); - if (lookahead == '/') ADVANCE(60); - if (lookahead == '<') ADVANCE(18); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(3) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(70); + if (lookahead == '"') ADVANCE(65); + if (lookahead == '\'') ADVANCE(36); + if (lookahead == '(') ADVANCE(60); + if (lookahead == '-') ADVANCE(58); + if (lookahead == '.') ADVANCE(39); + if (lookahead == '<') ADVANCE(14); + if (lookahead == '=') ADVANCE(48); + if (lookahead == '[') ADVANCE(55); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(63); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(88); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(80); END_STATE(); case 4: - if (lookahead == '"') ADVANCE(72); - if (lookahead == '\'') ADVANCE(40); - if (lookahead == '*') ADVANCE(58); - if (lookahead == '+') ADVANCE(56); - if (lookahead == '-') ADVANCE(64); - if (lookahead == '.') ADVANCE(45); - if (lookahead == '/') ADVANCE(60); - if (lookahead == '<') ADVANCE(18); - if (lookahead == '=') ADVANCE(17); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(3) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(70); + if (lookahead == '"') ADVANCE(65); + if (lookahead == '\'') ADVANCE(36); + if (lookahead == ')') ADVANCE(41); + if (lookahead == '*') ADVANCE(52); + if (lookahead == '+') ADVANCE(50); + if (lookahead == '-') ADVANCE(51); + if (lookahead == '.') ADVANCE(39); + if (lookahead == '/') ADVANCE(53); + if (lookahead == '<') ADVANCE(14); + if (lookahead == ']') ADVANCE(56); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(63); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(88); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(80); END_STATE(); case 5: - if (lookahead == '"') ADVANCE(72); - if (lookahead == '(') ADVANCE(46); - if (lookahead == '*') ADVANCE(73); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(85); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(5) + if (lookahead == '"') ADVANCE(65); + if (lookahead == ')') ADVANCE(41); + if (lookahead == '*') ADVANCE(52); + if (lookahead == '+') ADVANCE(50); + if (lookahead == ',') ADVANCE(44); + if (lookahead == '-') ADVANCE(51); + if (lookahead == '.') ADVANCE(39); + if (lookahead == '/') ADVANCE(53); + if (lookahead == '<') ADVANCE(12); + if (lookahead == '=') ADVANCE(47); + if (lookahead == ']') ADVANCE(56); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(74); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(88); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(80); END_STATE(); case 6: - if (lookahead == '"') ADVANCE(72); - if (lookahead == '(') ADVANCE(46); - if (lookahead == '*') ADVANCE(73); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(6) + if (lookahead == '"') ADVANCE(65); + if (lookahead == ')') ADVANCE(41); + if (lookahead == '*') ADVANCE(52); + if (lookahead == '+') ADVANCE(50); + if (lookahead == ',') ADVANCE(44); + if (lookahead == '-') ADVANCE(57); + if (lookahead == '.') ADVANCE(39); + if (lookahead == '/') ADVANCE(53); + if (lookahead == '<') ADVANCE(12); + if (lookahead == '=') ADVANCE(48); + if (lookahead == ']') ADVANCE(56); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(74); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(88); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(80); END_STATE(); case 7: - if (lookahead == '"') ADVANCE(72); - if (lookahead == ')') ADVANCE(47); - if (lookahead == '*') ADVANCE(58); - if (lookahead == '+') ADVANCE(56); - if (lookahead == ',') ADVANCE(50); + if (lookahead == '"') ADVANCE(65); + if (lookahead == '*') ADVANCE(52); + if (lookahead == '+') ADVANCE(50); if (lookahead == '-') ADVANCE(57); - if (lookahead == '.') ADVANCE(45); - if (lookahead == '/') ADVANCE(60); - if (lookahead == '<') ADVANCE(15); - if (lookahead == '=') ADVANCE(53); - if (lookahead == ']') ADVANCE(63); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(7) + if (lookahead == '/') ADVANCE(53); + if (lookahead == '<') ADVANCE(12); + if (lookahead == '=') ADVANCE(48); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(88); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(80); END_STATE(); case 8: - if (lookahead == '"') ADVANCE(72); - if (lookahead == ')') ADVANCE(47); - if (lookahead == '*') ADVANCE(58); - if (lookahead == '+') ADVANCE(56); - if (lookahead == ',') ADVANCE(50); - if (lookahead == '-') ADVANCE(64); - if (lookahead == '.') ADVANCE(45); - if (lookahead == '/') ADVANCE(60); - if (lookahead == '<') ADVANCE(15); - if (lookahead == '=') ADVANCE(54); - if (lookahead == ']') ADVANCE(63); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(7) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(88); + if (lookahead == '"') ADVANCE(65); + if (lookahead == ',') ADVANCE(44); + if (lookahead == '.') ADVANCE(39); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(20); END_STATE(); case 9: - if (lookahead == '"') ADVANCE(72); - if (lookahead == '*') ADVANCE(73); - if (lookahead == ',') ADVANCE(50); - if (lookahead == '-') ADVANCE(64); - if (lookahead == '.') ADVANCE(45); - if (lookahead == '=') ADVANCE(54); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(82); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(10) + if (lookahead == '"') ADVANCE(65); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(77); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(88); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(80); END_STATE(); case 10: - if (lookahead == '"') ADVANCE(72); - if (lookahead == '*') ADVANCE(73); - if (lookahead == ',') ADVANCE(50); - if (lookahead == '.') ADVANCE(45); - if (lookahead == '=') ADVANCE(53); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(82); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(10) - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(88); + if (lookahead == '\'') ADVANCE(64); + if (lookahead != 0) ADVANCE(10); END_STATE(); case 11: - if (lookahead == '"') ADVANCE(72); - if (lookahead == '*') ADVANCE(73); - if (lookahead == ',') ADVANCE(50); - if (lookahead == '.') ADVANCE(45); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(24); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(11) + if (lookahead == '-') ADVANCE(28); END_STATE(); case 12: - if (lookahead == '"') ADVANCE(72); - if (lookahead == '*') ADVANCE(59); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(12) + if (lookahead == '>') ADVANCE(49); END_STATE(); case 13: - if (lookahead == '\'') ADVANCE(71); - if (lookahead != 0) ADVANCE(13); - END_STATE(); - case 14: - if (lookahead == '-') ADVANCE(33); - END_STATE(); - case 15: - if (lookahead == '>') ADVANCE(55); - END_STATE(); - case 16: - if (lookahead == '>') ADVANCE(55); + if (lookahead == '>') ADVANCE(49); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(18); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(14); END_STATE(); - case 17: - if (lookahead == '>') ADVANCE(66); - END_STATE(); - case 18: - if (lookahead == '>') ADVANCE(89); + case 14: + if (lookahead == '>') ADVANCE(81); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(18); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(14); END_STATE(); - case 19: + case 15: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(21); + lookahead == 'a') ADVANCE(17); END_STATE(); - case 20: + case 16: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(31); + lookahead == 'b') ADVANCE(27); END_STATE(); - case 21: + case 17: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(14); + lookahead == 'd') ADVANCE(11); END_STATE(); - case 22: + case 18: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(36); + lookahead == 'd') ADVANCE(32); END_STATE(); - case 23: + case 19: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(37); + lookahead == 'e') ADVANCE(33); END_STATE(); - case 24: + case 20: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(19); + lookahead == 'e') ADVANCE(15); END_STATE(); - case 25: + case 21: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(32); + lookahead == 'h') ADVANCE(29); END_STATE(); - case 26: + case 22: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(35); + lookahead == 'l') ADVANCE(31); END_STATE(); - case 27: + case 23: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(39); + lookahead == 'l') ADVANCE(35); END_STATE(); - case 28: + case 24: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(20); + lookahead == 'm') ADVANCE(16); END_STATE(); - case 29: + case 25: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(23); + lookahead == 'm') ADVANCE(19); END_STATE(); - case 30: + case 26: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(27); + lookahead == 'n') ADVANCE(23); END_STATE(); - case 31: + case 27: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(26); + lookahead == 'o') ADVANCE(22); END_STATE(); - case 32: + case 28: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(22); + lookahead == 'o') ADVANCE(26); END_STATE(); - case 33: + case 29: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(30); + lookahead == 'o') ADVANCE(18); END_STATE(); - case 34: + case 30: if (lookahead == 'S' || - lookahead == 's') ADVANCE(38); + lookahead == 's') ADVANCE(34); END_STATE(); - case 35: + case 31: if (lookahead == 'S' || - lookahead == 's') ADVANCE(52); + lookahead == 's') ADVANCE(46); END_STATE(); - case 36: + case 32: if (lookahead == 'S' || - lookahead == 's') ADVANCE(48); + lookahead == 's') ADVANCE(42); END_STATE(); - case 37: + case 33: if (lookahead == 'T' || - lookahead == 't') ADVANCE(25); + lookahead == 't') ADVANCE(21); END_STATE(); - case 38: + case 34: if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(28); + lookahead == 'y') ADVANCE(24); END_STATE(); - case 39: + case 35: if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(51); + lookahead == 'y') ADVANCE(45); END_STATE(); - case 40: + case 36: if (lookahead != 0 && - lookahead != '\'') ADVANCE(13); - END_STATE(); - case 41: - if (eof) ADVANCE(44); - if (lookahead == '!') ADVANCE(69); - if (lookahead == '"') ADVANCE(72); - if (lookahead == '\'') ADVANCE(40); - if (lookahead == '(') ADVANCE(46); - if (lookahead == ')') ADVANCE(47); - if (lookahead == '*') ADVANCE(58); - if (lookahead == '+') ADVANCE(56); - if (lookahead == ',') ADVANCE(50); - if (lookahead == '-') ADVANCE(57); - if (lookahead == '.') ADVANCE(45); - if (lookahead == '/') ADVANCE(60); - if (lookahead == ':') ADVANCE(49); - if (lookahead == '<') ADVANCE(16); - if (lookahead == '=') ADVANCE(53); - if (lookahead == ']') ADVANCE(63); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(83); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(41) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(70); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(88); + lookahead != '\'') ADVANCE(10); END_STATE(); - case 42: - if (eof) ADVANCE(44); - if (lookahead == '"') ADVANCE(72); - if (lookahead == '\'') ADVANCE(40); - if (lookahead == '(') ADVANCE(67); - if (lookahead == ')') ADVANCE(47); - if (lookahead == '*') ADVANCE(73); - if (lookahead == ',') ADVANCE(50); - if (lookahead == '.') ADVANCE(45); - if (lookahead == ':') ADVANCE(49); - if (lookahead == '<') ADVANCE(18); - if (lookahead == '=') ADVANCE(53); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(83); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(43) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(70); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(88); - END_STATE(); - case 43: - if (eof) ADVANCE(44); - if (lookahead == '"') ADVANCE(72); - if (lookahead == '\'') ADVANCE(40); - if (lookahead == ')') ADVANCE(47); - if (lookahead == '*') ADVANCE(73); - if (lookahead == ',') ADVANCE(50); - if (lookahead == '.') ADVANCE(45); - if (lookahead == ':') ADVANCE(49); - if (lookahead == '<') ADVANCE(18); - if (lookahead == '=') ADVANCE(53); + case 37: + if (eof) ADVANCE(38); + if (lookahead == '"') ADVANCE(65); + if (lookahead == '(') ADVANCE(60); + if (lookahead == ':') ADVANCE(43); + if (lookahead == '<') ADVANCE(14); + if (lookahead == '=') ADVANCE(47); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(83); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(43) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(70); + lookahead == 'f') ADVANCE(75); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(88); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(80); END_STATE(); - case 44: + case 38: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 45: + case 39: ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); - case 46: + case 40: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 47: + case 41: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); - case 48: + case 42: ACCEPT_TOKEN(aux_sym_class_constructor_declaration_token1); END_STATE(); - case 49: + case 43: ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); - case 50: + case 44: ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); - case 51: + case 45: ACCEPT_TOKEN(aux_sym__data_object_typing_normal_token5); END_STATE(); - case 52: + case 46: ACCEPT_TOKEN(aux_sym_field_symbol_declaration_token1); END_STATE(); - case 53: + case 47: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); - case 54: + case 48: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '>') ADVANCE(66); + if (lookahead == '>') ADVANCE(59); END_STATE(); - case 55: + case 49: ACCEPT_TOKEN(anon_sym_LT_GT); END_STATE(); - case 56: + case 50: ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); - case 57: + case 51: ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); - case 58: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(61); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(73); - END_STATE(); - case 59: + case 52: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(73); + if (lookahead == '*') ADVANCE(54); END_STATE(); - case 60: + case 53: ACCEPT_TOKEN(anon_sym_SLASH); END_STATE(); - case 61: + case 54: ACCEPT_TOKEN(anon_sym_STAR_STAR); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(73); END_STATE(); - case 62: + case 55: ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); - case 63: + case 56: ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); - case 64: + case 57: ACCEPT_TOKEN(anon_sym_DASH2); END_STATE(); - case 65: + case 58: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '>') ADVANCE(68); + if (lookahead == '>') ADVANCE(61); END_STATE(); - case 66: + case 59: ACCEPT_TOKEN(anon_sym_EQ_GT); END_STATE(); - case 67: + case 60: ACCEPT_TOKEN(anon_sym_LPAREN2); END_STATE(); - case 68: + case 61: ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); - case 69: + case 62: ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); - case 70: + case 63: ACCEPT_TOKEN(sym_numeric_literal); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(70); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(63); END_STATE(); - case 71: + case 64: ACCEPT_TOKEN(sym_character_literal); END_STATE(); - case 72: + case 65: ACCEPT_TOKEN(sym_eol_comment); if (lookahead != 0 && - lookahead != '\n') ADVANCE(72); + lookahead != '\n') ADVANCE(65); END_STATE(); - case 73: - ACCEPT_TOKEN(sym_bol_comment); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(73); - END_STATE(); - case 74: + case 66: ACCEPT_TOKEN(sym_name); - if (lookahead == '-') ADVANCE(34); + if (lookahead == '-') ADVANCE(30); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(88); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(80); END_STATE(); - case 75: + case 67: ACCEPT_TOKEN(sym_name); - if (lookahead == '-') ADVANCE(29); + if (lookahead == '-') ADVANCE(25); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(88); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(80); END_STATE(); - case 76: + case 68: ACCEPT_TOKEN(sym_name); - if (lookahead == '-') ADVANCE(33); + if (lookahead == '-') ADVANCE(28); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(88); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(80); END_STATE(); - case 77: + case 69: ACCEPT_TOKEN(sym_name); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(87); + lookahead == 'a') ADVANCE(78); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(88); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(80); END_STATE(); - case 78: + case 70: ACCEPT_TOKEN(sym_name); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(80); + lookahead == 'a') ADVANCE(72); if (('0' <= lookahead && lookahead <= '9') || ('B' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(88); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(80); END_STATE(); - case 79: + case 71: ACCEPT_TOKEN(sym_name); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(74); + lookahead == 'd') ADVANCE(66); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(88); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(80); END_STATE(); - case 80: + case 72: ACCEPT_TOKEN(sym_name); if (lookahead == 'D' || - lookahead == 'd') ADVANCE(76); + lookahead == 'd') ADVANCE(68); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(88); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(80); END_STATE(); - case 81: + case 73: ACCEPT_TOKEN(sym_name); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(84); + lookahead == 'e') ADVANCE(76); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(88); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(80); END_STATE(); - case 82: + case 74: ACCEPT_TOKEN(sym_name); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(78); + lookahead == 'e') ADVANCE(70); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(88); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(80); END_STATE(); - case 83: + case 75: ACCEPT_TOKEN(sym_name); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(81); + lookahead == 'i') ADVANCE(73); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(88); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(80); END_STATE(); - case 84: + case 76: ACCEPT_TOKEN(sym_name); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(79); + lookahead == 'l') ADVANCE(71); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(88); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(80); END_STATE(); - case 85: + case 77: ACCEPT_TOKEN(sym_name); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(77); + lookahead == 'l') ADVANCE(69); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(88); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(80); END_STATE(); - case 86: + case 78: ACCEPT_TOKEN(sym_name); if (lookahead == 'S' || - lookahead == 's') ADVANCE(75); + lookahead == 's') ADVANCE(79); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(88); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(80); END_STATE(); - case 87: + case 79: ACCEPT_TOKEN(sym_name); if (lookahead == 'S' || - lookahead == 's') ADVANCE(86); + lookahead == 's') ADVANCE(67); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(88); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(80); END_STATE(); - case 88: + case 80: ACCEPT_TOKEN(sym_name); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(88); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(80); END_STATE(); - case 89: + case 81: ACCEPT_TOKEN(sym_field_symbol_name); END_STATE(); default: @@ -7151,10 +7013,6 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { lookahead == 'v') ADVANCE(22); if (lookahead == 'W' || lookahead == 'w') ADVANCE(23); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(0) END_STATE(); case 1: if (lookahead == 'I') ADVANCE(24); @@ -9212,3160 +9070,3184 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { } static const TSLexMode ts_lex_modes[STATE_COUNT] = { - [0] = {.lex_state = 0}, - [1] = {.lex_state = 42}, - [2] = {.lex_state = 42}, - [3] = {.lex_state = 42}, - [4] = {.lex_state = 42}, - [5] = {.lex_state = 42}, - [6] = {.lex_state = 42}, - [7] = {.lex_state = 42}, - [8] = {.lex_state = 42}, - [9] = {.lex_state = 42}, - [10] = {.lex_state = 42}, - [11] = {.lex_state = 42}, - [12] = {.lex_state = 42}, - [13] = {.lex_state = 42}, - [14] = {.lex_state = 42}, - [15] = {.lex_state = 42}, - [16] = {.lex_state = 42}, - [17] = {.lex_state = 42}, - [18] = {.lex_state = 42}, - [19] = {.lex_state = 42}, - [20] = {.lex_state = 42}, - [21] = {.lex_state = 42}, - [22] = {.lex_state = 42}, - [23] = {.lex_state = 42}, - [24] = {.lex_state = 42}, - [25] = {.lex_state = 42}, - [26] = {.lex_state = 42}, - [27] = {.lex_state = 42}, - [28] = {.lex_state = 42}, - [29] = {.lex_state = 42}, - [30] = {.lex_state = 42}, - [31] = {.lex_state = 42}, - [32] = {.lex_state = 42}, - [33] = {.lex_state = 42}, - [34] = {.lex_state = 42}, - [35] = {.lex_state = 42}, - [36] = {.lex_state = 42}, - [37] = {.lex_state = 42}, - [38] = {.lex_state = 8}, - [39] = {.lex_state = 8}, - [40] = {.lex_state = 8}, - [41] = {.lex_state = 42}, - [42] = {.lex_state = 42}, - [43] = {.lex_state = 42}, - [44] = {.lex_state = 42}, - [45] = {.lex_state = 42}, - [46] = {.lex_state = 42}, - [47] = {.lex_state = 42}, - [48] = {.lex_state = 42}, - [49] = {.lex_state = 42}, - [50] = {.lex_state = 42}, - [51] = {.lex_state = 42}, - [52] = {.lex_state = 42}, - [53] = {.lex_state = 42}, - [54] = {.lex_state = 42}, - [55] = {.lex_state = 42}, - [56] = {.lex_state = 42}, - [57] = {.lex_state = 42}, - [58] = {.lex_state = 42}, - [59] = {.lex_state = 42}, - [60] = {.lex_state = 42}, - [61] = {.lex_state = 42}, - [62] = {.lex_state = 42}, - [63] = {.lex_state = 42}, - [64] = {.lex_state = 42}, - [65] = {.lex_state = 42}, - [66] = {.lex_state = 42}, - [67] = {.lex_state = 42}, - [68] = {.lex_state = 42}, - [69] = {.lex_state = 42}, - [70] = {.lex_state = 42}, - [71] = {.lex_state = 42}, - [72] = {.lex_state = 42}, - [73] = {.lex_state = 42}, - [74] = {.lex_state = 42}, - [75] = {.lex_state = 42}, - [76] = {.lex_state = 42}, - [77] = {.lex_state = 42}, - [78] = {.lex_state = 42}, - [79] = {.lex_state = 42}, - [80] = {.lex_state = 42}, - [81] = {.lex_state = 8}, - [82] = {.lex_state = 42}, - [83] = {.lex_state = 42}, - [84] = {.lex_state = 42}, - [85] = {.lex_state = 42}, - [86] = {.lex_state = 42}, - [87] = {.lex_state = 42}, - [88] = {.lex_state = 42}, - [89] = {.lex_state = 42}, - [90] = {.lex_state = 42}, - [91] = {.lex_state = 42}, - [92] = {.lex_state = 42}, - [93] = {.lex_state = 42}, - [94] = {.lex_state = 42}, - [95] = {.lex_state = 42}, - [96] = {.lex_state = 42}, - [97] = {.lex_state = 42}, - [98] = {.lex_state = 42}, - [99] = {.lex_state = 42}, - [100] = {.lex_state = 42}, - [101] = {.lex_state = 42}, - [102] = {.lex_state = 42}, - [103] = {.lex_state = 42}, - [104] = {.lex_state = 7}, - [105] = {.lex_state = 7}, - [106] = {.lex_state = 42}, - [107] = {.lex_state = 42}, - [108] = {.lex_state = 42}, - [109] = {.lex_state = 42}, - [110] = {.lex_state = 42}, - [111] = {.lex_state = 42}, - [112] = {.lex_state = 42}, - [113] = {.lex_state = 42}, - [114] = {.lex_state = 42}, - [115] = {.lex_state = 42}, - [116] = {.lex_state = 42}, - [117] = {.lex_state = 42}, - [118] = {.lex_state = 42}, - [119] = {.lex_state = 42}, - [120] = {.lex_state = 42}, - [121] = {.lex_state = 42}, - [122] = {.lex_state = 42}, - [123] = {.lex_state = 42}, - [124] = {.lex_state = 42}, - [125] = {.lex_state = 42}, - [126] = {.lex_state = 42}, - [127] = {.lex_state = 42}, - [128] = {.lex_state = 42}, - [129] = {.lex_state = 42}, - [130] = {.lex_state = 42}, - [131] = {.lex_state = 42}, - [132] = {.lex_state = 42}, - [133] = {.lex_state = 42}, - [134] = {.lex_state = 42}, - [135] = {.lex_state = 42}, - [136] = {.lex_state = 42}, - [137] = {.lex_state = 42}, - [138] = {.lex_state = 42}, - [139] = {.lex_state = 42}, - [140] = {.lex_state = 42}, - [141] = {.lex_state = 42}, - [142] = {.lex_state = 42}, - [143] = {.lex_state = 42}, - [144] = {.lex_state = 42}, - [145] = {.lex_state = 42}, - [146] = {.lex_state = 42}, - [147] = {.lex_state = 42}, - [148] = {.lex_state = 42}, - [149] = {.lex_state = 42}, - [150] = {.lex_state = 42}, - [151] = {.lex_state = 42}, - [152] = {.lex_state = 42}, - [153] = {.lex_state = 42}, - [154] = {.lex_state = 42}, - [155] = {.lex_state = 42}, - [156] = {.lex_state = 42}, - [157] = {.lex_state = 42}, - [158] = {.lex_state = 42}, - [159] = {.lex_state = 42}, - [160] = {.lex_state = 42}, - [161] = {.lex_state = 42}, - [162] = {.lex_state = 42}, - [163] = {.lex_state = 42}, - [164] = {.lex_state = 42}, - [165] = {.lex_state = 42}, - [166] = {.lex_state = 42}, - [167] = {.lex_state = 42}, - [168] = {.lex_state = 42}, - [169] = {.lex_state = 42}, - [170] = {.lex_state = 42}, - [171] = {.lex_state = 42}, - [172] = {.lex_state = 42}, - [173] = {.lex_state = 42}, - [174] = {.lex_state = 42}, - [175] = {.lex_state = 42}, - [176] = {.lex_state = 42}, - [177] = {.lex_state = 42}, - [178] = {.lex_state = 42}, - [179] = {.lex_state = 42}, - [180] = {.lex_state = 42}, - [181] = {.lex_state = 42}, - [182] = {.lex_state = 42}, - [183] = {.lex_state = 42}, - [184] = {.lex_state = 42}, - [185] = {.lex_state = 42}, - [186] = {.lex_state = 42}, - [187] = {.lex_state = 42}, - [188] = {.lex_state = 42}, - [189] = {.lex_state = 42}, - [190] = {.lex_state = 42}, - [191] = {.lex_state = 42}, - [192] = {.lex_state = 42}, - [193] = {.lex_state = 42}, - [194] = {.lex_state = 42}, - [195] = {.lex_state = 42}, - [196] = {.lex_state = 42}, - [197] = {.lex_state = 42}, - [198] = {.lex_state = 42}, - [199] = {.lex_state = 42}, - [200] = {.lex_state = 42}, - [201] = {.lex_state = 42}, - [202] = {.lex_state = 42}, - [203] = {.lex_state = 42}, - [204] = {.lex_state = 42}, - [205] = {.lex_state = 42}, - [206] = {.lex_state = 42}, - [207] = {.lex_state = 42}, - [208] = {.lex_state = 42}, - [209] = {.lex_state = 42}, - [210] = {.lex_state = 42}, - [211] = {.lex_state = 42}, - [212] = {.lex_state = 42}, - [213] = {.lex_state = 42}, - [214] = {.lex_state = 42}, - [215] = {.lex_state = 42}, - [216] = {.lex_state = 42}, - [217] = {.lex_state = 42}, - [218] = {.lex_state = 42}, - [219] = {.lex_state = 42}, - [220] = {.lex_state = 42}, - [221] = {.lex_state = 42}, - [222] = {.lex_state = 42}, - [223] = {.lex_state = 42}, - [224] = {.lex_state = 42}, - [225] = {.lex_state = 42}, - [226] = {.lex_state = 42}, - [227] = {.lex_state = 42}, - [228] = {.lex_state = 42}, - [229] = {.lex_state = 42}, - [230] = {.lex_state = 42}, - [231] = {.lex_state = 42}, - [232] = {.lex_state = 42}, - [233] = {.lex_state = 42}, - [234] = {.lex_state = 42}, - [235] = {.lex_state = 42}, - [236] = {.lex_state = 42}, - [237] = {.lex_state = 42}, - [238] = {.lex_state = 42}, - [239] = {.lex_state = 8}, - [240] = {.lex_state = 42}, - [241] = {.lex_state = 42}, - [242] = {.lex_state = 42}, - [243] = {.lex_state = 42}, - [244] = {.lex_state = 42}, - [245] = {.lex_state = 42}, - [246] = {.lex_state = 42}, - [247] = {.lex_state = 42}, - [248] = {.lex_state = 42}, - [249] = {.lex_state = 42}, - [250] = {.lex_state = 42}, - [251] = {.lex_state = 42}, - [252] = {.lex_state = 42}, - [253] = {.lex_state = 42}, - [254] = {.lex_state = 42}, - [255] = {.lex_state = 42}, - [256] = {.lex_state = 42}, - [257] = {.lex_state = 42}, - [258] = {.lex_state = 42}, - [259] = {.lex_state = 42}, - [260] = {.lex_state = 42}, - [261] = {.lex_state = 42}, - [262] = {.lex_state = 42}, - [263] = {.lex_state = 42}, - [264] = {.lex_state = 7}, - [265] = {.lex_state = 7}, - [266] = {.lex_state = 42}, - [267] = {.lex_state = 42}, - [268] = {.lex_state = 42}, - [269] = {.lex_state = 42}, - [270] = {.lex_state = 42}, - [271] = {.lex_state = 42}, - [272] = {.lex_state = 42}, - [273] = {.lex_state = 42}, - [274] = {.lex_state = 42}, - [275] = {.lex_state = 42}, - [276] = {.lex_state = 42}, - [277] = {.lex_state = 42}, - [278] = {.lex_state = 42}, - [279] = {.lex_state = 42}, - [280] = {.lex_state = 42}, - [281] = {.lex_state = 42}, - [282] = {.lex_state = 42}, - [283] = {.lex_state = 42}, - [284] = {.lex_state = 42}, - [285] = {.lex_state = 42}, - [286] = {.lex_state = 42}, - [287] = {.lex_state = 42}, - [288] = {.lex_state = 42}, - [289] = {.lex_state = 42}, - [290] = {.lex_state = 42}, - [291] = {.lex_state = 42}, - [292] = {.lex_state = 42}, - [293] = {.lex_state = 42}, - [294] = {.lex_state = 42}, - [295] = {.lex_state = 42}, - [296] = {.lex_state = 42}, - [297] = {.lex_state = 42}, - [298] = {.lex_state = 42}, - [299] = {.lex_state = 42}, - [300] = {.lex_state = 42}, - [301] = {.lex_state = 42}, - [302] = {.lex_state = 42}, - [303] = {.lex_state = 42}, - [304] = {.lex_state = 42}, - [305] = {.lex_state = 42}, - [306] = {.lex_state = 42}, - [307] = {.lex_state = 42}, - [308] = {.lex_state = 42}, - [309] = {.lex_state = 42}, - [310] = {.lex_state = 42}, - [311] = {.lex_state = 42}, - [312] = {.lex_state = 42}, - [313] = {.lex_state = 42}, - [314] = {.lex_state = 42}, - [315] = {.lex_state = 42}, - [316] = {.lex_state = 42}, - [317] = {.lex_state = 42}, - [318] = {.lex_state = 42}, - [319] = {.lex_state = 42}, - [320] = {.lex_state = 42}, - [321] = {.lex_state = 42}, - [322] = {.lex_state = 42}, - [323] = {.lex_state = 42}, - [324] = {.lex_state = 42}, - [325] = {.lex_state = 42}, - [326] = {.lex_state = 42}, - [327] = {.lex_state = 42}, - [328] = {.lex_state = 42}, - [329] = {.lex_state = 42}, - [330] = {.lex_state = 42}, - [331] = {.lex_state = 42}, - [332] = {.lex_state = 42}, - [333] = {.lex_state = 42}, - [334] = {.lex_state = 42}, - [335] = {.lex_state = 42}, - [336] = {.lex_state = 42}, - [337] = {.lex_state = 42}, - [338] = {.lex_state = 42}, - [339] = {.lex_state = 42}, - [340] = {.lex_state = 42}, - [341] = {.lex_state = 42}, - [342] = {.lex_state = 42}, - [343] = {.lex_state = 42}, - [344] = {.lex_state = 42}, - [345] = {.lex_state = 42}, - [346] = {.lex_state = 42}, - [347] = {.lex_state = 42}, - [348] = {.lex_state = 42}, - [349] = {.lex_state = 42}, - [350] = {.lex_state = 42}, - [351] = {.lex_state = 42}, - [352] = {.lex_state = 42}, - [353] = {.lex_state = 42}, - [354] = {.lex_state = 42}, - [355] = {.lex_state = 42}, - [356] = {.lex_state = 42}, - [357] = {.lex_state = 42}, - [358] = {.lex_state = 42}, - [359] = {.lex_state = 42}, - [360] = {.lex_state = 42}, - [361] = {.lex_state = 42}, - [362] = {.lex_state = 42}, - [363] = {.lex_state = 42}, - [364] = {.lex_state = 42}, - [365] = {.lex_state = 42}, - [366] = {.lex_state = 42}, - [367] = {.lex_state = 42}, - [368] = {.lex_state = 42}, - [369] = {.lex_state = 42}, - [370] = {.lex_state = 42}, - [371] = {.lex_state = 42}, - [372] = {.lex_state = 42}, - [373] = {.lex_state = 42}, - [374] = {.lex_state = 42}, - [375] = {.lex_state = 42}, - [376] = {.lex_state = 42}, - [377] = {.lex_state = 42}, - [378] = {.lex_state = 42}, - [379] = {.lex_state = 42}, - [380] = {.lex_state = 42}, - [381] = {.lex_state = 42}, - [382] = {.lex_state = 42}, - [383] = {.lex_state = 42}, - [384] = {.lex_state = 42}, - [385] = {.lex_state = 42}, - [386] = {.lex_state = 42}, - [387] = {.lex_state = 42}, - [388] = {.lex_state = 42}, - [389] = {.lex_state = 42}, - [390] = {.lex_state = 42}, - [391] = {.lex_state = 42}, - [392] = {.lex_state = 42}, - [393] = {.lex_state = 42}, - [394] = {.lex_state = 42}, - [395] = {.lex_state = 42}, - [396] = {.lex_state = 42}, - [397] = {.lex_state = 42}, - [398] = {.lex_state = 42}, - [399] = {.lex_state = 42}, - [400] = {.lex_state = 42}, - [401] = {.lex_state = 42}, - [402] = {.lex_state = 42}, - [403] = {.lex_state = 42}, - [404] = {.lex_state = 42}, - [405] = {.lex_state = 42}, - [406] = {.lex_state = 42}, - [407] = {.lex_state = 42}, - [408] = {.lex_state = 42}, - [409] = {.lex_state = 42}, - [410] = {.lex_state = 42}, - [411] = {.lex_state = 42}, - [412] = {.lex_state = 42}, - [413] = {.lex_state = 42}, - [414] = {.lex_state = 42}, - [415] = {.lex_state = 42}, - [416] = {.lex_state = 42}, - [417] = {.lex_state = 42}, - [418] = {.lex_state = 42}, - [419] = {.lex_state = 42}, - [420] = {.lex_state = 42}, - [421] = {.lex_state = 42}, - [422] = {.lex_state = 42}, - [423] = {.lex_state = 42}, - [424] = {.lex_state = 42}, - [425] = {.lex_state = 42}, - [426] = {.lex_state = 42}, - [427] = {.lex_state = 42}, - [428] = {.lex_state = 42}, - [429] = {.lex_state = 42}, - [430] = {.lex_state = 42}, - [431] = {.lex_state = 42}, - [432] = {.lex_state = 42}, - [433] = {.lex_state = 42}, - [434] = {.lex_state = 42}, - [435] = {.lex_state = 42}, - [436] = {.lex_state = 42}, - [437] = {.lex_state = 42}, - [438] = {.lex_state = 42}, - [439] = {.lex_state = 42}, - [440] = {.lex_state = 42}, - [441] = {.lex_state = 42}, - [442] = {.lex_state = 42}, - [443] = {.lex_state = 42}, - [444] = {.lex_state = 42}, - [445] = {.lex_state = 42}, - [446] = {.lex_state = 42}, - [447] = {.lex_state = 42}, - [448] = {.lex_state = 42}, - [449] = {.lex_state = 42}, - [450] = {.lex_state = 42}, - [451] = {.lex_state = 42}, - [452] = {.lex_state = 42}, - [453] = {.lex_state = 1}, - [454] = {.lex_state = 1}, - [455] = {.lex_state = 1}, - [456] = {.lex_state = 1}, - [457] = {.lex_state = 1}, - [458] = {.lex_state = 1}, - [459] = {.lex_state = 1}, - [460] = {.lex_state = 1}, - [461] = {.lex_state = 1}, - [462] = {.lex_state = 5}, - [463] = {.lex_state = 1}, - [464] = {.lex_state = 1}, - [465] = {.lex_state = 1}, - [466] = {.lex_state = 1}, - [467] = {.lex_state = 1}, - [468] = {.lex_state = 1}, - [469] = {.lex_state = 1}, - [470] = {.lex_state = 1}, - [471] = {.lex_state = 5}, - [472] = {.lex_state = 5}, - [473] = {.lex_state = 7}, - [474] = {.lex_state = 4}, - [475] = {.lex_state = 5}, - [476] = {.lex_state = 8}, - [477] = {.lex_state = 5}, - [478] = {.lex_state = 4}, - [479] = {.lex_state = 5}, - [480] = {.lex_state = 1}, - [481] = {.lex_state = 4}, - [482] = {.lex_state = 1}, - [483] = {.lex_state = 8}, - [484] = {.lex_state = 4}, - [485] = {.lex_state = 1}, - [486] = {.lex_state = 1}, - [487] = {.lex_state = 1}, - [488] = {.lex_state = 5}, - [489] = {.lex_state = 1}, - [490] = {.lex_state = 1}, - [491] = {.lex_state = 1}, - [492] = {.lex_state = 1}, - [493] = {.lex_state = 1}, - [494] = {.lex_state = 1}, - [495] = {.lex_state = 1}, - [496] = {.lex_state = 1}, - [497] = {.lex_state = 1}, - [498] = {.lex_state = 4}, - [499] = {.lex_state = 1}, - [500] = {.lex_state = 1}, - [501] = {.lex_state = 1}, - [502] = {.lex_state = 8}, - [503] = {.lex_state = 1}, - [504] = {.lex_state = 1}, - [505] = {.lex_state = 1}, - [506] = {.lex_state = 3}, - [507] = {.lex_state = 3}, - [508] = {.lex_state = 8}, - [509] = {.lex_state = 3}, - [510] = {.lex_state = 1}, - [511] = {.lex_state = 3}, - [512] = {.lex_state = 1}, - [513] = {.lex_state = 7}, - [514] = {.lex_state = 1}, - [515] = {.lex_state = 1}, - [516] = {.lex_state = 3}, - [517] = {.lex_state = 1}, - [518] = {.lex_state = 1}, - [519] = {.lex_state = 1}, - [520] = {.lex_state = 7}, - [521] = {.lex_state = 7}, - [522] = {.lex_state = 1}, - [523] = {.lex_state = 1}, - [524] = {.lex_state = 7}, - [525] = {.lex_state = 1}, - [526] = {.lex_state = 1}, - [527] = {.lex_state = 1}, - [528] = {.lex_state = 1}, - [529] = {.lex_state = 1}, - [530] = {.lex_state = 1}, - [531] = {.lex_state = 1}, - [532] = {.lex_state = 1}, - [533] = {.lex_state = 1}, - [534] = {.lex_state = 1}, - [535] = {.lex_state = 1}, - [536] = {.lex_state = 7}, - [537] = {.lex_state = 1}, - [538] = {.lex_state = 1}, - [539] = {.lex_state = 1}, - [540] = {.lex_state = 7}, - [541] = {.lex_state = 1}, - [542] = {.lex_state = 1}, - [543] = {.lex_state = 1}, - [544] = {.lex_state = 1}, - [545] = {.lex_state = 1}, - [546] = {.lex_state = 1}, - [547] = {.lex_state = 1}, - [548] = {.lex_state = 7}, - [549] = {.lex_state = 1}, - [550] = {.lex_state = 1}, - [551] = {.lex_state = 1}, - [552] = {.lex_state = 1}, - [553] = {.lex_state = 1}, - [554] = {.lex_state = 7}, - [555] = {.lex_state = 1}, - [556] = {.lex_state = 1}, - [557] = {.lex_state = 1}, - [558] = {.lex_state = 7}, - [559] = {.lex_state = 1}, - [560] = {.lex_state = 1}, - [561] = {.lex_state = 1}, - [562] = {.lex_state = 1}, - [563] = {.lex_state = 1}, - [564] = {.lex_state = 7}, - [565] = {.lex_state = 1}, - [566] = {.lex_state = 1}, - [567] = {.lex_state = 1}, - [568] = {.lex_state = 7}, - [569] = {.lex_state = 1}, - [570] = {.lex_state = 1}, - [571] = {.lex_state = 1}, - [572] = {.lex_state = 1}, - [573] = {.lex_state = 1}, - [574] = {.lex_state = 1}, - [575] = {.lex_state = 1}, - [576] = {.lex_state = 1}, - [577] = {.lex_state = 1}, - [578] = {.lex_state = 1}, - [579] = {.lex_state = 1}, - [580] = {.lex_state = 5}, - [581] = {.lex_state = 7}, - [582] = {.lex_state = 1}, - [583] = {.lex_state = 1}, - [584] = {.lex_state = 1}, - [585] = {.lex_state = 1}, - [586] = {.lex_state = 1}, - [587] = {.lex_state = 5}, - [588] = {.lex_state = 1}, - [589] = {.lex_state = 1}, - [590] = {.lex_state = 1}, - [591] = {.lex_state = 1}, - [592] = {.lex_state = 7}, - [593] = {.lex_state = 1}, - [594] = {.lex_state = 5}, - [595] = {.lex_state = 5}, - [596] = {.lex_state = 7}, - [597] = {.lex_state = 7}, - [598] = {.lex_state = 5}, - [599] = {.lex_state = 7}, - [600] = {.lex_state = 5}, - [601] = {.lex_state = 5}, - [602] = {.lex_state = 5}, - [603] = {.lex_state = 5}, - [604] = {.lex_state = 1}, - [605] = {.lex_state = 1}, - [606] = {.lex_state = 1}, - [607] = {.lex_state = 1}, - [608] = {.lex_state = 7}, - [609] = {.lex_state = 1}, - [610] = {.lex_state = 7}, - [611] = {.lex_state = 7}, - [612] = {.lex_state = 7}, - [613] = {.lex_state = 1}, - [614] = {.lex_state = 7}, - [615] = {.lex_state = 1}, - [616] = {.lex_state = 1}, - [617] = {.lex_state = 7}, - [618] = {.lex_state = 7}, - [619] = {.lex_state = 7}, - [620] = {.lex_state = 7}, - [621] = {.lex_state = 7}, - [622] = {.lex_state = 7}, - [623] = {.lex_state = 7}, - [624] = {.lex_state = 1}, - [625] = {.lex_state = 7}, - [626] = {.lex_state = 7}, - [627] = {.lex_state = 7}, - [628] = {.lex_state = 1}, - [629] = {.lex_state = 7}, - [630] = {.lex_state = 1}, - [631] = {.lex_state = 7}, - [632] = {.lex_state = 7}, - [633] = {.lex_state = 1}, - [634] = {.lex_state = 7}, - [635] = {.lex_state = 1}, - [636] = {.lex_state = 1}, - [637] = {.lex_state = 1}, - [638] = {.lex_state = 7}, - [639] = {.lex_state = 5}, - [640] = {.lex_state = 7}, - [641] = {.lex_state = 7}, - [642] = {.lex_state = 5}, - [643] = {.lex_state = 5}, - [644] = {.lex_state = 1}, - [645] = {.lex_state = 1}, - [646] = {.lex_state = 1}, - [647] = {.lex_state = 9}, - [648] = {.lex_state = 5}, - [649] = {.lex_state = 1}, - [650] = {.lex_state = 1}, - [651] = {.lex_state = 5}, - [652] = {.lex_state = 1}, - [653] = {.lex_state = 1}, - [654] = {.lex_state = 5}, - [655] = {.lex_state = 9}, - [656] = {.lex_state = 1}, - [657] = {.lex_state = 1}, - [658] = {.lex_state = 5}, - [659] = {.lex_state = 5}, - [660] = {.lex_state = 1}, - [661] = {.lex_state = 1}, - [662] = {.lex_state = 1}, - [663] = {.lex_state = 1}, - [664] = {.lex_state = 1}, - [665] = {.lex_state = 1}, - [666] = {.lex_state = 5}, - [667] = {.lex_state = 5}, - [668] = {.lex_state = 1}, - [669] = {.lex_state = 1}, - [670] = {.lex_state = 1}, - [671] = {.lex_state = 1}, - [672] = {.lex_state = 1}, - [673] = {.lex_state = 5}, - [674] = {.lex_state = 1}, - [675] = {.lex_state = 1}, - [676] = {.lex_state = 5}, - [677] = {.lex_state = 1}, - [678] = {.lex_state = 1}, - [679] = {.lex_state = 1}, - [680] = {.lex_state = 5}, - [681] = {.lex_state = 5}, - [682] = {.lex_state = 1}, - [683] = {.lex_state = 1}, - [684] = {.lex_state = 5}, - [685] = {.lex_state = 1}, - [686] = {.lex_state = 5}, - [687] = {.lex_state = 1}, - [688] = {.lex_state = 1}, - [689] = {.lex_state = 5}, - [690] = {.lex_state = 5}, - [691] = {.lex_state = 5}, - [692] = {.lex_state = 5}, - [693] = {.lex_state = 5}, - [694] = {.lex_state = 5}, - [695] = {.lex_state = 1}, - [696] = {.lex_state = 1}, - [697] = {.lex_state = 1}, - [698] = {.lex_state = 1}, - [699] = {.lex_state = 1}, - [700] = {.lex_state = 1}, - [701] = {.lex_state = 1}, - [702] = {.lex_state = 9}, - [703] = {.lex_state = 1}, - [704] = {.lex_state = 1}, - [705] = {.lex_state = 1}, - [706] = {.lex_state = 1}, - [707] = {.lex_state = 1}, - [708] = {.lex_state = 1}, - [709] = {.lex_state = 1}, - [710] = {.lex_state = 5}, - [711] = {.lex_state = 5}, - [712] = {.lex_state = 5}, - [713] = {.lex_state = 5}, - [714] = {.lex_state = 5}, - [715] = {.lex_state = 5}, - [716] = {.lex_state = 1}, - [717] = {.lex_state = 5}, - [718] = {.lex_state = 1}, - [719] = {.lex_state = 1}, - [720] = {.lex_state = 1}, - [721] = {.lex_state = 1}, - [722] = {.lex_state = 1}, - [723] = {.lex_state = 1}, - [724] = {.lex_state = 1}, - [725] = {.lex_state = 1}, - [726] = {.lex_state = 5}, - [727] = {.lex_state = 5}, - [728] = {.lex_state = 1}, - [729] = {.lex_state = 1}, - [730] = {.lex_state = 5}, - [731] = {.lex_state = 5}, - [732] = {.lex_state = 5}, - [733] = {.lex_state = 5}, - [734] = {.lex_state = 1}, - [735] = {.lex_state = 5}, - [736] = {.lex_state = 1}, - [737] = {.lex_state = 1}, - [738] = {.lex_state = 1}, - [739] = {.lex_state = 1}, - [740] = {.lex_state = 1}, - [741] = {.lex_state = 5}, - [742] = {.lex_state = 1}, - [743] = {.lex_state = 5}, - [744] = {.lex_state = 1}, - [745] = {.lex_state = 5}, - [746] = {.lex_state = 5}, - [747] = {.lex_state = 5}, - [748] = {.lex_state = 5}, - [749] = {.lex_state = 5}, - [750] = {.lex_state = 5}, - [751] = {.lex_state = 1}, - [752] = {.lex_state = 5}, - [753] = {.lex_state = 5}, - [754] = {.lex_state = 5}, - [755] = {.lex_state = 5}, - [756] = {.lex_state = 5}, - [757] = {.lex_state = 5}, - [758] = {.lex_state = 5}, - [759] = {.lex_state = 5}, - [760] = {.lex_state = 5}, - [761] = {.lex_state = 1}, - [762] = {.lex_state = 1}, - [763] = {.lex_state = 5}, - [764] = {.lex_state = 5}, - [765] = {.lex_state = 5}, - [766] = {.lex_state = 5}, - [767] = {.lex_state = 5}, - [768] = {.lex_state = 5}, - [769] = {.lex_state = 5}, - [770] = {.lex_state = 1}, - [771] = {.lex_state = 5}, - [772] = {.lex_state = 5}, - [773] = {.lex_state = 5}, - [774] = {.lex_state = 5}, - [775] = {.lex_state = 5}, - [776] = {.lex_state = 5}, - [777] = {.lex_state = 5}, - [778] = {.lex_state = 5}, - [779] = {.lex_state = 5}, - [780] = {.lex_state = 1}, - [781] = {.lex_state = 5}, - [782] = {.lex_state = 1}, - [783] = {.lex_state = 1}, - [784] = {.lex_state = 1}, - [785] = {.lex_state = 1}, - [786] = {.lex_state = 5}, - [787] = {.lex_state = 5}, - [788] = {.lex_state = 1}, - [789] = {.lex_state = 5}, - [790] = {.lex_state = 5}, - [791] = {.lex_state = 1}, - [792] = {.lex_state = 5}, - [793] = {.lex_state = 1}, - [794] = {.lex_state = 1}, - [795] = {.lex_state = 5}, - [796] = {.lex_state = 1}, - [797] = {.lex_state = 5}, - [798] = {.lex_state = 5}, - [799] = {.lex_state = 1}, - [800] = {.lex_state = 5}, - [801] = {.lex_state = 5}, - [802] = {.lex_state = 5}, - [803] = {.lex_state = 1}, - [804] = {.lex_state = 5}, - [805] = {.lex_state = 5}, - [806] = {.lex_state = 1}, - [807] = {.lex_state = 1}, - [808] = {.lex_state = 5}, - [809] = {.lex_state = 5}, - [810] = {.lex_state = 1}, - [811] = {.lex_state = 1}, - [812] = {.lex_state = 1}, - [813] = {.lex_state = 5}, - [814] = {.lex_state = 1}, - [815] = {.lex_state = 1}, - [816] = {.lex_state = 5}, - [817] = {.lex_state = 5}, - [818] = {.lex_state = 5}, - [819] = {.lex_state = 5}, - [820] = {.lex_state = 5}, - [821] = {.lex_state = 5}, - [822] = {.lex_state = 5}, - [823] = {.lex_state = 5}, - [824] = {.lex_state = 5}, - [825] = {.lex_state = 5}, - [826] = {.lex_state = 5}, - [827] = {.lex_state = 5}, - [828] = {.lex_state = 5}, - [829] = {.lex_state = 5}, - [830] = {.lex_state = 5}, - [831] = {.lex_state = 5}, - [832] = {.lex_state = 5}, - [833] = {.lex_state = 5}, - [834] = {.lex_state = 5}, - [835] = {.lex_state = 5}, - [836] = {.lex_state = 5}, - [837] = {.lex_state = 5}, - [838] = {.lex_state = 5}, - [839] = {.lex_state = 5}, - [840] = {.lex_state = 5}, - [841] = {.lex_state = 5}, - [842] = {.lex_state = 5}, - [843] = {.lex_state = 5}, - [844] = {.lex_state = 5}, - [845] = {.lex_state = 5}, - [846] = {.lex_state = 5}, - [847] = {.lex_state = 5}, - [848] = {.lex_state = 5}, - [849] = {.lex_state = 5}, - [850] = {.lex_state = 5}, - [851] = {.lex_state = 5}, - [852] = {.lex_state = 5}, - [853] = {.lex_state = 5}, - [854] = {.lex_state = 5}, - [855] = {.lex_state = 5}, - [856] = {.lex_state = 5}, - [857] = {.lex_state = 5}, - [858] = {.lex_state = 5}, - [859] = {.lex_state = 5}, - [860] = {.lex_state = 5}, - [861] = {.lex_state = 5}, - [862] = {.lex_state = 5}, - [863] = {.lex_state = 5}, - [864] = {.lex_state = 5}, - [865] = {.lex_state = 5}, - [866] = {.lex_state = 1}, - [867] = {.lex_state = 1}, - [868] = {.lex_state = 5}, - [869] = {.lex_state = 5}, - [870] = {.lex_state = 5}, - [871] = {.lex_state = 5}, - [872] = {.lex_state = 1}, - [873] = {.lex_state = 5}, - [874] = {.lex_state = 5}, - [875] = {.lex_state = 5}, - [876] = {.lex_state = 5}, - [877] = {.lex_state = 5}, - [878] = {.lex_state = 5}, - [879] = {.lex_state = 5}, - [880] = {.lex_state = 5}, - [881] = {.lex_state = 9}, - [882] = {.lex_state = 1}, - [883] = {.lex_state = 5}, - [884] = {.lex_state = 1}, - [885] = {.lex_state = 1}, - [886] = {.lex_state = 1}, - [887] = {.lex_state = 1}, - [888] = {.lex_state = 1}, - [889] = {.lex_state = 1}, - [890] = {.lex_state = 1}, - [891] = {.lex_state = 1}, - [892] = {.lex_state = 1}, - [893] = {.lex_state = 1}, - [894] = {.lex_state = 1}, - [895] = {.lex_state = 1}, - [896] = {.lex_state = 1}, - [897] = {.lex_state = 1}, - [898] = {.lex_state = 1}, - [899] = {.lex_state = 1}, - [900] = {.lex_state = 1}, - [901] = {.lex_state = 1}, - [902] = {.lex_state = 1}, - [903] = {.lex_state = 1}, - [904] = {.lex_state = 5}, - [905] = {.lex_state = 5}, - [906] = {.lex_state = 5}, - [907] = {.lex_state = 5}, - [908] = {.lex_state = 5}, - [909] = {.lex_state = 5}, - [910] = {.lex_state = 5}, - [911] = {.lex_state = 5}, - [912] = {.lex_state = 5}, - [913] = {.lex_state = 5}, - [914] = {.lex_state = 5}, - [915] = {.lex_state = 1}, - [916] = {.lex_state = 5}, - [917] = {.lex_state = 5}, - [918] = {.lex_state = 5}, - [919] = {.lex_state = 5}, - [920] = {.lex_state = 5}, - [921] = {.lex_state = 5}, - [922] = {.lex_state = 5}, - [923] = {.lex_state = 1}, - [924] = {.lex_state = 5}, - [925] = {.lex_state = 5}, - [926] = {.lex_state = 5}, - [927] = {.lex_state = 5}, - [928] = {.lex_state = 5}, - [929] = {.lex_state = 5}, - [930] = {.lex_state = 5}, - [931] = {.lex_state = 5}, - [932] = {.lex_state = 1}, - [933] = {.lex_state = 1}, - [934] = {.lex_state = 1}, - [935] = {.lex_state = 1}, - [936] = {.lex_state = 5}, - [937] = {.lex_state = 5}, - [938] = {.lex_state = 5}, - [939] = {.lex_state = 5}, - [940] = {.lex_state = 5}, - [941] = {.lex_state = 5}, - [942] = {.lex_state = 5}, - [943] = {.lex_state = 5}, - [944] = {.lex_state = 5}, - [945] = {.lex_state = 1}, - [946] = {.lex_state = 5}, - [947] = {.lex_state = 5}, - [948] = {.lex_state = 5}, - [949] = {.lex_state = 5}, - [950] = {.lex_state = 1}, - [951] = {.lex_state = 5}, - [952] = {.lex_state = 5}, - [953] = {.lex_state = 5}, - [954] = {.lex_state = 1}, - [955] = {.lex_state = 1}, - [956] = {.lex_state = 5}, - [957] = {.lex_state = 5}, - [958] = {.lex_state = 1}, - [959] = {.lex_state = 1}, - [960] = {.lex_state = 5}, - [961] = {.lex_state = 1}, - [962] = {.lex_state = 5}, - [963] = {.lex_state = 5}, - [964] = {.lex_state = 1}, - [965] = {.lex_state = 5}, - [966] = {.lex_state = 5}, - [967] = {.lex_state = 5}, - [968] = {.lex_state = 5}, - [969] = {.lex_state = 5}, - [970] = {.lex_state = 1}, - [971] = {.lex_state = 1}, - [972] = {.lex_state = 5}, - [973] = {.lex_state = 5}, - [974] = {.lex_state = 1}, - [975] = {.lex_state = 5}, - [976] = {.lex_state = 5}, - [977] = {.lex_state = 1}, - [978] = {.lex_state = 1}, - [979] = {.lex_state = 5}, - [980] = {.lex_state = 5}, - [981] = {.lex_state = 5}, - [982] = {.lex_state = 1}, - [983] = {.lex_state = 5}, - [984] = {.lex_state = 5}, - [985] = {.lex_state = 1}, - [986] = {.lex_state = 1}, - [987] = {.lex_state = 1}, - [988] = {.lex_state = 1}, - [989] = {.lex_state = 1}, - [990] = {.lex_state = 1}, - [991] = {.lex_state = 1}, - [992] = {.lex_state = 1}, - [993] = {.lex_state = 1}, - [994] = {.lex_state = 1}, - [995] = {.lex_state = 1}, - [996] = {.lex_state = 1}, - [997] = {.lex_state = 1}, - [998] = {.lex_state = 1}, - [999] = {.lex_state = 1}, - [1000] = {.lex_state = 1}, - [1001] = {.lex_state = 1}, - [1002] = {.lex_state = 1}, - [1003] = {.lex_state = 1}, - [1004] = {.lex_state = 1}, - [1005] = {.lex_state = 1}, - [1006] = {.lex_state = 1}, - [1007] = {.lex_state = 1}, - [1008] = {.lex_state = 1}, - [1009] = {.lex_state = 1}, - [1010] = {.lex_state = 1}, - [1011] = {.lex_state = 9}, - [1012] = {.lex_state = 1}, - [1013] = {.lex_state = 1}, - [1014] = {.lex_state = 1}, - [1015] = {.lex_state = 1}, - [1016] = {.lex_state = 1}, - [1017] = {.lex_state = 1}, - [1018] = {.lex_state = 1}, - [1019] = {.lex_state = 1}, - [1020] = {.lex_state = 1}, - [1021] = {.lex_state = 1}, - [1022] = {.lex_state = 1}, - [1023] = {.lex_state = 1}, - [1024] = {.lex_state = 1}, - [1025] = {.lex_state = 1}, - [1026] = {.lex_state = 1}, - [1027] = {.lex_state = 1}, - [1028] = {.lex_state = 1}, - [1029] = {.lex_state = 1}, - [1030] = {.lex_state = 1}, - [1031] = {.lex_state = 1}, - [1032] = {.lex_state = 1}, - [1033] = {.lex_state = 1}, - [1034] = {.lex_state = 1}, - [1035] = {.lex_state = 1}, - [1036] = {.lex_state = 1}, - [1037] = {.lex_state = 1}, - [1038] = {.lex_state = 1}, - [1039] = {.lex_state = 1}, - [1040] = {.lex_state = 1}, - [1041] = {.lex_state = 1}, - [1042] = {.lex_state = 1}, - [1043] = {.lex_state = 1}, - [1044] = {.lex_state = 1}, - [1045] = {.lex_state = 1}, - [1046] = {.lex_state = 1}, - [1047] = {.lex_state = 1}, - [1048] = {.lex_state = 1}, - [1049] = {.lex_state = 1}, - [1050] = {.lex_state = 1}, - [1051] = {.lex_state = 1}, - [1052] = {.lex_state = 1}, - [1053] = {.lex_state = 1}, - [1054] = {.lex_state = 1}, - [1055] = {.lex_state = 1}, - [1056] = {.lex_state = 1}, - [1057] = {.lex_state = 1}, - [1058] = {.lex_state = 1}, - [1059] = {.lex_state = 1}, - [1060] = {.lex_state = 1}, - [1061] = {.lex_state = 1}, - [1062] = {.lex_state = 1}, - [1063] = {.lex_state = 1}, - [1064] = {.lex_state = 1}, - [1065] = {.lex_state = 1}, - [1066] = {.lex_state = 1}, - [1067] = {.lex_state = 1}, - [1068] = {.lex_state = 1}, - [1069] = {.lex_state = 1}, - [1070] = {.lex_state = 1}, - [1071] = {.lex_state = 1}, - [1072] = {.lex_state = 1}, - [1073] = {.lex_state = 1}, - [1074] = {.lex_state = 1}, - [1075] = {.lex_state = 1}, - [1076] = {.lex_state = 1}, - [1077] = {.lex_state = 1}, - [1078] = {.lex_state = 1}, - [1079] = {.lex_state = 1}, - [1080] = {.lex_state = 1}, - [1081] = {.lex_state = 1}, - [1082] = {.lex_state = 1}, - [1083] = {.lex_state = 1}, - [1084] = {.lex_state = 1}, - [1085] = {.lex_state = 1}, - [1086] = {.lex_state = 1}, - [1087] = {.lex_state = 1}, - [1088] = {.lex_state = 1}, - [1089] = {.lex_state = 1}, - [1090] = {.lex_state = 1}, - [1091] = {.lex_state = 1}, - [1092] = {.lex_state = 1}, - [1093] = {.lex_state = 1}, - [1094] = {.lex_state = 1}, - [1095] = {.lex_state = 1}, - [1096] = {.lex_state = 1}, - [1097] = {.lex_state = 1}, - [1098] = {.lex_state = 1}, - [1099] = {.lex_state = 1}, - [1100] = {.lex_state = 1}, - [1101] = {.lex_state = 1}, - [1102] = {.lex_state = 1}, - [1103] = {.lex_state = 1}, - [1104] = {.lex_state = 1}, - [1105] = {.lex_state = 1}, - [1106] = {.lex_state = 1}, - [1107] = {.lex_state = 1}, - [1108] = {.lex_state = 1}, - [1109] = {.lex_state = 1}, - [1110] = {.lex_state = 1}, - [1111] = {.lex_state = 1}, - [1112] = {.lex_state = 1}, - [1113] = {.lex_state = 1}, - [1114] = {.lex_state = 1}, - [1115] = {.lex_state = 1}, - [1116] = {.lex_state = 1}, - [1117] = {.lex_state = 1}, - [1118] = {.lex_state = 1}, - [1119] = {.lex_state = 1}, - [1120] = {.lex_state = 1}, - [1121] = {.lex_state = 1}, - [1122] = {.lex_state = 1}, - [1123] = {.lex_state = 1}, - [1124] = {.lex_state = 1}, - [1125] = {.lex_state = 1}, - [1126] = {.lex_state = 1}, - [1127] = {.lex_state = 1}, - [1128] = {.lex_state = 1}, - [1129] = {.lex_state = 1}, - [1130] = {.lex_state = 1}, - [1131] = {.lex_state = 1}, - [1132] = {.lex_state = 1}, - [1133] = {.lex_state = 1}, - [1134] = {.lex_state = 1}, - [1135] = {.lex_state = 1}, - [1136] = {.lex_state = 1}, - [1137] = {.lex_state = 1}, - [1138] = {.lex_state = 1}, - [1139] = {.lex_state = 1}, - [1140] = {.lex_state = 1}, - [1141] = {.lex_state = 1}, - [1142] = {.lex_state = 1}, - [1143] = {.lex_state = 1}, - [1144] = {.lex_state = 1}, - [1145] = {.lex_state = 1}, - [1146] = {.lex_state = 1}, - [1147] = {.lex_state = 1}, - [1148] = {.lex_state = 1}, - [1149] = {.lex_state = 1}, - [1150] = {.lex_state = 1}, - [1151] = {.lex_state = 1}, - [1152] = {.lex_state = 1}, - [1153] = {.lex_state = 1}, - [1154] = {.lex_state = 1}, - [1155] = {.lex_state = 1}, - [1156] = {.lex_state = 1}, - [1157] = {.lex_state = 1}, - [1158] = {.lex_state = 1}, - [1159] = {.lex_state = 1}, - [1160] = {.lex_state = 1}, - [1161] = {.lex_state = 1}, - [1162] = {.lex_state = 1}, - [1163] = {.lex_state = 1}, - [1164] = {.lex_state = 1}, - [1165] = {.lex_state = 1}, - [1166] = {.lex_state = 1}, - [1167] = {.lex_state = 1}, - [1168] = {.lex_state = 1}, - [1169] = {.lex_state = 1}, - [1170] = {.lex_state = 1}, - [1171] = {.lex_state = 1}, - [1172] = {.lex_state = 1}, - [1173] = {.lex_state = 1}, - [1174] = {.lex_state = 1}, - [1175] = {.lex_state = 1}, - [1176] = {.lex_state = 1}, - [1177] = {.lex_state = 1}, - [1178] = {.lex_state = 1}, - [1179] = {.lex_state = 1}, - [1180] = {.lex_state = 1}, - [1181] = {.lex_state = 1}, - [1182] = {.lex_state = 1}, - [1183] = {.lex_state = 1}, - [1184] = {.lex_state = 1}, - [1185] = {.lex_state = 1}, - [1186] = {.lex_state = 1}, - [1187] = {.lex_state = 5}, - [1188] = {.lex_state = 5}, - [1189] = {.lex_state = 5}, - [1190] = {.lex_state = 1}, - [1191] = {.lex_state = 5}, - [1192] = {.lex_state = 1}, - [1193] = {.lex_state = 5}, - [1194] = {.lex_state = 5}, - [1195] = {.lex_state = 5}, - [1196] = {.lex_state = 5}, - [1197] = {.lex_state = 5}, - [1198] = {.lex_state = 5}, - [1199] = {.lex_state = 5}, - [1200] = {.lex_state = 5}, - [1201] = {.lex_state = 5}, - [1202] = {.lex_state = 5}, - [1203] = {.lex_state = 5}, - [1204] = {.lex_state = 5}, - [1205] = {.lex_state = 5}, - [1206] = {.lex_state = 5}, - [1207] = {.lex_state = 5}, - [1208] = {.lex_state = 5}, - [1209] = {.lex_state = 5}, - [1210] = {.lex_state = 1}, - [1211] = {.lex_state = 5}, - [1212] = {.lex_state = 5}, - [1213] = {.lex_state = 5}, - [1214] = {.lex_state = 5}, - [1215] = {.lex_state = 5}, - [1216] = {.lex_state = 5}, - [1217] = {.lex_state = 5}, - [1218] = {.lex_state = 5}, - [1219] = {.lex_state = 5}, - [1220] = {.lex_state = 5}, - [1221] = {.lex_state = 5}, - [1222] = {.lex_state = 5}, - [1223] = {.lex_state = 5}, - [1224] = {.lex_state = 1}, - [1225] = {.lex_state = 9}, - [1226] = {.lex_state = 1}, - [1227] = {.lex_state = 1}, - [1228] = {.lex_state = 1}, - [1229] = {.lex_state = 5}, - [1230] = {.lex_state = 1}, - [1231] = {.lex_state = 5}, - [1232] = {.lex_state = 5}, - [1233] = {.lex_state = 5}, - [1234] = {.lex_state = 1}, - [1235] = {.lex_state = 5}, - [1236] = {.lex_state = 5}, - [1237] = {.lex_state = 5}, - [1238] = {.lex_state = 5}, - [1239] = {.lex_state = 5}, - [1240] = {.lex_state = 5}, - [1241] = {.lex_state = 5}, - [1242] = {.lex_state = 5}, - [1243] = {.lex_state = 5}, - [1244] = {.lex_state = 5}, - [1245] = {.lex_state = 5}, - [1246] = {.lex_state = 5}, - [1247] = {.lex_state = 5}, - [1248] = {.lex_state = 5}, - [1249] = {.lex_state = 5}, - [1250] = {.lex_state = 5}, - [1251] = {.lex_state = 5}, - [1252] = {.lex_state = 5}, - [1253] = {.lex_state = 5}, - [1254] = {.lex_state = 5}, - [1255] = {.lex_state = 5}, - [1256] = {.lex_state = 5}, - [1257] = {.lex_state = 5}, - [1258] = {.lex_state = 5}, - [1259] = {.lex_state = 5}, - [1260] = {.lex_state = 1}, - [1261] = {.lex_state = 5}, - [1262] = {.lex_state = 5}, - [1263] = {.lex_state = 5}, - [1264] = {.lex_state = 5}, - [1265] = {.lex_state = 5}, - [1266] = {.lex_state = 5}, - [1267] = {.lex_state = 5}, - [1268] = {.lex_state = 1}, - [1269] = {.lex_state = 5}, - [1270] = {.lex_state = 5}, - [1271] = {.lex_state = 5}, - [1272] = {.lex_state = 5}, - [1273] = {.lex_state = 1}, - [1274] = {.lex_state = 5}, - [1275] = {.lex_state = 5}, - [1276] = {.lex_state = 5}, - [1277] = {.lex_state = 5}, - [1278] = {.lex_state = 5}, - [1279] = {.lex_state = 5}, - [1280] = {.lex_state = 5}, - [1281] = {.lex_state = 5}, - [1282] = {.lex_state = 9}, - [1283] = {.lex_state = 5}, - [1284] = {.lex_state = 5}, - [1285] = {.lex_state = 5}, - [1286] = {.lex_state = 5}, - [1287] = {.lex_state = 5}, - [1288] = {.lex_state = 9}, - [1289] = {.lex_state = 5}, - [1290] = {.lex_state = 5}, - [1291] = {.lex_state = 5}, - [1292] = {.lex_state = 9}, - [1293] = {.lex_state = 5}, - [1294] = {.lex_state = 5}, - [1295] = {.lex_state = 5}, - [1296] = {.lex_state = 5}, - [1297] = {.lex_state = 5}, - [1298] = {.lex_state = 9}, - [1299] = {.lex_state = 5}, - [1300] = {.lex_state = 5}, - [1301] = {.lex_state = 5}, - [1302] = {.lex_state = 5}, - [1303] = {.lex_state = 5}, - [1304] = {.lex_state = 5}, - [1305] = {.lex_state = 5}, - [1306] = {.lex_state = 5}, - [1307] = {.lex_state = 5}, - [1308] = {.lex_state = 5}, - [1309] = {.lex_state = 5}, - [1310] = {.lex_state = 5}, - [1311] = {.lex_state = 5}, - [1312] = {.lex_state = 5}, - [1313] = {.lex_state = 1}, - [1314] = {.lex_state = 5}, - [1315] = {.lex_state = 5}, - [1316] = {.lex_state = 5}, - [1317] = {.lex_state = 5}, - [1318] = {.lex_state = 5}, - [1319] = {.lex_state = 5}, - [1320] = {.lex_state = 5}, - [1321] = {.lex_state = 5}, - [1322] = {.lex_state = 5}, - [1323] = {.lex_state = 1}, - [1324] = {.lex_state = 5}, - [1325] = {.lex_state = 5}, - [1326] = {.lex_state = 1}, - [1327] = {.lex_state = 5}, - [1328] = {.lex_state = 5}, - [1329] = {.lex_state = 5}, - [1330] = {.lex_state = 1}, - [1331] = {.lex_state = 5}, - [1332] = {.lex_state = 1}, - [1333] = {.lex_state = 5}, - [1334] = {.lex_state = 5}, - [1335] = {.lex_state = 5}, - [1336] = {.lex_state = 5}, - [1337] = {.lex_state = 5}, - [1338] = {.lex_state = 5}, - [1339] = {.lex_state = 6}, - [1340] = {.lex_state = 5}, - [1341] = {.lex_state = 5}, - [1342] = {.lex_state = 1}, - [1343] = {.lex_state = 5}, - [1344] = {.lex_state = 5}, - [1345] = {.lex_state = 1}, - [1346] = {.lex_state = 5}, - [1347] = {.lex_state = 5}, - [1348] = {.lex_state = 5}, - [1349] = {.lex_state = 5}, - [1350] = {.lex_state = 5}, - [1351] = {.lex_state = 5}, - [1352] = {.lex_state = 5}, - [1353] = {.lex_state = 5}, - [1354] = {.lex_state = 5}, - [1355] = {.lex_state = 5}, - [1356] = {.lex_state = 5}, - [1357] = {.lex_state = 5}, - [1358] = {.lex_state = 1}, - [1359] = {.lex_state = 5}, - [1360] = {.lex_state = 5}, - [1361] = {.lex_state = 5}, - [1362] = {.lex_state = 5}, - [1363] = {.lex_state = 5}, - [1364] = {.lex_state = 5}, - [1365] = {.lex_state = 5}, - [1366] = {.lex_state = 1}, - [1367] = {.lex_state = 5}, - [1368] = {.lex_state = 5}, - [1369] = {.lex_state = 5}, - [1370] = {.lex_state = 5}, - [1371] = {.lex_state = 5}, - [1372] = {.lex_state = 5}, - [1373] = {.lex_state = 5}, - [1374] = {.lex_state = 5}, - [1375] = {.lex_state = 1}, - [1376] = {.lex_state = 5}, - [1377] = {.lex_state = 5}, - [1378] = {.lex_state = 5}, - [1379] = {.lex_state = 5}, - [1380] = {.lex_state = 1}, - [1381] = {.lex_state = 5}, - [1382] = {.lex_state = 5}, - [1383] = {.lex_state = 5}, - [1384] = {.lex_state = 5}, - [1385] = {.lex_state = 5}, - [1386] = {.lex_state = 5}, - [1387] = {.lex_state = 1}, - [1388] = {.lex_state = 5}, - [1389] = {.lex_state = 5}, - [1390] = {.lex_state = 5}, - [1391] = {.lex_state = 5}, - [1392] = {.lex_state = 5}, - [1393] = {.lex_state = 5}, - [1394] = {.lex_state = 5}, - [1395] = {.lex_state = 5}, - [1396] = {.lex_state = 1}, - [1397] = {.lex_state = 1}, - [1398] = {.lex_state = 5}, - [1399] = {.lex_state = 5}, - [1400] = {.lex_state = 1}, - [1401] = {.lex_state = 5}, - [1402] = {.lex_state = 5}, - [1403] = {.lex_state = 1}, - [1404] = {.lex_state = 5}, - [1405] = {.lex_state = 5}, - [1406] = {.lex_state = 1}, - [1407] = {.lex_state = 5}, - [1408] = {.lex_state = 5}, - [1409] = {.lex_state = 1}, - [1410] = {.lex_state = 1}, - [1411] = {.lex_state = 1}, - [1412] = {.lex_state = 5}, - [1413] = {.lex_state = 1}, - [1414] = {.lex_state = 1}, - [1415] = {.lex_state = 1}, - [1416] = {.lex_state = 1}, - [1417] = {.lex_state = 1}, - [1418] = {.lex_state = 5}, - [1419] = {.lex_state = 1}, - [1420] = {.lex_state = 1}, - [1421] = {.lex_state = 5}, - [1422] = {.lex_state = 1}, - [1423] = {.lex_state = 1}, - [1424] = {.lex_state = 1}, - [1425] = {.lex_state = 1}, - [1426] = {.lex_state = 1}, - [1427] = {.lex_state = 1}, - [1428] = {.lex_state = 5}, - [1429] = {.lex_state = 9}, - [1430] = {.lex_state = 9}, - [1431] = {.lex_state = 1}, - [1432] = {.lex_state = 1}, - [1433] = {.lex_state = 1}, - [1434] = {.lex_state = 5}, - [1435] = {.lex_state = 1}, - [1436] = {.lex_state = 5}, - [1437] = {.lex_state = 5}, - [1438] = {.lex_state = 5}, - [1439] = {.lex_state = 5}, - [1440] = {.lex_state = 5}, - [1441] = {.lex_state = 5}, - [1442] = {.lex_state = 5}, - [1443] = {.lex_state = 5}, - [1444] = {.lex_state = 5}, - [1445] = {.lex_state = 5}, - [1446] = {.lex_state = 5}, - [1447] = {.lex_state = 5}, - [1448] = {.lex_state = 5}, - [1449] = {.lex_state = 5}, - [1450] = {.lex_state = 5}, - [1451] = {.lex_state = 5}, - [1452] = {.lex_state = 5}, - [1453] = {.lex_state = 5}, - [1454] = {.lex_state = 1}, - [1455] = {.lex_state = 5}, - [1456] = {.lex_state = 5}, - [1457] = {.lex_state = 5}, - [1458] = {.lex_state = 5}, - [1459] = {.lex_state = 5}, - [1460] = {.lex_state = 5}, - [1461] = {.lex_state = 5}, - [1462] = {.lex_state = 5}, - [1463] = {.lex_state = 5}, - [1464] = {.lex_state = 5}, - [1465] = {.lex_state = 5}, - [1466] = {.lex_state = 5}, - [1467] = {.lex_state = 5}, - [1468] = {.lex_state = 5}, - [1469] = {.lex_state = 5}, - [1470] = {.lex_state = 5}, - [1471] = {.lex_state = 5}, - [1472] = {.lex_state = 5}, - [1473] = {.lex_state = 5}, - [1474] = {.lex_state = 5}, - [1475] = {.lex_state = 5}, - [1476] = {.lex_state = 5}, - [1477] = {.lex_state = 5}, - [1478] = {.lex_state = 5}, - [1479] = {.lex_state = 5}, - [1480] = {.lex_state = 1}, - [1481] = {.lex_state = 5}, - [1482] = {.lex_state = 5}, - [1483] = {.lex_state = 5}, - [1484] = {.lex_state = 5}, - [1485] = {.lex_state = 5}, - [1486] = {.lex_state = 5}, - [1487] = {.lex_state = 5}, - [1488] = {.lex_state = 5}, - [1489] = {.lex_state = 5}, - [1490] = {.lex_state = 1}, - [1491] = {.lex_state = 5}, - [1492] = {.lex_state = 5}, - [1493] = {.lex_state = 5}, - [1494] = {.lex_state = 5}, - [1495] = {.lex_state = 5}, - [1496] = {.lex_state = 5}, - [1497] = {.lex_state = 5}, - [1498] = {.lex_state = 1}, - [1499] = {.lex_state = 5}, - [1500] = {.lex_state = 5}, - [1501] = {.lex_state = 5}, - [1502] = {.lex_state = 5}, - [1503] = {.lex_state = 5}, - [1504] = {.lex_state = 1}, - [1505] = {.lex_state = 1}, - [1506] = {.lex_state = 1}, - [1507] = {.lex_state = 1}, - [1508] = {.lex_state = 1}, - [1509] = {.lex_state = 1}, - [1510] = {.lex_state = 1}, - [1511] = {.lex_state = 1}, - [1512] = {.lex_state = 1}, - [1513] = {.lex_state = 1}, - [1514] = {.lex_state = 1}, - [1515] = {.lex_state = 1}, - [1516] = {.lex_state = 1}, - [1517] = {.lex_state = 1}, - [1518] = {.lex_state = 1}, - [1519] = {.lex_state = 1}, - [1520] = {.lex_state = 1}, - [1521] = {.lex_state = 42}, - [1522] = {.lex_state = 1}, - [1523] = {.lex_state = 1}, - [1524] = {.lex_state = 1}, - [1525] = {.lex_state = 1}, - [1526] = {.lex_state = 1}, - [1527] = {.lex_state = 1}, - [1528] = {.lex_state = 42}, - [1529] = {.lex_state = 1}, - [1530] = {.lex_state = 1}, - [1531] = {.lex_state = 1}, - [1532] = {.lex_state = 1}, - [1533] = {.lex_state = 1}, - [1534] = {.lex_state = 1}, - [1535] = {.lex_state = 1}, - [1536] = {.lex_state = 1}, - [1537] = {.lex_state = 1}, - [1538] = {.lex_state = 1}, - [1539] = {.lex_state = 1}, - [1540] = {.lex_state = 1}, - [1541] = {.lex_state = 1}, - [1542] = {.lex_state = 1}, - [1543] = {.lex_state = 1}, - [1544] = {.lex_state = 1}, - [1545] = {.lex_state = 1}, - [1546] = {.lex_state = 1}, - [1547] = {.lex_state = 1}, - [1548] = {.lex_state = 1}, - [1549] = {.lex_state = 42}, - [1550] = {.lex_state = 1}, - [1551] = {.lex_state = 1}, - [1552] = {.lex_state = 1}, - [1553] = {.lex_state = 1}, - [1554] = {.lex_state = 1}, - [1555] = {.lex_state = 1}, - [1556] = {.lex_state = 1}, - [1557] = {.lex_state = 1}, - [1558] = {.lex_state = 1}, - [1559] = {.lex_state = 1}, - [1560] = {.lex_state = 1}, - [1561] = {.lex_state = 1}, - [1562] = {.lex_state = 1}, - [1563] = {.lex_state = 1}, - [1564] = {.lex_state = 1}, - [1565] = {.lex_state = 1}, - [1566] = {.lex_state = 1}, - [1567] = {.lex_state = 1}, - [1568] = {.lex_state = 1}, - [1569] = {.lex_state = 1}, - [1570] = {.lex_state = 1}, - [1571] = {.lex_state = 1}, - [1572] = {.lex_state = 1}, - [1573] = {.lex_state = 1}, - [1574] = {.lex_state = 1}, - [1575] = {.lex_state = 1}, - [1576] = {.lex_state = 1}, - [1577] = {.lex_state = 1}, - [1578] = {.lex_state = 1}, - [1579] = {.lex_state = 1}, - [1580] = {.lex_state = 1}, - [1581] = {.lex_state = 1}, - [1582] = {.lex_state = 1}, - [1583] = {.lex_state = 1}, - [1584] = {.lex_state = 1}, - [1585] = {.lex_state = 1}, - [1586] = {.lex_state = 1}, - [1587] = {.lex_state = 1}, - [1588] = {.lex_state = 1}, - [1589] = {.lex_state = 11}, - [1590] = {.lex_state = 1}, - [1591] = {.lex_state = 1}, - [1592] = {.lex_state = 1}, - [1593] = {.lex_state = 1}, - [1594] = {.lex_state = 1}, - [1595] = {.lex_state = 1}, - [1596] = {.lex_state = 1}, - [1597] = {.lex_state = 1}, - [1598] = {.lex_state = 1}, - [1599] = {.lex_state = 1}, - [1600] = {.lex_state = 1}, - [1601] = {.lex_state = 1}, - [1602] = {.lex_state = 1}, - [1603] = {.lex_state = 1}, - [1604] = {.lex_state = 1}, - [1605] = {.lex_state = 1}, - [1606] = {.lex_state = 1}, - [1607] = {.lex_state = 1}, - [1608] = {.lex_state = 1}, - [1609] = {.lex_state = 1}, - [1610] = {.lex_state = 42}, - [1611] = {.lex_state = 1}, - [1612] = {.lex_state = 1}, - [1613] = {.lex_state = 1}, - [1614] = {.lex_state = 1}, - [1615] = {.lex_state = 1}, - [1616] = {.lex_state = 1}, - [1617] = {.lex_state = 1}, - [1618] = {.lex_state = 1}, - [1619] = {.lex_state = 1}, - [1620] = {.lex_state = 1}, - [1621] = {.lex_state = 11}, - [1622] = {.lex_state = 1}, - [1623] = {.lex_state = 1}, - [1624] = {.lex_state = 1}, - [1625] = {.lex_state = 1}, - [1626] = {.lex_state = 1}, - [1627] = {.lex_state = 1}, - [1628] = {.lex_state = 1}, - [1629] = {.lex_state = 1}, - [1630] = {.lex_state = 1}, - [1631] = {.lex_state = 1}, - [1632] = {.lex_state = 42}, - [1633] = {.lex_state = 1}, - [1634] = {.lex_state = 1}, - [1635] = {.lex_state = 1}, - [1636] = {.lex_state = 1}, - [1637] = {.lex_state = 1}, - [1638] = {.lex_state = 1}, - [1639] = {.lex_state = 1}, - [1640] = {.lex_state = 1}, - [1641] = {.lex_state = 1}, - [1642] = {.lex_state = 1}, - [1643] = {.lex_state = 1}, - [1644] = {.lex_state = 1}, - [1645] = {.lex_state = 1}, - [1646] = {.lex_state = 1}, - [1647] = {.lex_state = 1}, - [1648] = {.lex_state = 1}, - [1649] = {.lex_state = 1}, - [1650] = {.lex_state = 42}, - [1651] = {.lex_state = 1}, - [1652] = {.lex_state = 1}, - [1653] = {.lex_state = 1}, - [1654] = {.lex_state = 1}, - [1655] = {.lex_state = 1}, - [1656] = {.lex_state = 1}, - [1657] = {.lex_state = 1}, - [1658] = {.lex_state = 1}, - [1659] = {.lex_state = 1}, - [1660] = {.lex_state = 1}, - [1661] = {.lex_state = 1}, - [1662] = {.lex_state = 1}, - [1663] = {.lex_state = 1}, - [1664] = {.lex_state = 1}, - [1665] = {.lex_state = 1}, - [1666] = {.lex_state = 1}, - [1667] = {.lex_state = 1}, - [1668] = {.lex_state = 1}, - [1669] = {.lex_state = 1}, - [1670] = {.lex_state = 1}, - [1671] = {.lex_state = 1}, - [1672] = {.lex_state = 1}, - [1673] = {.lex_state = 1}, - [1674] = {.lex_state = 1}, - [1675] = {.lex_state = 1}, - [1676] = {.lex_state = 1}, - [1677] = {.lex_state = 1}, - [1678] = {.lex_state = 1}, - [1679] = {.lex_state = 1}, - [1680] = {.lex_state = 42}, - [1681] = {.lex_state = 1}, - [1682] = {.lex_state = 1}, - [1683] = {.lex_state = 1}, - [1684] = {.lex_state = 1}, - [1685] = {.lex_state = 1}, - [1686] = {.lex_state = 1}, - [1687] = {.lex_state = 1}, - [1688] = {.lex_state = 1}, - [1689] = {.lex_state = 1}, - [1690] = {.lex_state = 42}, - [1691] = {.lex_state = 1}, - [1692] = {.lex_state = 1}, - [1693] = {.lex_state = 1}, - [1694] = {.lex_state = 1}, - [1695] = {.lex_state = 1}, - [1696] = {.lex_state = 1}, - [1697] = {.lex_state = 1}, - [1698] = {.lex_state = 1}, - [1699] = {.lex_state = 1}, - [1700] = {.lex_state = 1}, - [1701] = {.lex_state = 1}, - [1702] = {.lex_state = 1}, - [1703] = {.lex_state = 1}, - [1704] = {.lex_state = 1}, - [1705] = {.lex_state = 1}, - [1706] = {.lex_state = 1}, - [1707] = {.lex_state = 1}, - [1708] = {.lex_state = 1}, - [1709] = {.lex_state = 1}, - [1710] = {.lex_state = 1}, - [1711] = {.lex_state = 1}, - [1712] = {.lex_state = 1}, - [1713] = {.lex_state = 42}, - [1714] = {.lex_state = 1}, - [1715] = {.lex_state = 1}, - [1716] = {.lex_state = 1}, - [1717] = {.lex_state = 1}, - [1718] = {.lex_state = 1}, - [1719] = {.lex_state = 1}, - [1720] = {.lex_state = 1}, - [1721] = {.lex_state = 1}, - [1722] = {.lex_state = 11}, - [1723] = {.lex_state = 11}, - [1724] = {.lex_state = 1}, - [1725] = {.lex_state = 1}, - [1726] = {.lex_state = 1}, - [1727] = {.lex_state = 11}, - [1728] = {.lex_state = 1}, - [1729] = {.lex_state = 1}, - [1730] = {.lex_state = 11}, - [1731] = {.lex_state = 1}, - [1732] = {.lex_state = 1}, - [1733] = {.lex_state = 1}, - [1734] = {.lex_state = 1}, - [1735] = {.lex_state = 1}, - [1736] = {.lex_state = 1}, - [1737] = {.lex_state = 1}, - [1738] = {.lex_state = 1}, - [1739] = {.lex_state = 1}, - [1740] = {.lex_state = 1}, - [1741] = {.lex_state = 1}, - [1742] = {.lex_state = 1}, - [1743] = {.lex_state = 1}, - [1744] = {.lex_state = 1}, - [1745] = {.lex_state = 42}, - [1746] = {.lex_state = 1}, - [1747] = {.lex_state = 1}, - [1748] = {.lex_state = 1}, - [1749] = {.lex_state = 1}, - [1750] = {.lex_state = 1}, - [1751] = {.lex_state = 1}, - [1752] = {.lex_state = 42}, - [1753] = {.lex_state = 42}, - [1754] = {.lex_state = 1}, - [1755] = {.lex_state = 42}, - [1756] = {.lex_state = 1}, - [1757] = {.lex_state = 1}, - [1758] = {.lex_state = 1}, - [1759] = {.lex_state = 1}, - [1760] = {.lex_state = 1}, - [1761] = {.lex_state = 1}, - [1762] = {.lex_state = 1}, - [1763] = {.lex_state = 1}, - [1764] = {.lex_state = 1}, - [1765] = {.lex_state = 42}, - [1766] = {.lex_state = 1}, - [1767] = {.lex_state = 1}, - [1768] = {.lex_state = 1}, - [1769] = {.lex_state = 1}, - [1770] = {.lex_state = 1}, - [1771] = {.lex_state = 1}, - [1772] = {.lex_state = 42}, - [1773] = {.lex_state = 1}, - [1774] = {.lex_state = 1}, - [1775] = {.lex_state = 1}, - [1776] = {.lex_state = 1}, - [1777] = {.lex_state = 1}, - [1778] = {.lex_state = 42}, - [1779] = {.lex_state = 1}, - [1780] = {.lex_state = 1}, - [1781] = {.lex_state = 1}, - [1782] = {.lex_state = 1}, - [1783] = {.lex_state = 1}, - [1784] = {.lex_state = 1}, - [1785] = {.lex_state = 1}, - [1786] = {.lex_state = 1}, - [1787] = {.lex_state = 1}, - [1788] = {.lex_state = 1}, - [1789] = {.lex_state = 1}, - [1790] = {.lex_state = 1}, - [1791] = {.lex_state = 1}, - [1792] = {.lex_state = 1}, - [1793] = {.lex_state = 1}, - [1794] = {.lex_state = 1}, - [1795] = {.lex_state = 1}, - [1796] = {.lex_state = 1}, - [1797] = {.lex_state = 1}, - [1798] = {.lex_state = 1}, - [1799] = {.lex_state = 42}, - [1800] = {.lex_state = 1}, - [1801] = {.lex_state = 1}, - [1802] = {.lex_state = 1}, - [1803] = {.lex_state = 1}, - [1804] = {.lex_state = 1}, - [1805] = {.lex_state = 1}, - [1806] = {.lex_state = 1}, - [1807] = {.lex_state = 1}, - [1808] = {.lex_state = 1}, - [1809] = {.lex_state = 1}, - [1810] = {.lex_state = 42}, - [1811] = {.lex_state = 42}, - [1812] = {.lex_state = 1}, - [1813] = {.lex_state = 1}, - [1814] = {.lex_state = 1}, - [1815] = {.lex_state = 42}, - [1816] = {.lex_state = 1}, - [1817] = {.lex_state = 1}, - [1818] = {.lex_state = 1}, - [1819] = {.lex_state = 1}, - [1820] = {.lex_state = 1}, - [1821] = {.lex_state = 1}, - [1822] = {.lex_state = 1}, - [1823] = {.lex_state = 1}, - [1824] = {.lex_state = 1}, - [1825] = {.lex_state = 1}, - [1826] = {.lex_state = 1}, - [1827] = {.lex_state = 11}, - [1828] = {.lex_state = 1}, - [1829] = {.lex_state = 1}, - [1830] = {.lex_state = 1}, - [1831] = {.lex_state = 1}, - [1832] = {.lex_state = 1}, - [1833] = {.lex_state = 11}, - [1834] = {.lex_state = 1}, - [1835] = {.lex_state = 1}, - [1836] = {.lex_state = 1}, - [1837] = {.lex_state = 1}, - [1838] = {.lex_state = 1}, - [1839] = {.lex_state = 1}, - [1840] = {.lex_state = 1}, - [1841] = {.lex_state = 1}, - [1842] = {.lex_state = 1}, - [1843] = {.lex_state = 1}, - [1844] = {.lex_state = 1}, - [1845] = {.lex_state = 1}, - [1846] = {.lex_state = 1}, - [1847] = {.lex_state = 1}, - [1848] = {.lex_state = 1}, - [1849] = {.lex_state = 1}, - [1850] = {.lex_state = 1}, - [1851] = {.lex_state = 1}, - [1852] = {.lex_state = 1}, - [1853] = {.lex_state = 11}, - [1854] = {.lex_state = 1}, - [1855] = {.lex_state = 1}, - [1856] = {.lex_state = 1}, - [1857] = {.lex_state = 1}, - [1858] = {.lex_state = 1}, - [1859] = {.lex_state = 1}, - [1860] = {.lex_state = 1}, - [1861] = {.lex_state = 1}, - [1862] = {.lex_state = 11}, - [1863] = {.lex_state = 1}, - [1864] = {.lex_state = 1}, - [1865] = {.lex_state = 1}, - [1866] = {.lex_state = 1}, - [1867] = {.lex_state = 42}, - [1868] = {.lex_state = 1}, - [1869] = {.lex_state = 1}, - [1870] = {.lex_state = 1}, - [1871] = {.lex_state = 1}, - [1872] = {.lex_state = 1}, - [1873] = {.lex_state = 1}, - [1874] = {.lex_state = 1}, - [1875] = {.lex_state = 1}, - [1876] = {.lex_state = 1}, - [1877] = {.lex_state = 1}, - [1878] = {.lex_state = 1}, - [1879] = {.lex_state = 1}, - [1880] = {.lex_state = 1}, - [1881] = {.lex_state = 1}, - [1882] = {.lex_state = 1}, - [1883] = {.lex_state = 1}, - [1884] = {.lex_state = 1}, - [1885] = {.lex_state = 1}, - [1886] = {.lex_state = 1}, - [1887] = {.lex_state = 1}, - [1888] = {.lex_state = 1}, - [1889] = {.lex_state = 1}, - [1890] = {.lex_state = 1}, - [1891] = {.lex_state = 1}, - [1892] = {.lex_state = 1}, - [1893] = {.lex_state = 1}, - [1894] = {.lex_state = 1}, - [1895] = {.lex_state = 1}, - [1896] = {.lex_state = 1}, - [1897] = {.lex_state = 1}, - [1898] = {.lex_state = 1}, - [1899] = {.lex_state = 1}, - [1900] = {.lex_state = 1}, - [1901] = {.lex_state = 1}, - [1902] = {.lex_state = 1}, - [1903] = {.lex_state = 1}, - [1904] = {.lex_state = 1}, - [1905] = {.lex_state = 1}, - [1906] = {.lex_state = 1}, - [1907] = {.lex_state = 1}, - [1908] = {.lex_state = 1}, - [1909] = {.lex_state = 1}, - [1910] = {.lex_state = 1}, - [1911] = {.lex_state = 1}, - [1912] = {.lex_state = 1}, - [1913] = {.lex_state = 1}, - [1914] = {.lex_state = 42}, - [1915] = {.lex_state = 1}, - [1916] = {.lex_state = 42}, - [1917] = {.lex_state = 42}, - [1918] = {.lex_state = 42}, - [1919] = {.lex_state = 1}, - [1920] = {.lex_state = 1}, - [1921] = {.lex_state = 1}, - [1922] = {.lex_state = 1}, - [1923] = {.lex_state = 1}, - [1924] = {.lex_state = 1}, - [1925] = {.lex_state = 1}, - [1926] = {.lex_state = 1}, - [1927] = {.lex_state = 1}, - [1928] = {.lex_state = 1}, - [1929] = {.lex_state = 1}, - [1930] = {.lex_state = 42}, - [1931] = {.lex_state = 1}, - [1932] = {.lex_state = 42}, - [1933] = {.lex_state = 1}, - [1934] = {.lex_state = 1}, - [1935] = {.lex_state = 1}, - [1936] = {.lex_state = 1}, - [1937] = {.lex_state = 1}, - [1938] = {.lex_state = 1}, - [1939] = {.lex_state = 42}, - [1940] = {.lex_state = 1}, - [1941] = {.lex_state = 42}, - [1942] = {.lex_state = 1}, - [1943] = {.lex_state = 11}, - [1944] = {.lex_state = 42}, - [1945] = {.lex_state = 1}, - [1946] = {.lex_state = 42}, - [1947] = {.lex_state = 1}, - [1948] = {.lex_state = 42}, - [1949] = {.lex_state = 1}, - [1950] = {.lex_state = 1}, - [1951] = {.lex_state = 1}, - [1952] = {.lex_state = 42}, - [1953] = {.lex_state = 42}, - [1954] = {.lex_state = 1}, - [1955] = {.lex_state = 1}, - [1956] = {.lex_state = 1}, - [1957] = {.lex_state = 1}, - [1958] = {.lex_state = 1}, - [1959] = {.lex_state = 1}, - [1960] = {.lex_state = 1}, - [1961] = {.lex_state = 42}, - [1962] = {.lex_state = 42}, - [1963] = {.lex_state = 1}, - [1964] = {.lex_state = 1}, - [1965] = {.lex_state = 42}, - [1966] = {.lex_state = 1}, - [1967] = {.lex_state = 1}, - [1968] = {.lex_state = 1}, - [1969] = {.lex_state = 1}, - [1970] = {.lex_state = 1}, - [1971] = {.lex_state = 1}, - [1972] = {.lex_state = 42}, - [1973] = {.lex_state = 1}, - [1974] = {.lex_state = 1}, - [1975] = {.lex_state = 1}, - [1976] = {.lex_state = 1}, - [1977] = {.lex_state = 1}, - [1978] = {.lex_state = 1}, - [1979] = {.lex_state = 1}, - [1980] = {.lex_state = 42}, - [1981] = {.lex_state = 1}, - [1982] = {.lex_state = 1}, - [1983] = {.lex_state = 1}, - [1984] = {.lex_state = 1}, - [1985] = {.lex_state = 11}, - [1986] = {.lex_state = 1}, - [1987] = {.lex_state = 1}, - [1988] = {.lex_state = 1}, - [1989] = {.lex_state = 1}, - [1990] = {.lex_state = 42}, - [1991] = {.lex_state = 1}, - [1992] = {.lex_state = 1}, - [1993] = {.lex_state = 1}, - [1994] = {.lex_state = 1}, - [1995] = {.lex_state = 1}, - [1996] = {.lex_state = 1}, - [1997] = {.lex_state = 1}, - [1998] = {.lex_state = 42}, - [1999] = {.lex_state = 1}, - [2000] = {.lex_state = 1}, - [2001] = {.lex_state = 42}, - [2002] = {.lex_state = 1}, - [2003] = {.lex_state = 1}, - [2004] = {.lex_state = 42}, - [2005] = {.lex_state = 1}, - [2006] = {.lex_state = 1}, - [2007] = {.lex_state = 42}, - [2008] = {.lex_state = 1}, - [2009] = {.lex_state = 42}, - [2010] = {.lex_state = 1}, - [2011] = {.lex_state = 1}, - [2012] = {.lex_state = 1}, - [2013] = {.lex_state = 1}, - [2014] = {.lex_state = 1}, - [2015] = {.lex_state = 1}, - [2016] = {.lex_state = 1}, - [2017] = {.lex_state = 1}, - [2018] = {.lex_state = 1}, - [2019] = {.lex_state = 42}, - [2020] = {.lex_state = 1}, - [2021] = {.lex_state = 1}, - [2022] = {.lex_state = 1}, - [2023] = {.lex_state = 1}, - [2024] = {.lex_state = 1}, - [2025] = {.lex_state = 1}, - [2026] = {.lex_state = 1}, - [2027] = {.lex_state = 1}, - [2028] = {.lex_state = 1}, - [2029] = {.lex_state = 1}, - [2030] = {.lex_state = 1}, - [2031] = {.lex_state = 1}, - [2032] = {.lex_state = 1}, - [2033] = {.lex_state = 1}, - [2034] = {.lex_state = 42}, - [2035] = {.lex_state = 42}, - [2036] = {.lex_state = 42}, - [2037] = {.lex_state = 1}, - [2038] = {.lex_state = 1}, - [2039] = {.lex_state = 42}, - [2040] = {.lex_state = 42}, - [2041] = {.lex_state = 1}, - [2042] = {.lex_state = 1}, - [2043] = {.lex_state = 1}, - [2044] = {.lex_state = 1}, - [2045] = {.lex_state = 1}, - [2046] = {.lex_state = 1}, - [2047] = {.lex_state = 1}, - [2048] = {.lex_state = 1}, - [2049] = {.lex_state = 42}, - [2050] = {.lex_state = 42}, - [2051] = {.lex_state = 1}, - [2052] = {.lex_state = 1}, - [2053] = {.lex_state = 12}, - [2054] = {.lex_state = 1}, - [2055] = {.lex_state = 1}, - [2056] = {.lex_state = 42}, - [2057] = {.lex_state = 1}, - [2058] = {.lex_state = 1}, - [2059] = {.lex_state = 1}, - [2060] = {.lex_state = 42}, - [2061] = {.lex_state = 1}, - [2062] = {.lex_state = 42}, - [2063] = {.lex_state = 1}, - [2064] = {.lex_state = 42}, - [2065] = {.lex_state = 1}, - [2066] = {.lex_state = 1}, - [2067] = {.lex_state = 12}, - [2068] = {.lex_state = 42}, - [2069] = {.lex_state = 42}, - [2070] = {.lex_state = 42}, - [2071] = {.lex_state = 42}, - [2072] = {.lex_state = 1}, - [2073] = {.lex_state = 1}, - [2074] = {.lex_state = 42}, - [2075] = {.lex_state = 1}, - [2076] = {.lex_state = 1}, - [2077] = {.lex_state = 42}, - [2078] = {.lex_state = 42}, - [2079] = {.lex_state = 42}, - [2080] = {.lex_state = 42}, - [2081] = {.lex_state = 42}, - [2082] = {.lex_state = 1}, - [2083] = {.lex_state = 42}, - [2084] = {.lex_state = 1}, - [2085] = {.lex_state = 42}, - [2086] = {.lex_state = 42}, - [2087] = {.lex_state = 1}, - [2088] = {.lex_state = 42}, - [2089] = {.lex_state = 42}, - [2090] = {.lex_state = 1}, - [2091] = {.lex_state = 1}, - [2092] = {.lex_state = 42}, - [2093] = {.lex_state = 42}, - [2094] = {.lex_state = 1}, - [2095] = {.lex_state = 1}, - [2096] = {.lex_state = 42}, - [2097] = {.lex_state = 42}, - [2098] = {.lex_state = 1}, - [2099] = {.lex_state = 42}, - [2100] = {.lex_state = 1}, - [2101] = {.lex_state = 42}, - [2102] = {.lex_state = 42}, - [2103] = {.lex_state = 42}, - [2104] = {.lex_state = 1}, - [2105] = {.lex_state = 1}, - [2106] = {.lex_state = 42}, - [2107] = {.lex_state = 1}, - [2108] = {.lex_state = 1}, - [2109] = {.lex_state = 42}, - [2110] = {.lex_state = 42}, - [2111] = {.lex_state = 42}, - [2112] = {.lex_state = 1}, - [2113] = {.lex_state = 1}, - [2114] = {.lex_state = 42}, - [2115] = {.lex_state = 42}, - [2116] = {.lex_state = 42}, - [2117] = {.lex_state = 1}, - [2118] = {.lex_state = 42}, - [2119] = {.lex_state = 42}, - [2120] = {.lex_state = 42}, - [2121] = {.lex_state = 1}, - [2122] = {.lex_state = 42}, - [2123] = {.lex_state = 42}, - [2124] = {.lex_state = 1}, - [2125] = {.lex_state = 42}, - [2126] = {.lex_state = 42}, - [2127] = {.lex_state = 42}, - [2128] = {.lex_state = 42}, - [2129] = {.lex_state = 1}, - [2130] = {.lex_state = 1}, - [2131] = {.lex_state = 42}, - [2132] = {.lex_state = 42}, - [2133] = {.lex_state = 42}, - [2134] = {.lex_state = 1}, - [2135] = {.lex_state = 42}, - [2136] = {.lex_state = 42}, - [2137] = {.lex_state = 42}, - [2138] = {.lex_state = 42}, - [2139] = {.lex_state = 1}, - [2140] = {.lex_state = 1}, - [2141] = {.lex_state = 42}, - [2142] = {.lex_state = 42}, - [2143] = {.lex_state = 42}, - [2144] = {.lex_state = 1}, - [2145] = {.lex_state = 1}, - [2146] = {.lex_state = 1}, - [2147] = {.lex_state = 42}, - [2148] = {.lex_state = 42}, - [2149] = {.lex_state = 42}, - [2150] = {.lex_state = 1}, - [2151] = {.lex_state = 1}, - [2152] = {.lex_state = 42}, - [2153] = {.lex_state = 42}, - [2154] = {.lex_state = 42}, - [2155] = {.lex_state = 1}, - [2156] = {.lex_state = 1}, - [2157] = {.lex_state = 1}, - [2158] = {.lex_state = 42}, - [2159] = {.lex_state = 1}, - [2160] = {.lex_state = 42}, - [2161] = {.lex_state = 42}, - [2162] = {.lex_state = 42}, - [2163] = {.lex_state = 42}, - [2164] = {.lex_state = 42}, - [2165] = {.lex_state = 1}, - [2166] = {.lex_state = 42}, - [2167] = {.lex_state = 42}, - [2168] = {.lex_state = 1}, - [2169] = {.lex_state = 42}, - [2170] = {.lex_state = 1}, - [2171] = {.lex_state = 1}, - [2172] = {.lex_state = 42}, - [2173] = {.lex_state = 42}, - [2174] = {.lex_state = 42}, - [2175] = {.lex_state = 42}, - [2176] = {.lex_state = 1}, - [2177] = {.lex_state = 42}, - [2178] = {.lex_state = 1}, - [2179] = {.lex_state = 42}, - [2180] = {.lex_state = 42}, - [2181] = {.lex_state = 42}, - [2182] = {.lex_state = 1}, - [2183] = {.lex_state = 42}, - [2184] = {.lex_state = 1}, - [2185] = {.lex_state = 42}, - [2186] = {.lex_state = 42}, - [2187] = {.lex_state = 42}, - [2188] = {.lex_state = 42}, - [2189] = {.lex_state = 1}, - [2190] = {.lex_state = 42}, - [2191] = {.lex_state = 1}, - [2192] = {.lex_state = 42}, - [2193] = {.lex_state = 1}, - [2194] = {.lex_state = 1}, - [2195] = {.lex_state = 1}, - [2196] = {.lex_state = 1}, - [2197] = {.lex_state = 1}, - [2198] = {.lex_state = 42}, - [2199] = {.lex_state = 42}, - [2200] = {.lex_state = 42}, - [2201] = {.lex_state = 1}, - [2202] = {.lex_state = 1}, - [2203] = {.lex_state = 1}, - [2204] = {.lex_state = 42}, - [2205] = {.lex_state = 1}, - [2206] = {.lex_state = 42}, - [2207] = {.lex_state = 42}, - [2208] = {.lex_state = 42}, - [2209] = {.lex_state = 1}, - [2210] = {.lex_state = 1}, - [2211] = {.lex_state = 1}, - [2212] = {.lex_state = 42}, - [2213] = {.lex_state = 1}, - [2214] = {.lex_state = 1}, - [2215] = {.lex_state = 1}, - [2216] = {.lex_state = 1}, - [2217] = {.lex_state = 42}, - [2218] = {.lex_state = 42}, - [2219] = {.lex_state = 1}, - [2220] = {.lex_state = 1}, - [2221] = {.lex_state = 1}, - [2222] = {.lex_state = 42}, - [2223] = {.lex_state = 42}, - [2224] = {.lex_state = 1}, - [2225] = {.lex_state = 42}, - [2226] = {.lex_state = 1}, - [2227] = {.lex_state = 1}, - [2228] = {.lex_state = 42}, - [2229] = {.lex_state = 1}, - [2230] = {.lex_state = 1}, - [2231] = {.lex_state = 42}, - [2232] = {.lex_state = 1}, - [2233] = {.lex_state = 1}, - [2234] = {.lex_state = 42}, - [2235] = {.lex_state = 42}, - [2236] = {.lex_state = 1}, - [2237] = {.lex_state = 1}, - [2238] = {.lex_state = 1}, - [2239] = {.lex_state = 1}, - [2240] = {.lex_state = 1}, - [2241] = {.lex_state = 42}, - [2242] = {.lex_state = 42}, - [2243] = {.lex_state = 1}, - [2244] = {.lex_state = 42}, - [2245] = {.lex_state = 1}, - [2246] = {.lex_state = 42}, - [2247] = {.lex_state = 1}, - [2248] = {.lex_state = 1}, - [2249] = {.lex_state = 42}, - [2250] = {.lex_state = 42}, - [2251] = {.lex_state = 42}, - [2252] = {.lex_state = 42}, - [2253] = {.lex_state = 1}, - [2254] = {.lex_state = 1}, - [2255] = {.lex_state = 1}, - [2256] = {.lex_state = 42}, - [2257] = {.lex_state = 1}, - [2258] = {.lex_state = 42}, - [2259] = {.lex_state = 1}, - [2260] = {.lex_state = 42}, - [2261] = {.lex_state = 42}, - [2262] = {.lex_state = 1}, - [2263] = {.lex_state = 42}, - [2264] = {.lex_state = 1}, - [2265] = {.lex_state = 42}, - [2266] = {.lex_state = 42}, - [2267] = {.lex_state = 42}, - [2268] = {.lex_state = 42}, - [2269] = {.lex_state = 42}, - [2270] = {.lex_state = 42}, - [2271] = {.lex_state = 42}, - [2272] = {.lex_state = 42}, - [2273] = {.lex_state = 42}, - [2274] = {.lex_state = 42}, - [2275] = {.lex_state = 42}, - [2276] = {.lex_state = 42}, - [2277] = {.lex_state = 42}, - [2278] = {.lex_state = 42}, - [2279] = {.lex_state = 42}, - [2280] = {.lex_state = 42}, - [2281] = {.lex_state = 42}, - [2282] = {.lex_state = 42}, - [2283] = {.lex_state = 42}, - [2284] = {.lex_state = 42}, - [2285] = {.lex_state = 42}, - [2286] = {.lex_state = 42}, - [2287] = {.lex_state = 42}, - [2288] = {.lex_state = 42}, - [2289] = {.lex_state = 42}, - [2290] = {.lex_state = 42}, - [2291] = {.lex_state = 5}, - [2292] = {.lex_state = 42}, - [2293] = {.lex_state = 5}, - [2294] = {.lex_state = 5}, - [2295] = {.lex_state = 1}, - [2296] = {.lex_state = 42}, - [2297] = {.lex_state = 42}, - [2298] = {.lex_state = 42}, - [2299] = {.lex_state = 42}, - [2300] = {.lex_state = 1}, - [2301] = {.lex_state = 1}, - [2302] = {.lex_state = 42}, - [2303] = {.lex_state = 1}, - [2304] = {.lex_state = 42}, - [2305] = {.lex_state = 42}, - [2306] = {.lex_state = 42}, - [2307] = {.lex_state = 1}, - [2308] = {.lex_state = 42}, - [2309] = {.lex_state = 42}, - [2310] = {.lex_state = 1}, - [2311] = {.lex_state = 1}, - [2312] = {.lex_state = 42}, - [2313] = {.lex_state = 42}, - [2314] = {.lex_state = 42}, - [2315] = {.lex_state = 42}, - [2316] = {.lex_state = 42}, - [2317] = {.lex_state = 1}, - [2318] = {.lex_state = 42}, - [2319] = {.lex_state = 42}, - [2320] = {.lex_state = 42}, - [2321] = {.lex_state = 42}, - [2322] = {.lex_state = 1}, - [2323] = {.lex_state = 42}, - [2324] = {.lex_state = 42}, - [2325] = {.lex_state = 1}, - [2326] = {.lex_state = 1}, - [2327] = {.lex_state = 42}, - [2328] = {.lex_state = 1}, - [2329] = {.lex_state = 1}, - [2330] = {.lex_state = 1}, - [2331] = {.lex_state = 42}, - [2332] = {.lex_state = 1}, - [2333] = {.lex_state = 1}, - [2334] = {.lex_state = 42}, - [2335] = {.lex_state = 42}, - [2336] = {.lex_state = 42}, - [2337] = {.lex_state = 42}, - [2338] = {.lex_state = 1}, - [2339] = {.lex_state = 42}, - [2340] = {.lex_state = 42}, - [2341] = {.lex_state = 42}, - [2342] = {.lex_state = 1}, - [2343] = {.lex_state = 42}, - [2344] = {.lex_state = 42}, - [2345] = {.lex_state = 42}, - [2346] = {.lex_state = 42}, - [2347] = {.lex_state = 42}, - [2348] = {.lex_state = 42}, - [2349] = {.lex_state = 1}, - [2350] = {.lex_state = 42}, - [2351] = {.lex_state = 42}, - [2352] = {.lex_state = 1}, - [2353] = {.lex_state = 42}, - [2354] = {.lex_state = 42}, - [2355] = {.lex_state = 1}, - [2356] = {.lex_state = 42}, - [2357] = {.lex_state = 42}, - [2358] = {.lex_state = 42}, - [2359] = {.lex_state = 42}, - [2360] = {.lex_state = 42}, - [2361] = {.lex_state = 42}, - [2362] = {.lex_state = 42}, - [2363] = {.lex_state = 42}, - [2364] = {.lex_state = 42}, - [2365] = {.lex_state = 1}, - [2366] = {.lex_state = 42}, - [2367] = {.lex_state = 1}, - [2368] = {.lex_state = 42}, - [2369] = {.lex_state = 42}, - [2370] = {.lex_state = 1}, - [2371] = {.lex_state = 1}, - [2372] = {.lex_state = 42}, - [2373] = {.lex_state = 1}, - [2374] = {.lex_state = 1}, - [2375] = {.lex_state = 1}, - [2376] = {.lex_state = 1}, - [2377] = {.lex_state = 42}, - [2378] = {.lex_state = 42}, - [2379] = {.lex_state = 42}, - [2380] = {.lex_state = 42}, - [2381] = {.lex_state = 42}, - [2382] = {.lex_state = 42}, - [2383] = {.lex_state = 42}, - [2384] = {.lex_state = 42}, - [2385] = {.lex_state = 42}, - [2386] = {.lex_state = 42}, - [2387] = {.lex_state = 42}, - [2388] = {.lex_state = 42}, - [2389] = {.lex_state = 42}, - [2390] = {.lex_state = 1}, - [2391] = {.lex_state = 42}, - [2392] = {.lex_state = 1}, - [2393] = {.lex_state = 1}, - [2394] = {.lex_state = 42}, - [2395] = {.lex_state = 1}, - [2396] = {.lex_state = 42}, - [2397] = {.lex_state = 42}, - [2398] = {.lex_state = 42}, - [2399] = {.lex_state = 1}, - [2400] = {.lex_state = 1}, - [2401] = {.lex_state = 42}, - [2402] = {.lex_state = 42}, - [2403] = {.lex_state = 42}, - [2404] = {.lex_state = 1}, - [2405] = {.lex_state = 1}, - [2406] = {.lex_state = 1}, - [2407] = {.lex_state = 1}, - [2408] = {.lex_state = 42}, - [2409] = {.lex_state = 42}, - [2410] = {.lex_state = 42}, - [2411] = {.lex_state = 1}, - [2412] = {.lex_state = 42}, - [2413] = {.lex_state = 42}, - [2414] = {.lex_state = 1}, - [2415] = {.lex_state = 1}, - [2416] = {.lex_state = 42}, - [2417] = {.lex_state = 42}, - [2418] = {.lex_state = 1}, - [2419] = {.lex_state = 42}, - [2420] = {.lex_state = 1}, - [2421] = {.lex_state = 1}, - [2422] = {.lex_state = 42}, - [2423] = {.lex_state = 42}, - [2424] = {.lex_state = 42}, - [2425] = {.lex_state = 42}, - [2426] = {.lex_state = 42}, - [2427] = {.lex_state = 1}, - [2428] = {.lex_state = 42}, - [2429] = {.lex_state = 1}, - [2430] = {.lex_state = 42}, - [2431] = {.lex_state = 42}, - [2432] = {.lex_state = 42}, - [2433] = {.lex_state = 42}, - [2434] = {.lex_state = 42}, - [2435] = {.lex_state = 42}, - [2436] = {.lex_state = 42}, - [2437] = {.lex_state = 42}, - [2438] = {.lex_state = 42}, - [2439] = {.lex_state = 42}, - [2440] = {.lex_state = 42}, - [2441] = {.lex_state = 42}, - [2442] = {.lex_state = 42}, - [2443] = {.lex_state = 42}, - [2444] = {.lex_state = 42}, - [2445] = {.lex_state = 42}, - [2446] = {.lex_state = 42}, - [2447] = {.lex_state = 42}, - [2448] = {.lex_state = 42}, - [2449] = {.lex_state = 42}, - [2450] = {.lex_state = 42}, - [2451] = {.lex_state = 42}, - [2452] = {.lex_state = 42}, - [2453] = {.lex_state = 42}, - [2454] = {.lex_state = 42}, - [2455] = {.lex_state = 42}, - [2456] = {.lex_state = 42}, - [2457] = {.lex_state = 42}, - [2458] = {.lex_state = 42}, - [2459] = {.lex_state = 42}, - [2460] = {.lex_state = 42}, - [2461] = {.lex_state = 42}, - [2462] = {.lex_state = 42}, - [2463] = {.lex_state = 42}, - [2464] = {.lex_state = 42}, - [2465] = {.lex_state = 42}, - [2466] = {.lex_state = 42}, - [2467] = {.lex_state = 42}, - [2468] = {.lex_state = 42}, - [2469] = {.lex_state = 42}, - [2470] = {.lex_state = 42}, - [2471] = {.lex_state = 42}, - [2472] = {.lex_state = 42}, - [2473] = {.lex_state = 42}, - [2474] = {.lex_state = 42}, - [2475] = {.lex_state = 42}, - [2476] = {.lex_state = 42}, - [2477] = {.lex_state = 42}, - [2478] = {.lex_state = 42}, - [2479] = {.lex_state = 42}, - [2480] = {.lex_state = 42}, - [2481] = {.lex_state = 42}, - [2482] = {.lex_state = 42}, - [2483] = {.lex_state = 42}, - [2484] = {.lex_state = 42}, - [2485] = {.lex_state = 42}, - [2486] = {.lex_state = 42}, - [2487] = {.lex_state = 42}, - [2488] = {.lex_state = 1}, - [2489] = {.lex_state = 42}, - [2490] = {.lex_state = 42}, - [2491] = {.lex_state = 42}, - [2492] = {.lex_state = 42}, - [2493] = {.lex_state = 42}, - [2494] = {.lex_state = 42}, - [2495] = {.lex_state = 42}, - [2496] = {.lex_state = 42}, - [2497] = {.lex_state = 42}, - [2498] = {.lex_state = 42}, - [2499] = {.lex_state = 42}, - [2500] = {.lex_state = 42}, - [2501] = {.lex_state = 42}, - [2502] = {.lex_state = 42}, - [2503] = {.lex_state = 42}, - [2504] = {.lex_state = 42}, - [2505] = {.lex_state = 42}, - [2506] = {.lex_state = 42}, - [2507] = {.lex_state = 42}, - [2508] = {.lex_state = 42}, - [2509] = {.lex_state = 42}, - [2510] = {.lex_state = 42}, - [2511] = {.lex_state = 42}, - [2512] = {.lex_state = 42}, - [2513] = {.lex_state = 42}, - [2514] = {.lex_state = 42}, - [2515] = {.lex_state = 42}, - [2516] = {.lex_state = 42}, - [2517] = {.lex_state = 42}, - [2518] = {.lex_state = 42}, - [2519] = {.lex_state = 42}, - [2520] = {.lex_state = 42}, - [2521] = {.lex_state = 42}, - [2522] = {.lex_state = 42}, - [2523] = {.lex_state = 42}, - [2524] = {.lex_state = 42}, - [2525] = {.lex_state = 42}, - [2526] = {.lex_state = 42}, - [2527] = {.lex_state = 42}, - [2528] = {.lex_state = 42}, - [2529] = {.lex_state = 42}, - [2530] = {.lex_state = 42}, - [2531] = {.lex_state = 42}, - [2532] = {.lex_state = 42}, - [2533] = {.lex_state = 42}, - [2534] = {.lex_state = 42}, - [2535] = {.lex_state = 42}, - [2536] = {.lex_state = 42}, - [2537] = {.lex_state = 42}, - [2538] = {.lex_state = 42}, - [2539] = {.lex_state = 42}, - [2540] = {.lex_state = 42}, - [2541] = {.lex_state = 42}, - [2542] = {.lex_state = 42}, - [2543] = {.lex_state = 42}, - [2544] = {.lex_state = 42}, - [2545] = {.lex_state = 42}, - [2546] = {.lex_state = 42}, - [2547] = {.lex_state = 42}, - [2548] = {.lex_state = 42}, - [2549] = {.lex_state = 42}, - [2550] = {.lex_state = 42}, - [2551] = {.lex_state = 42}, - [2552] = {.lex_state = 42}, - [2553] = {.lex_state = 42}, - [2554] = {.lex_state = 42}, - [2555] = {.lex_state = 42}, - [2556] = {.lex_state = 42}, - [2557] = {.lex_state = 42}, - [2558] = {.lex_state = 42}, - [2559] = {.lex_state = 42}, - [2560] = {.lex_state = 42}, - [2561] = {.lex_state = 42}, - [2562] = {.lex_state = 42}, - [2563] = {.lex_state = 42}, - [2564] = {.lex_state = 42}, - [2565] = {.lex_state = 42}, - [2566] = {.lex_state = 42}, - [2567] = {.lex_state = 42}, - [2568] = {.lex_state = 42}, - [2569] = {.lex_state = 42}, - [2570] = {.lex_state = 42}, - [2571] = {.lex_state = 42}, - [2572] = {.lex_state = 42}, - [2573] = {.lex_state = 42}, - [2574] = {.lex_state = 42}, - [2575] = {.lex_state = 42}, - [2576] = {.lex_state = 42}, - [2577] = {.lex_state = 42}, - [2578] = {.lex_state = 42}, - [2579] = {.lex_state = 42}, - [2580] = {.lex_state = 42}, - [2581] = {.lex_state = 42}, - [2582] = {.lex_state = 42}, - [2583] = {.lex_state = 42}, - [2584] = {.lex_state = 42}, - [2585] = {.lex_state = 42}, - [2586] = {.lex_state = 42}, - [2587] = {.lex_state = 42}, - [2588] = {.lex_state = 42}, - [2589] = {.lex_state = 42}, - [2590] = {.lex_state = 42}, - [2591] = {.lex_state = 42}, - [2592] = {.lex_state = 42}, - [2593] = {.lex_state = 42}, - [2594] = {.lex_state = 42}, - [2595] = {.lex_state = 42}, - [2596] = {.lex_state = 42}, - [2597] = {.lex_state = 42}, - [2598] = {.lex_state = 42}, - [2599] = {.lex_state = 42}, - [2600] = {.lex_state = 42}, - [2601] = {.lex_state = 42}, - [2602] = {.lex_state = 42}, - [2603] = {.lex_state = 42}, - [2604] = {.lex_state = 42}, - [2605] = {.lex_state = 42}, - [2606] = {.lex_state = 42}, - [2607] = {.lex_state = 42}, - [2608] = {.lex_state = 42}, - [2609] = {.lex_state = 42}, - [2610] = {.lex_state = 42}, - [2611] = {.lex_state = 1}, - [2612] = {.lex_state = 42}, - [2613] = {.lex_state = 42}, - [2614] = {.lex_state = 42}, - [2615] = {.lex_state = 1}, - [2616] = {.lex_state = 42}, - [2617] = {.lex_state = 1}, - [2618] = {.lex_state = 1}, - [2619] = {.lex_state = 1}, - [2620] = {.lex_state = 42}, - [2621] = {.lex_state = 42}, - [2622] = {.lex_state = 42}, - [2623] = {.lex_state = 1}, - [2624] = {.lex_state = 42}, - [2625] = {.lex_state = 1}, - [2626] = {.lex_state = 1}, - [2627] = {.lex_state = 42}, - [2628] = {.lex_state = 1}, - [2629] = {.lex_state = 1}, - [2630] = {.lex_state = 42}, - [2631] = {.lex_state = 1}, - [2632] = {.lex_state = 1}, - [2633] = {.lex_state = 42}, - [2634] = {.lex_state = 42}, - [2635] = {.lex_state = 42}, - [2636] = {.lex_state = 42}, - [2637] = {.lex_state = 42}, - [2638] = {.lex_state = 1}, - [2639] = {.lex_state = 1}, - [2640] = {.lex_state = 42}, - [2641] = {.lex_state = 42}, - [2642] = {.lex_state = 1}, - [2643] = {.lex_state = 42}, - [2644] = {.lex_state = 1}, - [2645] = {.lex_state = 1}, - [2646] = {.lex_state = 1}, - [2647] = {.lex_state = 1}, - [2648] = {.lex_state = 42}, - [2649] = {.lex_state = 1}, - [2650] = {.lex_state = 1}, - [2651] = {.lex_state = 1}, - [2652] = {.lex_state = 1}, - [2653] = {.lex_state = 42}, - [2654] = {.lex_state = 42}, - [2655] = {.lex_state = 42}, - [2656] = {.lex_state = 1}, - [2657] = {.lex_state = 42}, - [2658] = {.lex_state = 1}, - [2659] = {.lex_state = 1}, - [2660] = {.lex_state = 42}, - [2661] = {.lex_state = 42}, - [2662] = {.lex_state = 42}, - [2663] = {.lex_state = 42}, - [2664] = {.lex_state = 42}, - [2665] = {.lex_state = 1}, - [2666] = {.lex_state = 42}, - [2667] = {.lex_state = 42}, - [2668] = {.lex_state = 42}, - [2669] = {.lex_state = 1}, - [2670] = {.lex_state = 42}, - [2671] = {.lex_state = 42}, - [2672] = {.lex_state = 42}, - [2673] = {.lex_state = 42}, - [2674] = {.lex_state = 42}, - [2675] = {.lex_state = 1}, - [2676] = {.lex_state = 42}, - [2677] = {.lex_state = 1}, - [2678] = {.lex_state = 42}, - [2679] = {.lex_state = 42}, - [2680] = {.lex_state = 1}, - [2681] = {.lex_state = 42}, - [2682] = {.lex_state = 42}, - [2683] = {.lex_state = 1}, - [2684] = {.lex_state = 1}, - [2685] = {.lex_state = 42}, - [2686] = {.lex_state = 42}, - [2687] = {.lex_state = 42}, - [2688] = {.lex_state = 42}, - [2689] = {.lex_state = 1}, - [2690] = {.lex_state = 42}, - [2691] = {.lex_state = 42}, - [2692] = {.lex_state = 1}, - [2693] = {.lex_state = 1}, - [2694] = {.lex_state = 1}, - [2695] = {.lex_state = 1}, - [2696] = {.lex_state = 1}, - [2697] = {.lex_state = 42}, - [2698] = {.lex_state = 42}, - [2699] = {.lex_state = 1}, - [2700] = {.lex_state = 1}, - [2701] = {.lex_state = 1}, - [2702] = {.lex_state = 42}, - [2703] = {.lex_state = 1}, - [2704] = {.lex_state = 42}, - [2705] = {.lex_state = 1}, - [2706] = {.lex_state = 1}, - [2707] = {.lex_state = 42}, - [2708] = {.lex_state = 42}, - [2709] = {.lex_state = 42}, - [2710] = {.lex_state = 1}, - [2711] = {.lex_state = 1}, - [2712] = {.lex_state = 1}, - [2713] = {.lex_state = 42}, - [2714] = {.lex_state = 1}, - [2715] = {.lex_state = 1}, - [2716] = {.lex_state = 1}, - [2717] = {.lex_state = 1}, - [2718] = {.lex_state = 42}, - [2719] = {.lex_state = 1}, - [2720] = {.lex_state = 42}, - [2721] = {.lex_state = 1}, - [2722] = {.lex_state = 1}, - [2723] = {.lex_state = 1}, - [2724] = {.lex_state = 1}, - [2725] = {.lex_state = 1}, - [2726] = {.lex_state = 1}, - [2727] = {.lex_state = 1}, - [2728] = {.lex_state = 1}, - [2729] = {.lex_state = 1}, - [2730] = {.lex_state = 1}, - [2731] = {.lex_state = 1}, - [2732] = {.lex_state = 42}, - [2733] = {.lex_state = 1}, - [2734] = {.lex_state = 42}, - [2735] = {.lex_state = 1}, - [2736] = {.lex_state = 1}, - [2737] = {.lex_state = 1}, - [2738] = {.lex_state = 1}, - [2739] = {.lex_state = 1}, - [2740] = {.lex_state = 1}, - [2741] = {.lex_state = 42}, - [2742] = {.lex_state = 1}, - [2743] = {.lex_state = 1}, - [2744] = {.lex_state = 1}, - [2745] = {.lex_state = 1}, - [2746] = {.lex_state = 42}, - [2747] = {.lex_state = 42}, - [2748] = {.lex_state = 1}, - [2749] = {.lex_state = 42}, - [2750] = {.lex_state = 1}, - [2751] = {.lex_state = 1}, - [2752] = {.lex_state = 42}, - [2753] = {.lex_state = 1}, - [2754] = {.lex_state = 1}, - [2755] = {.lex_state = 1}, - [2756] = {.lex_state = 42}, - [2757] = {.lex_state = 42}, - [2758] = {.lex_state = 42}, - [2759] = {.lex_state = 1}, - [2760] = {.lex_state = 1}, - [2761] = {.lex_state = 1}, - [2762] = {.lex_state = 1}, - [2763] = {.lex_state = 42}, - [2764] = {.lex_state = 1}, - [2765] = {.lex_state = 42}, - [2766] = {.lex_state = 42}, - [2767] = {.lex_state = 1}, - [2768] = {.lex_state = 42}, - [2769] = {.lex_state = 1}, - [2770] = {.lex_state = 1}, - [2771] = {.lex_state = 42}, - [2772] = {.lex_state = 1}, - [2773] = {.lex_state = 1}, - [2774] = {.lex_state = 42}, - [2775] = {.lex_state = 1}, - [2776] = {.lex_state = 1}, - [2777] = {.lex_state = 42}, - [2778] = {.lex_state = 1}, - [2779] = {.lex_state = 1}, - [2780] = {.lex_state = 1}, - [2781] = {.lex_state = 1}, - [2782] = {.lex_state = 42}, - [2783] = {.lex_state = 1}, - [2784] = {.lex_state = 1}, - [2785] = {.lex_state = 1}, - [2786] = {.lex_state = 1}, - [2787] = {.lex_state = 42}, - [2788] = {.lex_state = 42}, - [2789] = {.lex_state = 1}, - [2790] = {.lex_state = 42}, - [2791] = {.lex_state = 1}, - [2792] = {.lex_state = 42}, - [2793] = {.lex_state = 42}, - [2794] = {.lex_state = 1}, - [2795] = {.lex_state = 42}, - [2796] = {.lex_state = 1}, - [2797] = {.lex_state = 1}, - [2798] = {.lex_state = 42}, - [2799] = {.lex_state = 1}, - [2800] = {.lex_state = 42}, - [2801] = {.lex_state = 1}, - [2802] = {.lex_state = 1}, - [2803] = {.lex_state = 42}, - [2804] = {.lex_state = 1}, - [2805] = {.lex_state = 42}, - [2806] = {.lex_state = 1}, - [2807] = {.lex_state = 42}, - [2808] = {.lex_state = 1}, - [2809] = {.lex_state = 1}, - [2810] = {.lex_state = 42}, - [2811] = {.lex_state = 1}, - [2812] = {.lex_state = 1}, - [2813] = {.lex_state = 42}, - [2814] = {.lex_state = 42}, - [2815] = {.lex_state = 42}, - [2816] = {.lex_state = 1}, - [2817] = {.lex_state = 1}, - [2818] = {.lex_state = 1}, - [2819] = {.lex_state = 42}, - [2820] = {.lex_state = 42}, - [2821] = {.lex_state = 1}, - [2822] = {.lex_state = 42}, - [2823] = {.lex_state = 1}, - [2824] = {.lex_state = 1}, - [2825] = {.lex_state = 42}, - [2826] = {.lex_state = 42}, - [2827] = {.lex_state = 42}, - [2828] = {.lex_state = 1}, - [2829] = {.lex_state = 1}, - [2830] = {.lex_state = 1}, - [2831] = {.lex_state = 1}, - [2832] = {.lex_state = 1}, - [2833] = {.lex_state = 1}, - [2834] = {.lex_state = 1}, - [2835] = {.lex_state = 1}, - [2836] = {.lex_state = 42}, - [2837] = {.lex_state = 42}, - [2838] = {.lex_state = 1}, - [2839] = {.lex_state = 1}, - [2840] = {.lex_state = 42}, - [2841] = {.lex_state = 1}, - [2842] = {.lex_state = 1}, - [2843] = {.lex_state = 42}, - [2844] = {.lex_state = 1}, - [2845] = {.lex_state = 42}, - [2846] = {.lex_state = 1}, - [2847] = {.lex_state = 42}, - [2848] = {.lex_state = 42}, - [2849] = {.lex_state = 1}, - [2850] = {.lex_state = 42}, - [2851] = {.lex_state = 42}, - [2852] = {.lex_state = 42}, - [2853] = {.lex_state = 1}, - [2854] = {.lex_state = 1}, - [2855] = {.lex_state = 42}, - [2856] = {.lex_state = 1}, - [2857] = {.lex_state = 42}, - [2858] = {.lex_state = 1}, - [2859] = {.lex_state = 42}, - [2860] = {.lex_state = 42}, - [2861] = {.lex_state = 1}, - [2862] = {.lex_state = 42}, - [2863] = {.lex_state = 42}, - [2864] = {.lex_state = 1}, - [2865] = {.lex_state = 42}, - [2866] = {.lex_state = 1}, - [2867] = {.lex_state = 42}, - [2868] = {.lex_state = 1}, - [2869] = {.lex_state = 1}, - [2870] = {.lex_state = 42}, - [2871] = {.lex_state = 42}, - [2872] = {.lex_state = 1}, - [2873] = {.lex_state = 42}, - [2874] = {.lex_state = 1}, - [2875] = {.lex_state = 1}, - [2876] = {.lex_state = 1}, - [2877] = {.lex_state = 42}, - [2878] = {.lex_state = 42}, - [2879] = {.lex_state = 1}, - [2880] = {.lex_state = 42}, - [2881] = {.lex_state = 42}, - [2882] = {.lex_state = 1}, - [2883] = {.lex_state = 42}, - [2884] = {.lex_state = 1}, - [2885] = {.lex_state = 1}, - [2886] = {.lex_state = 42}, - [2887] = {.lex_state = 1}, - [2888] = {.lex_state = 42}, - [2889] = {.lex_state = 1}, - [2890] = {.lex_state = 42}, - [2891] = {.lex_state = 1}, - [2892] = {.lex_state = 1}, - [2893] = {.lex_state = 42}, - [2894] = {.lex_state = 42}, - [2895] = {.lex_state = 1}, - [2896] = {.lex_state = 1}, - [2897] = {.lex_state = 42}, - [2898] = {.lex_state = 42}, - [2899] = {.lex_state = 1}, - [2900] = {.lex_state = 1}, - [2901] = {.lex_state = 1}, - [2902] = {.lex_state = 42}, - [2903] = {.lex_state = 42}, - [2904] = {.lex_state = 1}, - [2905] = {.lex_state = 42}, - [2906] = {.lex_state = 42}, - [2907] = {.lex_state = 42}, - [2908] = {.lex_state = 1}, - [2909] = {.lex_state = 1}, - [2910] = {.lex_state = 1}, - [2911] = {.lex_state = 42}, - [2912] = {.lex_state = 42}, - [2913] = {.lex_state = 1}, - [2914] = {.lex_state = 1}, - [2915] = {.lex_state = 42}, - [2916] = {.lex_state = 1}, - [2917] = {.lex_state = 42}, - [2918] = {.lex_state = 42}, - [2919] = {.lex_state = 1}, - [2920] = {.lex_state = 42}, - [2921] = {.lex_state = 1}, - [2922] = {.lex_state = 42}, - [2923] = {.lex_state = 1}, - [2924] = {.lex_state = 1}, - [2925] = {.lex_state = 42}, - [2926] = {.lex_state = 42}, - [2927] = {.lex_state = 1}, - [2928] = {.lex_state = 42}, - [2929] = {.lex_state = 1}, - [2930] = {.lex_state = 42}, - [2931] = {.lex_state = 1}, - [2932] = {.lex_state = 1}, - [2933] = {.lex_state = 1}, - [2934] = {.lex_state = 42}, - [2935] = {.lex_state = 1}, - [2936] = {.lex_state = 1}, - [2937] = {.lex_state = 1}, - [2938] = {.lex_state = 42}, - [2939] = {.lex_state = 1}, - [2940] = {.lex_state = 1}, - [2941] = {.lex_state = 1}, - [2942] = {.lex_state = 1}, - [2943] = {.lex_state = 42}, - [2944] = {.lex_state = 42}, - [2945] = {.lex_state = 1}, - [2946] = {.lex_state = 1}, - [2947] = {.lex_state = 1}, - [2948] = {.lex_state = 1}, - [2949] = {.lex_state = 1}, - [2950] = {.lex_state = 42}, - [2951] = {.lex_state = 1}, - [2952] = {.lex_state = 1}, - [2953] = {.lex_state = 1}, - [2954] = {.lex_state = 42}, - [2955] = {.lex_state = 1}, - [2956] = {.lex_state = 1}, - [2957] = {.lex_state = 42}, - [2958] = {.lex_state = 42}, - [2959] = {.lex_state = 1}, - [2960] = {.lex_state = 42}, - [2961] = {.lex_state = 1}, - [2962] = {.lex_state = 42}, - [2963] = {.lex_state = 42}, - [2964] = {.lex_state = 42}, - [2965] = {.lex_state = 42}, - [2966] = {.lex_state = 42}, - [2967] = {.lex_state = 1}, - [2968] = {.lex_state = 1}, - [2969] = {.lex_state = 42}, - [2970] = {.lex_state = 42}, - [2971] = {.lex_state = 1}, - [2972] = {.lex_state = 42}, - [2973] = {.lex_state = 1}, - [2974] = {.lex_state = 1}, - [2975] = {.lex_state = 1}, - [2976] = {.lex_state = 42}, - [2977] = {.lex_state = 1}, - [2978] = {.lex_state = 42}, - [2979] = {.lex_state = 1}, - [2980] = {.lex_state = 42}, - [2981] = {.lex_state = 1}, - [2982] = {.lex_state = 42}, - [2983] = {.lex_state = 42}, - [2984] = {.lex_state = 1}, - [2985] = {.lex_state = 42}, - [2986] = {.lex_state = 1}, - [2987] = {.lex_state = 42}, - [2988] = {.lex_state = 42}, - [2989] = {.lex_state = 1}, - [2990] = {.lex_state = 1}, - [2991] = {.lex_state = 42}, - [2992] = {.lex_state = 1}, - [2993] = {.lex_state = 42}, - [2994] = {.lex_state = 42}, - [2995] = {.lex_state = 42}, - [2996] = {.lex_state = 1}, - [2997] = {.lex_state = 1}, - [2998] = {.lex_state = 1}, - [2999] = {.lex_state = 1}, - [3000] = {.lex_state = 42}, - [3001] = {.lex_state = 42}, - [3002] = {.lex_state = 1}, - [3003] = {.lex_state = 42}, - [3004] = {.lex_state = 42}, - [3005] = {.lex_state = 1}, - [3006] = {.lex_state = 1}, - [3007] = {.lex_state = 42}, - [3008] = {.lex_state = 42}, - [3009] = {.lex_state = 42}, - [3010] = {.lex_state = 42}, - [3011] = {.lex_state = 42}, - [3012] = {.lex_state = 42}, - [3013] = {.lex_state = 42}, - [3014] = {.lex_state = 1}, - [3015] = {.lex_state = 42}, - [3016] = {.lex_state = 1}, - [3017] = {.lex_state = 42}, - [3018] = {.lex_state = 42}, - [3019] = {.lex_state = 42}, - [3020] = {.lex_state = 42}, - [3021] = {.lex_state = 1}, - [3022] = {.lex_state = 42}, - [3023] = {.lex_state = 42}, - [3024] = {.lex_state = 42}, - [3025] = {.lex_state = 42}, - [3026] = {.lex_state = 42}, - [3027] = {.lex_state = 42}, - [3028] = {.lex_state = 42}, - [3029] = {.lex_state = 1}, - [3030] = {.lex_state = 42}, - [3031] = {.lex_state = 42}, - [3032] = {.lex_state = 42}, - [3033] = {.lex_state = 42}, - [3034] = {.lex_state = 42}, - [3035] = {.lex_state = 42}, - [3036] = {.lex_state = 42}, - [3037] = {.lex_state = 42}, - [3038] = {.lex_state = 42}, - [3039] = {.lex_state = 42}, - [3040] = {.lex_state = 42}, - [3041] = {.lex_state = 42}, - [3042] = {.lex_state = 1}, - [3043] = {.lex_state = 42}, - [3044] = {.lex_state = 1}, - [3045] = {.lex_state = 1}, - [3046] = {.lex_state = 1}, - [3047] = {.lex_state = 1}, - [3048] = {.lex_state = 42}, - [3049] = {.lex_state = 1}, - [3050] = {.lex_state = 1}, - [3051] = {.lex_state = 1}, - [3052] = {.lex_state = 42}, - [3053] = {.lex_state = 1}, - [3054] = {.lex_state = 42}, - [3055] = {.lex_state = 1}, - [3056] = {.lex_state = 1}, - [3057] = {.lex_state = 1}, - [3058] = {.lex_state = 1}, - [3059] = {.lex_state = 42}, - [3060] = {.lex_state = 1}, - [3061] = {.lex_state = 42}, - [3062] = {.lex_state = 42}, - [3063] = {.lex_state = 42}, - [3064] = {.lex_state = 1}, - [3065] = {.lex_state = 42}, - [3066] = {.lex_state = 1}, - [3067] = {.lex_state = 42}, - [3068] = {.lex_state = 42}, - [3069] = {.lex_state = 42}, - [3070] = {.lex_state = 1}, - [3071] = {.lex_state = 42}, - [3072] = {.lex_state = 1}, - [3073] = {.lex_state = 1}, - [3074] = {.lex_state = 42}, - [3075] = {.lex_state = 1}, - [3076] = {.lex_state = 1}, - [3077] = {.lex_state = 42}, - [3078] = {.lex_state = 1}, - [3079] = {.lex_state = 1}, - [3080] = {.lex_state = 42}, - [3081] = {.lex_state = 42}, - [3082] = {.lex_state = 1}, - [3083] = {.lex_state = 1}, - [3084] = {.lex_state = 1}, - [3085] = {.lex_state = 42}, - [3086] = {.lex_state = 1}, - [3087] = {.lex_state = 1}, - [3088] = {.lex_state = 42}, - [3089] = {.lex_state = 1}, - [3090] = {.lex_state = 1}, - [3091] = {.lex_state = 1}, - [3092] = {.lex_state = 1}, - [3093] = {.lex_state = 1}, - [3094] = {.lex_state = 1}, - [3095] = {.lex_state = 42}, - [3096] = {.lex_state = 42}, - [3097] = {.lex_state = 1}, - [3098] = {.lex_state = 42}, - [3099] = {.lex_state = 1}, - [3100] = {.lex_state = 1}, - [3101] = {.lex_state = 42}, - [3102] = {.lex_state = 1}, - [3103] = {.lex_state = 42}, - [3104] = {.lex_state = 1}, - [3105] = {.lex_state = 1}, - [3106] = {.lex_state = 1}, - [3107] = {.lex_state = 1}, - [3108] = {.lex_state = 1}, - [3109] = {.lex_state = 1}, - [3110] = {.lex_state = 1}, - [3111] = {.lex_state = 1}, - [3112] = {.lex_state = 1}, - [3113] = {.lex_state = 1}, - [3114] = {.lex_state = 1}, - [3115] = {.lex_state = 42}, - [3116] = {.lex_state = 1}, - [3117] = {.lex_state = 1}, - [3118] = {.lex_state = 1}, - [3119] = {.lex_state = 1}, - [3120] = {.lex_state = 1}, - [3121] = {.lex_state = 1}, - [3122] = {.lex_state = 1}, - [3123] = {.lex_state = 1}, - [3124] = {.lex_state = 1}, - [3125] = {.lex_state = 1}, - [3126] = {.lex_state = 1}, - [3127] = {.lex_state = 1}, - [3128] = {.lex_state = 1}, - [3129] = {.lex_state = 1}, - [3130] = {.lex_state = 1}, - [3131] = {.lex_state = 1}, - [3132] = {.lex_state = 1}, - [3133] = {.lex_state = 1}, - [3134] = {.lex_state = 1}, - [3135] = {.lex_state = 1}, - [3136] = {.lex_state = 1}, - [3137] = {.lex_state = 1}, - [3138] = {.lex_state = 1}, - [3139] = {.lex_state = 1}, - [3140] = {.lex_state = 1}, - [3141] = {.lex_state = 1}, - [3142] = {.lex_state = 1}, - [3143] = {.lex_state = 1}, - [3144] = {.lex_state = 1}, - [3145] = {.lex_state = 1}, - [3146] = {.lex_state = 1}, - [3147] = {.lex_state = 1}, - [3148] = {.lex_state = 42}, - [3149] = {.lex_state = 42}, - [3150] = {.lex_state = 1}, - [3151] = {.lex_state = 1}, - [3152] = {.lex_state = 1}, - [3153] = {.lex_state = 1}, + [0] = {.lex_state = 0, .external_lex_state = 1}, + [1] = {.lex_state = 37, .external_lex_state = 2}, + [2] = {.lex_state = 37, .external_lex_state = 2}, + [3] = {.lex_state = 37, .external_lex_state = 2}, + [4] = {.lex_state = 37, .external_lex_state = 2}, + [5] = {.lex_state = 37, .external_lex_state = 2}, + [6] = {.lex_state = 37, .external_lex_state = 2}, + [7] = {.lex_state = 37, .external_lex_state = 2}, + [8] = {.lex_state = 37, .external_lex_state = 2}, + [9] = {.lex_state = 37, .external_lex_state = 2}, + [10] = {.lex_state = 37, .external_lex_state = 2}, + [11] = {.lex_state = 37, .external_lex_state = 2}, + [12] = {.lex_state = 37, .external_lex_state = 2}, + [13] = {.lex_state = 37, .external_lex_state = 2}, + [14] = {.lex_state = 37, .external_lex_state = 2}, + [15] = {.lex_state = 37, .external_lex_state = 2}, + [16] = {.lex_state = 37, .external_lex_state = 2}, + [17] = {.lex_state = 37, .external_lex_state = 2}, + [18] = {.lex_state = 37, .external_lex_state = 2}, + [19] = {.lex_state = 37, .external_lex_state = 2}, + [20] = {.lex_state = 37, .external_lex_state = 2}, + [21] = {.lex_state = 37, .external_lex_state = 2}, + [22] = {.lex_state = 37, .external_lex_state = 2}, + [23] = {.lex_state = 37, .external_lex_state = 2}, + [24] = {.lex_state = 37, .external_lex_state = 2}, + [25] = {.lex_state = 37, .external_lex_state = 2}, + [26] = {.lex_state = 37, .external_lex_state = 2}, + [27] = {.lex_state = 37, .external_lex_state = 2}, + [28] = {.lex_state = 37, .external_lex_state = 2}, + [29] = {.lex_state = 37, .external_lex_state = 2}, + [30] = {.lex_state = 37, .external_lex_state = 2}, + [31] = {.lex_state = 37, .external_lex_state = 2}, + [32] = {.lex_state = 37, .external_lex_state = 2}, + [33] = {.lex_state = 37, .external_lex_state = 2}, + [34] = {.lex_state = 37, .external_lex_state = 2}, + [35] = {.lex_state = 37, .external_lex_state = 2}, + [36] = {.lex_state = 37, .external_lex_state = 2}, + [37] = {.lex_state = 37, .external_lex_state = 2}, + [38] = {.lex_state = 37, .external_lex_state = 2}, + [39] = {.lex_state = 37, .external_lex_state = 2}, + [40] = {.lex_state = 37, .external_lex_state = 2}, + [41] = {.lex_state = 37, .external_lex_state = 2}, + [42] = {.lex_state = 37, .external_lex_state = 2}, + [43] = {.lex_state = 37, .external_lex_state = 2}, + [44] = {.lex_state = 37, .external_lex_state = 2}, + [45] = {.lex_state = 37, .external_lex_state = 2}, + [46] = {.lex_state = 37, .external_lex_state = 2}, + [47] = {.lex_state = 37, .external_lex_state = 2}, + [48] = {.lex_state = 37, .external_lex_state = 2}, + [49] = {.lex_state = 37, .external_lex_state = 2}, + [50] = {.lex_state = 37, .external_lex_state = 2}, + [51] = {.lex_state = 37, .external_lex_state = 2}, + [52] = {.lex_state = 37, .external_lex_state = 2}, + [53] = {.lex_state = 37, .external_lex_state = 2}, + [54] = {.lex_state = 37, .external_lex_state = 2}, + [55] = {.lex_state = 37, .external_lex_state = 2}, + [56] = {.lex_state = 37, .external_lex_state = 2}, + [57] = {.lex_state = 37, .external_lex_state = 2}, + [58] = {.lex_state = 37, .external_lex_state = 2}, + [59] = {.lex_state = 37, .external_lex_state = 2}, + [60] = {.lex_state = 37, .external_lex_state = 2}, + [61] = {.lex_state = 37, .external_lex_state = 2}, + [62] = {.lex_state = 37, .external_lex_state = 2}, + [63] = {.lex_state = 37, .external_lex_state = 2}, + [64] = {.lex_state = 37, .external_lex_state = 2}, + [65] = {.lex_state = 37, .external_lex_state = 2}, + [66] = {.lex_state = 37, .external_lex_state = 2}, + [67] = {.lex_state = 37, .external_lex_state = 2}, + [68] = {.lex_state = 37, .external_lex_state = 2}, + [69] = {.lex_state = 37, .external_lex_state = 2}, + [70] = {.lex_state = 37, .external_lex_state = 2}, + [71] = {.lex_state = 37, .external_lex_state = 2}, + [72] = {.lex_state = 37, .external_lex_state = 2}, + [73] = {.lex_state = 37, .external_lex_state = 2}, + [74] = {.lex_state = 37, .external_lex_state = 2}, + [75] = {.lex_state = 37, .external_lex_state = 2}, + [76] = {.lex_state = 37, .external_lex_state = 2}, + [77] = {.lex_state = 37, .external_lex_state = 2}, + [78] = {.lex_state = 37, .external_lex_state = 2}, + [79] = {.lex_state = 37, .external_lex_state = 2}, + [80] = {.lex_state = 37, .external_lex_state = 2}, + [81] = {.lex_state = 37, .external_lex_state = 2}, + [82] = {.lex_state = 37, .external_lex_state = 2}, + [83] = {.lex_state = 37, .external_lex_state = 2}, + [84] = {.lex_state = 37, .external_lex_state = 2}, + [85] = {.lex_state = 37, .external_lex_state = 2}, + [86] = {.lex_state = 37, .external_lex_state = 2}, + [87] = {.lex_state = 37, .external_lex_state = 2}, + [88] = {.lex_state = 37, .external_lex_state = 2}, + [89] = {.lex_state = 37, .external_lex_state = 2}, + [90] = {.lex_state = 37, .external_lex_state = 2}, + [91] = {.lex_state = 37, .external_lex_state = 2}, + [92] = {.lex_state = 37, .external_lex_state = 2}, + [93] = {.lex_state = 37, .external_lex_state = 2}, + [94] = {.lex_state = 37, .external_lex_state = 2}, + [95] = {.lex_state = 37, .external_lex_state = 2}, + [96] = {.lex_state = 37, .external_lex_state = 2}, + [97] = {.lex_state = 37, .external_lex_state = 2}, + [98] = {.lex_state = 37, .external_lex_state = 2}, + [99] = {.lex_state = 37, .external_lex_state = 2}, + [100] = {.lex_state = 2, .external_lex_state = 2}, + [101] = {.lex_state = 37, .external_lex_state = 2}, + [102] = {.lex_state = 37, .external_lex_state = 2}, + [103] = {.lex_state = 37, .external_lex_state = 2}, + [104] = {.lex_state = 37, .external_lex_state = 2}, + [105] = {.lex_state = 37, .external_lex_state = 2}, + [106] = {.lex_state = 37, .external_lex_state = 2}, + [107] = {.lex_state = 37, .external_lex_state = 2}, + [108] = {.lex_state = 37, .external_lex_state = 2}, + [109] = {.lex_state = 37, .external_lex_state = 2}, + [110] = {.lex_state = 37, .external_lex_state = 2}, + [111] = {.lex_state = 37, .external_lex_state = 2}, + [112] = {.lex_state = 37, .external_lex_state = 2}, + [113] = {.lex_state = 37, .external_lex_state = 2}, + [114] = {.lex_state = 37, .external_lex_state = 2}, + [115] = {.lex_state = 37, .external_lex_state = 2}, + [116] = {.lex_state = 37, .external_lex_state = 2}, + [117] = {.lex_state = 37, .external_lex_state = 2}, + [118] = {.lex_state = 37, .external_lex_state = 2}, + [119] = {.lex_state = 37, .external_lex_state = 2}, + [120] = {.lex_state = 37, .external_lex_state = 2}, + [121] = {.lex_state = 37, .external_lex_state = 2}, + [122] = {.lex_state = 37, .external_lex_state = 2}, + [123] = {.lex_state = 37, .external_lex_state = 2}, + [124] = {.lex_state = 37, .external_lex_state = 2}, + [125] = {.lex_state = 37, .external_lex_state = 2}, + [126] = {.lex_state = 37, .external_lex_state = 2}, + [127] = {.lex_state = 37, .external_lex_state = 2}, + [128] = {.lex_state = 37, .external_lex_state = 2}, + [129] = {.lex_state = 37, .external_lex_state = 2}, + [130] = {.lex_state = 37, .external_lex_state = 2}, + [131] = {.lex_state = 37, .external_lex_state = 2}, + [132] = {.lex_state = 37, .external_lex_state = 2}, + [133] = {.lex_state = 37, .external_lex_state = 2}, + [134] = {.lex_state = 37, .external_lex_state = 2}, + [135] = {.lex_state = 37, .external_lex_state = 2}, + [136] = {.lex_state = 37, .external_lex_state = 2}, + [137] = {.lex_state = 37, .external_lex_state = 2}, + [138] = {.lex_state = 37, .external_lex_state = 2}, + [139] = {.lex_state = 37, .external_lex_state = 2}, + [140] = {.lex_state = 37, .external_lex_state = 2}, + [141] = {.lex_state = 37, .external_lex_state = 2}, + [142] = {.lex_state = 6, .external_lex_state = 2}, + [143] = {.lex_state = 37, .external_lex_state = 2}, + [144] = {.lex_state = 37, .external_lex_state = 2}, + [145] = {.lex_state = 37, .external_lex_state = 2}, + [146] = {.lex_state = 37, .external_lex_state = 2}, + [147] = {.lex_state = 37, .external_lex_state = 2}, + [148] = {.lex_state = 37, .external_lex_state = 2}, + [149] = {.lex_state = 37, .external_lex_state = 2}, + [150] = {.lex_state = 37, .external_lex_state = 2}, + [151] = {.lex_state = 37, .external_lex_state = 2}, + [152] = {.lex_state = 6, .external_lex_state = 2}, + [153] = {.lex_state = 37, .external_lex_state = 2}, + [154] = {.lex_state = 37, .external_lex_state = 2}, + [155] = {.lex_state = 37, .external_lex_state = 2}, + [156] = {.lex_state = 37, .external_lex_state = 2}, + [157] = {.lex_state = 37, .external_lex_state = 2}, + [158] = {.lex_state = 37, .external_lex_state = 2}, + [159] = {.lex_state = 37, .external_lex_state = 2}, + [160] = {.lex_state = 37, .external_lex_state = 2}, + [161] = {.lex_state = 37, .external_lex_state = 2}, + [162] = {.lex_state = 37, .external_lex_state = 2}, + [163] = {.lex_state = 37, .external_lex_state = 2}, + [164] = {.lex_state = 37, .external_lex_state = 2}, + [165] = {.lex_state = 37, .external_lex_state = 2}, + [166] = {.lex_state = 37, .external_lex_state = 2}, + [167] = {.lex_state = 37, .external_lex_state = 2}, + [168] = {.lex_state = 37, .external_lex_state = 2}, + [169] = {.lex_state = 37, .external_lex_state = 2}, + [170] = {.lex_state = 37, .external_lex_state = 2}, + [171] = {.lex_state = 37, .external_lex_state = 2}, + [172] = {.lex_state = 37, .external_lex_state = 2}, + [173] = {.lex_state = 37, .external_lex_state = 2}, + [174] = {.lex_state = 37, .external_lex_state = 2}, + [175] = {.lex_state = 37, .external_lex_state = 2}, + [176] = {.lex_state = 37, .external_lex_state = 2}, + [177] = {.lex_state = 37, .external_lex_state = 2}, + [178] = {.lex_state = 37, .external_lex_state = 2}, + [179] = {.lex_state = 37, .external_lex_state = 2}, + [180] = {.lex_state = 37, .external_lex_state = 2}, + [181] = {.lex_state = 37, .external_lex_state = 2}, + [182] = {.lex_state = 37, .external_lex_state = 2}, + [183] = {.lex_state = 37, .external_lex_state = 2}, + [184] = {.lex_state = 37, .external_lex_state = 2}, + [185] = {.lex_state = 37, .external_lex_state = 2}, + [186] = {.lex_state = 37, .external_lex_state = 2}, + [187] = {.lex_state = 37, .external_lex_state = 2}, + [188] = {.lex_state = 37, .external_lex_state = 2}, + [189] = {.lex_state = 37, .external_lex_state = 2}, + [190] = {.lex_state = 37, .external_lex_state = 2}, + [191] = {.lex_state = 37, .external_lex_state = 2}, + [192] = {.lex_state = 37, .external_lex_state = 2}, + [193] = {.lex_state = 37, .external_lex_state = 2}, + [194] = {.lex_state = 37, .external_lex_state = 2}, + [195] = {.lex_state = 37, .external_lex_state = 2}, + [196] = {.lex_state = 6, .external_lex_state = 2}, + [197] = {.lex_state = 37, .external_lex_state = 2}, + [198] = {.lex_state = 37, .external_lex_state = 2}, + [199] = {.lex_state = 37, .external_lex_state = 2}, + [200] = {.lex_state = 37, .external_lex_state = 2}, + [201] = {.lex_state = 37, .external_lex_state = 2}, + [202] = {.lex_state = 37, .external_lex_state = 2}, + [203] = {.lex_state = 37, .external_lex_state = 2}, + [204] = {.lex_state = 37, .external_lex_state = 2}, + [205] = {.lex_state = 37, .external_lex_state = 2}, + [206] = {.lex_state = 37, .external_lex_state = 2}, + [207] = {.lex_state = 37, .external_lex_state = 2}, + [208] = {.lex_state = 37, .external_lex_state = 2}, + [209] = {.lex_state = 37, .external_lex_state = 2}, + [210] = {.lex_state = 37, .external_lex_state = 2}, + [211] = {.lex_state = 37, .external_lex_state = 2}, + [212] = {.lex_state = 37, .external_lex_state = 2}, + [213] = {.lex_state = 37, .external_lex_state = 2}, + [214] = {.lex_state = 37, .external_lex_state = 2}, + [215] = {.lex_state = 37, .external_lex_state = 2}, + [216] = {.lex_state = 37, .external_lex_state = 2}, + [217] = {.lex_state = 37, .external_lex_state = 2}, + [218] = {.lex_state = 37, .external_lex_state = 2}, + [219] = {.lex_state = 37, .external_lex_state = 2}, + [220] = {.lex_state = 37, .external_lex_state = 2}, + [221] = {.lex_state = 37, .external_lex_state = 2}, + [222] = {.lex_state = 37, .external_lex_state = 2}, + [223] = {.lex_state = 37, .external_lex_state = 2}, + [224] = {.lex_state = 37, .external_lex_state = 2}, + [225] = {.lex_state = 37, .external_lex_state = 2}, + [226] = {.lex_state = 37, .external_lex_state = 2}, + [227] = {.lex_state = 37, .external_lex_state = 2}, + [228] = {.lex_state = 37, .external_lex_state = 2}, + [229] = {.lex_state = 37, .external_lex_state = 2}, + [230] = {.lex_state = 37, .external_lex_state = 2}, + [231] = {.lex_state = 37, .external_lex_state = 2}, + [232] = {.lex_state = 37, .external_lex_state = 2}, + [233] = {.lex_state = 37, .external_lex_state = 2}, + [234] = {.lex_state = 37, .external_lex_state = 2}, + [235] = {.lex_state = 37, .external_lex_state = 2}, + [236] = {.lex_state = 37, .external_lex_state = 2}, + [237] = {.lex_state = 37, .external_lex_state = 2}, + [238] = {.lex_state = 37, .external_lex_state = 2}, + [239] = {.lex_state = 37, .external_lex_state = 2}, + [240] = {.lex_state = 37, .external_lex_state = 2}, + [241] = {.lex_state = 37, .external_lex_state = 2}, + [242] = {.lex_state = 37, .external_lex_state = 2}, + [243] = {.lex_state = 37, .external_lex_state = 2}, + [244] = {.lex_state = 37, .external_lex_state = 2}, + [245] = {.lex_state = 6, .external_lex_state = 2}, + [246] = {.lex_state = 5, .external_lex_state = 2}, + [247] = {.lex_state = 37, .external_lex_state = 2}, + [248] = {.lex_state = 37, .external_lex_state = 2}, + [249] = {.lex_state = 37, .external_lex_state = 2}, + [250] = {.lex_state = 37, .external_lex_state = 2}, + [251] = {.lex_state = 37, .external_lex_state = 2}, + [252] = {.lex_state = 37, .external_lex_state = 2}, + [253] = {.lex_state = 37, .external_lex_state = 2}, + [254] = {.lex_state = 37, .external_lex_state = 2}, + [255] = {.lex_state = 37, .external_lex_state = 2}, + [256] = {.lex_state = 37, .external_lex_state = 2}, + [257] = {.lex_state = 37, .external_lex_state = 2}, + [258] = {.lex_state = 37, .external_lex_state = 2}, + [259] = {.lex_state = 37, .external_lex_state = 2}, + [260] = {.lex_state = 37, .external_lex_state = 2}, + [261] = {.lex_state = 37, .external_lex_state = 2}, + [262] = {.lex_state = 37, .external_lex_state = 2}, + [263] = {.lex_state = 37, .external_lex_state = 2}, + [264] = {.lex_state = 37, .external_lex_state = 2}, + [265] = {.lex_state = 37, .external_lex_state = 2}, + [266] = {.lex_state = 37, .external_lex_state = 2}, + [267] = {.lex_state = 37, .external_lex_state = 2}, + [268] = {.lex_state = 37, .external_lex_state = 2}, + [269] = {.lex_state = 37, .external_lex_state = 2}, + [270] = {.lex_state = 37, .external_lex_state = 2}, + [271] = {.lex_state = 37, .external_lex_state = 2}, + [272] = {.lex_state = 37, .external_lex_state = 2}, + [273] = {.lex_state = 37, .external_lex_state = 2}, + [274] = {.lex_state = 37, .external_lex_state = 2}, + [275] = {.lex_state = 37, .external_lex_state = 2}, + [276] = {.lex_state = 37, .external_lex_state = 2}, + [277] = {.lex_state = 37, .external_lex_state = 2}, + [278] = {.lex_state = 37, .external_lex_state = 2}, + [279] = {.lex_state = 37, .external_lex_state = 2}, + [280] = {.lex_state = 37, .external_lex_state = 2}, + [281] = {.lex_state = 37, .external_lex_state = 2}, + [282] = {.lex_state = 37, .external_lex_state = 2}, + [283] = {.lex_state = 37, .external_lex_state = 2}, + [284] = {.lex_state = 37, .external_lex_state = 2}, + [285] = {.lex_state = 37, .external_lex_state = 2}, + [286] = {.lex_state = 37, .external_lex_state = 2}, + [287] = {.lex_state = 1, .external_lex_state = 2}, + [288] = {.lex_state = 37, .external_lex_state = 2}, + [289] = {.lex_state = 37, .external_lex_state = 2}, + [290] = {.lex_state = 37, .external_lex_state = 2}, + [291] = {.lex_state = 37, .external_lex_state = 2}, + [292] = {.lex_state = 37, .external_lex_state = 2}, + [293] = {.lex_state = 37, .external_lex_state = 2}, + [294] = {.lex_state = 37, .external_lex_state = 2}, + [295] = {.lex_state = 37, .external_lex_state = 2}, + [296] = {.lex_state = 37, .external_lex_state = 2}, + [297] = {.lex_state = 37, .external_lex_state = 2}, + [298] = {.lex_state = 37, .external_lex_state = 2}, + [299] = {.lex_state = 37, .external_lex_state = 2}, + [300] = {.lex_state = 37, .external_lex_state = 2}, + [301] = {.lex_state = 37, .external_lex_state = 2}, + [302] = {.lex_state = 37, .external_lex_state = 2}, + [303] = {.lex_state = 37, .external_lex_state = 2}, + [304] = {.lex_state = 37, .external_lex_state = 2}, + [305] = {.lex_state = 37, .external_lex_state = 2}, + [306] = {.lex_state = 37, .external_lex_state = 2}, + [307] = {.lex_state = 37, .external_lex_state = 2}, + [308] = {.lex_state = 37, .external_lex_state = 2}, + [309] = {.lex_state = 37, .external_lex_state = 2}, + [310] = {.lex_state = 37, .external_lex_state = 2}, + [311] = {.lex_state = 37, .external_lex_state = 2}, + [312] = {.lex_state = 37, .external_lex_state = 2}, + [313] = {.lex_state = 37, .external_lex_state = 2}, + [314] = {.lex_state = 37, .external_lex_state = 2}, + [315] = {.lex_state = 37, .external_lex_state = 2}, + [316] = {.lex_state = 37, .external_lex_state = 2}, + [317] = {.lex_state = 37, .external_lex_state = 2}, + [318] = {.lex_state = 37, .external_lex_state = 2}, + [319] = {.lex_state = 37, .external_lex_state = 2}, + [320] = {.lex_state = 37, .external_lex_state = 2}, + [321] = {.lex_state = 37, .external_lex_state = 2}, + [322] = {.lex_state = 37, .external_lex_state = 2}, + [323] = {.lex_state = 37, .external_lex_state = 2}, + [324] = {.lex_state = 37, .external_lex_state = 2}, + [325] = {.lex_state = 37, .external_lex_state = 2}, + [326] = {.lex_state = 37, .external_lex_state = 2}, + [327] = {.lex_state = 37, .external_lex_state = 2}, + [328] = {.lex_state = 37, .external_lex_state = 2}, + [329] = {.lex_state = 37, .external_lex_state = 2}, + [330] = {.lex_state = 37, .external_lex_state = 2}, + [331] = {.lex_state = 37, .external_lex_state = 2}, + [332] = {.lex_state = 37, .external_lex_state = 2}, + [333] = {.lex_state = 37, .external_lex_state = 2}, + [334] = {.lex_state = 37, .external_lex_state = 2}, + [335] = {.lex_state = 37, .external_lex_state = 2}, + [336] = {.lex_state = 37, .external_lex_state = 2}, + [337] = {.lex_state = 37, .external_lex_state = 2}, + [338] = {.lex_state = 37, .external_lex_state = 2}, + [339] = {.lex_state = 37, .external_lex_state = 2}, + [340] = {.lex_state = 37, .external_lex_state = 2}, + [341] = {.lex_state = 37, .external_lex_state = 2}, + [342] = {.lex_state = 37, .external_lex_state = 2}, + [343] = {.lex_state = 37, .external_lex_state = 2}, + [344] = {.lex_state = 37, .external_lex_state = 2}, + [345] = {.lex_state = 37, .external_lex_state = 2}, + [346] = {.lex_state = 37, .external_lex_state = 2}, + [347] = {.lex_state = 37, .external_lex_state = 2}, + [348] = {.lex_state = 37, .external_lex_state = 2}, + [349] = {.lex_state = 37, .external_lex_state = 2}, + [350] = {.lex_state = 37, .external_lex_state = 2}, + [351] = {.lex_state = 37, .external_lex_state = 2}, + [352] = {.lex_state = 37, .external_lex_state = 2}, + [353] = {.lex_state = 37, .external_lex_state = 2}, + [354] = {.lex_state = 37, .external_lex_state = 2}, + [355] = {.lex_state = 37, .external_lex_state = 2}, + [356] = {.lex_state = 37, .external_lex_state = 2}, + [357] = {.lex_state = 37, .external_lex_state = 2}, + [358] = {.lex_state = 37, .external_lex_state = 2}, + [359] = {.lex_state = 37, .external_lex_state = 2}, + [360] = {.lex_state = 37, .external_lex_state = 2}, + [361] = {.lex_state = 37, .external_lex_state = 2}, + [362] = {.lex_state = 37, .external_lex_state = 2}, + [363] = {.lex_state = 37, .external_lex_state = 2}, + [364] = {.lex_state = 37, .external_lex_state = 2}, + [365] = {.lex_state = 37, .external_lex_state = 2}, + [366] = {.lex_state = 37, .external_lex_state = 2}, + [367] = {.lex_state = 37, .external_lex_state = 2}, + [368] = {.lex_state = 37, .external_lex_state = 2}, + [369] = {.lex_state = 37, .external_lex_state = 2}, + [370] = {.lex_state = 37, .external_lex_state = 2}, + [371] = {.lex_state = 37, .external_lex_state = 2}, + [372] = {.lex_state = 37, .external_lex_state = 2}, + [373] = {.lex_state = 37, .external_lex_state = 2}, + [374] = {.lex_state = 37, .external_lex_state = 2}, + [375] = {.lex_state = 37, .external_lex_state = 2}, + [376] = {.lex_state = 37, .external_lex_state = 2}, + [377] = {.lex_state = 37, .external_lex_state = 2}, + [378] = {.lex_state = 37, .external_lex_state = 2}, + [379] = {.lex_state = 37, .external_lex_state = 2}, + [380] = {.lex_state = 37, .external_lex_state = 2}, + [381] = {.lex_state = 37, .external_lex_state = 2}, + [382] = {.lex_state = 37, .external_lex_state = 2}, + [383] = {.lex_state = 37, .external_lex_state = 2}, + [384] = {.lex_state = 37, .external_lex_state = 2}, + [385] = {.lex_state = 37, .external_lex_state = 2}, + [386] = {.lex_state = 37, .external_lex_state = 2}, + [387] = {.lex_state = 37, .external_lex_state = 2}, + [388] = {.lex_state = 37, .external_lex_state = 2}, + [389] = {.lex_state = 37, .external_lex_state = 2}, + [390] = {.lex_state = 37, .external_lex_state = 2}, + [391] = {.lex_state = 37, .external_lex_state = 2}, + [392] = {.lex_state = 37, .external_lex_state = 2}, + [393] = {.lex_state = 37, .external_lex_state = 2}, + [394] = {.lex_state = 37, .external_lex_state = 2}, + [395] = {.lex_state = 37, .external_lex_state = 2}, + [396] = {.lex_state = 37, .external_lex_state = 2}, + [397] = {.lex_state = 37, .external_lex_state = 2}, + [398] = {.lex_state = 37, .external_lex_state = 2}, + [399] = {.lex_state = 37, .external_lex_state = 2}, + [400] = {.lex_state = 37, .external_lex_state = 2}, + [401] = {.lex_state = 37, .external_lex_state = 2}, + [402] = {.lex_state = 37, .external_lex_state = 2}, + [403] = {.lex_state = 37, .external_lex_state = 2}, + [404] = {.lex_state = 37, .external_lex_state = 2}, + [405] = {.lex_state = 37, .external_lex_state = 2}, + [406] = {.lex_state = 37, .external_lex_state = 2}, + [407] = {.lex_state = 37, .external_lex_state = 2}, + [408] = {.lex_state = 37, .external_lex_state = 2}, + [409] = {.lex_state = 37, .external_lex_state = 2}, + [410] = {.lex_state = 37, .external_lex_state = 2}, + [411] = {.lex_state = 37, .external_lex_state = 2}, + [412] = {.lex_state = 37, .external_lex_state = 2}, + [413] = {.lex_state = 37, .external_lex_state = 2}, + [414] = {.lex_state = 37, .external_lex_state = 2}, + [415] = {.lex_state = 37, .external_lex_state = 2}, + [416] = {.lex_state = 37, .external_lex_state = 2}, + [417] = {.lex_state = 37, .external_lex_state = 2}, + [418] = {.lex_state = 37, .external_lex_state = 2}, + [419] = {.lex_state = 37, .external_lex_state = 2}, + [420] = {.lex_state = 37, .external_lex_state = 2}, + [421] = {.lex_state = 37, .external_lex_state = 2}, + [422] = {.lex_state = 37, .external_lex_state = 2}, + [423] = {.lex_state = 37, .external_lex_state = 2}, + [424] = {.lex_state = 37, .external_lex_state = 2}, + [425] = {.lex_state = 37, .external_lex_state = 2}, + [426] = {.lex_state = 37, .external_lex_state = 2}, + [427] = {.lex_state = 37, .external_lex_state = 2}, + [428] = {.lex_state = 37, .external_lex_state = 2}, + [429] = {.lex_state = 37, .external_lex_state = 2}, + [430] = {.lex_state = 37, .external_lex_state = 2}, + [431] = {.lex_state = 37, .external_lex_state = 2}, + [432] = {.lex_state = 37, .external_lex_state = 2}, + [433] = {.lex_state = 37, .external_lex_state = 2}, + [434] = {.lex_state = 37, .external_lex_state = 2}, + [435] = {.lex_state = 37, .external_lex_state = 2}, + [436] = {.lex_state = 37, .external_lex_state = 2}, + [437] = {.lex_state = 37, .external_lex_state = 2}, + [438] = {.lex_state = 37, .external_lex_state = 2}, + [439] = {.lex_state = 37, .external_lex_state = 2}, + [440] = {.lex_state = 37, .external_lex_state = 2}, + [441] = {.lex_state = 37, .external_lex_state = 2}, + [442] = {.lex_state = 37, .external_lex_state = 2}, + [443] = {.lex_state = 37, .external_lex_state = 2}, + [444] = {.lex_state = 37, .external_lex_state = 2}, + [445] = {.lex_state = 37, .external_lex_state = 2}, + [446] = {.lex_state = 37, .external_lex_state = 2}, + [447] = {.lex_state = 37, .external_lex_state = 2}, + [448] = {.lex_state = 37, .external_lex_state = 2}, + [449] = {.lex_state = 37, .external_lex_state = 2}, + [450] = {.lex_state = 37, .external_lex_state = 2}, + [451] = {.lex_state = 1, .external_lex_state = 2}, + [452] = {.lex_state = 1, .external_lex_state = 2}, + [453] = {.lex_state = 1, .external_lex_state = 2}, + [454] = {.lex_state = 1, .external_lex_state = 2}, + [455] = {.lex_state = 1, .external_lex_state = 2}, + [456] = {.lex_state = 4, .external_lex_state = 2}, + [457] = {.lex_state = 1, .external_lex_state = 2}, + [458] = {.lex_state = 2, .external_lex_state = 2}, + [459] = {.lex_state = 1, .external_lex_state = 2}, + [460] = {.lex_state = 1, .external_lex_state = 2}, + [461] = {.lex_state = 1, .external_lex_state = 2}, + [462] = {.lex_state = 1, .external_lex_state = 2}, + [463] = {.lex_state = 1, .external_lex_state = 2}, + [464] = {.lex_state = 2, .external_lex_state = 2}, + [465] = {.lex_state = 2, .external_lex_state = 2}, + [466] = {.lex_state = 2, .external_lex_state = 2}, + [467] = {.lex_state = 3, .external_lex_state = 2}, + [468] = {.lex_state = 3, .external_lex_state = 2}, + [469] = {.lex_state = 6, .external_lex_state = 2}, + [470] = {.lex_state = 1, .external_lex_state = 2}, + [471] = {.lex_state = 1, .external_lex_state = 2}, + [472] = {.lex_state = 9, .external_lex_state = 2}, + [473] = {.lex_state = 1, .external_lex_state = 2}, + [474] = {.lex_state = 9, .external_lex_state = 2}, + [475] = {.lex_state = 1, .external_lex_state = 2}, + [476] = {.lex_state = 1, .external_lex_state = 2}, + [477] = {.lex_state = 1, .external_lex_state = 2}, + [478] = {.lex_state = 1, .external_lex_state = 2}, + [479] = {.lex_state = 9, .external_lex_state = 2}, + [480] = {.lex_state = 1, .external_lex_state = 2}, + [481] = {.lex_state = 2, .external_lex_state = 2}, + [482] = {.lex_state = 7, .external_lex_state = 2}, + [483] = {.lex_state = 9, .external_lex_state = 2}, + [484] = {.lex_state = 2, .external_lex_state = 2}, + [485] = {.lex_state = 9, .external_lex_state = 2}, + [486] = {.lex_state = 9, .external_lex_state = 2}, + [487] = {.lex_state = 2, .external_lex_state = 2}, + [488] = {.lex_state = 2, .external_lex_state = 2}, + [489] = {.lex_state = 2, .external_lex_state = 2}, + [490] = {.lex_state = 2, .external_lex_state = 2}, + [491] = {.lex_state = 2, .external_lex_state = 2}, + [492] = {.lex_state = 9, .external_lex_state = 2}, + [493] = {.lex_state = 2, .external_lex_state = 2}, + [494] = {.lex_state = 2, .external_lex_state = 2}, + [495] = {.lex_state = 2, .external_lex_state = 2}, + [496] = {.lex_state = 2, .external_lex_state = 2}, + [497] = {.lex_state = 2, .external_lex_state = 2}, + [498] = {.lex_state = 2, .external_lex_state = 2}, + [499] = {.lex_state = 2, .external_lex_state = 2}, + [500] = {.lex_state = 2, .external_lex_state = 2}, + [501] = {.lex_state = 2, .external_lex_state = 2}, + [502] = {.lex_state = 2, .external_lex_state = 2}, + [503] = {.lex_state = 1, .external_lex_state = 2}, + [504] = {.lex_state = 2, .external_lex_state = 2}, + [505] = {.lex_state = 4, .external_lex_state = 2}, + [506] = {.lex_state = 2, .external_lex_state = 2}, + [507] = {.lex_state = 4, .external_lex_state = 2}, + [508] = {.lex_state = 1, .external_lex_state = 2}, + [509] = {.lex_state = 2, .external_lex_state = 2}, + [510] = {.lex_state = 1, .external_lex_state = 2}, + [511] = {.lex_state = 1, .external_lex_state = 2}, + [512] = {.lex_state = 2, .external_lex_state = 2}, + [513] = {.lex_state = 4, .external_lex_state = 2}, + [514] = {.lex_state = 4, .external_lex_state = 2}, + [515] = {.lex_state = 2, .external_lex_state = 2}, + [516] = {.lex_state = 1, .external_lex_state = 2}, + [517] = {.lex_state = 1, .external_lex_state = 2}, + [518] = {.lex_state = 2, .external_lex_state = 2}, + [519] = {.lex_state = 2, .external_lex_state = 2}, + [520] = {.lex_state = 1, .external_lex_state = 2}, + [521] = {.lex_state = 1, .external_lex_state = 2}, + [522] = {.lex_state = 2, .external_lex_state = 2}, + [523] = {.lex_state = 2, .external_lex_state = 2}, + [524] = {.lex_state = 2, .external_lex_state = 2}, + [525] = {.lex_state = 2, .external_lex_state = 2}, + [526] = {.lex_state = 1, .external_lex_state = 2}, + [527] = {.lex_state = 2, .external_lex_state = 2}, + [528] = {.lex_state = 2, .external_lex_state = 2}, + [529] = {.lex_state = 1, .external_lex_state = 2}, + [530] = {.lex_state = 2, .external_lex_state = 2}, + [531] = {.lex_state = 2, .external_lex_state = 2}, + [532] = {.lex_state = 2, .external_lex_state = 2}, + [533] = {.lex_state = 1, .external_lex_state = 2}, + [534] = {.lex_state = 2, .external_lex_state = 2}, + [535] = {.lex_state = 1, .external_lex_state = 2}, + [536] = {.lex_state = 2, .external_lex_state = 2}, + [537] = {.lex_state = 1, .external_lex_state = 2}, + [538] = {.lex_state = 1, .external_lex_state = 2}, + [539] = {.lex_state = 1, .external_lex_state = 2}, + [540] = {.lex_state = 1, .external_lex_state = 2}, + [541] = {.lex_state = 1, .external_lex_state = 2}, + [542] = {.lex_state = 1, .external_lex_state = 2}, + [543] = {.lex_state = 1, .external_lex_state = 2}, + [544] = {.lex_state = 1, .external_lex_state = 2}, + [545] = {.lex_state = 1, .external_lex_state = 2}, + [546] = {.lex_state = 1, .external_lex_state = 2}, + [547] = {.lex_state = 2, .external_lex_state = 2}, + [548] = {.lex_state = 1, .external_lex_state = 2}, + [549] = {.lex_state = 1, .external_lex_state = 2}, + [550] = {.lex_state = 1, .external_lex_state = 2}, + [551] = {.lex_state = 1, .external_lex_state = 2}, + [552] = {.lex_state = 1, .external_lex_state = 2}, + [553] = {.lex_state = 2, .external_lex_state = 2}, + [554] = {.lex_state = 2, .external_lex_state = 2}, + [555] = {.lex_state = 1, .external_lex_state = 2}, + [556] = {.lex_state = 2, .external_lex_state = 2}, + [557] = {.lex_state = 2, .external_lex_state = 2}, + [558] = {.lex_state = 1, .external_lex_state = 2}, + [559] = {.lex_state = 1, .external_lex_state = 2}, + [560] = {.lex_state = 2, .external_lex_state = 2}, + [561] = {.lex_state = 1, .external_lex_state = 2}, + [562] = {.lex_state = 1, .external_lex_state = 2}, + [563] = {.lex_state = 1, .external_lex_state = 2}, + [564] = {.lex_state = 2, .external_lex_state = 2}, + [565] = {.lex_state = 1, .external_lex_state = 2}, + [566] = {.lex_state = 2, .external_lex_state = 2}, + [567] = {.lex_state = 1, .external_lex_state = 2}, + [568] = {.lex_state = 1, .external_lex_state = 2}, + [569] = {.lex_state = 1, .external_lex_state = 2}, + [570] = {.lex_state = 1, .external_lex_state = 2}, + [571] = {.lex_state = 2, .external_lex_state = 2}, + [572] = {.lex_state = 1, .external_lex_state = 2}, + [573] = {.lex_state = 1, .external_lex_state = 2}, + [574] = {.lex_state = 1, .external_lex_state = 2}, + [575] = {.lex_state = 1, .external_lex_state = 2}, + [576] = {.lex_state = 1, .external_lex_state = 2}, + [577] = {.lex_state = 1, .external_lex_state = 2}, + [578] = {.lex_state = 1, .external_lex_state = 2}, + [579] = {.lex_state = 1, .external_lex_state = 2}, + [580] = {.lex_state = 2, .external_lex_state = 2}, + [581] = {.lex_state = 2, .external_lex_state = 2}, + [582] = {.lex_state = 2, .external_lex_state = 2}, + [583] = {.lex_state = 1, .external_lex_state = 2}, + [584] = {.lex_state = 1, .external_lex_state = 2}, + [585] = {.lex_state = 1, .external_lex_state = 2}, + [586] = {.lex_state = 2, .external_lex_state = 2}, + [587] = {.lex_state = 9, .external_lex_state = 2}, + [588] = {.lex_state = 2, .external_lex_state = 2}, + [589] = {.lex_state = 9, .external_lex_state = 2}, + [590] = {.lex_state = 2, .external_lex_state = 2}, + [591] = {.lex_state = 2, .external_lex_state = 2}, + [592] = {.lex_state = 2, .external_lex_state = 2}, + [593] = {.lex_state = 2, .external_lex_state = 2}, + [594] = {.lex_state = 2, .external_lex_state = 2}, + [595] = {.lex_state = 2, .external_lex_state = 2}, + [596] = {.lex_state = 2, .external_lex_state = 2}, + [597] = {.lex_state = 2, .external_lex_state = 2}, + [598] = {.lex_state = 2, .external_lex_state = 2}, + [599] = {.lex_state = 2, .external_lex_state = 2}, + [600] = {.lex_state = 9, .external_lex_state = 2}, + [601] = {.lex_state = 2, .external_lex_state = 2}, + [602] = {.lex_state = 9, .external_lex_state = 2}, + [603] = {.lex_state = 2, .external_lex_state = 2}, + [604] = {.lex_state = 2, .external_lex_state = 2}, + [605] = {.lex_state = 2, .external_lex_state = 2}, + [606] = {.lex_state = 2, .external_lex_state = 2}, + [607] = {.lex_state = 2, .external_lex_state = 2}, + [608] = {.lex_state = 2, .external_lex_state = 2}, + [609] = {.lex_state = 9, .external_lex_state = 2}, + [610] = {.lex_state = 9, .external_lex_state = 2}, + [611] = {.lex_state = 9, .external_lex_state = 2}, + [612] = {.lex_state = 9, .external_lex_state = 2}, + [613] = {.lex_state = 2, .external_lex_state = 2}, + [614] = {.lex_state = 2, .external_lex_state = 2}, + [615] = {.lex_state = 9, .external_lex_state = 2}, + [616] = {.lex_state = 2, .external_lex_state = 2}, + [617] = {.lex_state = 2, .external_lex_state = 2}, + [618] = {.lex_state = 2, .external_lex_state = 2}, + [619] = {.lex_state = 2, .external_lex_state = 2}, + [620] = {.lex_state = 2, .external_lex_state = 2}, + [621] = {.lex_state = 9, .external_lex_state = 2}, + [622] = {.lex_state = 2, .external_lex_state = 2}, + [623] = {.lex_state = 2, .external_lex_state = 2}, + [624] = {.lex_state = 2, .external_lex_state = 2}, + [625] = {.lex_state = 2, .external_lex_state = 2}, + [626] = {.lex_state = 2, .external_lex_state = 2}, + [627] = {.lex_state = 2, .external_lex_state = 2}, + [628] = {.lex_state = 2, .external_lex_state = 2}, + [629] = {.lex_state = 2, .external_lex_state = 2}, + [630] = {.lex_state = 2, .external_lex_state = 2}, + [631] = {.lex_state = 2, .external_lex_state = 2}, + [632] = {.lex_state = 2, .external_lex_state = 2}, + [633] = {.lex_state = 2, .external_lex_state = 2}, + [634] = {.lex_state = 2, .external_lex_state = 2}, + [635] = {.lex_state = 2, .external_lex_state = 2}, + [636] = {.lex_state = 2, .external_lex_state = 2}, + [637] = {.lex_state = 2, .external_lex_state = 2}, + [638] = {.lex_state = 2, .external_lex_state = 2}, + [639] = {.lex_state = 2, .external_lex_state = 2}, + [640] = {.lex_state = 2, .external_lex_state = 2}, + [641] = {.lex_state = 2, .external_lex_state = 2}, + [642] = {.lex_state = 2, .external_lex_state = 2}, + [643] = {.lex_state = 2, .external_lex_state = 2}, + [644] = {.lex_state = 2, .external_lex_state = 2}, + [645] = {.lex_state = 2, .external_lex_state = 2}, + [646] = {.lex_state = 2, .external_lex_state = 2}, + [647] = {.lex_state = 2, .external_lex_state = 2}, + [648] = {.lex_state = 2, .external_lex_state = 2}, + [649] = {.lex_state = 9, .external_lex_state = 2}, + [650] = {.lex_state = 9, .external_lex_state = 2}, + [651] = {.lex_state = 2, .external_lex_state = 2}, + [652] = {.lex_state = 2, .external_lex_state = 2}, + [653] = {.lex_state = 2, .external_lex_state = 2}, + [654] = {.lex_state = 2, .external_lex_state = 2}, + [655] = {.lex_state = 2, .external_lex_state = 2}, + [656] = {.lex_state = 2, .external_lex_state = 2}, + [657] = {.lex_state = 2, .external_lex_state = 2}, + [658] = {.lex_state = 9, .external_lex_state = 2}, + [659] = {.lex_state = 2, .external_lex_state = 2}, + [660] = {.lex_state = 2, .external_lex_state = 2}, + [661] = {.lex_state = 9, .external_lex_state = 2}, + [662] = {.lex_state = 9, .external_lex_state = 2}, + [663] = {.lex_state = 2, .external_lex_state = 2}, + [664] = {.lex_state = 2, .external_lex_state = 2}, + [665] = {.lex_state = 9, .external_lex_state = 2}, + [666] = {.lex_state = 2, .external_lex_state = 2}, + [667] = {.lex_state = 9, .external_lex_state = 2}, + [668] = {.lex_state = 2, .external_lex_state = 2}, + [669] = {.lex_state = 2, .external_lex_state = 2}, + [670] = {.lex_state = 2, .external_lex_state = 2}, + [671] = {.lex_state = 2, .external_lex_state = 2}, + [672] = {.lex_state = 9, .external_lex_state = 2}, + [673] = {.lex_state = 2, .external_lex_state = 2}, + [674] = {.lex_state = 9, .external_lex_state = 2}, + [675] = {.lex_state = 2, .external_lex_state = 2}, + [676] = {.lex_state = 2, .external_lex_state = 2}, + [677] = {.lex_state = 9, .external_lex_state = 2}, + [678] = {.lex_state = 2, .external_lex_state = 2}, + [679] = {.lex_state = 2, .external_lex_state = 2}, + [680] = {.lex_state = 2, .external_lex_state = 2}, + [681] = {.lex_state = 9, .external_lex_state = 2}, + [682] = {.lex_state = 2, .external_lex_state = 2}, + [683] = {.lex_state = 2, .external_lex_state = 2}, + [684] = {.lex_state = 2, .external_lex_state = 2}, + [685] = {.lex_state = 9, .external_lex_state = 2}, + [686] = {.lex_state = 9, .external_lex_state = 2}, + [687] = {.lex_state = 2, .external_lex_state = 2}, + [688] = {.lex_state = 9, .external_lex_state = 2}, + [689] = {.lex_state = 2, .external_lex_state = 2}, + [690] = {.lex_state = 9, .external_lex_state = 2}, + [691] = {.lex_state = 2, .external_lex_state = 2}, + [692] = {.lex_state = 2, .external_lex_state = 2}, + [693] = {.lex_state = 9, .external_lex_state = 2}, + [694] = {.lex_state = 9, .external_lex_state = 2}, + [695] = {.lex_state = 9, .external_lex_state = 2}, + [696] = {.lex_state = 9, .external_lex_state = 2}, + [697] = {.lex_state = 2, .external_lex_state = 2}, + [698] = {.lex_state = 9, .external_lex_state = 2}, + [699] = {.lex_state = 9, .external_lex_state = 2}, + [700] = {.lex_state = 2, .external_lex_state = 2}, + [701] = {.lex_state = 2, .external_lex_state = 2}, + [702] = {.lex_state = 2, .external_lex_state = 2}, + [703] = {.lex_state = 2, .external_lex_state = 2}, + [704] = {.lex_state = 2, .external_lex_state = 2}, + [705] = {.lex_state = 2, .external_lex_state = 2}, + [706] = {.lex_state = 2, .external_lex_state = 2}, + [707] = {.lex_state = 2, .external_lex_state = 2}, + [708] = {.lex_state = 2, .external_lex_state = 2}, + [709] = {.lex_state = 2, .external_lex_state = 2}, + [710] = {.lex_state = 2, .external_lex_state = 2}, + [711] = {.lex_state = 2, .external_lex_state = 2}, + [712] = {.lex_state = 9, .external_lex_state = 2}, + [713] = {.lex_state = 9, .external_lex_state = 2}, + [714] = {.lex_state = 9, .external_lex_state = 2}, + [715] = {.lex_state = 9, .external_lex_state = 2}, + [716] = {.lex_state = 9, .external_lex_state = 2}, + [717] = {.lex_state = 9, .external_lex_state = 2}, + [718] = {.lex_state = 2, .external_lex_state = 2}, + [719] = {.lex_state = 9, .external_lex_state = 2}, + [720] = {.lex_state = 2, .external_lex_state = 2}, + [721] = {.lex_state = 2, .external_lex_state = 2}, + [722] = {.lex_state = 2, .external_lex_state = 2}, + [723] = {.lex_state = 2, .external_lex_state = 2}, + [724] = {.lex_state = 2, .external_lex_state = 2}, + [725] = {.lex_state = 2, .external_lex_state = 2}, + [726] = {.lex_state = 2, .external_lex_state = 2}, + [727] = {.lex_state = 2, .external_lex_state = 2}, + [728] = {.lex_state = 2, .external_lex_state = 2}, + [729] = {.lex_state = 2, .external_lex_state = 2}, + [730] = {.lex_state = 9, .external_lex_state = 2}, + [731] = {.lex_state = 9, .external_lex_state = 2}, + [732] = {.lex_state = 2, .external_lex_state = 2}, + [733] = {.lex_state = 9, .external_lex_state = 2}, + [734] = {.lex_state = 2, .external_lex_state = 2}, + [735] = {.lex_state = 9, .external_lex_state = 2}, + [736] = {.lex_state = 9, .external_lex_state = 2}, + [737] = {.lex_state = 9, .external_lex_state = 2}, + [738] = {.lex_state = 2, .external_lex_state = 2}, + [739] = {.lex_state = 9, .external_lex_state = 2}, + [740] = {.lex_state = 2, .external_lex_state = 2}, + [741] = {.lex_state = 2, .external_lex_state = 2}, + [742] = {.lex_state = 2, .external_lex_state = 2}, + [743] = {.lex_state = 2, .external_lex_state = 2}, + [744] = {.lex_state = 2, .external_lex_state = 2}, + [745] = {.lex_state = 9, .external_lex_state = 2}, + [746] = {.lex_state = 9, .external_lex_state = 2}, + [747] = {.lex_state = 2, .external_lex_state = 2}, + [748] = {.lex_state = 9, .external_lex_state = 2}, + [749] = {.lex_state = 9, .external_lex_state = 2}, + [750] = {.lex_state = 9, .external_lex_state = 2}, + [751] = {.lex_state = 2, .external_lex_state = 2}, + [752] = {.lex_state = 9, .external_lex_state = 2}, + [753] = {.lex_state = 9, .external_lex_state = 2}, + [754] = {.lex_state = 9, .external_lex_state = 2}, + [755] = {.lex_state = 9, .external_lex_state = 2}, + [756] = {.lex_state = 9, .external_lex_state = 2}, + [757] = {.lex_state = 9, .external_lex_state = 2}, + [758] = {.lex_state = 9, .external_lex_state = 2}, + [759] = {.lex_state = 9, .external_lex_state = 2}, + [760] = {.lex_state = 9, .external_lex_state = 2}, + [761] = {.lex_state = 2, .external_lex_state = 2}, + [762] = {.lex_state = 2, .external_lex_state = 2}, + [763] = {.lex_state = 9, .external_lex_state = 2}, + [764] = {.lex_state = 9, .external_lex_state = 2}, + [765] = {.lex_state = 9, .external_lex_state = 2}, + [766] = {.lex_state = 9, .external_lex_state = 2}, + [767] = {.lex_state = 9, .external_lex_state = 2}, + [768] = {.lex_state = 9, .external_lex_state = 2}, + [769] = {.lex_state = 9, .external_lex_state = 2}, + [770] = {.lex_state = 2, .external_lex_state = 2}, + [771] = {.lex_state = 9, .external_lex_state = 2}, + [772] = {.lex_state = 9, .external_lex_state = 2}, + [773] = {.lex_state = 9, .external_lex_state = 2}, + [774] = {.lex_state = 9, .external_lex_state = 2}, + [775] = {.lex_state = 9, .external_lex_state = 2}, + [776] = {.lex_state = 9, .external_lex_state = 2}, + [777] = {.lex_state = 9, .external_lex_state = 2}, + [778] = {.lex_state = 9, .external_lex_state = 2}, + [779] = {.lex_state = 9, .external_lex_state = 2}, + [780] = {.lex_state = 9, .external_lex_state = 2}, + [781] = {.lex_state = 9, .external_lex_state = 2}, + [782] = {.lex_state = 2, .external_lex_state = 2}, + [783] = {.lex_state = 9, .external_lex_state = 2}, + [784] = {.lex_state = 2, .external_lex_state = 2}, + [785] = {.lex_state = 2, .external_lex_state = 2}, + [786] = {.lex_state = 9, .external_lex_state = 2}, + [787] = {.lex_state = 2, .external_lex_state = 2}, + [788] = {.lex_state = 2, .external_lex_state = 2}, + [789] = {.lex_state = 9, .external_lex_state = 2}, + [790] = {.lex_state = 2, .external_lex_state = 2}, + [791] = {.lex_state = 2, .external_lex_state = 2}, + [792] = {.lex_state = 9, .external_lex_state = 2}, + [793] = {.lex_state = 2, .external_lex_state = 2}, + [794] = {.lex_state = 9, .external_lex_state = 2}, + [795] = {.lex_state = 9, .external_lex_state = 2}, + [796] = {.lex_state = 2, .external_lex_state = 2}, + [797] = {.lex_state = 9, .external_lex_state = 2}, + [798] = {.lex_state = 9, .external_lex_state = 2}, + [799] = {.lex_state = 9, .external_lex_state = 2}, + [800] = {.lex_state = 2, .external_lex_state = 2}, + [801] = {.lex_state = 2, .external_lex_state = 2}, + [802] = {.lex_state = 2, .external_lex_state = 2}, + [803] = {.lex_state = 9, .external_lex_state = 2}, + [804] = {.lex_state = 2, .external_lex_state = 2}, + [805] = {.lex_state = 9, .external_lex_state = 2}, + [806] = {.lex_state = 2, .external_lex_state = 2}, + [807] = {.lex_state = 9, .external_lex_state = 2}, + [808] = {.lex_state = 9, .external_lex_state = 2}, + [809] = {.lex_state = 9, .external_lex_state = 2}, + [810] = {.lex_state = 2, .external_lex_state = 2}, + [811] = {.lex_state = 9, .external_lex_state = 2}, + [812] = {.lex_state = 2, .external_lex_state = 2}, + [813] = {.lex_state = 2, .external_lex_state = 2}, + [814] = {.lex_state = 2, .external_lex_state = 2}, + [815] = {.lex_state = 2, .external_lex_state = 2}, + [816] = {.lex_state = 2, .external_lex_state = 2}, + [817] = {.lex_state = 2, .external_lex_state = 2}, + [818] = {.lex_state = 9, .external_lex_state = 2}, + [819] = {.lex_state = 9, .external_lex_state = 2}, + [820] = {.lex_state = 9, .external_lex_state = 2}, + [821] = {.lex_state = 9, .external_lex_state = 2}, + [822] = {.lex_state = 9, .external_lex_state = 2}, + [823] = {.lex_state = 9, .external_lex_state = 2}, + [824] = {.lex_state = 9, .external_lex_state = 2}, + [825] = {.lex_state = 9, .external_lex_state = 2}, + [826] = {.lex_state = 9, .external_lex_state = 2}, + [827] = {.lex_state = 9, .external_lex_state = 2}, + [828] = {.lex_state = 9, .external_lex_state = 2}, + [829] = {.lex_state = 9, .external_lex_state = 2}, + [830] = {.lex_state = 9, .external_lex_state = 2}, + [831] = {.lex_state = 9, .external_lex_state = 2}, + [832] = {.lex_state = 9, .external_lex_state = 2}, + [833] = {.lex_state = 9, .external_lex_state = 2}, + [834] = {.lex_state = 9, .external_lex_state = 2}, + [835] = {.lex_state = 9, .external_lex_state = 2}, + [836] = {.lex_state = 9, .external_lex_state = 2}, + [837] = {.lex_state = 9, .external_lex_state = 2}, + [838] = {.lex_state = 9, .external_lex_state = 2}, + [839] = {.lex_state = 9, .external_lex_state = 2}, + [840] = {.lex_state = 9, .external_lex_state = 2}, + [841] = {.lex_state = 9, .external_lex_state = 2}, + [842] = {.lex_state = 9, .external_lex_state = 2}, + [843] = {.lex_state = 9, .external_lex_state = 2}, + [844] = {.lex_state = 9, .external_lex_state = 2}, + [845] = {.lex_state = 9, .external_lex_state = 2}, + [846] = {.lex_state = 9, .external_lex_state = 2}, + [847] = {.lex_state = 9, .external_lex_state = 2}, + [848] = {.lex_state = 9, .external_lex_state = 2}, + [849] = {.lex_state = 9, .external_lex_state = 2}, + [850] = {.lex_state = 9, .external_lex_state = 2}, + [851] = {.lex_state = 9, .external_lex_state = 2}, + [852] = {.lex_state = 9, .external_lex_state = 2}, + [853] = {.lex_state = 9, .external_lex_state = 2}, + [854] = {.lex_state = 9, .external_lex_state = 2}, + [855] = {.lex_state = 9, .external_lex_state = 2}, + [856] = {.lex_state = 9, .external_lex_state = 2}, + [857] = {.lex_state = 9, .external_lex_state = 2}, + [858] = {.lex_state = 9, .external_lex_state = 2}, + [859] = {.lex_state = 9, .external_lex_state = 2}, + [860] = {.lex_state = 9, .external_lex_state = 2}, + [861] = {.lex_state = 9, .external_lex_state = 2}, + [862] = {.lex_state = 9, .external_lex_state = 2}, + [863] = {.lex_state = 9, .external_lex_state = 2}, + [864] = {.lex_state = 9, .external_lex_state = 2}, + [865] = {.lex_state = 9, .external_lex_state = 2}, + [866] = {.lex_state = 9, .external_lex_state = 2}, + [867] = {.lex_state = 2, .external_lex_state = 2}, + [868] = {.lex_state = 9, .external_lex_state = 2}, + [869] = {.lex_state = 9, .external_lex_state = 2}, + [870] = {.lex_state = 9, .external_lex_state = 2}, + [871] = {.lex_state = 9, .external_lex_state = 2}, + [872] = {.lex_state = 2, .external_lex_state = 2}, + [873] = {.lex_state = 9, .external_lex_state = 2}, + [874] = {.lex_state = 9, .external_lex_state = 2}, + [875] = {.lex_state = 9, .external_lex_state = 2}, + [876] = {.lex_state = 9, .external_lex_state = 2}, + [877] = {.lex_state = 9, .external_lex_state = 2}, + [878] = {.lex_state = 9, .external_lex_state = 2}, + [879] = {.lex_state = 9, .external_lex_state = 2}, + [880] = {.lex_state = 2, .external_lex_state = 2}, + [881] = {.lex_state = 9, .external_lex_state = 2}, + [882] = {.lex_state = 9, .external_lex_state = 2}, + [883] = {.lex_state = 9, .external_lex_state = 2}, + [884] = {.lex_state = 2, .external_lex_state = 2}, + [885] = {.lex_state = 9, .external_lex_state = 2}, + [886] = {.lex_state = 2, .external_lex_state = 2}, + [887] = {.lex_state = 2, .external_lex_state = 2}, + [888] = {.lex_state = 2, .external_lex_state = 2}, + [889] = {.lex_state = 9, .external_lex_state = 2}, + [890] = {.lex_state = 9, .external_lex_state = 2}, + [891] = {.lex_state = 2, .external_lex_state = 2}, + [892] = {.lex_state = 2, .external_lex_state = 2}, + [893] = {.lex_state = 2, .external_lex_state = 2}, + [894] = {.lex_state = 2, .external_lex_state = 2}, + [895] = {.lex_state = 2, .external_lex_state = 2}, + [896] = {.lex_state = 2, .external_lex_state = 2}, + [897] = {.lex_state = 2, .external_lex_state = 2}, + [898] = {.lex_state = 2, .external_lex_state = 2}, + [899] = {.lex_state = 2, .external_lex_state = 2}, + [900] = {.lex_state = 2, .external_lex_state = 2}, + [901] = {.lex_state = 2, .external_lex_state = 2}, + [902] = {.lex_state = 2, .external_lex_state = 2}, + [903] = {.lex_state = 2, .external_lex_state = 2}, + [904] = {.lex_state = 2, .external_lex_state = 2}, + [905] = {.lex_state = 2, .external_lex_state = 2}, + [906] = {.lex_state = 9, .external_lex_state = 2}, + [907] = {.lex_state = 9, .external_lex_state = 2}, + [908] = {.lex_state = 9, .external_lex_state = 2}, + [909] = {.lex_state = 9, .external_lex_state = 2}, + [910] = {.lex_state = 9, .external_lex_state = 2}, + [911] = {.lex_state = 9, .external_lex_state = 2}, + [912] = {.lex_state = 9, .external_lex_state = 2}, + [913] = {.lex_state = 9, .external_lex_state = 2}, + [914] = {.lex_state = 9, .external_lex_state = 2}, + [915] = {.lex_state = 9, .external_lex_state = 2}, + [916] = {.lex_state = 9, .external_lex_state = 2}, + [917] = {.lex_state = 9, .external_lex_state = 2}, + [918] = {.lex_state = 2, .external_lex_state = 2}, + [919] = {.lex_state = 9, .external_lex_state = 2}, + [920] = {.lex_state = 9, .external_lex_state = 2}, + [921] = {.lex_state = 9, .external_lex_state = 2}, + [922] = {.lex_state = 9, .external_lex_state = 2}, + [923] = {.lex_state = 9, .external_lex_state = 2}, + [924] = {.lex_state = 9, .external_lex_state = 2}, + [925] = {.lex_state = 2, .external_lex_state = 2}, + [926] = {.lex_state = 9, .external_lex_state = 2}, + [927] = {.lex_state = 9, .external_lex_state = 2}, + [928] = {.lex_state = 9, .external_lex_state = 2}, + [929] = {.lex_state = 9, .external_lex_state = 2}, + [930] = {.lex_state = 9, .external_lex_state = 2}, + [931] = {.lex_state = 9, .external_lex_state = 2}, + [932] = {.lex_state = 2, .external_lex_state = 2}, + [933] = {.lex_state = 2, .external_lex_state = 2}, + [934] = {.lex_state = 2, .external_lex_state = 2}, + [935] = {.lex_state = 2, .external_lex_state = 2}, + [936] = {.lex_state = 9, .external_lex_state = 2}, + [937] = {.lex_state = 9, .external_lex_state = 2}, + [938] = {.lex_state = 9, .external_lex_state = 2}, + [939] = {.lex_state = 9, .external_lex_state = 2}, + [940] = {.lex_state = 9, .external_lex_state = 2}, + [941] = {.lex_state = 2, .external_lex_state = 2}, + [942] = {.lex_state = 9, .external_lex_state = 2}, + [943] = {.lex_state = 9, .external_lex_state = 2}, + [944] = {.lex_state = 9, .external_lex_state = 2}, + [945] = {.lex_state = 2, .external_lex_state = 2}, + [946] = {.lex_state = 9, .external_lex_state = 2}, + [947] = {.lex_state = 9, .external_lex_state = 2}, + [948] = {.lex_state = 9, .external_lex_state = 2}, + [949] = {.lex_state = 9, .external_lex_state = 2}, + [950] = {.lex_state = 9, .external_lex_state = 2}, + [951] = {.lex_state = 9, .external_lex_state = 2}, + [952] = {.lex_state = 9, .external_lex_state = 2}, + [953] = {.lex_state = 9, .external_lex_state = 2}, + [954] = {.lex_state = 2, .external_lex_state = 2}, + [955] = {.lex_state = 2, .external_lex_state = 2}, + [956] = {.lex_state = 9, .external_lex_state = 2}, + [957] = {.lex_state = 9, .external_lex_state = 2}, + [958] = {.lex_state = 2, .external_lex_state = 2}, + [959] = {.lex_state = 2, .external_lex_state = 2}, + [960] = {.lex_state = 9, .external_lex_state = 2}, + [961] = {.lex_state = 2, .external_lex_state = 2}, + [962] = {.lex_state = 9, .external_lex_state = 2}, + [963] = {.lex_state = 9, .external_lex_state = 2}, + [964] = {.lex_state = 2, .external_lex_state = 2}, + [965] = {.lex_state = 9, .external_lex_state = 2}, + [966] = {.lex_state = 9, .external_lex_state = 2}, + [967] = {.lex_state = 9, .external_lex_state = 2}, + [968] = {.lex_state = 9, .external_lex_state = 2}, + [969] = {.lex_state = 2, .external_lex_state = 2}, + [970] = {.lex_state = 2, .external_lex_state = 2}, + [971] = {.lex_state = 9, .external_lex_state = 2}, + [972] = {.lex_state = 9, .external_lex_state = 2}, + [973] = {.lex_state = 9, .external_lex_state = 2}, + [974] = {.lex_state = 9, .external_lex_state = 2}, + [975] = {.lex_state = 2, .external_lex_state = 2}, + [976] = {.lex_state = 9, .external_lex_state = 2}, + [977] = {.lex_state = 2, .external_lex_state = 2}, + [978] = {.lex_state = 9, .external_lex_state = 2}, + [979] = {.lex_state = 9, .external_lex_state = 2}, + [980] = {.lex_state = 2, .external_lex_state = 2}, + [981] = {.lex_state = 9, .external_lex_state = 2}, + [982] = {.lex_state = 2, .external_lex_state = 2}, + [983] = {.lex_state = 9, .external_lex_state = 2}, + [984] = {.lex_state = 9, .external_lex_state = 2}, + [985] = {.lex_state = 9, .external_lex_state = 2}, + [986] = {.lex_state = 9, .external_lex_state = 2}, + [987] = {.lex_state = 2, .external_lex_state = 2}, + [988] = {.lex_state = 2, .external_lex_state = 2}, + [989] = {.lex_state = 2, .external_lex_state = 2}, + [990] = {.lex_state = 2, .external_lex_state = 2}, + [991] = {.lex_state = 2, .external_lex_state = 2}, + [992] = {.lex_state = 2, .external_lex_state = 2}, + [993] = {.lex_state = 2, .external_lex_state = 2}, + [994] = {.lex_state = 2, .external_lex_state = 2}, + [995] = {.lex_state = 2, .external_lex_state = 2}, + [996] = {.lex_state = 2, .external_lex_state = 2}, + [997] = {.lex_state = 2, .external_lex_state = 2}, + [998] = {.lex_state = 2, .external_lex_state = 2}, + [999] = {.lex_state = 2, .external_lex_state = 2}, + [1000] = {.lex_state = 2, .external_lex_state = 2}, + [1001] = {.lex_state = 2, .external_lex_state = 2}, + [1002] = {.lex_state = 2, .external_lex_state = 2}, + [1003] = {.lex_state = 2, .external_lex_state = 2}, + [1004] = {.lex_state = 2, .external_lex_state = 2}, + [1005] = {.lex_state = 2, .external_lex_state = 2}, + [1006] = {.lex_state = 2, .external_lex_state = 2}, + [1007] = {.lex_state = 2, .external_lex_state = 2}, + [1008] = {.lex_state = 2, .external_lex_state = 2}, + [1009] = {.lex_state = 2, .external_lex_state = 2}, + [1010] = {.lex_state = 2, .external_lex_state = 2}, + [1011] = {.lex_state = 2, .external_lex_state = 2}, + [1012] = {.lex_state = 2, .external_lex_state = 2}, + [1013] = {.lex_state = 2, .external_lex_state = 2}, + [1014] = {.lex_state = 2, .external_lex_state = 2}, + [1015] = {.lex_state = 2, .external_lex_state = 2}, + [1016] = {.lex_state = 2, .external_lex_state = 2}, + [1017] = {.lex_state = 2, .external_lex_state = 2}, + [1018] = {.lex_state = 2, .external_lex_state = 2}, + [1019] = {.lex_state = 2, .external_lex_state = 2}, + [1020] = {.lex_state = 2, .external_lex_state = 2}, + [1021] = {.lex_state = 2, .external_lex_state = 2}, + [1022] = {.lex_state = 2, .external_lex_state = 2}, + [1023] = {.lex_state = 2, .external_lex_state = 2}, + [1024] = {.lex_state = 2, .external_lex_state = 2}, + [1025] = {.lex_state = 2, .external_lex_state = 2}, + [1026] = {.lex_state = 2, .external_lex_state = 2}, + [1027] = {.lex_state = 2, .external_lex_state = 2}, + [1028] = {.lex_state = 2, .external_lex_state = 2}, + [1029] = {.lex_state = 2, .external_lex_state = 2}, + [1030] = {.lex_state = 2, .external_lex_state = 2}, + [1031] = {.lex_state = 2, .external_lex_state = 2}, + [1032] = {.lex_state = 2, .external_lex_state = 2}, + [1033] = {.lex_state = 2, .external_lex_state = 2}, + [1034] = {.lex_state = 2, .external_lex_state = 2}, + [1035] = {.lex_state = 2, .external_lex_state = 2}, + [1036] = {.lex_state = 2, .external_lex_state = 2}, + [1037] = {.lex_state = 2, .external_lex_state = 2}, + [1038] = {.lex_state = 2, .external_lex_state = 2}, + [1039] = {.lex_state = 2, .external_lex_state = 2}, + [1040] = {.lex_state = 2, .external_lex_state = 2}, + [1041] = {.lex_state = 2, .external_lex_state = 2}, + [1042] = {.lex_state = 2, .external_lex_state = 2}, + [1043] = {.lex_state = 2, .external_lex_state = 2}, + [1044] = {.lex_state = 2, .external_lex_state = 2}, + [1045] = {.lex_state = 2, .external_lex_state = 2}, + [1046] = {.lex_state = 2, .external_lex_state = 2}, + [1047] = {.lex_state = 2, .external_lex_state = 2}, + [1048] = {.lex_state = 2, .external_lex_state = 2}, + [1049] = {.lex_state = 2, .external_lex_state = 2}, + [1050] = {.lex_state = 2, .external_lex_state = 2}, + [1051] = {.lex_state = 2, .external_lex_state = 2}, + [1052] = {.lex_state = 2, .external_lex_state = 2}, + [1053] = {.lex_state = 2, .external_lex_state = 2}, + [1054] = {.lex_state = 2, .external_lex_state = 2}, + [1055] = {.lex_state = 2, .external_lex_state = 2}, + [1056] = {.lex_state = 2, .external_lex_state = 2}, + [1057] = {.lex_state = 2, .external_lex_state = 2}, + [1058] = {.lex_state = 2, .external_lex_state = 2}, + [1059] = {.lex_state = 2, .external_lex_state = 2}, + [1060] = {.lex_state = 2, .external_lex_state = 2}, + [1061] = {.lex_state = 2, .external_lex_state = 2}, + [1062] = {.lex_state = 2, .external_lex_state = 2}, + [1063] = {.lex_state = 2, .external_lex_state = 2}, + [1064] = {.lex_state = 2, .external_lex_state = 2}, + [1065] = {.lex_state = 2, .external_lex_state = 2}, + [1066] = {.lex_state = 2, .external_lex_state = 2}, + [1067] = {.lex_state = 2, .external_lex_state = 2}, + [1068] = {.lex_state = 2, .external_lex_state = 2}, + [1069] = {.lex_state = 2, .external_lex_state = 2}, + [1070] = {.lex_state = 2, .external_lex_state = 2}, + [1071] = {.lex_state = 2, .external_lex_state = 2}, + [1072] = {.lex_state = 2, .external_lex_state = 2}, + [1073] = {.lex_state = 2, .external_lex_state = 2}, + [1074] = {.lex_state = 2, .external_lex_state = 2}, + [1075] = {.lex_state = 2, .external_lex_state = 2}, + [1076] = {.lex_state = 2, .external_lex_state = 2}, + [1077] = {.lex_state = 2, .external_lex_state = 2}, + [1078] = {.lex_state = 2, .external_lex_state = 2}, + [1079] = {.lex_state = 2, .external_lex_state = 2}, + [1080] = {.lex_state = 2, .external_lex_state = 2}, + [1081] = {.lex_state = 2, .external_lex_state = 2}, + [1082] = {.lex_state = 2, .external_lex_state = 2}, + [1083] = {.lex_state = 2, .external_lex_state = 2}, + [1084] = {.lex_state = 2, .external_lex_state = 2}, + [1085] = {.lex_state = 2, .external_lex_state = 2}, + [1086] = {.lex_state = 2, .external_lex_state = 2}, + [1087] = {.lex_state = 2, .external_lex_state = 2}, + [1088] = {.lex_state = 2, .external_lex_state = 2}, + [1089] = {.lex_state = 2, .external_lex_state = 2}, + [1090] = {.lex_state = 2, .external_lex_state = 2}, + [1091] = {.lex_state = 2, .external_lex_state = 2}, + [1092] = {.lex_state = 2, .external_lex_state = 2}, + [1093] = {.lex_state = 2, .external_lex_state = 2}, + [1094] = {.lex_state = 2, .external_lex_state = 2}, + [1095] = {.lex_state = 2, .external_lex_state = 2}, + [1096] = {.lex_state = 2, .external_lex_state = 2}, + [1097] = {.lex_state = 2, .external_lex_state = 2}, + [1098] = {.lex_state = 2, .external_lex_state = 2}, + [1099] = {.lex_state = 2, .external_lex_state = 2}, + [1100] = {.lex_state = 2, .external_lex_state = 2}, + [1101] = {.lex_state = 2, .external_lex_state = 2}, + [1102] = {.lex_state = 2, .external_lex_state = 2}, + [1103] = {.lex_state = 2, .external_lex_state = 2}, + [1104] = {.lex_state = 2, .external_lex_state = 2}, + [1105] = {.lex_state = 2, .external_lex_state = 2}, + [1106] = {.lex_state = 2, .external_lex_state = 2}, + [1107] = {.lex_state = 2, .external_lex_state = 2}, + [1108] = {.lex_state = 2, .external_lex_state = 2}, + [1109] = {.lex_state = 2, .external_lex_state = 2}, + [1110] = {.lex_state = 2, .external_lex_state = 2}, + [1111] = {.lex_state = 2, .external_lex_state = 2}, + [1112] = {.lex_state = 2, .external_lex_state = 2}, + [1113] = {.lex_state = 2, .external_lex_state = 2}, + [1114] = {.lex_state = 2, .external_lex_state = 2}, + [1115] = {.lex_state = 2, .external_lex_state = 2}, + [1116] = {.lex_state = 2, .external_lex_state = 2}, + [1117] = {.lex_state = 2, .external_lex_state = 2}, + [1118] = {.lex_state = 2, .external_lex_state = 2}, + [1119] = {.lex_state = 2, .external_lex_state = 2}, + [1120] = {.lex_state = 2, .external_lex_state = 2}, + [1121] = {.lex_state = 2, .external_lex_state = 2}, + [1122] = {.lex_state = 2, .external_lex_state = 2}, + [1123] = {.lex_state = 2, .external_lex_state = 2}, + [1124] = {.lex_state = 2, .external_lex_state = 2}, + [1125] = {.lex_state = 2, .external_lex_state = 2}, + [1126] = {.lex_state = 2, .external_lex_state = 2}, + [1127] = {.lex_state = 2, .external_lex_state = 2}, + [1128] = {.lex_state = 2, .external_lex_state = 2}, + [1129] = {.lex_state = 2, .external_lex_state = 2}, + [1130] = {.lex_state = 2, .external_lex_state = 2}, + [1131] = {.lex_state = 2, .external_lex_state = 2}, + [1132] = {.lex_state = 2, .external_lex_state = 2}, + [1133] = {.lex_state = 2, .external_lex_state = 2}, + [1134] = {.lex_state = 2, .external_lex_state = 2}, + [1135] = {.lex_state = 2, .external_lex_state = 2}, + [1136] = {.lex_state = 2, .external_lex_state = 2}, + [1137] = {.lex_state = 2, .external_lex_state = 2}, + [1138] = {.lex_state = 2, .external_lex_state = 2}, + [1139] = {.lex_state = 2, .external_lex_state = 2}, + [1140] = {.lex_state = 2, .external_lex_state = 2}, + [1141] = {.lex_state = 2, .external_lex_state = 2}, + [1142] = {.lex_state = 2, .external_lex_state = 2}, + [1143] = {.lex_state = 2, .external_lex_state = 2}, + [1144] = {.lex_state = 2, .external_lex_state = 2}, + [1145] = {.lex_state = 2, .external_lex_state = 2}, + [1146] = {.lex_state = 2, .external_lex_state = 2}, + [1147] = {.lex_state = 1, .external_lex_state = 2}, + [1148] = {.lex_state = 2, .external_lex_state = 2}, + [1149] = {.lex_state = 2, .external_lex_state = 2}, + [1150] = {.lex_state = 2, .external_lex_state = 2}, + [1151] = {.lex_state = 2, .external_lex_state = 2}, + [1152] = {.lex_state = 2, .external_lex_state = 2}, + [1153] = {.lex_state = 2, .external_lex_state = 2}, + [1154] = {.lex_state = 2, .external_lex_state = 2}, + [1155] = {.lex_state = 2, .external_lex_state = 2}, + [1156] = {.lex_state = 2, .external_lex_state = 2}, + [1157] = {.lex_state = 2, .external_lex_state = 2}, + [1158] = {.lex_state = 2, .external_lex_state = 2}, + [1159] = {.lex_state = 2, .external_lex_state = 2}, + [1160] = {.lex_state = 2, .external_lex_state = 2}, + [1161] = {.lex_state = 2, .external_lex_state = 2}, + [1162] = {.lex_state = 2, .external_lex_state = 2}, + [1163] = {.lex_state = 2, .external_lex_state = 2}, + [1164] = {.lex_state = 2, .external_lex_state = 2}, + [1165] = {.lex_state = 2, .external_lex_state = 2}, + [1166] = {.lex_state = 1, .external_lex_state = 2}, + [1167] = {.lex_state = 2, .external_lex_state = 2}, + [1168] = {.lex_state = 2, .external_lex_state = 2}, + [1169] = {.lex_state = 2, .external_lex_state = 2}, + [1170] = {.lex_state = 2, .external_lex_state = 2}, + [1171] = {.lex_state = 2, .external_lex_state = 2}, + [1172] = {.lex_state = 2, .external_lex_state = 2}, + [1173] = {.lex_state = 2, .external_lex_state = 2}, + [1174] = {.lex_state = 2, .external_lex_state = 2}, + [1175] = {.lex_state = 2, .external_lex_state = 2}, + [1176] = {.lex_state = 2, .external_lex_state = 2}, + [1177] = {.lex_state = 2, .external_lex_state = 2}, + [1178] = {.lex_state = 2, .external_lex_state = 2}, + [1179] = {.lex_state = 1, .external_lex_state = 2}, + [1180] = {.lex_state = 2, .external_lex_state = 2}, + [1181] = {.lex_state = 2, .external_lex_state = 2}, + [1182] = {.lex_state = 2, .external_lex_state = 2}, + [1183] = {.lex_state = 2, .external_lex_state = 2}, + [1184] = {.lex_state = 2, .external_lex_state = 2}, + [1185] = {.lex_state = 2, .external_lex_state = 2}, + [1186] = {.lex_state = 2, .external_lex_state = 2}, + [1187] = {.lex_state = 2, .external_lex_state = 2}, + [1188] = {.lex_state = 2, .external_lex_state = 2}, + [1189] = {.lex_state = 9, .external_lex_state = 2}, + [1190] = {.lex_state = 9, .external_lex_state = 2}, + [1191] = {.lex_state = 2, .external_lex_state = 2}, + [1192] = {.lex_state = 2, .external_lex_state = 2}, + [1193] = {.lex_state = 2, .external_lex_state = 2}, + [1194] = {.lex_state = 2, .external_lex_state = 2}, + [1195] = {.lex_state = 2, .external_lex_state = 2}, + [1196] = {.lex_state = 2, .external_lex_state = 2}, + [1197] = {.lex_state = 2, .external_lex_state = 2}, + [1198] = {.lex_state = 2, .external_lex_state = 2}, + [1199] = {.lex_state = 2, .external_lex_state = 2}, + [1200] = {.lex_state = 2, .external_lex_state = 2}, + [1201] = {.lex_state = 2, .external_lex_state = 2}, + [1202] = {.lex_state = 2, .external_lex_state = 2}, + [1203] = {.lex_state = 2, .external_lex_state = 2}, + [1204] = {.lex_state = 2, .external_lex_state = 2}, + [1205] = {.lex_state = 2, .external_lex_state = 2}, + [1206] = {.lex_state = 2, .external_lex_state = 2}, + [1207] = {.lex_state = 2, .external_lex_state = 2}, + [1208] = {.lex_state = 2, .external_lex_state = 2}, + [1209] = {.lex_state = 2, .external_lex_state = 2}, + [1210] = {.lex_state = 2, .external_lex_state = 2}, + [1211] = {.lex_state = 6, .external_lex_state = 2}, + [1212] = {.lex_state = 6, .external_lex_state = 2}, + [1213] = {.lex_state = 2, .external_lex_state = 2}, + [1214] = {.lex_state = 2, .external_lex_state = 2}, + [1215] = {.lex_state = 2, .external_lex_state = 2}, + [1216] = {.lex_state = 2, .external_lex_state = 2}, + [1217] = {.lex_state = 2, .external_lex_state = 2}, + [1218] = {.lex_state = 2, .external_lex_state = 2}, + [1219] = {.lex_state = 2, .external_lex_state = 2}, + [1220] = {.lex_state = 2, .external_lex_state = 2}, + [1221] = {.lex_state = 2, .external_lex_state = 2}, + [1222] = {.lex_state = 2, .external_lex_state = 2}, + [1223] = {.lex_state = 2, .external_lex_state = 2}, + [1224] = {.lex_state = 2, .external_lex_state = 2}, + [1225] = {.lex_state = 2, .external_lex_state = 2}, + [1226] = {.lex_state = 2, .external_lex_state = 2}, + [1227] = {.lex_state = 2, .external_lex_state = 2}, + [1228] = {.lex_state = 2, .external_lex_state = 2}, + [1229] = {.lex_state = 2, .external_lex_state = 2}, + [1230] = {.lex_state = 2, .external_lex_state = 2}, + [1231] = {.lex_state = 2, .external_lex_state = 2}, + [1232] = {.lex_state = 2, .external_lex_state = 2}, + [1233] = {.lex_state = 2, .external_lex_state = 2}, + [1234] = {.lex_state = 2, .external_lex_state = 2}, + [1235] = {.lex_state = 9, .external_lex_state = 2}, + [1236] = {.lex_state = 9, .external_lex_state = 2}, + [1237] = {.lex_state = 6, .external_lex_state = 2}, + [1238] = {.lex_state = 6, .external_lex_state = 2}, + [1239] = {.lex_state = 6, .external_lex_state = 2}, + [1240] = {.lex_state = 6, .external_lex_state = 2}, + [1241] = {.lex_state = 9, .external_lex_state = 2}, + [1242] = {.lex_state = 2, .external_lex_state = 2}, + [1243] = {.lex_state = 2, .external_lex_state = 2}, + [1244] = {.lex_state = 2, .external_lex_state = 2}, + [1245] = {.lex_state = 9, .external_lex_state = 2}, + [1246] = {.lex_state = 9, .external_lex_state = 2}, + [1247] = {.lex_state = 9, .external_lex_state = 2}, + [1248] = {.lex_state = 9, .external_lex_state = 2}, + [1249] = {.lex_state = 9, .external_lex_state = 2}, + [1250] = {.lex_state = 9, .external_lex_state = 2}, + [1251] = {.lex_state = 9, .external_lex_state = 2}, + [1252] = {.lex_state = 9, .external_lex_state = 2}, + [1253] = {.lex_state = 9, .external_lex_state = 2}, + [1254] = {.lex_state = 9, .external_lex_state = 2}, + [1255] = {.lex_state = 9, .external_lex_state = 2}, + [1256] = {.lex_state = 2, .external_lex_state = 2}, + [1257] = {.lex_state = 9, .external_lex_state = 2}, + [1258] = {.lex_state = 2, .external_lex_state = 2}, + [1259] = {.lex_state = 2, .external_lex_state = 2}, + [1260] = {.lex_state = 9, .external_lex_state = 2}, + [1261] = {.lex_state = 9, .external_lex_state = 2}, + [1262] = {.lex_state = 9, .external_lex_state = 2}, + [1263] = {.lex_state = 9, .external_lex_state = 2}, + [1264] = {.lex_state = 9, .external_lex_state = 2}, + [1265] = {.lex_state = 9, .external_lex_state = 2}, + [1266] = {.lex_state = 9, .external_lex_state = 2}, + [1267] = {.lex_state = 9, .external_lex_state = 2}, + [1268] = {.lex_state = 9, .external_lex_state = 2}, + [1269] = {.lex_state = 9, .external_lex_state = 2}, + [1270] = {.lex_state = 9, .external_lex_state = 2}, + [1271] = {.lex_state = 9, .external_lex_state = 2}, + [1272] = {.lex_state = 9, .external_lex_state = 2}, + [1273] = {.lex_state = 9, .external_lex_state = 2}, + [1274] = {.lex_state = 9, .external_lex_state = 2}, + [1275] = {.lex_state = 9, .external_lex_state = 2}, + [1276] = {.lex_state = 9, .external_lex_state = 2}, + [1277] = {.lex_state = 9, .external_lex_state = 2}, + [1278] = {.lex_state = 9, .external_lex_state = 2}, + [1279] = {.lex_state = 9, .external_lex_state = 2}, + [1280] = {.lex_state = 9, .external_lex_state = 2}, + [1281] = {.lex_state = 9, .external_lex_state = 2}, + [1282] = {.lex_state = 9, .external_lex_state = 2}, + [1283] = {.lex_state = 9, .external_lex_state = 2}, + [1284] = {.lex_state = 9, .external_lex_state = 2}, + [1285] = {.lex_state = 9, .external_lex_state = 2}, + [1286] = {.lex_state = 9, .external_lex_state = 2}, + [1287] = {.lex_state = 9, .external_lex_state = 2}, + [1288] = {.lex_state = 9, .external_lex_state = 2}, + [1289] = {.lex_state = 9, .external_lex_state = 2}, + [1290] = {.lex_state = 9, .external_lex_state = 2}, + [1291] = {.lex_state = 9, .external_lex_state = 2}, + [1292] = {.lex_state = 9, .external_lex_state = 2}, + [1293] = {.lex_state = 9, .external_lex_state = 2}, + [1294] = {.lex_state = 9, .external_lex_state = 2}, + [1295] = {.lex_state = 9, .external_lex_state = 2}, + [1296] = {.lex_state = 9, .external_lex_state = 2}, + [1297] = {.lex_state = 9, .external_lex_state = 2}, + [1298] = {.lex_state = 9, .external_lex_state = 2}, + [1299] = {.lex_state = 9, .external_lex_state = 2}, + [1300] = {.lex_state = 9, .external_lex_state = 2}, + [1301] = {.lex_state = 9, .external_lex_state = 2}, + [1302] = {.lex_state = 9, .external_lex_state = 2}, + [1303] = {.lex_state = 9, .external_lex_state = 2}, + [1304] = {.lex_state = 9, .external_lex_state = 2}, + [1305] = {.lex_state = 9, .external_lex_state = 2}, + [1306] = {.lex_state = 9, .external_lex_state = 2}, + [1307] = {.lex_state = 9, .external_lex_state = 2}, + [1308] = {.lex_state = 9, .external_lex_state = 2}, + [1309] = {.lex_state = 9, .external_lex_state = 2}, + [1310] = {.lex_state = 9, .external_lex_state = 2}, + [1311] = {.lex_state = 9, .external_lex_state = 2}, + [1312] = {.lex_state = 9, .external_lex_state = 2}, + [1313] = {.lex_state = 9, .external_lex_state = 2}, + [1314] = {.lex_state = 9, .external_lex_state = 2}, + [1315] = {.lex_state = 9, .external_lex_state = 2}, + [1316] = {.lex_state = 9, .external_lex_state = 2}, + [1317] = {.lex_state = 9, .external_lex_state = 2}, + [1318] = {.lex_state = 9, .external_lex_state = 2}, + [1319] = {.lex_state = 9, .external_lex_state = 2}, + [1320] = {.lex_state = 9, .external_lex_state = 2}, + [1321] = {.lex_state = 9, .external_lex_state = 2}, + [1322] = {.lex_state = 9, .external_lex_state = 2}, + [1323] = {.lex_state = 9, .external_lex_state = 2}, + [1324] = {.lex_state = 9, .external_lex_state = 2}, + [1325] = {.lex_state = 9, .external_lex_state = 2}, + [1326] = {.lex_state = 9, .external_lex_state = 2}, + [1327] = {.lex_state = 9, .external_lex_state = 2}, + [1328] = {.lex_state = 9, .external_lex_state = 2}, + [1329] = {.lex_state = 9, .external_lex_state = 2}, + [1330] = {.lex_state = 2, .external_lex_state = 2}, + [1331] = {.lex_state = 9, .external_lex_state = 2}, + [1332] = {.lex_state = 2, .external_lex_state = 2}, + [1333] = {.lex_state = 9, .external_lex_state = 2}, + [1334] = {.lex_state = 9, .external_lex_state = 2}, + [1335] = {.lex_state = 2, .external_lex_state = 2}, + [1336] = {.lex_state = 2, .external_lex_state = 2}, + [1337] = {.lex_state = 9, .external_lex_state = 2}, + [1338] = {.lex_state = 9, .external_lex_state = 2}, + [1339] = {.lex_state = 9, .external_lex_state = 2}, + [1340] = {.lex_state = 9, .external_lex_state = 2}, + [1341] = {.lex_state = 9, .external_lex_state = 2}, + [1342] = {.lex_state = 9, .external_lex_state = 2}, + [1343] = {.lex_state = 9, .external_lex_state = 2}, + [1344] = {.lex_state = 9, .external_lex_state = 2}, + [1345] = {.lex_state = 9, .external_lex_state = 2}, + [1346] = {.lex_state = 9, .external_lex_state = 2}, + [1347] = {.lex_state = 9, .external_lex_state = 2}, + [1348] = {.lex_state = 9, .external_lex_state = 2}, + [1349] = {.lex_state = 9, .external_lex_state = 2}, + [1350] = {.lex_state = 9, .external_lex_state = 2}, + [1351] = {.lex_state = 9, .external_lex_state = 2}, + [1352] = {.lex_state = 9, .external_lex_state = 2}, + [1353] = {.lex_state = 9, .external_lex_state = 2}, + [1354] = {.lex_state = 9, .external_lex_state = 2}, + [1355] = {.lex_state = 9, .external_lex_state = 2}, + [1356] = {.lex_state = 9, .external_lex_state = 2}, + [1357] = {.lex_state = 9, .external_lex_state = 2}, + [1358] = {.lex_state = 9, .external_lex_state = 2}, + [1359] = {.lex_state = 9, .external_lex_state = 2}, + [1360] = {.lex_state = 9, .external_lex_state = 2}, + [1361] = {.lex_state = 9, .external_lex_state = 2}, + [1362] = {.lex_state = 9, .external_lex_state = 2}, + [1363] = {.lex_state = 9, .external_lex_state = 2}, + [1364] = {.lex_state = 9, .external_lex_state = 2}, + [1365] = {.lex_state = 9, .external_lex_state = 2}, + [1366] = {.lex_state = 9, .external_lex_state = 2}, + [1367] = {.lex_state = 9, .external_lex_state = 2}, + [1368] = {.lex_state = 9, .external_lex_state = 2}, + [1369] = {.lex_state = 9, .external_lex_state = 2}, + [1370] = {.lex_state = 9, .external_lex_state = 2}, + [1371] = {.lex_state = 9, .external_lex_state = 2}, + [1372] = {.lex_state = 9, .external_lex_state = 2}, + [1373] = {.lex_state = 9, .external_lex_state = 2}, + [1374] = {.lex_state = 9, .external_lex_state = 2}, + [1375] = {.lex_state = 9, .external_lex_state = 2}, + [1376] = {.lex_state = 9, .external_lex_state = 2}, + [1377] = {.lex_state = 9, .external_lex_state = 2}, + [1378] = {.lex_state = 9, .external_lex_state = 2}, + [1379] = {.lex_state = 9, .external_lex_state = 2}, + [1380] = {.lex_state = 9, .external_lex_state = 2}, + [1381] = {.lex_state = 9, .external_lex_state = 2}, + [1382] = {.lex_state = 9, .external_lex_state = 2}, + [1383] = {.lex_state = 9, .external_lex_state = 2}, + [1384] = {.lex_state = 9, .external_lex_state = 2}, + [1385] = {.lex_state = 9, .external_lex_state = 2}, + [1386] = {.lex_state = 9, .external_lex_state = 2}, + [1387] = {.lex_state = 9, .external_lex_state = 2}, + [1388] = {.lex_state = 9, .external_lex_state = 2}, + [1389] = {.lex_state = 9, .external_lex_state = 2}, + [1390] = {.lex_state = 9, .external_lex_state = 2}, + [1391] = {.lex_state = 9, .external_lex_state = 2}, + [1392] = {.lex_state = 9, .external_lex_state = 2}, + [1393] = {.lex_state = 9, .external_lex_state = 2}, + [1394] = {.lex_state = 9, .external_lex_state = 2}, + [1395] = {.lex_state = 9, .external_lex_state = 2}, + [1396] = {.lex_state = 9, .external_lex_state = 2}, + [1397] = {.lex_state = 9, .external_lex_state = 2}, + [1398] = {.lex_state = 9, .external_lex_state = 2}, + [1399] = {.lex_state = 9, .external_lex_state = 2}, + [1400] = {.lex_state = 9, .external_lex_state = 2}, + [1401] = {.lex_state = 9, .external_lex_state = 2}, + [1402] = {.lex_state = 9, .external_lex_state = 2}, + [1403] = {.lex_state = 9, .external_lex_state = 2}, + [1404] = {.lex_state = 9, .external_lex_state = 2}, + [1405] = {.lex_state = 9, .external_lex_state = 2}, + [1406] = {.lex_state = 9, .external_lex_state = 2}, + [1407] = {.lex_state = 9, .external_lex_state = 2}, + [1408] = {.lex_state = 9, .external_lex_state = 2}, + [1409] = {.lex_state = 9, .external_lex_state = 2}, + [1410] = {.lex_state = 9, .external_lex_state = 2}, + [1411] = {.lex_state = 9, .external_lex_state = 2}, + [1412] = {.lex_state = 9, .external_lex_state = 2}, + [1413] = {.lex_state = 9, .external_lex_state = 2}, + [1414] = {.lex_state = 9, .external_lex_state = 2}, + [1415] = {.lex_state = 9, .external_lex_state = 2}, + [1416] = {.lex_state = 9, .external_lex_state = 2}, + [1417] = {.lex_state = 9, .external_lex_state = 2}, + [1418] = {.lex_state = 9, .external_lex_state = 2}, + [1419] = {.lex_state = 9, .external_lex_state = 2}, + [1420] = {.lex_state = 9, .external_lex_state = 2}, + [1421] = {.lex_state = 9, .external_lex_state = 2}, + [1422] = {.lex_state = 9, .external_lex_state = 2}, + [1423] = {.lex_state = 9, .external_lex_state = 2}, + [1424] = {.lex_state = 9, .external_lex_state = 2}, + [1425] = {.lex_state = 9, .external_lex_state = 2}, + [1426] = {.lex_state = 9, .external_lex_state = 2}, + [1427] = {.lex_state = 9, .external_lex_state = 2}, + [1428] = {.lex_state = 9, .external_lex_state = 2}, + [1429] = {.lex_state = 9, .external_lex_state = 2}, + [1430] = {.lex_state = 9, .external_lex_state = 2}, + [1431] = {.lex_state = 9, .external_lex_state = 2}, + [1432] = {.lex_state = 9, .external_lex_state = 2}, + [1433] = {.lex_state = 9, .external_lex_state = 2}, + [1434] = {.lex_state = 9, .external_lex_state = 2}, + [1435] = {.lex_state = 9, .external_lex_state = 2}, + [1436] = {.lex_state = 2, .external_lex_state = 2}, + [1437] = {.lex_state = 9, .external_lex_state = 2}, + [1438] = {.lex_state = 2, .external_lex_state = 2}, + [1439] = {.lex_state = 9, .external_lex_state = 2}, + [1440] = {.lex_state = 9, .external_lex_state = 2}, + [1441] = {.lex_state = 9, .external_lex_state = 2}, + [1442] = {.lex_state = 9, .external_lex_state = 2}, + [1443] = {.lex_state = 9, .external_lex_state = 2}, + [1444] = {.lex_state = 9, .external_lex_state = 2}, + [1445] = {.lex_state = 9, .external_lex_state = 2}, + [1446] = {.lex_state = 9, .external_lex_state = 2}, + [1447] = {.lex_state = 9, .external_lex_state = 2}, + [1448] = {.lex_state = 9, .external_lex_state = 2}, + [1449] = {.lex_state = 9, .external_lex_state = 2}, + [1450] = {.lex_state = 9, .external_lex_state = 2}, + [1451] = {.lex_state = 9, .external_lex_state = 2}, + [1452] = {.lex_state = 9, .external_lex_state = 2}, + [1453] = {.lex_state = 9, .external_lex_state = 2}, + [1454] = {.lex_state = 9, .external_lex_state = 2}, + [1455] = {.lex_state = 9, .external_lex_state = 2}, + [1456] = {.lex_state = 9, .external_lex_state = 2}, + [1457] = {.lex_state = 9, .external_lex_state = 2}, + [1458] = {.lex_state = 9, .external_lex_state = 2}, + [1459] = {.lex_state = 9, .external_lex_state = 2}, + [1460] = {.lex_state = 9, .external_lex_state = 2}, + [1461] = {.lex_state = 9, .external_lex_state = 2}, + [1462] = {.lex_state = 9, .external_lex_state = 2}, + [1463] = {.lex_state = 9, .external_lex_state = 2}, + [1464] = {.lex_state = 9, .external_lex_state = 2}, + [1465] = {.lex_state = 9, .external_lex_state = 2}, + [1466] = {.lex_state = 9, .external_lex_state = 2}, + [1467] = {.lex_state = 9, .external_lex_state = 2}, + [1468] = {.lex_state = 9, .external_lex_state = 2}, + [1469] = {.lex_state = 9, .external_lex_state = 2}, + [1470] = {.lex_state = 9, .external_lex_state = 2}, + [1471] = {.lex_state = 9, .external_lex_state = 2}, + [1472] = {.lex_state = 9, .external_lex_state = 2}, + [1473] = {.lex_state = 9, .external_lex_state = 2}, + [1474] = {.lex_state = 9, .external_lex_state = 2}, + [1475] = {.lex_state = 9, .external_lex_state = 2}, + [1476] = {.lex_state = 9, .external_lex_state = 2}, + [1477] = {.lex_state = 9, .external_lex_state = 2}, + [1478] = {.lex_state = 9, .external_lex_state = 2}, + [1479] = {.lex_state = 9, .external_lex_state = 2}, + [1480] = {.lex_state = 9, .external_lex_state = 2}, + [1481] = {.lex_state = 9, .external_lex_state = 2}, + [1482] = {.lex_state = 9, .external_lex_state = 2}, + [1483] = {.lex_state = 9, .external_lex_state = 2}, + [1484] = {.lex_state = 9, .external_lex_state = 2}, + [1485] = {.lex_state = 9, .external_lex_state = 2}, + [1486] = {.lex_state = 9, .external_lex_state = 2}, + [1487] = {.lex_state = 9, .external_lex_state = 2}, + [1488] = {.lex_state = 9, .external_lex_state = 2}, + [1489] = {.lex_state = 9, .external_lex_state = 2}, + [1490] = {.lex_state = 9, .external_lex_state = 2}, + [1491] = {.lex_state = 9, .external_lex_state = 2}, + [1492] = {.lex_state = 9, .external_lex_state = 2}, + [1493] = {.lex_state = 9, .external_lex_state = 2}, + [1494] = {.lex_state = 9, .external_lex_state = 2}, + [1495] = {.lex_state = 9, .external_lex_state = 2}, + [1496] = {.lex_state = 9, .external_lex_state = 2}, + [1497] = {.lex_state = 9, .external_lex_state = 2}, + [1498] = {.lex_state = 9, .external_lex_state = 2}, + [1499] = {.lex_state = 9, .external_lex_state = 2}, + [1500] = {.lex_state = 9, .external_lex_state = 2}, + [1501] = {.lex_state = 9, .external_lex_state = 2}, + [1502] = {.lex_state = 9, .external_lex_state = 2}, + [1503] = {.lex_state = 9, .external_lex_state = 2}, + [1504] = {.lex_state = 9, .external_lex_state = 2}, + [1505] = {.lex_state = 2, .external_lex_state = 2}, + [1506] = {.lex_state = 0, .external_lex_state = 2}, + [1507] = {.lex_state = 2, .external_lex_state = 2}, + [1508] = {.lex_state = 2, .external_lex_state = 2}, + [1509] = {.lex_state = 2, .external_lex_state = 2}, + [1510] = {.lex_state = 2, .external_lex_state = 2}, + [1511] = {.lex_state = 2, .external_lex_state = 2}, + [1512] = {.lex_state = 2, .external_lex_state = 2}, + [1513] = {.lex_state = 2, .external_lex_state = 2}, + [1514] = {.lex_state = 2, .external_lex_state = 2}, + [1515] = {.lex_state = 2, .external_lex_state = 2}, + [1516] = {.lex_state = 2, .external_lex_state = 2}, + [1517] = {.lex_state = 2, .external_lex_state = 2}, + [1518] = {.lex_state = 2, .external_lex_state = 2}, + [1519] = {.lex_state = 2, .external_lex_state = 2}, + [1520] = {.lex_state = 8, .external_lex_state = 2}, + [1521] = {.lex_state = 2, .external_lex_state = 2}, + [1522] = {.lex_state = 2, .external_lex_state = 2}, + [1523] = {.lex_state = 2, .external_lex_state = 2}, + [1524] = {.lex_state = 2, .external_lex_state = 2}, + [1525] = {.lex_state = 2, .external_lex_state = 2}, + [1526] = {.lex_state = 2, .external_lex_state = 2}, + [1527] = {.lex_state = 2, .external_lex_state = 2}, + [1528] = {.lex_state = 2, .external_lex_state = 2}, + [1529] = {.lex_state = 2, .external_lex_state = 2}, + [1530] = {.lex_state = 2, .external_lex_state = 2}, + [1531] = {.lex_state = 2, .external_lex_state = 2}, + [1532] = {.lex_state = 2, .external_lex_state = 2}, + [1533] = {.lex_state = 2, .external_lex_state = 2}, + [1534] = {.lex_state = 2, .external_lex_state = 2}, + [1535] = {.lex_state = 8, .external_lex_state = 2}, + [1536] = {.lex_state = 2, .external_lex_state = 2}, + [1537] = {.lex_state = 0, .external_lex_state = 2}, + [1538] = {.lex_state = 2, .external_lex_state = 2}, + [1539] = {.lex_state = 2, .external_lex_state = 2}, + [1540] = {.lex_state = 2, .external_lex_state = 2}, + [1541] = {.lex_state = 2, .external_lex_state = 2}, + [1542] = {.lex_state = 2, .external_lex_state = 2}, + [1543] = {.lex_state = 2, .external_lex_state = 2}, + [1544] = {.lex_state = 2, .external_lex_state = 2}, + [1545] = {.lex_state = 2, .external_lex_state = 2}, + [1546] = {.lex_state = 2, .external_lex_state = 2}, + [1547] = {.lex_state = 2, .external_lex_state = 2}, + [1548] = {.lex_state = 2, .external_lex_state = 2}, + [1549] = {.lex_state = 2, .external_lex_state = 2}, + [1550] = {.lex_state = 2, .external_lex_state = 2}, + [1551] = {.lex_state = 2, .external_lex_state = 2}, + [1552] = {.lex_state = 2, .external_lex_state = 2}, + [1553] = {.lex_state = 2, .external_lex_state = 2}, + [1554] = {.lex_state = 2, .external_lex_state = 2}, + [1555] = {.lex_state = 2, .external_lex_state = 2}, + [1556] = {.lex_state = 0, .external_lex_state = 2}, + [1557] = {.lex_state = 2, .external_lex_state = 2}, + [1558] = {.lex_state = 2, .external_lex_state = 2}, + [1559] = {.lex_state = 2, .external_lex_state = 2}, + [1560] = {.lex_state = 2, .external_lex_state = 2}, + [1561] = {.lex_state = 2, .external_lex_state = 2}, + [1562] = {.lex_state = 2, .external_lex_state = 2}, + [1563] = {.lex_state = 2, .external_lex_state = 2}, + [1564] = {.lex_state = 2, .external_lex_state = 2}, + [1565] = {.lex_state = 2, .external_lex_state = 2}, + [1566] = {.lex_state = 2, .external_lex_state = 2}, + [1567] = {.lex_state = 2, .external_lex_state = 2}, + [1568] = {.lex_state = 2, .external_lex_state = 2}, + [1569] = {.lex_state = 2, .external_lex_state = 2}, + [1570] = {.lex_state = 2, .external_lex_state = 2}, + [1571] = {.lex_state = 2, .external_lex_state = 2}, + [1572] = {.lex_state = 2, .external_lex_state = 2}, + [1573] = {.lex_state = 2, .external_lex_state = 2}, + [1574] = {.lex_state = 2, .external_lex_state = 2}, + [1575] = {.lex_state = 2, .external_lex_state = 2}, + [1576] = {.lex_state = 2, .external_lex_state = 2}, + [1577] = {.lex_state = 2, .external_lex_state = 2}, + [1578] = {.lex_state = 2, .external_lex_state = 2}, + [1579] = {.lex_state = 2, .external_lex_state = 2}, + [1580] = {.lex_state = 2, .external_lex_state = 2}, + [1581] = {.lex_state = 2, .external_lex_state = 2}, + [1582] = {.lex_state = 2, .external_lex_state = 2}, + [1583] = {.lex_state = 2, .external_lex_state = 2}, + [1584] = {.lex_state = 2, .external_lex_state = 2}, + [1585] = {.lex_state = 2, .external_lex_state = 2}, + [1586] = {.lex_state = 2, .external_lex_state = 2}, + [1587] = {.lex_state = 2, .external_lex_state = 2}, + [1588] = {.lex_state = 2, .external_lex_state = 2}, + [1589] = {.lex_state = 2, .external_lex_state = 2}, + [1590] = {.lex_state = 2, .external_lex_state = 2}, + [1591] = {.lex_state = 2, .external_lex_state = 2}, + [1592] = {.lex_state = 2, .external_lex_state = 2}, + [1593] = {.lex_state = 2, .external_lex_state = 2}, + [1594] = {.lex_state = 2, .external_lex_state = 2}, + [1595] = {.lex_state = 2, .external_lex_state = 2}, + [1596] = {.lex_state = 2, .external_lex_state = 2}, + [1597] = {.lex_state = 2, .external_lex_state = 2}, + [1598] = {.lex_state = 2, .external_lex_state = 2}, + [1599] = {.lex_state = 2, .external_lex_state = 2}, + [1600] = {.lex_state = 2, .external_lex_state = 2}, + [1601] = {.lex_state = 2, .external_lex_state = 2}, + [1602] = {.lex_state = 0, .external_lex_state = 2}, + [1603] = {.lex_state = 2, .external_lex_state = 2}, + [1604] = {.lex_state = 2, .external_lex_state = 2}, + [1605] = {.lex_state = 2, .external_lex_state = 2}, + [1606] = {.lex_state = 2, .external_lex_state = 2}, + [1607] = {.lex_state = 2, .external_lex_state = 2}, + [1608] = {.lex_state = 2, .external_lex_state = 2}, + [1609] = {.lex_state = 2, .external_lex_state = 2}, + [1610] = {.lex_state = 2, .external_lex_state = 2}, + [1611] = {.lex_state = 2, .external_lex_state = 2}, + [1612] = {.lex_state = 2, .external_lex_state = 2}, + [1613] = {.lex_state = 2, .external_lex_state = 2}, + [1614] = {.lex_state = 2, .external_lex_state = 2}, + [1615] = {.lex_state = 0, .external_lex_state = 2}, + [1616] = {.lex_state = 2, .external_lex_state = 2}, + [1617] = {.lex_state = 2, .external_lex_state = 2}, + [1618] = {.lex_state = 2, .external_lex_state = 2}, + [1619] = {.lex_state = 2, .external_lex_state = 2}, + [1620] = {.lex_state = 2, .external_lex_state = 2}, + [1621] = {.lex_state = 2, .external_lex_state = 2}, + [1622] = {.lex_state = 2, .external_lex_state = 2}, + [1623] = {.lex_state = 2, .external_lex_state = 2}, + [1624] = {.lex_state = 2, .external_lex_state = 2}, + [1625] = {.lex_state = 2, .external_lex_state = 2}, + [1626] = {.lex_state = 2, .external_lex_state = 2}, + [1627] = {.lex_state = 2, .external_lex_state = 2}, + [1628] = {.lex_state = 2, .external_lex_state = 2}, + [1629] = {.lex_state = 2, .external_lex_state = 2}, + [1630] = {.lex_state = 2, .external_lex_state = 2}, + [1631] = {.lex_state = 2, .external_lex_state = 2}, + [1632] = {.lex_state = 2, .external_lex_state = 2}, + [1633] = {.lex_state = 2, .external_lex_state = 2}, + [1634] = {.lex_state = 2, .external_lex_state = 2}, + [1635] = {.lex_state = 2, .external_lex_state = 2}, + [1636] = {.lex_state = 2, .external_lex_state = 2}, + [1637] = {.lex_state = 2, .external_lex_state = 2}, + [1638] = {.lex_state = 2, .external_lex_state = 2}, + [1639] = {.lex_state = 2, .external_lex_state = 2}, + [1640] = {.lex_state = 2, .external_lex_state = 2}, + [1641] = {.lex_state = 2, .external_lex_state = 2}, + [1642] = {.lex_state = 2, .external_lex_state = 2}, + [1643] = {.lex_state = 2, .external_lex_state = 2}, + [1644] = {.lex_state = 2, .external_lex_state = 2}, + [1645] = {.lex_state = 2, .external_lex_state = 2}, + [1646] = {.lex_state = 2, .external_lex_state = 2}, + [1647] = {.lex_state = 2, .external_lex_state = 2}, + [1648] = {.lex_state = 2, .external_lex_state = 2}, + [1649] = {.lex_state = 2, .external_lex_state = 2}, + [1650] = {.lex_state = 2, .external_lex_state = 2}, + [1651] = {.lex_state = 2, .external_lex_state = 2}, + [1652] = {.lex_state = 2, .external_lex_state = 2}, + [1653] = {.lex_state = 2, .external_lex_state = 2}, + [1654] = {.lex_state = 2, .external_lex_state = 2}, + [1655] = {.lex_state = 2, .external_lex_state = 2}, + [1656] = {.lex_state = 2, .external_lex_state = 2}, + [1657] = {.lex_state = 2, .external_lex_state = 2}, + [1658] = {.lex_state = 2, .external_lex_state = 2}, + [1659] = {.lex_state = 2, .external_lex_state = 2}, + [1660] = {.lex_state = 2, .external_lex_state = 2}, + [1661] = {.lex_state = 2, .external_lex_state = 2}, + [1662] = {.lex_state = 2, .external_lex_state = 2}, + [1663] = {.lex_state = 2, .external_lex_state = 2}, + [1664] = {.lex_state = 2, .external_lex_state = 2}, + [1665] = {.lex_state = 2, .external_lex_state = 2}, + [1666] = {.lex_state = 2, .external_lex_state = 2}, + [1667] = {.lex_state = 2, .external_lex_state = 2}, + [1668] = {.lex_state = 2, .external_lex_state = 2}, + [1669] = {.lex_state = 2, .external_lex_state = 2}, + [1670] = {.lex_state = 2, .external_lex_state = 2}, + [1671] = {.lex_state = 2, .external_lex_state = 2}, + [1672] = {.lex_state = 2, .external_lex_state = 2}, + [1673] = {.lex_state = 2, .external_lex_state = 2}, + [1674] = {.lex_state = 2, .external_lex_state = 2}, + [1675] = {.lex_state = 2, .external_lex_state = 2}, + [1676] = {.lex_state = 2, .external_lex_state = 2}, + [1677] = {.lex_state = 2, .external_lex_state = 2}, + [1678] = {.lex_state = 2, .external_lex_state = 2}, + [1679] = {.lex_state = 2, .external_lex_state = 2}, + [1680] = {.lex_state = 2, .external_lex_state = 2}, + [1681] = {.lex_state = 2, .external_lex_state = 2}, + [1682] = {.lex_state = 2, .external_lex_state = 2}, + [1683] = {.lex_state = 2, .external_lex_state = 2}, + [1684] = {.lex_state = 2, .external_lex_state = 2}, + [1685] = {.lex_state = 2, .external_lex_state = 2}, + [1686] = {.lex_state = 2, .external_lex_state = 2}, + [1687] = {.lex_state = 2, .external_lex_state = 2}, + [1688] = {.lex_state = 2, .external_lex_state = 2}, + [1689] = {.lex_state = 2, .external_lex_state = 2}, + [1690] = {.lex_state = 2, .external_lex_state = 2}, + [1691] = {.lex_state = 2, .external_lex_state = 2}, + [1692] = {.lex_state = 2, .external_lex_state = 2}, + [1693] = {.lex_state = 2, .external_lex_state = 2}, + [1694] = {.lex_state = 2, .external_lex_state = 2}, + [1695] = {.lex_state = 2, .external_lex_state = 2}, + [1696] = {.lex_state = 2, .external_lex_state = 2}, + [1697] = {.lex_state = 2, .external_lex_state = 2}, + [1698] = {.lex_state = 2, .external_lex_state = 2}, + [1699] = {.lex_state = 2, .external_lex_state = 2}, + [1700] = {.lex_state = 2, .external_lex_state = 2}, + [1701] = {.lex_state = 2, .external_lex_state = 2}, + [1702] = {.lex_state = 2, .external_lex_state = 2}, + [1703] = {.lex_state = 2, .external_lex_state = 2}, + [1704] = {.lex_state = 2, .external_lex_state = 2}, + [1705] = {.lex_state = 0, .external_lex_state = 2}, + [1706] = {.lex_state = 2, .external_lex_state = 2}, + [1707] = {.lex_state = 2, .external_lex_state = 2}, + [1708] = {.lex_state = 2, .external_lex_state = 2}, + [1709] = {.lex_state = 2, .external_lex_state = 2}, + [1710] = {.lex_state = 2, .external_lex_state = 2}, + [1711] = {.lex_state = 0, .external_lex_state = 2}, + [1712] = {.lex_state = 2, .external_lex_state = 2}, + [1713] = {.lex_state = 2, .external_lex_state = 2}, + [1714] = {.lex_state = 2, .external_lex_state = 2}, + [1715] = {.lex_state = 0, .external_lex_state = 2}, + [1716] = {.lex_state = 0, .external_lex_state = 2}, + [1717] = {.lex_state = 2, .external_lex_state = 2}, + [1718] = {.lex_state = 2, .external_lex_state = 2}, + [1719] = {.lex_state = 2, .external_lex_state = 2}, + [1720] = {.lex_state = 2, .external_lex_state = 2}, + [1721] = {.lex_state = 2, .external_lex_state = 2}, + [1722] = {.lex_state = 2, .external_lex_state = 2}, + [1723] = {.lex_state = 8, .external_lex_state = 2}, + [1724] = {.lex_state = 8, .external_lex_state = 2}, + [1725] = {.lex_state = 2, .external_lex_state = 2}, + [1726] = {.lex_state = 8, .external_lex_state = 2}, + [1727] = {.lex_state = 2, .external_lex_state = 2}, + [1728] = {.lex_state = 2, .external_lex_state = 2}, + [1729] = {.lex_state = 2, .external_lex_state = 2}, + [1730] = {.lex_state = 8, .external_lex_state = 2}, + [1731] = {.lex_state = 8, .external_lex_state = 2}, + [1732] = {.lex_state = 2, .external_lex_state = 2}, + [1733] = {.lex_state = 8, .external_lex_state = 2}, + [1734] = {.lex_state = 2, .external_lex_state = 2}, + [1735] = {.lex_state = 2, .external_lex_state = 2}, + [1736] = {.lex_state = 2, .external_lex_state = 2}, + [1737] = {.lex_state = 2, .external_lex_state = 2}, + [1738] = {.lex_state = 2, .external_lex_state = 2}, + [1739] = {.lex_state = 2, .external_lex_state = 2}, + [1740] = {.lex_state = 2, .external_lex_state = 2}, + [1741] = {.lex_state = 2, .external_lex_state = 2}, + [1742] = {.lex_state = 2, .external_lex_state = 2}, + [1743] = {.lex_state = 2, .external_lex_state = 2}, + [1744] = {.lex_state = 2, .external_lex_state = 2}, + [1745] = {.lex_state = 2, .external_lex_state = 2}, + [1746] = {.lex_state = 2, .external_lex_state = 2}, + [1747] = {.lex_state = 2, .external_lex_state = 2}, + [1748] = {.lex_state = 2, .external_lex_state = 2}, + [1749] = {.lex_state = 2, .external_lex_state = 2}, + [1750] = {.lex_state = 2, .external_lex_state = 2}, + [1751] = {.lex_state = 2, .external_lex_state = 2}, + [1752] = {.lex_state = 2, .external_lex_state = 2}, + [1753] = {.lex_state = 2, .external_lex_state = 2}, + [1754] = {.lex_state = 2, .external_lex_state = 2}, + [1755] = {.lex_state = 2, .external_lex_state = 2}, + [1756] = {.lex_state = 2, .external_lex_state = 2}, + [1757] = {.lex_state = 2, .external_lex_state = 2}, + [1758] = {.lex_state = 2, .external_lex_state = 2}, + [1759] = {.lex_state = 2, .external_lex_state = 2}, + [1760] = {.lex_state = 2, .external_lex_state = 2}, + [1761] = {.lex_state = 2, .external_lex_state = 2}, + [1762] = {.lex_state = 2, .external_lex_state = 2}, + [1763] = {.lex_state = 2, .external_lex_state = 2}, + [1764] = {.lex_state = 2, .external_lex_state = 2}, + [1765] = {.lex_state = 2, .external_lex_state = 2}, + [1766] = {.lex_state = 2, .external_lex_state = 2}, + [1767] = {.lex_state = 2, .external_lex_state = 2}, + [1768] = {.lex_state = 2, .external_lex_state = 2}, + [1769] = {.lex_state = 2, .external_lex_state = 2}, + [1770] = {.lex_state = 2, .external_lex_state = 2}, + [1771] = {.lex_state = 2, .external_lex_state = 2}, + [1772] = {.lex_state = 2, .external_lex_state = 2}, + [1773] = {.lex_state = 2, .external_lex_state = 2}, + [1774] = {.lex_state = 2, .external_lex_state = 2}, + [1775] = {.lex_state = 2, .external_lex_state = 2}, + [1776] = {.lex_state = 2, .external_lex_state = 2}, + [1777] = {.lex_state = 2, .external_lex_state = 2}, + [1778] = {.lex_state = 2, .external_lex_state = 2}, + [1779] = {.lex_state = 2, .external_lex_state = 2}, + [1780] = {.lex_state = 2, .external_lex_state = 2}, + [1781] = {.lex_state = 2, .external_lex_state = 2}, + [1782] = {.lex_state = 2, .external_lex_state = 2}, + [1783] = {.lex_state = 2, .external_lex_state = 2}, + [1784] = {.lex_state = 2, .external_lex_state = 2}, + [1785] = {.lex_state = 2, .external_lex_state = 2}, + [1786] = {.lex_state = 2, .external_lex_state = 2}, + [1787] = {.lex_state = 2, .external_lex_state = 2}, + [1788] = {.lex_state = 2, .external_lex_state = 2}, + [1789] = {.lex_state = 2, .external_lex_state = 2}, + [1790] = {.lex_state = 2, .external_lex_state = 2}, + [1791] = {.lex_state = 2, .external_lex_state = 2}, + [1792] = {.lex_state = 2, .external_lex_state = 2}, + [1793] = {.lex_state = 2, .external_lex_state = 2}, + [1794] = {.lex_state = 2, .external_lex_state = 2}, + [1795] = {.lex_state = 2, .external_lex_state = 2}, + [1796] = {.lex_state = 2, .external_lex_state = 2}, + [1797] = {.lex_state = 2, .external_lex_state = 2}, + [1798] = {.lex_state = 2, .external_lex_state = 2}, + [1799] = {.lex_state = 2, .external_lex_state = 2}, + [1800] = {.lex_state = 2, .external_lex_state = 2}, + [1801] = {.lex_state = 2, .external_lex_state = 2}, + [1802] = {.lex_state = 0, .external_lex_state = 2}, + [1803] = {.lex_state = 2, .external_lex_state = 2}, + [1804] = {.lex_state = 2, .external_lex_state = 2}, + [1805] = {.lex_state = 2, .external_lex_state = 2}, + [1806] = {.lex_state = 2, .external_lex_state = 2}, + [1807] = {.lex_state = 2, .external_lex_state = 2}, + [1808] = {.lex_state = 2, .external_lex_state = 2}, + [1809] = {.lex_state = 2, .external_lex_state = 2}, + [1810] = {.lex_state = 2, .external_lex_state = 2}, + [1811] = {.lex_state = 2, .external_lex_state = 2}, + [1812] = {.lex_state = 2, .external_lex_state = 2}, + [1813] = {.lex_state = 2, .external_lex_state = 2}, + [1814] = {.lex_state = 2, .external_lex_state = 2}, + [1815] = {.lex_state = 2, .external_lex_state = 2}, + [1816] = {.lex_state = 2, .external_lex_state = 2}, + [1817] = {.lex_state = 2, .external_lex_state = 2}, + [1818] = {.lex_state = 2, .external_lex_state = 2}, + [1819] = {.lex_state = 2, .external_lex_state = 2}, + [1820] = {.lex_state = 2, .external_lex_state = 2}, + [1821] = {.lex_state = 2, .external_lex_state = 2}, + [1822] = {.lex_state = 2, .external_lex_state = 2}, + [1823] = {.lex_state = 2, .external_lex_state = 2}, + [1824] = {.lex_state = 2, .external_lex_state = 2}, + [1825] = {.lex_state = 2, .external_lex_state = 2}, + [1826] = {.lex_state = 2, .external_lex_state = 2}, + [1827] = {.lex_state = 0, .external_lex_state = 2}, + [1828] = {.lex_state = 2, .external_lex_state = 2}, + [1829] = {.lex_state = 2, .external_lex_state = 2}, + [1830] = {.lex_state = 2, .external_lex_state = 2}, + [1831] = {.lex_state = 2, .external_lex_state = 2}, + [1832] = {.lex_state = 2, .external_lex_state = 2}, + [1833] = {.lex_state = 2, .external_lex_state = 2}, + [1834] = {.lex_state = 2, .external_lex_state = 2}, + [1835] = {.lex_state = 2, .external_lex_state = 2}, + [1836] = {.lex_state = 2, .external_lex_state = 2}, + [1837] = {.lex_state = 2, .external_lex_state = 2}, + [1838] = {.lex_state = 2, .external_lex_state = 2}, + [1839] = {.lex_state = 2, .external_lex_state = 2}, + [1840] = {.lex_state = 2, .external_lex_state = 2}, + [1841] = {.lex_state = 2, .external_lex_state = 2}, + [1842] = {.lex_state = 2, .external_lex_state = 2}, + [1843] = {.lex_state = 2, .external_lex_state = 2}, + [1844] = {.lex_state = 2, .external_lex_state = 2}, + [1845] = {.lex_state = 2, .external_lex_state = 2}, + [1846] = {.lex_state = 2, .external_lex_state = 2}, + [1847] = {.lex_state = 2, .external_lex_state = 2}, + [1848] = {.lex_state = 2, .external_lex_state = 2}, + [1849] = {.lex_state = 2, .external_lex_state = 2}, + [1850] = {.lex_state = 2, .external_lex_state = 2}, + [1851] = {.lex_state = 2, .external_lex_state = 2}, + [1852] = {.lex_state = 2, .external_lex_state = 2}, + [1853] = {.lex_state = 2, .external_lex_state = 2}, + [1854] = {.lex_state = 2, .external_lex_state = 2}, + [1855] = {.lex_state = 2, .external_lex_state = 2}, + [1856] = {.lex_state = 2, .external_lex_state = 2}, + [1857] = {.lex_state = 2, .external_lex_state = 2}, + [1858] = {.lex_state = 2, .external_lex_state = 2}, + [1859] = {.lex_state = 2, .external_lex_state = 2}, + [1860] = {.lex_state = 2, .external_lex_state = 2}, + [1861] = {.lex_state = 2, .external_lex_state = 2}, + [1862] = {.lex_state = 2, .external_lex_state = 2}, + [1863] = {.lex_state = 2, .external_lex_state = 2}, + [1864] = {.lex_state = 0, .external_lex_state = 2}, + [1865] = {.lex_state = 2, .external_lex_state = 2}, + [1866] = {.lex_state = 0, .external_lex_state = 2}, + [1867] = {.lex_state = 2, .external_lex_state = 2}, + [1868] = {.lex_state = 2, .external_lex_state = 2}, + [1869] = {.lex_state = 2, .external_lex_state = 2}, + [1870] = {.lex_state = 2, .external_lex_state = 2}, + [1871] = {.lex_state = 0, .external_lex_state = 2}, + [1872] = {.lex_state = 0, .external_lex_state = 2}, + [1873] = {.lex_state = 2, .external_lex_state = 2}, + [1874] = {.lex_state = 8, .external_lex_state = 2}, + [1875] = {.lex_state = 2, .external_lex_state = 2}, + [1876] = {.lex_state = 0, .external_lex_state = 2}, + [1877] = {.lex_state = 2, .external_lex_state = 2}, + [1878] = {.lex_state = 2, .external_lex_state = 2}, + [1879] = {.lex_state = 0, .external_lex_state = 2}, + [1880] = {.lex_state = 0, .external_lex_state = 2}, + [1881] = {.lex_state = 2, .external_lex_state = 2}, + [1882] = {.lex_state = 2, .external_lex_state = 2}, + [1883] = {.lex_state = 2, .external_lex_state = 2}, + [1884] = {.lex_state = 2, .external_lex_state = 2}, + [1885] = {.lex_state = 8, .external_lex_state = 2}, + [1886] = {.lex_state = 2, .external_lex_state = 2}, + [1887] = {.lex_state = 2, .external_lex_state = 2}, + [1888] = {.lex_state = 2, .external_lex_state = 2}, + [1889] = {.lex_state = 2, .external_lex_state = 2}, + [1890] = {.lex_state = 2, .external_lex_state = 2}, + [1891] = {.lex_state = 2, .external_lex_state = 2}, + [1892] = {.lex_state = 2, .external_lex_state = 2}, + [1893] = {.lex_state = 2, .external_lex_state = 2}, + [1894] = {.lex_state = 0, .external_lex_state = 2}, + [1895] = {.lex_state = 2, .external_lex_state = 2}, + [1896] = {.lex_state = 2, .external_lex_state = 2}, + [1897] = {.lex_state = 2, .external_lex_state = 2}, + [1898] = {.lex_state = 2, .external_lex_state = 2}, + [1899] = {.lex_state = 2, .external_lex_state = 2}, + [1900] = {.lex_state = 2, .external_lex_state = 2}, + [1901] = {.lex_state = 0, .external_lex_state = 2}, + [1902] = {.lex_state = 0, .external_lex_state = 2}, + [1903] = {.lex_state = 2, .external_lex_state = 2}, + [1904] = {.lex_state = 2, .external_lex_state = 2}, + [1905] = {.lex_state = 2, .external_lex_state = 2}, + [1906] = {.lex_state = 2, .external_lex_state = 2}, + [1907] = {.lex_state = 2, .external_lex_state = 2}, + [1908] = {.lex_state = 2, .external_lex_state = 2}, + [1909] = {.lex_state = 2, .external_lex_state = 2}, + [1910] = {.lex_state = 2, .external_lex_state = 2}, + [1911] = {.lex_state = 2, .external_lex_state = 2}, + [1912] = {.lex_state = 2, .external_lex_state = 2}, + [1913] = {.lex_state = 2, .external_lex_state = 2}, + [1914] = {.lex_state = 2, .external_lex_state = 2}, + [1915] = {.lex_state = 2, .external_lex_state = 2}, + [1916] = {.lex_state = 2, .external_lex_state = 2}, + [1917] = {.lex_state = 2, .external_lex_state = 2}, + [1918] = {.lex_state = 2, .external_lex_state = 2}, + [1919] = {.lex_state = 2, .external_lex_state = 2}, + [1920] = {.lex_state = 0, .external_lex_state = 2}, + [1921] = {.lex_state = 0, .external_lex_state = 2}, + [1922] = {.lex_state = 0, .external_lex_state = 2}, + [1923] = {.lex_state = 2, .external_lex_state = 2}, + [1924] = {.lex_state = 2, .external_lex_state = 2}, + [1925] = {.lex_state = 0, .external_lex_state = 2}, + [1926] = {.lex_state = 2, .external_lex_state = 2}, + [1927] = {.lex_state = 2, .external_lex_state = 2}, + [1928] = {.lex_state = 2, .external_lex_state = 2}, + [1929] = {.lex_state = 2, .external_lex_state = 2}, + [1930] = {.lex_state = 0, .external_lex_state = 2}, + [1931] = {.lex_state = 2, .external_lex_state = 2}, + [1932] = {.lex_state = 2, .external_lex_state = 2}, + [1933] = {.lex_state = 2, .external_lex_state = 2}, + [1934] = {.lex_state = 0, .external_lex_state = 2}, + [1935] = {.lex_state = 2, .external_lex_state = 2}, + [1936] = {.lex_state = 2, .external_lex_state = 2}, + [1937] = {.lex_state = 2, .external_lex_state = 2}, + [1938] = {.lex_state = 2, .external_lex_state = 2}, + [1939] = {.lex_state = 8, .external_lex_state = 2}, + [1940] = {.lex_state = 2, .external_lex_state = 2}, + [1941] = {.lex_state = 2, .external_lex_state = 2}, + [1942] = {.lex_state = 2, .external_lex_state = 2}, + [1943] = {.lex_state = 2, .external_lex_state = 2}, + [1944] = {.lex_state = 2, .external_lex_state = 2}, + [1945] = {.lex_state = 1, .external_lex_state = 2}, + [1946] = {.lex_state = 37, .external_lex_state = 2}, + [1947] = {.lex_state = 2, .external_lex_state = 2}, + [1948] = {.lex_state = 2, .external_lex_state = 2}, + [1949] = {.lex_state = 2, .external_lex_state = 2}, + [1950] = {.lex_state = 2, .external_lex_state = 2}, + [1951] = {.lex_state = 2, .external_lex_state = 2}, + [1952] = {.lex_state = 2, .external_lex_state = 2}, + [1953] = {.lex_state = 2, .external_lex_state = 2}, + [1954] = {.lex_state = 2, .external_lex_state = 2}, + [1955] = {.lex_state = 2, .external_lex_state = 2}, + [1956] = {.lex_state = 2, .external_lex_state = 2}, + [1957] = {.lex_state = 2, .external_lex_state = 2}, + [1958] = {.lex_state = 2, .external_lex_state = 2}, + [1959] = {.lex_state = 2, .external_lex_state = 2}, + [1960] = {.lex_state = 2, .external_lex_state = 2}, + [1961] = {.lex_state = 2, .external_lex_state = 2}, + [1962] = {.lex_state = 37, .external_lex_state = 2}, + [1963] = {.lex_state = 0, .external_lex_state = 2}, + [1964] = {.lex_state = 0, .external_lex_state = 2}, + [1965] = {.lex_state = 2, .external_lex_state = 2}, + [1966] = {.lex_state = 0, .external_lex_state = 2}, + [1967] = {.lex_state = 0, .external_lex_state = 2}, + [1968] = {.lex_state = 2, .external_lex_state = 2}, + [1969] = {.lex_state = 0, .external_lex_state = 2}, + [1970] = {.lex_state = 2, .external_lex_state = 2}, + [1971] = {.lex_state = 2, .external_lex_state = 2}, + [1972] = {.lex_state = 2, .external_lex_state = 2}, + [1973] = {.lex_state = 2, .external_lex_state = 2}, + [1974] = {.lex_state = 0, .external_lex_state = 2}, + [1975] = {.lex_state = 2, .external_lex_state = 2}, + [1976] = {.lex_state = 2, .external_lex_state = 2}, + [1977] = {.lex_state = 2, .external_lex_state = 2}, + [1978] = {.lex_state = 37, .external_lex_state = 2}, + [1979] = {.lex_state = 0, .external_lex_state = 2}, + [1980] = {.lex_state = 2, .external_lex_state = 2}, + [1981] = {.lex_state = 2, .external_lex_state = 2}, + [1982] = {.lex_state = 0, .external_lex_state = 2}, + [1983] = {.lex_state = 0, .external_lex_state = 2}, + [1984] = {.lex_state = 0, .external_lex_state = 2}, + [1985] = {.lex_state = 2, .external_lex_state = 2}, + [1986] = {.lex_state = 0, .external_lex_state = 2}, + [1987] = {.lex_state = 0, .external_lex_state = 2}, + [1988] = {.lex_state = 2, .external_lex_state = 2}, + [1989] = {.lex_state = 0, .external_lex_state = 2}, + [1990] = {.lex_state = 0, .external_lex_state = 2}, + [1991] = {.lex_state = 0, .external_lex_state = 2}, + [1992] = {.lex_state = 0, .external_lex_state = 2}, + [1993] = {.lex_state = 2, .external_lex_state = 2}, + [1994] = {.lex_state = 0, .external_lex_state = 2}, + [1995] = {.lex_state = 2, .external_lex_state = 2}, + [1996] = {.lex_state = 2, .external_lex_state = 2}, + [1997] = {.lex_state = 2, .external_lex_state = 2}, + [1998] = {.lex_state = 2, .external_lex_state = 2}, + [1999] = {.lex_state = 2, .external_lex_state = 2}, + [2000] = {.lex_state = 2, .external_lex_state = 2}, + [2001] = {.lex_state = 2, .external_lex_state = 2}, + [2002] = {.lex_state = 0, .external_lex_state = 2}, + [2003] = {.lex_state = 2, .external_lex_state = 2}, + [2004] = {.lex_state = 2, .external_lex_state = 2}, + [2005] = {.lex_state = 2, .external_lex_state = 2}, + [2006] = {.lex_state = 2, .external_lex_state = 2}, + [2007] = {.lex_state = 2, .external_lex_state = 2}, + [2008] = {.lex_state = 2, .external_lex_state = 2}, + [2009] = {.lex_state = 2, .external_lex_state = 2}, + [2010] = {.lex_state = 2, .external_lex_state = 2}, + [2011] = {.lex_state = 37, .external_lex_state = 2}, + [2012] = {.lex_state = 2, .external_lex_state = 2}, + [2013] = {.lex_state = 2, .external_lex_state = 2}, + [2014] = {.lex_state = 2, .external_lex_state = 2}, + [2015] = {.lex_state = 2, .external_lex_state = 2}, + [2016] = {.lex_state = 2, .external_lex_state = 2}, + [2017] = {.lex_state = 37, .external_lex_state = 2}, + [2018] = {.lex_state = 2, .external_lex_state = 2}, + [2019] = {.lex_state = 37, .external_lex_state = 2}, + [2020] = {.lex_state = 2, .external_lex_state = 2}, + [2021] = {.lex_state = 2, .external_lex_state = 2}, + [2022] = {.lex_state = 2, .external_lex_state = 2}, + [2023] = {.lex_state = 0, .external_lex_state = 2}, + [2024] = {.lex_state = 1, .external_lex_state = 2}, + [2025] = {.lex_state = 2, .external_lex_state = 2}, + [2026] = {.lex_state = 0, .external_lex_state = 2}, + [2027] = {.lex_state = 2, .external_lex_state = 2}, + [2028] = {.lex_state = 2, .external_lex_state = 2}, + [2029] = {.lex_state = 2, .external_lex_state = 2}, + [2030] = {.lex_state = 2, .external_lex_state = 2}, + [2031] = {.lex_state = 2, .external_lex_state = 2}, + [2032] = {.lex_state = 2, .external_lex_state = 2}, + [2033] = {.lex_state = 2, .external_lex_state = 2}, + [2034] = {.lex_state = 2, .external_lex_state = 2}, + [2035] = {.lex_state = 2, .external_lex_state = 2}, + [2036] = {.lex_state = 2, .external_lex_state = 2}, + [2037] = {.lex_state = 2, .external_lex_state = 2}, + [2038] = {.lex_state = 2, .external_lex_state = 2}, + [2039] = {.lex_state = 2, .external_lex_state = 2}, + [2040] = {.lex_state = 2, .external_lex_state = 2}, + [2041] = {.lex_state = 37, .external_lex_state = 2}, + [2042] = {.lex_state = 2, .external_lex_state = 2}, + [2043] = {.lex_state = 2, .external_lex_state = 2}, + [2044] = {.lex_state = 0, .external_lex_state = 2}, + [2045] = {.lex_state = 2, .external_lex_state = 2}, + [2046] = {.lex_state = 2, .external_lex_state = 2}, + [2047] = {.lex_state = 2, .external_lex_state = 2}, + [2048] = {.lex_state = 0, .external_lex_state = 2}, + [2049] = {.lex_state = 2, .external_lex_state = 2}, + [2050] = {.lex_state = 2, .external_lex_state = 2}, + [2051] = {.lex_state = 2, .external_lex_state = 2}, + [2052] = {.lex_state = 2, .external_lex_state = 2}, + [2053] = {.lex_state = 2, .external_lex_state = 2}, + [2054] = {.lex_state = 0, .external_lex_state = 2}, + [2055] = {.lex_state = 2, .external_lex_state = 2}, + [2056] = {.lex_state = 2, .external_lex_state = 2}, + [2057] = {.lex_state = 2, .external_lex_state = 2}, + [2058] = {.lex_state = 2, .external_lex_state = 2}, + [2059] = {.lex_state = 2, .external_lex_state = 2}, + [2060] = {.lex_state = 2, .external_lex_state = 2}, + [2061] = {.lex_state = 2, .external_lex_state = 2}, + [2062] = {.lex_state = 2, .external_lex_state = 2}, + [2063] = {.lex_state = 0, .external_lex_state = 2}, + [2064] = {.lex_state = 2, .external_lex_state = 2}, + [2065] = {.lex_state = 0, .external_lex_state = 2}, + [2066] = {.lex_state = 2, .external_lex_state = 2}, + [2067] = {.lex_state = 2, .external_lex_state = 2}, + [2068] = {.lex_state = 8, .external_lex_state = 2}, + [2069] = {.lex_state = 0, .external_lex_state = 2}, + [2070] = {.lex_state = 0, .external_lex_state = 2}, + [2071] = {.lex_state = 2, .external_lex_state = 2}, + [2072] = {.lex_state = 0, .external_lex_state = 2}, + [2073] = {.lex_state = 2, .external_lex_state = 2}, + [2074] = {.lex_state = 2, .external_lex_state = 2}, + [2075] = {.lex_state = 0, .external_lex_state = 2}, + [2076] = {.lex_state = 0, .external_lex_state = 2}, + [2077] = {.lex_state = 2, .external_lex_state = 2}, + [2078] = {.lex_state = 2, .external_lex_state = 2}, + [2079] = {.lex_state = 2, .external_lex_state = 2}, + [2080] = {.lex_state = 0, .external_lex_state = 2}, + [2081] = {.lex_state = 2, .external_lex_state = 2}, + [2082] = {.lex_state = 0, .external_lex_state = 2}, + [2083] = {.lex_state = 0, .external_lex_state = 2}, + [2084] = {.lex_state = 2, .external_lex_state = 2}, + [2085] = {.lex_state = 0, .external_lex_state = 2}, + [2086] = {.lex_state = 0, .external_lex_state = 2}, + [2087] = {.lex_state = 0, .external_lex_state = 2}, + [2088] = {.lex_state = 0, .external_lex_state = 2}, + [2089] = {.lex_state = 0, .external_lex_state = 2}, + [2090] = {.lex_state = 0, .external_lex_state = 2}, + [2091] = {.lex_state = 2, .external_lex_state = 2}, + [2092] = {.lex_state = 0, .external_lex_state = 2}, + [2093] = {.lex_state = 2, .external_lex_state = 2}, + [2094] = {.lex_state = 0, .external_lex_state = 2}, + [2095] = {.lex_state = 0, .external_lex_state = 2}, + [2096] = {.lex_state = 0, .external_lex_state = 2}, + [2097] = {.lex_state = 0, .external_lex_state = 2}, + [2098] = {.lex_state = 0, .external_lex_state = 2}, + [2099] = {.lex_state = 0, .external_lex_state = 2}, + [2100] = {.lex_state = 2, .external_lex_state = 2}, + [2101] = {.lex_state = 0, .external_lex_state = 2}, + [2102] = {.lex_state = 0, .external_lex_state = 2}, + [2103] = {.lex_state = 2, .external_lex_state = 2}, + [2104] = {.lex_state = 0, .external_lex_state = 2}, + [2105] = {.lex_state = 0, .external_lex_state = 2}, + [2106] = {.lex_state = 2, .external_lex_state = 2}, + [2107] = {.lex_state = 0, .external_lex_state = 2}, + [2108] = {.lex_state = 0, .external_lex_state = 2}, + [2109] = {.lex_state = 2, .external_lex_state = 2}, + [2110] = {.lex_state = 0, .external_lex_state = 2}, + [2111] = {.lex_state = 0, .external_lex_state = 2}, + [2112] = {.lex_state = 2, .external_lex_state = 2}, + [2113] = {.lex_state = 0, .external_lex_state = 2}, + [2114] = {.lex_state = 0, .external_lex_state = 2}, + [2115] = {.lex_state = 0, .external_lex_state = 2}, + [2116] = {.lex_state = 2, .external_lex_state = 2}, + [2117] = {.lex_state = 0, .external_lex_state = 2}, + [2118] = {.lex_state = 0, .external_lex_state = 2}, + [2119] = {.lex_state = 0, .external_lex_state = 2}, + [2120] = {.lex_state = 0, .external_lex_state = 2}, + [2121] = {.lex_state = 0, .external_lex_state = 2}, + [2122] = {.lex_state = 2, .external_lex_state = 2}, + [2123] = {.lex_state = 0, .external_lex_state = 2}, + [2124] = {.lex_state = 2, .external_lex_state = 2}, + [2125] = {.lex_state = 0, .external_lex_state = 2}, + [2126] = {.lex_state = 0, .external_lex_state = 2}, + [2127] = {.lex_state = 0, .external_lex_state = 2}, + [2128] = {.lex_state = 0, .external_lex_state = 2}, + [2129] = {.lex_state = 0, .external_lex_state = 2}, + [2130] = {.lex_state = 2, .external_lex_state = 2}, + [2131] = {.lex_state = 0, .external_lex_state = 2}, + [2132] = {.lex_state = 2, .external_lex_state = 2}, + [2133] = {.lex_state = 0, .external_lex_state = 2}, + [2134] = {.lex_state = 0, .external_lex_state = 2}, + [2135] = {.lex_state = 0, .external_lex_state = 2}, + [2136] = {.lex_state = 0, .external_lex_state = 2}, + [2137] = {.lex_state = 2, .external_lex_state = 2}, + [2138] = {.lex_state = 0, .external_lex_state = 2}, + [2139] = {.lex_state = 2, .external_lex_state = 2}, + [2140] = {.lex_state = 0, .external_lex_state = 2}, + [2141] = {.lex_state = 0, .external_lex_state = 2}, + [2142] = {.lex_state = 0, .external_lex_state = 2}, + [2143] = {.lex_state = 0, .external_lex_state = 2}, + [2144] = {.lex_state = 0, .external_lex_state = 2}, + [2145] = {.lex_state = 2, .external_lex_state = 2}, + [2146] = {.lex_state = 0, .external_lex_state = 2}, + [2147] = {.lex_state = 0, .external_lex_state = 2}, + [2148] = {.lex_state = 0, .external_lex_state = 2}, + [2149] = {.lex_state = 0, .external_lex_state = 2}, + [2150] = {.lex_state = 2, .external_lex_state = 2}, + [2151] = {.lex_state = 0, .external_lex_state = 2}, + [2152] = {.lex_state = 0, .external_lex_state = 2}, + [2153] = {.lex_state = 0, .external_lex_state = 2}, + [2154] = {.lex_state = 0, .external_lex_state = 2}, + [2155] = {.lex_state = 2, .external_lex_state = 2}, + [2156] = {.lex_state = 2, .external_lex_state = 2}, + [2157] = {.lex_state = 0, .external_lex_state = 2}, + [2158] = {.lex_state = 0, .external_lex_state = 2}, + [2159] = {.lex_state = 2, .external_lex_state = 2}, + [2160] = {.lex_state = 0, .external_lex_state = 2}, + [2161] = {.lex_state = 0, .external_lex_state = 2}, + [2162] = {.lex_state = 0, .external_lex_state = 2}, + [2163] = {.lex_state = 0, .external_lex_state = 2}, + [2164] = {.lex_state = 0, .external_lex_state = 2}, + [2165] = {.lex_state = 2, .external_lex_state = 2}, + [2166] = {.lex_state = 0, .external_lex_state = 2}, + [2167] = {.lex_state = 0, .external_lex_state = 2}, + [2168] = {.lex_state = 0, .external_lex_state = 2}, + [2169] = {.lex_state = 2, .external_lex_state = 2}, + [2170] = {.lex_state = 0, .external_lex_state = 2}, + [2171] = {.lex_state = 2, .external_lex_state = 2}, + [2172] = {.lex_state = 0, .external_lex_state = 2}, + [2173] = {.lex_state = 0, .external_lex_state = 2}, + [2174] = {.lex_state = 0, .external_lex_state = 2}, + [2175] = {.lex_state = 0, .external_lex_state = 2}, + [2176] = {.lex_state = 2, .external_lex_state = 2}, + [2177] = {.lex_state = 0, .external_lex_state = 2}, + [2178] = {.lex_state = 0, .external_lex_state = 2}, + [2179] = {.lex_state = 0, .external_lex_state = 2}, + [2180] = {.lex_state = 0, .external_lex_state = 2}, + [2181] = {.lex_state = 0, .external_lex_state = 2}, + [2182] = {.lex_state = 2, .external_lex_state = 2}, + [2183] = {.lex_state = 2, .external_lex_state = 2}, + [2184] = {.lex_state = 0, .external_lex_state = 2}, + [2185] = {.lex_state = 0, .external_lex_state = 2}, + [2186] = {.lex_state = 0, .external_lex_state = 2}, + [2187] = {.lex_state = 0, .external_lex_state = 2}, + [2188] = {.lex_state = 0, .external_lex_state = 2}, + [2189] = {.lex_state = 0, .external_lex_state = 2}, + [2190] = {.lex_state = 0, .external_lex_state = 2}, + [2191] = {.lex_state = 2, .external_lex_state = 2}, + [2192] = {.lex_state = 2, .external_lex_state = 2}, + [2193] = {.lex_state = 2, .external_lex_state = 2}, + [2194] = {.lex_state = 0, .external_lex_state = 2}, + [2195] = {.lex_state = 0, .external_lex_state = 2}, + [2196] = {.lex_state = 0, .external_lex_state = 2}, + [2197] = {.lex_state = 2, .external_lex_state = 2}, + [2198] = {.lex_state = 2, .external_lex_state = 2}, + [2199] = {.lex_state = 2, .external_lex_state = 2}, + [2200] = {.lex_state = 0, .external_lex_state = 2}, + [2201] = {.lex_state = 0, .external_lex_state = 2}, + [2202] = {.lex_state = 2, .external_lex_state = 2}, + [2203] = {.lex_state = 2, .external_lex_state = 2}, + [2204] = {.lex_state = 2, .external_lex_state = 2}, + [2205] = {.lex_state = 0, .external_lex_state = 2}, + [2206] = {.lex_state = 0, .external_lex_state = 2}, + [2207] = {.lex_state = 2, .external_lex_state = 2}, + [2208] = {.lex_state = 0, .external_lex_state = 2}, + [2209] = {.lex_state = 0, .external_lex_state = 2}, + [2210] = {.lex_state = 2, .external_lex_state = 2}, + [2211] = {.lex_state = 2, .external_lex_state = 2}, + [2212] = {.lex_state = 0, .external_lex_state = 2}, + [2213] = {.lex_state = 2, .external_lex_state = 2}, + [2214] = {.lex_state = 2, .external_lex_state = 2}, + [2215] = {.lex_state = 2, .external_lex_state = 2}, + [2216] = {.lex_state = 2, .external_lex_state = 2}, + [2217] = {.lex_state = 0, .external_lex_state = 2}, + [2218] = {.lex_state = 0, .external_lex_state = 2}, + [2219] = {.lex_state = 0, .external_lex_state = 2}, + [2220] = {.lex_state = 2, .external_lex_state = 2}, + [2221] = {.lex_state = 2, .external_lex_state = 2}, + [2222] = {.lex_state = 2, .external_lex_state = 2}, + [2223] = {.lex_state = 2, .external_lex_state = 2}, + [2224] = {.lex_state = 0, .external_lex_state = 2}, + [2225] = {.lex_state = 2, .external_lex_state = 2}, + [2226] = {.lex_state = 0, .external_lex_state = 2}, + [2227] = {.lex_state = 2, .external_lex_state = 2}, + [2228] = {.lex_state = 0, .external_lex_state = 2}, + [2229] = {.lex_state = 2, .external_lex_state = 2}, + [2230] = {.lex_state = 2, .external_lex_state = 2}, + [2231] = {.lex_state = 2, .external_lex_state = 2}, + [2232] = {.lex_state = 0, .external_lex_state = 2}, + [2233] = {.lex_state = 2, .external_lex_state = 2}, + [2234] = {.lex_state = 2, .external_lex_state = 2}, + [2235] = {.lex_state = 0, .external_lex_state = 2}, + [2236] = {.lex_state = 0, .external_lex_state = 2}, + [2237] = {.lex_state = 0, .external_lex_state = 2}, + [2238] = {.lex_state = 2, .external_lex_state = 2}, + [2239] = {.lex_state = 2, .external_lex_state = 2}, + [2240] = {.lex_state = 2, .external_lex_state = 2}, + [2241] = {.lex_state = 0, .external_lex_state = 2}, + [2242] = {.lex_state = 2, .external_lex_state = 2}, + [2243] = {.lex_state = 0, .external_lex_state = 2}, + [2244] = {.lex_state = 0, .external_lex_state = 2}, + [2245] = {.lex_state = 0, .external_lex_state = 2}, + [2246] = {.lex_state = 2, .external_lex_state = 2}, + [2247] = {.lex_state = 2, .external_lex_state = 2}, + [2248] = {.lex_state = 0, .external_lex_state = 2}, + [2249] = {.lex_state = 2, .external_lex_state = 2}, + [2250] = {.lex_state = 2, .external_lex_state = 2}, + [2251] = {.lex_state = 0, .external_lex_state = 2}, + [2252] = {.lex_state = 2, .external_lex_state = 2}, + [2253] = {.lex_state = 2, .external_lex_state = 2}, + [2254] = {.lex_state = 0, .external_lex_state = 2}, + [2255] = {.lex_state = 2, .external_lex_state = 2}, + [2256] = {.lex_state = 2, .external_lex_state = 2}, + [2257] = {.lex_state = 2, .external_lex_state = 2}, + [2258] = {.lex_state = 2, .external_lex_state = 2}, + [2259] = {.lex_state = 0, .external_lex_state = 2}, + [2260] = {.lex_state = 0, .external_lex_state = 2}, + [2261] = {.lex_state = 0, .external_lex_state = 2}, + [2262] = {.lex_state = 0, .external_lex_state = 2}, + [2263] = {.lex_state = 2, .external_lex_state = 2}, + [2264] = {.lex_state = 0, .external_lex_state = 2}, + [2265] = {.lex_state = 0, .external_lex_state = 2}, + [2266] = {.lex_state = 0, .external_lex_state = 2}, + [2267] = {.lex_state = 2, .external_lex_state = 2}, + [2268] = {.lex_state = 0, .external_lex_state = 2}, + [2269] = {.lex_state = 0, .external_lex_state = 2}, + [2270] = {.lex_state = 2, .external_lex_state = 2}, + [2271] = {.lex_state = 0, .external_lex_state = 2}, + [2272] = {.lex_state = 2, .external_lex_state = 2}, + [2273] = {.lex_state = 0, .external_lex_state = 2}, + [2274] = {.lex_state = 0, .external_lex_state = 2}, + [2275] = {.lex_state = 0, .external_lex_state = 2}, + [2276] = {.lex_state = 0, .external_lex_state = 2}, + [2277] = {.lex_state = 0, .external_lex_state = 2}, + [2278] = {.lex_state = 2, .external_lex_state = 2}, + [2279] = {.lex_state = 0, .external_lex_state = 2}, + [2280] = {.lex_state = 0, .external_lex_state = 2}, + [2281] = {.lex_state = 0, .external_lex_state = 2}, + [2282] = {.lex_state = 0, .external_lex_state = 2}, + [2283] = {.lex_state = 0, .external_lex_state = 2}, + [2284] = {.lex_state = 2, .external_lex_state = 2}, + [2285] = {.lex_state = 2, .external_lex_state = 2}, + [2286] = {.lex_state = 0, .external_lex_state = 2}, + [2287] = {.lex_state = 0, .external_lex_state = 2}, + [2288] = {.lex_state = 0, .external_lex_state = 2}, + [2289] = {.lex_state = 0, .external_lex_state = 2}, + [2290] = {.lex_state = 0, .external_lex_state = 2}, + [2291] = {.lex_state = 2, .external_lex_state = 2}, + [2292] = {.lex_state = 2, .external_lex_state = 2}, + [2293] = {.lex_state = 0, .external_lex_state = 2}, + [2294] = {.lex_state = 2, .external_lex_state = 2}, + [2295] = {.lex_state = 2, .external_lex_state = 2}, + [2296] = {.lex_state = 2, .external_lex_state = 2}, + [2297] = {.lex_state = 0, .external_lex_state = 2}, + [2298] = {.lex_state = 0, .external_lex_state = 2}, + [2299] = {.lex_state = 2, .external_lex_state = 2}, + [2300] = {.lex_state = 0, .external_lex_state = 2}, + [2301] = {.lex_state = 2, .external_lex_state = 2}, + [2302] = {.lex_state = 2, .external_lex_state = 2}, + [2303] = {.lex_state = 0, .external_lex_state = 2}, + [2304] = {.lex_state = 2, .external_lex_state = 2}, + [2305] = {.lex_state = 2, .external_lex_state = 2}, + [2306] = {.lex_state = 0, .external_lex_state = 2}, + [2307] = {.lex_state = 0, .external_lex_state = 2}, + [2308] = {.lex_state = 2, .external_lex_state = 2}, + [2309] = {.lex_state = 0, .external_lex_state = 2}, + [2310] = {.lex_state = 2, .external_lex_state = 2}, + [2311] = {.lex_state = 2, .external_lex_state = 2}, + [2312] = {.lex_state = 2, .external_lex_state = 2}, + [2313] = {.lex_state = 0, .external_lex_state = 2}, + [2314] = {.lex_state = 0, .external_lex_state = 2}, + [2315] = {.lex_state = 0, .external_lex_state = 2}, + [2316] = {.lex_state = 0, .external_lex_state = 2}, + [2317] = {.lex_state = 0, .external_lex_state = 2}, + [2318] = {.lex_state = 2, .external_lex_state = 2}, + [2319] = {.lex_state = 0, .external_lex_state = 2}, + [2320] = {.lex_state = 0, .external_lex_state = 2}, + [2321] = {.lex_state = 0, .external_lex_state = 2}, + [2322] = {.lex_state = 0, .external_lex_state = 2}, + [2323] = {.lex_state = 2, .external_lex_state = 2}, + [2324] = {.lex_state = 0, .external_lex_state = 2}, + [2325] = {.lex_state = 2, .external_lex_state = 2}, + [2326] = {.lex_state = 2, .external_lex_state = 2}, + [2327] = {.lex_state = 2, .external_lex_state = 2}, + [2328] = {.lex_state = 0, .external_lex_state = 2}, + [2329] = {.lex_state = 2, .external_lex_state = 2}, + [2330] = {.lex_state = 2, .external_lex_state = 2}, + [2331] = {.lex_state = 2, .external_lex_state = 2}, + [2332] = {.lex_state = 0, .external_lex_state = 2}, + [2333] = {.lex_state = 2, .external_lex_state = 2}, + [2334] = {.lex_state = 2, .external_lex_state = 2}, + [2335] = {.lex_state = 2, .external_lex_state = 2}, + [2336] = {.lex_state = 0, .external_lex_state = 2}, + [2337] = {.lex_state = 2, .external_lex_state = 2}, + [2338] = {.lex_state = 0, .external_lex_state = 2}, + [2339] = {.lex_state = 2, .external_lex_state = 2}, + [2340] = {.lex_state = 0, .external_lex_state = 2}, + [2341] = {.lex_state = 0, .external_lex_state = 2}, + [2342] = {.lex_state = 0, .external_lex_state = 2}, + [2343] = {.lex_state = 2, .external_lex_state = 2}, + [2344] = {.lex_state = 0, .external_lex_state = 2}, + [2345] = {.lex_state = 0, .external_lex_state = 2}, + [2346] = {.lex_state = 0, .external_lex_state = 2}, + [2347] = {.lex_state = 0, .external_lex_state = 2}, + [2348] = {.lex_state = 0, .external_lex_state = 2}, + [2349] = {.lex_state = 0, .external_lex_state = 2}, + [2350] = {.lex_state = 0, .external_lex_state = 2}, + [2351] = {.lex_state = 0, .external_lex_state = 2}, + [2352] = {.lex_state = 0, .external_lex_state = 2}, + [2353] = {.lex_state = 2, .external_lex_state = 2}, + [2354] = {.lex_state = 0, .external_lex_state = 2}, + [2355] = {.lex_state = 0, .external_lex_state = 2}, + [2356] = {.lex_state = 0, .external_lex_state = 2}, + [2357] = {.lex_state = 0, .external_lex_state = 2}, + [2358] = {.lex_state = 0, .external_lex_state = 2}, + [2359] = {.lex_state = 0, .external_lex_state = 2}, + [2360] = {.lex_state = 0, .external_lex_state = 2}, + [2361] = {.lex_state = 0, .external_lex_state = 2}, + [2362] = {.lex_state = 0, .external_lex_state = 2}, + [2363] = {.lex_state = 0, .external_lex_state = 2}, + [2364] = {.lex_state = 0, .external_lex_state = 2}, + [2365] = {.lex_state = 0, .external_lex_state = 2}, + [2366] = {.lex_state = 0, .external_lex_state = 2}, + [2367] = {.lex_state = 0, .external_lex_state = 2}, + [2368] = {.lex_state = 2, .external_lex_state = 2}, + [2369] = {.lex_state = 0, .external_lex_state = 2}, + [2370] = {.lex_state = 0, .external_lex_state = 2}, + [2371] = {.lex_state = 0, .external_lex_state = 2}, + [2372] = {.lex_state = 2, .external_lex_state = 2}, + [2373] = {.lex_state = 2, .external_lex_state = 2}, + [2374] = {.lex_state = 0, .external_lex_state = 2}, + [2375] = {.lex_state = 2, .external_lex_state = 2}, + [2376] = {.lex_state = 2, .external_lex_state = 2}, + [2377] = {.lex_state = 2, .external_lex_state = 2}, + [2378] = {.lex_state = 0, .external_lex_state = 2}, + [2379] = {.lex_state = 0, .external_lex_state = 2}, + [2380] = {.lex_state = 0, .external_lex_state = 2}, + [2381] = {.lex_state = 0, .external_lex_state = 2}, + [2382] = {.lex_state = 2, .external_lex_state = 2}, + [2383] = {.lex_state = 0, .external_lex_state = 2}, + [2384] = {.lex_state = 0, .external_lex_state = 2}, + [2385] = {.lex_state = 0, .external_lex_state = 2}, + [2386] = {.lex_state = 0, .external_lex_state = 2}, + [2387] = {.lex_state = 0, .external_lex_state = 2}, + [2388] = {.lex_state = 0, .external_lex_state = 2}, + [2389] = {.lex_state = 0, .external_lex_state = 2}, + [2390] = {.lex_state = 0, .external_lex_state = 2}, + [2391] = {.lex_state = 2, .external_lex_state = 2}, + [2392] = {.lex_state = 0, .external_lex_state = 2}, + [2393] = {.lex_state = 2, .external_lex_state = 2}, + [2394] = {.lex_state = 0, .external_lex_state = 2}, + [2395] = {.lex_state = 0, .external_lex_state = 2}, + [2396] = {.lex_state = 0, .external_lex_state = 2}, + [2397] = {.lex_state = 2, .external_lex_state = 2}, + [2398] = {.lex_state = 0, .external_lex_state = 2}, + [2399] = {.lex_state = 0, .external_lex_state = 2}, + [2400] = {.lex_state = 2, .external_lex_state = 2}, + [2401] = {.lex_state = 0, .external_lex_state = 2}, + [2402] = {.lex_state = 0, .external_lex_state = 2}, + [2403] = {.lex_state = 0, .external_lex_state = 2}, + [2404] = {.lex_state = 0, .external_lex_state = 2}, + [2405] = {.lex_state = 2, .external_lex_state = 2}, + [2406] = {.lex_state = 2, .external_lex_state = 2}, + [2407] = {.lex_state = 2, .external_lex_state = 2}, + [2408] = {.lex_state = 0, .external_lex_state = 2}, + [2409] = {.lex_state = 0, .external_lex_state = 2}, + [2410] = {.lex_state = 0, .external_lex_state = 2}, + [2411] = {.lex_state = 0, .external_lex_state = 2}, + [2412] = {.lex_state = 0, .external_lex_state = 2}, + [2413] = {.lex_state = 0, .external_lex_state = 2}, + [2414] = {.lex_state = 0, .external_lex_state = 2}, + [2415] = {.lex_state = 2, .external_lex_state = 2}, + [2416] = {.lex_state = 0, .external_lex_state = 2}, + [2417] = {.lex_state = 0, .external_lex_state = 2}, + [2418] = {.lex_state = 0, .external_lex_state = 2}, + [2419] = {.lex_state = 0, .external_lex_state = 2}, + [2420] = {.lex_state = 2, .external_lex_state = 2}, + [2421] = {.lex_state = 2, .external_lex_state = 2}, + [2422] = {.lex_state = 2, .external_lex_state = 2}, + [2423] = {.lex_state = 2, .external_lex_state = 2}, + [2424] = {.lex_state = 0, .external_lex_state = 2}, + [2425] = {.lex_state = 0, .external_lex_state = 2}, + [2426] = {.lex_state = 0, .external_lex_state = 2}, + [2427] = {.lex_state = 2, .external_lex_state = 2}, + [2428] = {.lex_state = 0, .external_lex_state = 2}, + [2429] = {.lex_state = 0, .external_lex_state = 2}, + [2430] = {.lex_state = 2, .external_lex_state = 2}, + [2431] = {.lex_state = 2, .external_lex_state = 2}, + [2432] = {.lex_state = 0, .external_lex_state = 2}, + [2433] = {.lex_state = 0, .external_lex_state = 2}, + [2434] = {.lex_state = 0, .external_lex_state = 2}, + [2435] = {.lex_state = 0, .external_lex_state = 2}, + [2436] = {.lex_state = 0, .external_lex_state = 2}, + [2437] = {.lex_state = 0, .external_lex_state = 2}, + [2438] = {.lex_state = 0, .external_lex_state = 2}, + [2439] = {.lex_state = 0, .external_lex_state = 2}, + [2440] = {.lex_state = 0, .external_lex_state = 2}, + [2441] = {.lex_state = 0, .external_lex_state = 2}, + [2442] = {.lex_state = 0, .external_lex_state = 2}, + [2443] = {.lex_state = 0, .external_lex_state = 2}, + [2444] = {.lex_state = 0, .external_lex_state = 2}, + [2445] = {.lex_state = 0, .external_lex_state = 2}, + [2446] = {.lex_state = 2, .external_lex_state = 2}, + [2447] = {.lex_state = 0, .external_lex_state = 2}, + [2448] = {.lex_state = 0, .external_lex_state = 2}, + [2449] = {.lex_state = 0, .external_lex_state = 2}, + [2450] = {.lex_state = 0, .external_lex_state = 2}, + [2451] = {.lex_state = 0, .external_lex_state = 2}, + [2452] = {.lex_state = 0, .external_lex_state = 2}, + [2453] = {.lex_state = 0, .external_lex_state = 2}, + [2454] = {.lex_state = 0, .external_lex_state = 2}, + [2455] = {.lex_state = 0, .external_lex_state = 2}, + [2456] = {.lex_state = 0, .external_lex_state = 2}, + [2457] = {.lex_state = 0, .external_lex_state = 2}, + [2458] = {.lex_state = 0, .external_lex_state = 2}, + [2459] = {.lex_state = 0, .external_lex_state = 2}, + [2460] = {.lex_state = 0, .external_lex_state = 2}, + [2461] = {.lex_state = 0, .external_lex_state = 2}, + [2462] = {.lex_state = 0, .external_lex_state = 2}, + [2463] = {.lex_state = 0, .external_lex_state = 2}, + [2464] = {.lex_state = 2, .external_lex_state = 2}, + [2465] = {.lex_state = 0, .external_lex_state = 2}, + [2466] = {.lex_state = 0, .external_lex_state = 2}, + [2467] = {.lex_state = 0, .external_lex_state = 2}, + [2468] = {.lex_state = 0, .external_lex_state = 2}, + [2469] = {.lex_state = 0, .external_lex_state = 2}, + [2470] = {.lex_state = 0, .external_lex_state = 2}, + [2471] = {.lex_state = 0, .external_lex_state = 2}, + [2472] = {.lex_state = 0, .external_lex_state = 2}, + [2473] = {.lex_state = 0, .external_lex_state = 2}, + [2474] = {.lex_state = 0, .external_lex_state = 2}, + [2475] = {.lex_state = 0, .external_lex_state = 2}, + [2476] = {.lex_state = 0, .external_lex_state = 2}, + [2477] = {.lex_state = 0, .external_lex_state = 2}, + [2478] = {.lex_state = 0, .external_lex_state = 2}, + [2479] = {.lex_state = 0, .external_lex_state = 2}, + [2480] = {.lex_state = 0, .external_lex_state = 2}, + [2481] = {.lex_state = 0, .external_lex_state = 2}, + [2482] = {.lex_state = 0, .external_lex_state = 2}, + [2483] = {.lex_state = 0, .external_lex_state = 2}, + [2484] = {.lex_state = 0, .external_lex_state = 2}, + [2485] = {.lex_state = 0, .external_lex_state = 2}, + [2486] = {.lex_state = 0, .external_lex_state = 2}, + [2487] = {.lex_state = 0, .external_lex_state = 2}, + [2488] = {.lex_state = 0, .external_lex_state = 2}, + [2489] = {.lex_state = 0, .external_lex_state = 2}, + [2490] = {.lex_state = 2, .external_lex_state = 2}, + [2491] = {.lex_state = 0, .external_lex_state = 2}, + [2492] = {.lex_state = 0, .external_lex_state = 2}, + [2493] = {.lex_state = 0, .external_lex_state = 2}, + [2494] = {.lex_state = 0, .external_lex_state = 2}, + [2495] = {.lex_state = 0, .external_lex_state = 2}, + [2496] = {.lex_state = 0, .external_lex_state = 2}, + [2497] = {.lex_state = 0, .external_lex_state = 2}, + [2498] = {.lex_state = 0, .external_lex_state = 2}, + [2499] = {.lex_state = 0, .external_lex_state = 2}, + [2500] = {.lex_state = 0, .external_lex_state = 2}, + [2501] = {.lex_state = 0, .external_lex_state = 2}, + [2502] = {.lex_state = 0, .external_lex_state = 2}, + [2503] = {.lex_state = 0, .external_lex_state = 2}, + [2504] = {.lex_state = 0, .external_lex_state = 2}, + [2505] = {.lex_state = 0, .external_lex_state = 2}, + [2506] = {.lex_state = 0, .external_lex_state = 2}, + [2507] = {.lex_state = 0, .external_lex_state = 2}, + [2508] = {.lex_state = 0, .external_lex_state = 2}, + [2509] = {.lex_state = 0, .external_lex_state = 2}, + [2510] = {.lex_state = 0, .external_lex_state = 2}, + [2511] = {.lex_state = 0, .external_lex_state = 2}, + [2512] = {.lex_state = 0, .external_lex_state = 2}, + [2513] = {.lex_state = 0, .external_lex_state = 2}, + [2514] = {.lex_state = 0, .external_lex_state = 2}, + [2515] = {.lex_state = 0, .external_lex_state = 2}, + [2516] = {.lex_state = 0, .external_lex_state = 2}, + [2517] = {.lex_state = 0, .external_lex_state = 2}, + [2518] = {.lex_state = 0, .external_lex_state = 2}, + [2519] = {.lex_state = 0, .external_lex_state = 2}, + [2520] = {.lex_state = 0, .external_lex_state = 2}, + [2521] = {.lex_state = 0, .external_lex_state = 2}, + [2522] = {.lex_state = 0, .external_lex_state = 2}, + [2523] = {.lex_state = 0, .external_lex_state = 2}, + [2524] = {.lex_state = 0, .external_lex_state = 2}, + [2525] = {.lex_state = 0, .external_lex_state = 2}, + [2526] = {.lex_state = 0, .external_lex_state = 2}, + [2527] = {.lex_state = 0, .external_lex_state = 2}, + [2528] = {.lex_state = 0, .external_lex_state = 2}, + [2529] = {.lex_state = 0, .external_lex_state = 2}, + [2530] = {.lex_state = 0, .external_lex_state = 2}, + [2531] = {.lex_state = 0, .external_lex_state = 2}, + [2532] = {.lex_state = 0, .external_lex_state = 2}, + [2533] = {.lex_state = 0, .external_lex_state = 2}, + [2534] = {.lex_state = 0, .external_lex_state = 2}, + [2535] = {.lex_state = 0, .external_lex_state = 2}, + [2536] = {.lex_state = 0, .external_lex_state = 2}, + [2537] = {.lex_state = 0, .external_lex_state = 2}, + [2538] = {.lex_state = 0, .external_lex_state = 2}, + [2539] = {.lex_state = 0, .external_lex_state = 2}, + [2540] = {.lex_state = 0, .external_lex_state = 2}, + [2541] = {.lex_state = 0, .external_lex_state = 2}, + [2542] = {.lex_state = 0, .external_lex_state = 2}, + [2543] = {.lex_state = 0, .external_lex_state = 2}, + [2544] = {.lex_state = 0, .external_lex_state = 2}, + [2545] = {.lex_state = 0, .external_lex_state = 2}, + [2546] = {.lex_state = 0, .external_lex_state = 2}, + [2547] = {.lex_state = 0, .external_lex_state = 2}, + [2548] = {.lex_state = 0, .external_lex_state = 2}, + [2549] = {.lex_state = 0, .external_lex_state = 2}, + [2550] = {.lex_state = 0, .external_lex_state = 2}, + [2551] = {.lex_state = 0, .external_lex_state = 2}, + [2552] = {.lex_state = 0, .external_lex_state = 2}, + [2553] = {.lex_state = 0, .external_lex_state = 2}, + [2554] = {.lex_state = 0, .external_lex_state = 2}, + [2555] = {.lex_state = 0, .external_lex_state = 2}, + [2556] = {.lex_state = 0, .external_lex_state = 2}, + [2557] = {.lex_state = 0, .external_lex_state = 2}, + [2558] = {.lex_state = 0, .external_lex_state = 2}, + [2559] = {.lex_state = 0, .external_lex_state = 2}, + [2560] = {.lex_state = 0, .external_lex_state = 2}, + [2561] = {.lex_state = 0, .external_lex_state = 2}, + [2562] = {.lex_state = 0, .external_lex_state = 2}, + [2563] = {.lex_state = 0, .external_lex_state = 2}, + [2564] = {.lex_state = 0, .external_lex_state = 2}, + [2565] = {.lex_state = 0, .external_lex_state = 2}, + [2566] = {.lex_state = 0, .external_lex_state = 2}, + [2567] = {.lex_state = 0, .external_lex_state = 2}, + [2568] = {.lex_state = 0, .external_lex_state = 2}, + [2569] = {.lex_state = 0, .external_lex_state = 2}, + [2570] = {.lex_state = 0, .external_lex_state = 2}, + [2571] = {.lex_state = 0, .external_lex_state = 2}, + [2572] = {.lex_state = 0, .external_lex_state = 2}, + [2573] = {.lex_state = 0, .external_lex_state = 2}, + [2574] = {.lex_state = 0, .external_lex_state = 2}, + [2575] = {.lex_state = 0, .external_lex_state = 2}, + [2576] = {.lex_state = 0, .external_lex_state = 2}, + [2577] = {.lex_state = 0, .external_lex_state = 2}, + [2578] = {.lex_state = 0, .external_lex_state = 2}, + [2579] = {.lex_state = 0, .external_lex_state = 2}, + [2580] = {.lex_state = 0, .external_lex_state = 2}, + [2581] = {.lex_state = 0, .external_lex_state = 2}, + [2582] = {.lex_state = 0, .external_lex_state = 2}, + [2583] = {.lex_state = 0, .external_lex_state = 2}, + [2584] = {.lex_state = 0, .external_lex_state = 2}, + [2585] = {.lex_state = 0, .external_lex_state = 2}, + [2586] = {.lex_state = 0, .external_lex_state = 2}, + [2587] = {.lex_state = 0, .external_lex_state = 2}, + [2588] = {.lex_state = 0, .external_lex_state = 2}, + [2589] = {.lex_state = 0, .external_lex_state = 2}, + [2590] = {.lex_state = 0, .external_lex_state = 2}, + [2591] = {.lex_state = 0, .external_lex_state = 2}, + [2592] = {.lex_state = 0, .external_lex_state = 2}, + [2593] = {.lex_state = 0, .external_lex_state = 2}, + [2594] = {.lex_state = 0, .external_lex_state = 2}, + [2595] = {.lex_state = 0, .external_lex_state = 2}, + [2596] = {.lex_state = 0, .external_lex_state = 2}, + [2597] = {.lex_state = 0, .external_lex_state = 2}, + [2598] = {.lex_state = 0, .external_lex_state = 2}, + [2599] = {.lex_state = 0, .external_lex_state = 2}, + [2600] = {.lex_state = 0, .external_lex_state = 2}, + [2601] = {.lex_state = 0, .external_lex_state = 2}, + [2602] = {.lex_state = 0, .external_lex_state = 2}, + [2603] = {.lex_state = 0, .external_lex_state = 2}, + [2604] = {.lex_state = 0, .external_lex_state = 2}, + [2605] = {.lex_state = 0, .external_lex_state = 2}, + [2606] = {.lex_state = 0, .external_lex_state = 2}, + [2607] = {.lex_state = 0, .external_lex_state = 2}, + [2608] = {.lex_state = 0, .external_lex_state = 2}, + [2609] = {.lex_state = 0, .external_lex_state = 2}, + [2610] = {.lex_state = 0, .external_lex_state = 2}, + [2611] = {.lex_state = 0, .external_lex_state = 2}, + [2612] = {.lex_state = 2, .external_lex_state = 2}, + [2613] = {.lex_state = 0, .external_lex_state = 2}, + [2614] = {.lex_state = 0, .external_lex_state = 2}, + [2615] = {.lex_state = 0, .external_lex_state = 2}, + [2616] = {.lex_state = 0, .external_lex_state = 2}, + [2617] = {.lex_state = 0, .external_lex_state = 2}, + [2618] = {.lex_state = 2, .external_lex_state = 2}, + [2619] = {.lex_state = 2, .external_lex_state = 2}, + [2620] = {.lex_state = 0, .external_lex_state = 2}, + [2621] = {.lex_state = 0, .external_lex_state = 2}, + [2622] = {.lex_state = 0, .external_lex_state = 2}, + [2623] = {.lex_state = 2, .external_lex_state = 2}, + [2624] = {.lex_state = 2, .external_lex_state = 2}, + [2625] = {.lex_state = 2, .external_lex_state = 2}, + [2626] = {.lex_state = 0, .external_lex_state = 2}, + [2627] = {.lex_state = 2, .external_lex_state = 2}, + [2628] = {.lex_state = 0, .external_lex_state = 2}, + [2629] = {.lex_state = 2, .external_lex_state = 2}, + [2630] = {.lex_state = 0, .external_lex_state = 2}, + [2631] = {.lex_state = 2, .external_lex_state = 2}, + [2632] = {.lex_state = 2, .external_lex_state = 2}, + [2633] = {.lex_state = 0, .external_lex_state = 2}, + [2634] = {.lex_state = 0, .external_lex_state = 2}, + [2635] = {.lex_state = 0, .external_lex_state = 2}, + [2636] = {.lex_state = 0, .external_lex_state = 2}, + [2637] = {.lex_state = 0, .external_lex_state = 2}, + [2638] = {.lex_state = 2, .external_lex_state = 2}, + [2639] = {.lex_state = 2, .external_lex_state = 2}, + [2640] = {.lex_state = 0, .external_lex_state = 2}, + [2641] = {.lex_state = 0, .external_lex_state = 2}, + [2642] = {.lex_state = 0, .external_lex_state = 2}, + [2643] = {.lex_state = 0, .external_lex_state = 2}, + [2644] = {.lex_state = 2, .external_lex_state = 2}, + [2645] = {.lex_state = 2, .external_lex_state = 2}, + [2646] = {.lex_state = 2, .external_lex_state = 2}, + [2647] = {.lex_state = 2, .external_lex_state = 2}, + [2648] = {.lex_state = 0, .external_lex_state = 2}, + [2649] = {.lex_state = 2, .external_lex_state = 2}, + [2650] = {.lex_state = 0, .external_lex_state = 2}, + [2651] = {.lex_state = 2, .external_lex_state = 2}, + [2652] = {.lex_state = 2, .external_lex_state = 2}, + [2653] = {.lex_state = 0, .external_lex_state = 2}, + [2654] = {.lex_state = 0, .external_lex_state = 2}, + [2655] = {.lex_state = 0, .external_lex_state = 2}, + [2656] = {.lex_state = 0, .external_lex_state = 2}, + [2657] = {.lex_state = 0, .external_lex_state = 2}, + [2658] = {.lex_state = 0, .external_lex_state = 2}, + [2659] = {.lex_state = 0, .external_lex_state = 2}, + [2660] = {.lex_state = 0, .external_lex_state = 2}, + [2661] = {.lex_state = 0, .external_lex_state = 2}, + [2662] = {.lex_state = 0, .external_lex_state = 2}, + [2663] = {.lex_state = 0, .external_lex_state = 2}, + [2664] = {.lex_state = 2, .external_lex_state = 2}, + [2665] = {.lex_state = 2, .external_lex_state = 2}, + [2666] = {.lex_state = 2, .external_lex_state = 2}, + [2667] = {.lex_state = 2, .external_lex_state = 2}, + [2668] = {.lex_state = 0, .external_lex_state = 2}, + [2669] = {.lex_state = 0, .external_lex_state = 2}, + [2670] = {.lex_state = 0, .external_lex_state = 2}, + [2671] = {.lex_state = 0, .external_lex_state = 2}, + [2672] = {.lex_state = 0, .external_lex_state = 2}, + [2673] = {.lex_state = 0, .external_lex_state = 2}, + [2674] = {.lex_state = 0, .external_lex_state = 2}, + [2675] = {.lex_state = 2, .external_lex_state = 2}, + [2676] = {.lex_state = 0, .external_lex_state = 2}, + [2677] = {.lex_state = 2, .external_lex_state = 2}, + [2678] = {.lex_state = 0, .external_lex_state = 2}, + [2679] = {.lex_state = 2, .external_lex_state = 2}, + [2680] = {.lex_state = 2, .external_lex_state = 2}, + [2681] = {.lex_state = 0, .external_lex_state = 2}, + [2682] = {.lex_state = 0, .external_lex_state = 2}, + [2683] = {.lex_state = 2, .external_lex_state = 2}, + [2684] = {.lex_state = 2, .external_lex_state = 2}, + [2685] = {.lex_state = 2, .external_lex_state = 2}, + [2686] = {.lex_state = 0, .external_lex_state = 2}, + [2687] = {.lex_state = 0, .external_lex_state = 2}, + [2688] = {.lex_state = 2, .external_lex_state = 2}, + [2689] = {.lex_state = 2, .external_lex_state = 2}, + [2690] = {.lex_state = 0, .external_lex_state = 2}, + [2691] = {.lex_state = 0, .external_lex_state = 2}, + [2692] = {.lex_state = 2, .external_lex_state = 2}, + [2693] = {.lex_state = 2, .external_lex_state = 2}, + [2694] = {.lex_state = 2, .external_lex_state = 2}, + [2695] = {.lex_state = 2, .external_lex_state = 2}, + [2696] = {.lex_state = 2, .external_lex_state = 2}, + [2697] = {.lex_state = 2, .external_lex_state = 2}, + [2698] = {.lex_state = 0, .external_lex_state = 2}, + [2699] = {.lex_state = 2, .external_lex_state = 2}, + [2700] = {.lex_state = 0, .external_lex_state = 2}, + [2701] = {.lex_state = 0, .external_lex_state = 2}, + [2702] = {.lex_state = 0, .external_lex_state = 2}, + [2703] = {.lex_state = 2, .external_lex_state = 2}, + [2704] = {.lex_state = 2, .external_lex_state = 2}, + [2705] = {.lex_state = 2, .external_lex_state = 2}, + [2706] = {.lex_state = 2, .external_lex_state = 2}, + [2707] = {.lex_state = 0, .external_lex_state = 2}, + [2708] = {.lex_state = 0, .external_lex_state = 2}, + [2709] = {.lex_state = 37, .external_lex_state = 2}, + [2710] = {.lex_state = 2, .external_lex_state = 2}, + [2711] = {.lex_state = 2, .external_lex_state = 2}, + [2712] = {.lex_state = 2, .external_lex_state = 2}, + [2713] = {.lex_state = 0, .external_lex_state = 2}, + [2714] = {.lex_state = 2, .external_lex_state = 2}, + [2715] = {.lex_state = 2, .external_lex_state = 2}, + [2716] = {.lex_state = 0, .external_lex_state = 2}, + [2717] = {.lex_state = 0, .external_lex_state = 2}, + [2718] = {.lex_state = 2, .external_lex_state = 2}, + [2719] = {.lex_state = 2, .external_lex_state = 2}, + [2720] = {.lex_state = 0, .external_lex_state = 2}, + [2721] = {.lex_state = 2, .external_lex_state = 2}, + [2722] = {.lex_state = 0, .external_lex_state = 2}, + [2723] = {.lex_state = 2, .external_lex_state = 2}, + [2724] = {.lex_state = 0, .external_lex_state = 2}, + [2725] = {.lex_state = 2, .external_lex_state = 2}, + [2726] = {.lex_state = 2, .external_lex_state = 2}, + [2727] = {.lex_state = 2, .external_lex_state = 2}, + [2728] = {.lex_state = 2, .external_lex_state = 2}, + [2729] = {.lex_state = 2, .external_lex_state = 2}, + [2730] = {.lex_state = 2, .external_lex_state = 2}, + [2731] = {.lex_state = 2, .external_lex_state = 2}, + [2732] = {.lex_state = 0, .external_lex_state = 2}, + [2733] = {.lex_state = 2, .external_lex_state = 2}, + [2734] = {.lex_state = 2, .external_lex_state = 2}, + [2735] = {.lex_state = 2, .external_lex_state = 2}, + [2736] = {.lex_state = 2, .external_lex_state = 2}, + [2737] = {.lex_state = 2, .external_lex_state = 2}, + [2738] = {.lex_state = 2, .external_lex_state = 2}, + [2739] = {.lex_state = 2, .external_lex_state = 2}, + [2740] = {.lex_state = 2, .external_lex_state = 2}, + [2741] = {.lex_state = 0, .external_lex_state = 2}, + [2742] = {.lex_state = 2, .external_lex_state = 2}, + [2743] = {.lex_state = 0, .external_lex_state = 2}, + [2744] = {.lex_state = 2, .external_lex_state = 2}, + [2745] = {.lex_state = 2, .external_lex_state = 2}, + [2746] = {.lex_state = 2, .external_lex_state = 2}, + [2747] = {.lex_state = 0, .external_lex_state = 2}, + [2748] = {.lex_state = 2, .external_lex_state = 2}, + [2749] = {.lex_state = 0, .external_lex_state = 2}, + [2750] = {.lex_state = 2, .external_lex_state = 2}, + [2751] = {.lex_state = 2, .external_lex_state = 2}, + [2752] = {.lex_state = 0, .external_lex_state = 2}, + [2753] = {.lex_state = 2, .external_lex_state = 2}, + [2754] = {.lex_state = 2, .external_lex_state = 2}, + [2755] = {.lex_state = 2, .external_lex_state = 2}, + [2756] = {.lex_state = 0, .external_lex_state = 2}, + [2757] = {.lex_state = 0, .external_lex_state = 2}, + [2758] = {.lex_state = 0, .external_lex_state = 2}, + [2759] = {.lex_state = 2, .external_lex_state = 2}, + [2760] = {.lex_state = 2, .external_lex_state = 2}, + [2761] = {.lex_state = 2, .external_lex_state = 2}, + [2762] = {.lex_state = 0, .external_lex_state = 2}, + [2763] = {.lex_state = 2, .external_lex_state = 2}, + [2764] = {.lex_state = 2, .external_lex_state = 2}, + [2765] = {.lex_state = 0, .external_lex_state = 2}, + [2766] = {.lex_state = 2, .external_lex_state = 2}, + [2767] = {.lex_state = 2, .external_lex_state = 2}, + [2768] = {.lex_state = 0, .external_lex_state = 2}, + [2769] = {.lex_state = 0, .external_lex_state = 2}, + [2770] = {.lex_state = 2, .external_lex_state = 2}, + [2771] = {.lex_state = 0, .external_lex_state = 2}, + [2772] = {.lex_state = 2, .external_lex_state = 2}, + [2773] = {.lex_state = 2, .external_lex_state = 2}, + [2774] = {.lex_state = 0, .external_lex_state = 2}, + [2775] = {.lex_state = 2, .external_lex_state = 2}, + [2776] = {.lex_state = 2, .external_lex_state = 2}, + [2777] = {.lex_state = 0, .external_lex_state = 2}, + [2778] = {.lex_state = 2, .external_lex_state = 2}, + [2779] = {.lex_state = 0, .external_lex_state = 2}, + [2780] = {.lex_state = 2, .external_lex_state = 2}, + [2781] = {.lex_state = 2, .external_lex_state = 2}, + [2782] = {.lex_state = 2, .external_lex_state = 2}, + [2783] = {.lex_state = 2, .external_lex_state = 2}, + [2784] = {.lex_state = 0, .external_lex_state = 2}, + [2785] = {.lex_state = 2, .external_lex_state = 2}, + [2786] = {.lex_state = 2, .external_lex_state = 2}, + [2787] = {.lex_state = 37, .external_lex_state = 2}, + [2788] = {.lex_state = 0, .external_lex_state = 2}, + [2789] = {.lex_state = 2, .external_lex_state = 2}, + [2790] = {.lex_state = 0, .external_lex_state = 2}, + [2791] = {.lex_state = 0, .external_lex_state = 2}, + [2792] = {.lex_state = 0, .external_lex_state = 2}, + [2793] = {.lex_state = 0, .external_lex_state = 2}, + [2794] = {.lex_state = 2, .external_lex_state = 2}, + [2795] = {.lex_state = 0, .external_lex_state = 2}, + [2796] = {.lex_state = 2, .external_lex_state = 2}, + [2797] = {.lex_state = 0, .external_lex_state = 2}, + [2798] = {.lex_state = 0, .external_lex_state = 2}, + [2799] = {.lex_state = 2, .external_lex_state = 2}, + [2800] = {.lex_state = 2, .external_lex_state = 2}, + [2801] = {.lex_state = 2, .external_lex_state = 2}, + [2802] = {.lex_state = 2, .external_lex_state = 2}, + [2803] = {.lex_state = 0, .external_lex_state = 2}, + [2804] = {.lex_state = 2, .external_lex_state = 2}, + [2805] = {.lex_state = 0, .external_lex_state = 2}, + [2806] = {.lex_state = 2, .external_lex_state = 2}, + [2807] = {.lex_state = 0, .external_lex_state = 2}, + [2808] = {.lex_state = 2, .external_lex_state = 2}, + [2809] = {.lex_state = 2, .external_lex_state = 2}, + [2810] = {.lex_state = 0, .external_lex_state = 2}, + [2811] = {.lex_state = 2, .external_lex_state = 2}, + [2812] = {.lex_state = 2, .external_lex_state = 2}, + [2813] = {.lex_state = 0, .external_lex_state = 2}, + [2814] = {.lex_state = 0, .external_lex_state = 2}, + [2815] = {.lex_state = 0, .external_lex_state = 2}, + [2816] = {.lex_state = 2, .external_lex_state = 2}, + [2817] = {.lex_state = 2, .external_lex_state = 2}, + [2818] = {.lex_state = 2, .external_lex_state = 2}, + [2819] = {.lex_state = 2, .external_lex_state = 2}, + [2820] = {.lex_state = 0, .external_lex_state = 2}, + [2821] = {.lex_state = 2, .external_lex_state = 2}, + [2822] = {.lex_state = 2, .external_lex_state = 2}, + [2823] = {.lex_state = 2, .external_lex_state = 2}, + [2824] = {.lex_state = 2, .external_lex_state = 2}, + [2825] = {.lex_state = 0, .external_lex_state = 2}, + [2826] = {.lex_state = 0, .external_lex_state = 2}, + [2827] = {.lex_state = 0, .external_lex_state = 2}, + [2828] = {.lex_state = 2, .external_lex_state = 2}, + [2829] = {.lex_state = 2, .external_lex_state = 2}, + [2830] = {.lex_state = 2, .external_lex_state = 2}, + [2831] = {.lex_state = 2, .external_lex_state = 2}, + [2832] = {.lex_state = 2, .external_lex_state = 2}, + [2833] = {.lex_state = 2, .external_lex_state = 2}, + [2834] = {.lex_state = 2, .external_lex_state = 2}, + [2835] = {.lex_state = 2, .external_lex_state = 2}, + [2836] = {.lex_state = 0, .external_lex_state = 2}, + [2837] = {.lex_state = 2, .external_lex_state = 2}, + [2838] = {.lex_state = 2, .external_lex_state = 2}, + [2839] = {.lex_state = 2, .external_lex_state = 2}, + [2840] = {.lex_state = 0, .external_lex_state = 2}, + [2841] = {.lex_state = 2, .external_lex_state = 2}, + [2842] = {.lex_state = 2, .external_lex_state = 2}, + [2843] = {.lex_state = 0, .external_lex_state = 2}, + [2844] = {.lex_state = 2, .external_lex_state = 2}, + [2845] = {.lex_state = 0, .external_lex_state = 2}, + [2846] = {.lex_state = 2, .external_lex_state = 2}, + [2847] = {.lex_state = 0, .external_lex_state = 2}, + [2848] = {.lex_state = 0, .external_lex_state = 2}, + [2849] = {.lex_state = 2, .external_lex_state = 2}, + [2850] = {.lex_state = 0, .external_lex_state = 2}, + [2851] = {.lex_state = 0, .external_lex_state = 2}, + [2852] = {.lex_state = 2, .external_lex_state = 2}, + [2853] = {.lex_state = 2, .external_lex_state = 2}, + [2854] = {.lex_state = 2, .external_lex_state = 2}, + [2855] = {.lex_state = 0, .external_lex_state = 2}, + [2856] = {.lex_state = 2, .external_lex_state = 2}, + [2857] = {.lex_state = 2, .external_lex_state = 2}, + [2858] = {.lex_state = 2, .external_lex_state = 2}, + [2859] = {.lex_state = 2, .external_lex_state = 2}, + [2860] = {.lex_state = 2, .external_lex_state = 2}, + [2861] = {.lex_state = 2, .external_lex_state = 2}, + [2862] = {.lex_state = 0, .external_lex_state = 2}, + [2863] = {.lex_state = 2, .external_lex_state = 2}, + [2864] = {.lex_state = 2, .external_lex_state = 2}, + [2865] = {.lex_state = 0, .external_lex_state = 2}, + [2866] = {.lex_state = 2, .external_lex_state = 2}, + [2867] = {.lex_state = 0, .external_lex_state = 2}, + [2868] = {.lex_state = 2, .external_lex_state = 2}, + [2869] = {.lex_state = 2, .external_lex_state = 2}, + [2870] = {.lex_state = 0, .external_lex_state = 2}, + [2871] = {.lex_state = 2, .external_lex_state = 2}, + [2872] = {.lex_state = 2, .external_lex_state = 2}, + [2873] = {.lex_state = 0, .external_lex_state = 2}, + [2874] = {.lex_state = 2, .external_lex_state = 2}, + [2875] = {.lex_state = 2, .external_lex_state = 2}, + [2876] = {.lex_state = 2, .external_lex_state = 2}, + [2877] = {.lex_state = 0, .external_lex_state = 2}, + [2878] = {.lex_state = 0, .external_lex_state = 2}, + [2879] = {.lex_state = 2, .external_lex_state = 2}, + [2880] = {.lex_state = 0, .external_lex_state = 2}, + [2881] = {.lex_state = 0, .external_lex_state = 2}, + [2882] = {.lex_state = 2, .external_lex_state = 2}, + [2883] = {.lex_state = 2, .external_lex_state = 2}, + [2884] = {.lex_state = 2, .external_lex_state = 2}, + [2885] = {.lex_state = 2, .external_lex_state = 2}, + [2886] = {.lex_state = 0, .external_lex_state = 2}, + [2887] = {.lex_state = 2, .external_lex_state = 2}, + [2888] = {.lex_state = 0, .external_lex_state = 2}, + [2889] = {.lex_state = 2, .external_lex_state = 2}, + [2890] = {.lex_state = 2, .external_lex_state = 2}, + [2891] = {.lex_state = 2, .external_lex_state = 2}, + [2892] = {.lex_state = 2, .external_lex_state = 2}, + [2893] = {.lex_state = 0, .external_lex_state = 2}, + [2894] = {.lex_state = 0, .external_lex_state = 2}, + [2895] = {.lex_state = 2, .external_lex_state = 2}, + [2896] = {.lex_state = 2, .external_lex_state = 2}, + [2897] = {.lex_state = 0, .external_lex_state = 2}, + [2898] = {.lex_state = 2, .external_lex_state = 2}, + [2899] = {.lex_state = 2, .external_lex_state = 2}, + [2900] = {.lex_state = 2, .external_lex_state = 2}, + [2901] = {.lex_state = 2, .external_lex_state = 2}, + [2902] = {.lex_state = 0, .external_lex_state = 2}, + [2903] = {.lex_state = 0, .external_lex_state = 2}, + [2904] = {.lex_state = 2, .external_lex_state = 2}, + [2905] = {.lex_state = 2, .external_lex_state = 2}, + [2906] = {.lex_state = 0, .external_lex_state = 2}, + [2907] = {.lex_state = 0, .external_lex_state = 2}, + [2908] = {.lex_state = 2, .external_lex_state = 2}, + [2909] = {.lex_state = 2, .external_lex_state = 2}, + [2910] = {.lex_state = 2, .external_lex_state = 2}, + [2911] = {.lex_state = 0, .external_lex_state = 2}, + [2912] = {.lex_state = 0, .external_lex_state = 2}, + [2913] = {.lex_state = 2, .external_lex_state = 2}, + [2914] = {.lex_state = 2, .external_lex_state = 2}, + [2915] = {.lex_state = 0, .external_lex_state = 2}, + [2916] = {.lex_state = 2, .external_lex_state = 2}, + [2917] = {.lex_state = 0, .external_lex_state = 2}, + [2918] = {.lex_state = 0, .external_lex_state = 2}, + [2919] = {.lex_state = 2, .external_lex_state = 2}, + [2920] = {.lex_state = 2, .external_lex_state = 2}, + [2921] = {.lex_state = 2, .external_lex_state = 2}, + [2922] = {.lex_state = 0, .external_lex_state = 2}, + [2923] = {.lex_state = 2, .external_lex_state = 2}, + [2924] = {.lex_state = 2, .external_lex_state = 2}, + [2925] = {.lex_state = 0, .external_lex_state = 2}, + [2926] = {.lex_state = 0, .external_lex_state = 2}, + [2927] = {.lex_state = 2, .external_lex_state = 2}, + [2928] = {.lex_state = 2, .external_lex_state = 2}, + [2929] = {.lex_state = 2, .external_lex_state = 2}, + [2930] = {.lex_state = 0, .external_lex_state = 2}, + [2931] = {.lex_state = 2, .external_lex_state = 2}, + [2932] = {.lex_state = 2, .external_lex_state = 2}, + [2933] = {.lex_state = 2, .external_lex_state = 2}, + [2934] = {.lex_state = 2, .external_lex_state = 2}, + [2935] = {.lex_state = 2, .external_lex_state = 2}, + [2936] = {.lex_state = 2, .external_lex_state = 2}, + [2937] = {.lex_state = 2, .external_lex_state = 2}, + [2938] = {.lex_state = 0, .external_lex_state = 2}, + [2939] = {.lex_state = 2, .external_lex_state = 2}, + [2940] = {.lex_state = 0, .external_lex_state = 2}, + [2941] = {.lex_state = 2, .external_lex_state = 2}, + [2942] = {.lex_state = 2, .external_lex_state = 2}, + [2943] = {.lex_state = 0, .external_lex_state = 2}, + [2944] = {.lex_state = 2, .external_lex_state = 2}, + [2945] = {.lex_state = 2, .external_lex_state = 2}, + [2946] = {.lex_state = 2, .external_lex_state = 2}, + [2947] = {.lex_state = 2, .external_lex_state = 2}, + [2948] = {.lex_state = 2, .external_lex_state = 2}, + [2949] = {.lex_state = 2, .external_lex_state = 2}, + [2950] = {.lex_state = 2, .external_lex_state = 2}, + [2951] = {.lex_state = 2, .external_lex_state = 2}, + [2952] = {.lex_state = 2, .external_lex_state = 2}, + [2953] = {.lex_state = 2, .external_lex_state = 2}, + [2954] = {.lex_state = 0, .external_lex_state = 2}, + [2955] = {.lex_state = 2, .external_lex_state = 2}, + [2956] = {.lex_state = 0, .external_lex_state = 2}, + [2957] = {.lex_state = 0, .external_lex_state = 2}, + [2958] = {.lex_state = 0, .external_lex_state = 2}, + [2959] = {.lex_state = 2, .external_lex_state = 2}, + [2960] = {.lex_state = 0, .external_lex_state = 2}, + [2961] = {.lex_state = 2, .external_lex_state = 2}, + [2962] = {.lex_state = 0, .external_lex_state = 2}, + [2963] = {.lex_state = 2, .external_lex_state = 2}, + [2964] = {.lex_state = 0, .external_lex_state = 2}, + [2965] = {.lex_state = 0, .external_lex_state = 2}, + [2966] = {.lex_state = 0, .external_lex_state = 2}, + [2967] = {.lex_state = 2, .external_lex_state = 2}, + [2968] = {.lex_state = 0, .external_lex_state = 2}, + [2969] = {.lex_state = 2, .external_lex_state = 2}, + [2970] = {.lex_state = 37, .external_lex_state = 2}, + [2971] = {.lex_state = 2, .external_lex_state = 2}, + [2972] = {.lex_state = 2, .external_lex_state = 2}, + [2973] = {.lex_state = 2, .external_lex_state = 2}, + [2974] = {.lex_state = 2, .external_lex_state = 2}, + [2975] = {.lex_state = 0, .external_lex_state = 2}, + [2976] = {.lex_state = 0, .external_lex_state = 2}, + [2977] = {.lex_state = 2, .external_lex_state = 2}, + [2978] = {.lex_state = 0, .external_lex_state = 2}, + [2979] = {.lex_state = 0, .external_lex_state = 2}, + [2980] = {.lex_state = 0, .external_lex_state = 2}, + [2981] = {.lex_state = 2, .external_lex_state = 2}, + [2982] = {.lex_state = 2, .external_lex_state = 2}, + [2983] = {.lex_state = 0, .external_lex_state = 2}, + [2984] = {.lex_state = 2, .external_lex_state = 2}, + [2985] = {.lex_state = 2, .external_lex_state = 2}, + [2986] = {.lex_state = 0, .external_lex_state = 2}, + [2987] = {.lex_state = 0, .external_lex_state = 2}, + [2988] = {.lex_state = 2, .external_lex_state = 2}, + [2989] = {.lex_state = 0, .external_lex_state = 2}, + [2990] = {.lex_state = 2, .external_lex_state = 2}, + [2991] = {.lex_state = 0, .external_lex_state = 2}, + [2992] = {.lex_state = 0, .external_lex_state = 2}, + [2993] = {.lex_state = 0, .external_lex_state = 2}, + [2994] = {.lex_state = 0, .external_lex_state = 2}, + [2995] = {.lex_state = 0, .external_lex_state = 2}, + [2996] = {.lex_state = 2, .external_lex_state = 2}, + [2997] = {.lex_state = 2, .external_lex_state = 2}, + [2998] = {.lex_state = 2, .external_lex_state = 2}, + [2999] = {.lex_state = 2, .external_lex_state = 2}, + [3000] = {.lex_state = 0, .external_lex_state = 2}, + [3001] = {.lex_state = 2, .external_lex_state = 2}, + [3002] = {.lex_state = 2, .external_lex_state = 2}, + [3003] = {.lex_state = 0, .external_lex_state = 2}, + [3004] = {.lex_state = 2, .external_lex_state = 2}, + [3005] = {.lex_state = 2, .external_lex_state = 2}, + [3006] = {.lex_state = 2, .external_lex_state = 2}, + [3007] = {.lex_state = 0, .external_lex_state = 2}, + [3008] = {.lex_state = 0, .external_lex_state = 2}, + [3009] = {.lex_state = 0, .external_lex_state = 2}, + [3010] = {.lex_state = 0, .external_lex_state = 2}, + [3011] = {.lex_state = 2, .external_lex_state = 2}, + [3012] = {.lex_state = 0, .external_lex_state = 2}, + [3013] = {.lex_state = 2, .external_lex_state = 2}, + [3014] = {.lex_state = 2, .external_lex_state = 2}, + [3015] = {.lex_state = 0, .external_lex_state = 2}, + [3016] = {.lex_state = 2, .external_lex_state = 2}, + [3017] = {.lex_state = 0, .external_lex_state = 2}, + [3018] = {.lex_state = 0, .external_lex_state = 2}, + [3019] = {.lex_state = 2, .external_lex_state = 2}, + [3020] = {.lex_state = 0, .external_lex_state = 2}, + [3021] = {.lex_state = 0, .external_lex_state = 2}, + [3022] = {.lex_state = 0, .external_lex_state = 2}, + [3023] = {.lex_state = 0, .external_lex_state = 2}, + [3024] = {.lex_state = 0, .external_lex_state = 2}, + [3025] = {.lex_state = 2, .external_lex_state = 2}, + [3026] = {.lex_state = 0, .external_lex_state = 2}, + [3027] = {.lex_state = 0, .external_lex_state = 2}, + [3028] = {.lex_state = 0, .external_lex_state = 2}, + [3029] = {.lex_state = 2, .external_lex_state = 2}, + [3030] = {.lex_state = 0, .external_lex_state = 2}, + [3031] = {.lex_state = 0, .external_lex_state = 2}, + [3032] = {.lex_state = 0, .external_lex_state = 2}, + [3033] = {.lex_state = 0, .external_lex_state = 2}, + [3034] = {.lex_state = 0, .external_lex_state = 2}, + [3035] = {.lex_state = 0, .external_lex_state = 2}, + [3036] = {.lex_state = 0, .external_lex_state = 2}, + [3037] = {.lex_state = 0, .external_lex_state = 2}, + [3038] = {.lex_state = 0, .external_lex_state = 2}, + [3039] = {.lex_state = 0, .external_lex_state = 2}, + [3040] = {.lex_state = 0, .external_lex_state = 2}, + [3041] = {.lex_state = 0, .external_lex_state = 2}, + [3042] = {.lex_state = 0, .external_lex_state = 2}, + [3043] = {.lex_state = 0, .external_lex_state = 2}, + [3044] = {.lex_state = 2, .external_lex_state = 2}, + [3045] = {.lex_state = 2, .external_lex_state = 2}, + [3046] = {.lex_state = 2, .external_lex_state = 2}, + [3047] = {.lex_state = 2, .external_lex_state = 2}, + [3048] = {.lex_state = 0, .external_lex_state = 2}, + [3049] = {.lex_state = 2, .external_lex_state = 2}, + [3050] = {.lex_state = 2, .external_lex_state = 2}, + [3051] = {.lex_state = 2, .external_lex_state = 2}, + [3052] = {.lex_state = 0, .external_lex_state = 2}, + [3053] = {.lex_state = 2, .external_lex_state = 2}, + [3054] = {.lex_state = 37, .external_lex_state = 2}, + [3055] = {.lex_state = 0, .external_lex_state = 2}, + [3056] = {.lex_state = 2, .external_lex_state = 2}, + [3057] = {.lex_state = 2, .external_lex_state = 2}, + [3058] = {.lex_state = 2, .external_lex_state = 2}, + [3059] = {.lex_state = 0, .external_lex_state = 2}, + [3060] = {.lex_state = 2, .external_lex_state = 2}, + [3061] = {.lex_state = 0, .external_lex_state = 2}, + [3062] = {.lex_state = 0, .external_lex_state = 2}, + [3063] = {.lex_state = 0, .external_lex_state = 2}, + [3064] = {.lex_state = 2, .external_lex_state = 2}, + [3065] = {.lex_state = 0, .external_lex_state = 2}, + [3066] = {.lex_state = 2, .external_lex_state = 2}, + [3067] = {.lex_state = 0, .external_lex_state = 2}, + [3068] = {.lex_state = 2, .external_lex_state = 2}, + [3069] = {.lex_state = 0, .external_lex_state = 2}, + [3070] = {.lex_state = 2, .external_lex_state = 2}, + [3071] = {.lex_state = 0, .external_lex_state = 2}, + [3072] = {.lex_state = 0, .external_lex_state = 2}, + [3073] = {.lex_state = 2, .external_lex_state = 2}, + [3074] = {.lex_state = 0, .external_lex_state = 2}, + [3075] = {.lex_state = 2, .external_lex_state = 2}, + [3076] = {.lex_state = 0, .external_lex_state = 2}, + [3077] = {.lex_state = 0, .external_lex_state = 2}, + [3078] = {.lex_state = 2, .external_lex_state = 2}, + [3079] = {.lex_state = 2, .external_lex_state = 2}, + [3080] = {.lex_state = 0, .external_lex_state = 2}, + [3081] = {.lex_state = 0, .external_lex_state = 2}, + [3082] = {.lex_state = 2, .external_lex_state = 2}, + [3083] = {.lex_state = 0, .external_lex_state = 2}, + [3084] = {.lex_state = 2, .external_lex_state = 2}, + [3085] = {.lex_state = 0, .external_lex_state = 2}, + [3086] = {.lex_state = 2, .external_lex_state = 2}, + [3087] = {.lex_state = 2, .external_lex_state = 2}, + [3088] = {.lex_state = 0, .external_lex_state = 2}, + [3089] = {.lex_state = 2, .external_lex_state = 2}, + [3090] = {.lex_state = 0, .external_lex_state = 2}, + [3091] = {.lex_state = 0, .external_lex_state = 2}, + [3092] = {.lex_state = 2, .external_lex_state = 2}, + [3093] = {.lex_state = 0, .external_lex_state = 2}, + [3094] = {.lex_state = 2, .external_lex_state = 2}, + [3095] = {.lex_state = 0, .external_lex_state = 2}, + [3096] = {.lex_state = 0, .external_lex_state = 2}, + [3097] = {.lex_state = 0, .external_lex_state = 2}, + [3098] = {.lex_state = 0, .external_lex_state = 2}, + [3099] = {.lex_state = 0, .external_lex_state = 2}, + [3100] = {.lex_state = 0, .external_lex_state = 2}, + [3101] = {.lex_state = 0, .external_lex_state = 2}, + [3102] = {.lex_state = 0, .external_lex_state = 2}, + [3103] = {.lex_state = 0, .external_lex_state = 2}, + [3104] = {.lex_state = 2, .external_lex_state = 2}, + [3105] = {.lex_state = 0, .external_lex_state = 2}, + [3106] = {.lex_state = 2, .external_lex_state = 2}, + [3107] = {.lex_state = 2, .external_lex_state = 2}, + [3108] = {.lex_state = 2, .external_lex_state = 2}, + [3109] = {.lex_state = 2, .external_lex_state = 2}, + [3110] = {.lex_state = 2, .external_lex_state = 2}, + [3111] = {.lex_state = 2, .external_lex_state = 2}, + [3112] = {.lex_state = 2, .external_lex_state = 2}, + [3113] = {.lex_state = 2, .external_lex_state = 2}, + [3114] = {.lex_state = 2, .external_lex_state = 2}, + [3115] = {.lex_state = 0, .external_lex_state = 2}, + [3116] = {.lex_state = 2, .external_lex_state = 2}, + [3117] = {.lex_state = 2, .external_lex_state = 2}, + [3118] = {.lex_state = 2, .external_lex_state = 2}, + [3119] = {.lex_state = 2, .external_lex_state = 2}, + [3120] = {.lex_state = 0, .external_lex_state = 2}, + [3121] = {.lex_state = 2, .external_lex_state = 2}, + [3122] = {.lex_state = 2, .external_lex_state = 2}, + [3123] = {.lex_state = 2, .external_lex_state = 2}, + [3124] = {.lex_state = 2, .external_lex_state = 2}, + [3125] = {.lex_state = 2, .external_lex_state = 2}, + [3126] = {.lex_state = 2, .external_lex_state = 2}, + [3127] = {.lex_state = 2, .external_lex_state = 2}, + [3128] = {.lex_state = 2, .external_lex_state = 2}, + [3129] = {.lex_state = 2, .external_lex_state = 2}, + [3130] = {.lex_state = 2, .external_lex_state = 2}, + [3131] = {.lex_state = 2, .external_lex_state = 2}, + [3132] = {.lex_state = 2, .external_lex_state = 2}, + [3133] = {.lex_state = 2, .external_lex_state = 2}, + [3134] = {.lex_state = 2, .external_lex_state = 2}, + [3135] = {.lex_state = 2, .external_lex_state = 2}, + [3136] = {.lex_state = 2, .external_lex_state = 2}, + [3137] = {.lex_state = 2, .external_lex_state = 2}, + [3138] = {.lex_state = 2, .external_lex_state = 2}, + [3139] = {.lex_state = 2, .external_lex_state = 2}, + [3140] = {.lex_state = 2, .external_lex_state = 2}, + [3141] = {.lex_state = 2, .external_lex_state = 2}, + [3142] = {.lex_state = 2, .external_lex_state = 2}, + [3143] = {.lex_state = 2, .external_lex_state = 2}, + [3144] = {.lex_state = 2, .external_lex_state = 2}, + [3145] = {.lex_state = 2, .external_lex_state = 2}, + [3146] = {.lex_state = 2, .external_lex_state = 2}, + [3147] = {.lex_state = 2, .external_lex_state = 2}, + [3148] = {.lex_state = 0, .external_lex_state = 2}, + [3149] = {.lex_state = 0, .external_lex_state = 2}, + [3150] = {.lex_state = 2, .external_lex_state = 2}, + [3151] = {.lex_state = 2, .external_lex_state = 2}, + [3152] = {.lex_state = 2, .external_lex_state = 2}, + [3153] = {.lex_state = 2, .external_lex_state = 2}, +}; + +enum { + ts_external_token__whitespace = 0, + ts_external_token_bol_comment = 1, + ts_external_token_error_sentinel = 2, +}; + +static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { + [ts_external_token__whitespace] = sym__whitespace, + [ts_external_token_bol_comment] = sym_bol_comment, + [ts_external_token_error_sentinel] = sym_error_sentinel, +}; + +static const bool ts_external_scanner_states[3][EXTERNAL_TOKEN_COUNT] = { + [1] = { + [ts_external_token__whitespace] = true, + [ts_external_token_bol_comment] = true, + [ts_external_token_error_sentinel] = true, + }, + [2] = { + [ts_external_token__whitespace] = true, + [ts_external_token_bol_comment] = true, + }, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -12506,82 +12388,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_numeric_literal] = ACTIONS(1), [sym_character_literal] = ACTIONS(1), [sym_eol_comment] = ACTIONS(3), - [sym_bol_comment] = ACTIONS(5), [sym_field_symbol_name] = ACTIONS(1), + [sym__whitespace] = ACTIONS(3), + [sym_bol_comment] = ACTIONS(3), + [sym_error_sentinel] = ACTIONS(1), }, [1] = { [sym_program] = STATE(2994), - [sym__statement] = STATE(28), - [sym__implementation_statement] = STATE(28), - [sym_class_declaration] = STATE(28), - [sym_class_implementation] = STATE(28), - [sym_class_publication] = STATE(28), - [sym_class_local_friend_publication] = STATE(28), - [sym_interface_declaration] = STATE(28), - [sym_variable_declaration] = STATE(28), - [sym_chained_variable_declaration] = STATE(28), - [sym_chained_structure_declaration] = STATE(28), - [sym_field_symbol_declaration] = STATE(28), - [sym_chained_field_symbol_declaration] = STATE(28), - [sym_loop_statement] = STATE(28), - [sym_exit_statement] = STATE(28), - [sym_continue_statement] = STATE(28), - [sym_return_statement] = STATE(28), - [sym_report_statement] = STATE(28), - [sym_if_statement] = STATE(28), - [sym_check_statement] = STATE(28), + [sym__statement] = STATE(27), + [sym__implementation_statement] = STATE(27), + [sym_class_declaration] = STATE(27), + [sym_class_implementation] = STATE(27), + [sym_class_publication] = STATE(27), + [sym_class_local_friend_publication] = STATE(27), + [sym_interface_declaration] = STATE(27), + [sym_variable_declaration] = STATE(27), + [sym_chained_variable_declaration] = STATE(27), + [sym_chained_structure_declaration] = STATE(27), + [sym_field_symbol_declaration] = STATE(27), + [sym_chained_field_symbol_declaration] = STATE(27), + [sym_loop_statement] = STATE(27), + [sym_exit_statement] = STATE(27), + [sym_continue_statement] = STATE(27), + [sym_return_statement] = STATE(27), + [sym_report_statement] = STATE(27), + [sym_if_statement] = STATE(27), + [sym_check_statement] = STATE(27), [sym__writeable_expression] = STATE(2993), [sym_table_expression] = STATE(2993), - [sym_select_statement_obsolete] = STATE(28), - [sym_read_table_statement] = STATE(28), + [sym_select_statement_obsolete] = STATE(27), + [sym_read_table_statement] = STATE(27), [sym__data_object] = STATE(2993), [sym_structured_data_object] = STATE(2993), [sym_attribute_access_static] = STATE(2993), - [sym_assignment] = STATE(28), - [sym_try_catch_statement] = STATE(28), - [sym_write_statement] = STATE(28), - [sym_chained_write_statement] = STATE(28), - [sym_call_method] = STATE(28), - [sym_call_method_static] = STATE(28), - [sym_call_method_instance] = STATE(28), - [sym_call_function] = STATE(28), - [sym_raise_exception_statement] = STATE(28), - [sym_clear_statement] = STATE(28), - [sym_append_statement] = STATE(28), - [sym_append_statement_obsolete] = STATE(28), - [sym_create_object_statement] = STATE(28), - [sym_include_statement] = STATE(28), - [sym_macro_include] = STATE(28), - [sym_function_implementation] = STATE(28), - [sym_raise_statement] = STATE(28), - [aux_sym_program_repeat1] = STATE(28), - [ts_builtin_sym_end] = ACTIONS(7), - [sym_name] = ACTIONS(9), - [aux_sym_class_declaration_token1] = ACTIONS(11), - [aux_sym__create_addition_token1] = ACTIONS(13), - [aux_sym_interface_declaration_token1] = ACTIONS(15), - [aux_sym_variable_declaration_token1] = ACTIONS(17), - [aux_sym_field_symbol_declaration_token1] = ACTIONS(19), - [aux_sym_loop_statement_token1] = ACTIONS(21), - [aux_sym_exit_statement_token1] = ACTIONS(23), - [aux_sym_continue_statement_token1] = ACTIONS(25), - [aux_sym_return_statement_token1] = ACTIONS(27), - [aux_sym_report_statement_token1] = ACTIONS(29), - [aux_sym_if_statement_token1] = ACTIONS(31), - [aux_sym_check_statement_token1] = ACTIONS(33), - [aux_sym_select_statement_obsolete_token1] = ACTIONS(35), - [aux_sym_read_table_statement_token1] = ACTIONS(37), - [aux_sym_try_catch_statement_token1] = ACTIONS(39), - [aux_sym_write_statement_token1] = ACTIONS(41), - [aux_sym_call_function_token1] = ACTIONS(43), - [aux_sym_call_function_token2] = ACTIONS(45), - [aux_sym_raise_exception_statement_token1] = ACTIONS(47), - [aux_sym_clear_statement_token1] = ACTIONS(49), - [aux_sym_append_statement_token1] = ACTIONS(51), - [aux_sym_include_statement_token1] = ACTIONS(53), + [sym_assignment] = STATE(27), + [sym_try_catch_statement] = STATE(27), + [sym_write_statement] = STATE(27), + [sym_chained_write_statement] = STATE(27), + [sym_call_method] = STATE(27), + [sym_call_method_static] = STATE(27), + [sym_call_method_instance] = STATE(27), + [sym_call_function] = STATE(27), + [sym_raise_exception_statement] = STATE(27), + [sym_clear_statement] = STATE(27), + [sym_append_statement] = STATE(27), + [sym_append_statement_obsolete] = STATE(27), + [sym_create_object_statement] = STATE(27), + [sym_include_statement] = STATE(27), + [sym_macro_include] = STATE(27), + [sym_function_implementation] = STATE(27), + [sym_raise_statement] = STATE(27), + [aux_sym_program_repeat1] = STATE(27), + [ts_builtin_sym_end] = ACTIONS(5), + [sym_name] = ACTIONS(7), + [aux_sym_class_declaration_token1] = ACTIONS(9), + [aux_sym__create_addition_token1] = ACTIONS(11), + [aux_sym_interface_declaration_token1] = ACTIONS(13), + [aux_sym_variable_declaration_token1] = ACTIONS(15), + [aux_sym_field_symbol_declaration_token1] = ACTIONS(17), + [aux_sym_loop_statement_token1] = ACTIONS(19), + [aux_sym_exit_statement_token1] = ACTIONS(21), + [aux_sym_continue_statement_token1] = ACTIONS(23), + [aux_sym_return_statement_token1] = ACTIONS(25), + [aux_sym_report_statement_token1] = ACTIONS(27), + [aux_sym_if_statement_token1] = ACTIONS(29), + [aux_sym_check_statement_token1] = ACTIONS(31), + [aux_sym_select_statement_obsolete_token1] = ACTIONS(33), + [aux_sym_read_table_statement_token1] = ACTIONS(35), + [aux_sym_try_catch_statement_token1] = ACTIONS(37), + [aux_sym_write_statement_token1] = ACTIONS(39), + [aux_sym_call_function_token1] = ACTIONS(41), + [aux_sym_call_function_token2] = ACTIONS(43), + [aux_sym_raise_exception_statement_token1] = ACTIONS(45), + [aux_sym_clear_statement_token1] = ACTIONS(47), + [aux_sym_append_statement_token1] = ACTIONS(49), + [aux_sym_include_statement_token1] = ACTIONS(51), [sym_eol_comment] = ACTIONS(3), + [sym_field_symbol_name] = ACTIONS(53), + [sym__whitespace] = ACTIONS(3), [sym_bol_comment] = ACTIONS(3), - [sym_field_symbol_name] = ACTIONS(55), }, [2] = { [sym__statement] = STATE(7), @@ -12612,8 +12497,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_attribute_access_static] = STATE(2960), [sym_assignment] = STATE(7), [sym_try_catch_statement] = STATE(7), - [sym_try_block] = STATE(1490), - [sym_catch_statement] = STATE(1498), + [sym_try_block] = STATE(1205), + [sym_catch_statement] = STATE(1206), [sym_write_statement] = STATE(7), [sym_chained_write_statement] = STATE(7), [sym_call_method] = STATE(7), @@ -12630,35 +12515,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_implementation] = STATE(7), [sym_raise_statement] = STATE(7), [aux_sym_program_repeat1] = STATE(7), - [aux_sym_try_catch_statement_repeat1] = STATE(1498), - [sym_name] = ACTIONS(57), - [aux_sym_class_declaration_token1] = ACTIONS(59), - [aux_sym__create_addition_token1] = ACTIONS(61), - [aux_sym_interface_declaration_token1] = ACTIONS(63), - [aux_sym_variable_declaration_token1] = ACTIONS(65), - [aux_sym_field_symbol_declaration_token1] = ACTIONS(67), - [aux_sym_loop_statement_token1] = ACTIONS(69), - [aux_sym_exit_statement_token1] = ACTIONS(71), - [aux_sym_continue_statement_token1] = ACTIONS(73), - [aux_sym_return_statement_token1] = ACTIONS(75), - [aux_sym_report_statement_token1] = ACTIONS(77), - [aux_sym_if_statement_token1] = ACTIONS(79), - [aux_sym_check_statement_token1] = ACTIONS(81), - [aux_sym_select_statement_obsolete_token1] = ACTIONS(83), - [aux_sym_read_table_statement_token1] = ACTIONS(85), - [aux_sym_try_catch_statement_token1] = ACTIONS(87), - [aux_sym_try_catch_statement_token2] = ACTIONS(89), - [aux_sym_catch_statement_token1] = ACTIONS(91), - [aux_sym_write_statement_token1] = ACTIONS(93), - [aux_sym_call_function_token1] = ACTIONS(95), - [aux_sym_call_function_token2] = ACTIONS(97), - [aux_sym_raise_exception_statement_token1] = ACTIONS(99), - [aux_sym_clear_statement_token1] = ACTIONS(101), - [aux_sym_append_statement_token1] = ACTIONS(103), - [aux_sym_include_statement_token1] = ACTIONS(105), + [aux_sym_try_catch_statement_repeat1] = STATE(1206), + [sym_name] = ACTIONS(55), + [aux_sym_class_declaration_token1] = ACTIONS(57), + [aux_sym__create_addition_token1] = ACTIONS(59), + [aux_sym_interface_declaration_token1] = ACTIONS(61), + [aux_sym_variable_declaration_token1] = ACTIONS(63), + [aux_sym_field_symbol_declaration_token1] = ACTIONS(65), + [aux_sym_loop_statement_token1] = ACTIONS(67), + [aux_sym_exit_statement_token1] = ACTIONS(69), + [aux_sym_continue_statement_token1] = ACTIONS(71), + [aux_sym_return_statement_token1] = ACTIONS(73), + [aux_sym_report_statement_token1] = ACTIONS(75), + [aux_sym_if_statement_token1] = ACTIONS(77), + [aux_sym_check_statement_token1] = ACTIONS(79), + [aux_sym_select_statement_obsolete_token1] = ACTIONS(81), + [aux_sym_read_table_statement_token1] = ACTIONS(83), + [aux_sym_try_catch_statement_token1] = ACTIONS(85), + [aux_sym_try_catch_statement_token2] = ACTIONS(87), + [aux_sym_catch_statement_token1] = ACTIONS(89), + [aux_sym_write_statement_token1] = ACTIONS(91), + [aux_sym_call_function_token1] = ACTIONS(93), + [aux_sym_call_function_token2] = ACTIONS(95), + [aux_sym_raise_exception_statement_token1] = ACTIONS(97), + [aux_sym_clear_statement_token1] = ACTIONS(99), + [aux_sym_append_statement_token1] = ACTIONS(101), + [aux_sym_include_statement_token1] = ACTIONS(103), [sym_eol_comment] = ACTIONS(3), + [sym_field_symbol_name] = ACTIONS(53), + [sym__whitespace] = ACTIONS(3), [sym_bol_comment] = ACTIONS(3), - [sym_field_symbol_name] = ACTIONS(55), }, [3] = { [sym__statement] = STATE(7), @@ -12689,8 +12575,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_attribute_access_static] = STATE(2960), [sym_assignment] = STATE(7), [sym_try_catch_statement] = STATE(7), - [sym_try_block] = STATE(1411), - [sym_catch_statement] = STATE(1413), + [sym_try_block] = STATE(1225), + [sym_catch_statement] = STATE(1224), [sym_write_statement] = STATE(7), [sym_chained_write_statement] = STATE(7), [sym_call_method] = STATE(7), @@ -12707,35 +12593,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_implementation] = STATE(7), [sym_raise_statement] = STATE(7), [aux_sym_program_repeat1] = STATE(7), - [aux_sym_try_catch_statement_repeat1] = STATE(1413), - [sym_name] = ACTIONS(57), - [aux_sym_class_declaration_token1] = ACTIONS(59), - [aux_sym__create_addition_token1] = ACTIONS(61), - [aux_sym_interface_declaration_token1] = ACTIONS(63), - [aux_sym_variable_declaration_token1] = ACTIONS(65), - [aux_sym_field_symbol_declaration_token1] = ACTIONS(67), - [aux_sym_loop_statement_token1] = ACTIONS(69), - [aux_sym_exit_statement_token1] = ACTIONS(71), - [aux_sym_continue_statement_token1] = ACTIONS(73), - [aux_sym_return_statement_token1] = ACTIONS(75), - [aux_sym_report_statement_token1] = ACTIONS(77), - [aux_sym_if_statement_token1] = ACTIONS(79), - [aux_sym_check_statement_token1] = ACTIONS(81), - [aux_sym_select_statement_obsolete_token1] = ACTIONS(83), - [aux_sym_read_table_statement_token1] = ACTIONS(85), - [aux_sym_try_catch_statement_token1] = ACTIONS(87), - [aux_sym_try_catch_statement_token2] = ACTIONS(107), - [aux_sym_catch_statement_token1] = ACTIONS(91), - [aux_sym_write_statement_token1] = ACTIONS(93), - [aux_sym_call_function_token1] = ACTIONS(95), - [aux_sym_call_function_token2] = ACTIONS(97), - [aux_sym_raise_exception_statement_token1] = ACTIONS(99), - [aux_sym_clear_statement_token1] = ACTIONS(101), - [aux_sym_append_statement_token1] = ACTIONS(103), - [aux_sym_include_statement_token1] = ACTIONS(105), + [aux_sym_try_catch_statement_repeat1] = STATE(1224), + [sym_name] = ACTIONS(55), + [aux_sym_class_declaration_token1] = ACTIONS(57), + [aux_sym__create_addition_token1] = ACTIONS(59), + [aux_sym_interface_declaration_token1] = ACTIONS(61), + [aux_sym_variable_declaration_token1] = ACTIONS(63), + [aux_sym_field_symbol_declaration_token1] = ACTIONS(65), + [aux_sym_loop_statement_token1] = ACTIONS(67), + [aux_sym_exit_statement_token1] = ACTIONS(69), + [aux_sym_continue_statement_token1] = ACTIONS(71), + [aux_sym_return_statement_token1] = ACTIONS(73), + [aux_sym_report_statement_token1] = ACTIONS(75), + [aux_sym_if_statement_token1] = ACTIONS(77), + [aux_sym_check_statement_token1] = ACTIONS(79), + [aux_sym_select_statement_obsolete_token1] = ACTIONS(81), + [aux_sym_read_table_statement_token1] = ACTIONS(83), + [aux_sym_try_catch_statement_token1] = ACTIONS(85), + [aux_sym_try_catch_statement_token2] = ACTIONS(105), + [aux_sym_catch_statement_token1] = ACTIONS(89), + [aux_sym_write_statement_token1] = ACTIONS(91), + [aux_sym_call_function_token1] = ACTIONS(93), + [aux_sym_call_function_token2] = ACTIONS(95), + [aux_sym_raise_exception_statement_token1] = ACTIONS(97), + [aux_sym_clear_statement_token1] = ACTIONS(99), + [aux_sym_append_statement_token1] = ACTIONS(101), + [aux_sym_include_statement_token1] = ACTIONS(103), [sym_eol_comment] = ACTIONS(3), + [sym_field_symbol_name] = ACTIONS(53), + [sym__whitespace] = ACTIONS(3), [sym_bol_comment] = ACTIONS(3), - [sym_field_symbol_name] = ACTIONS(55), }, [4] = { [sym__statement] = STATE(4), @@ -12782,36 +12669,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_implementation] = STATE(4), [sym_raise_statement] = STATE(4), [aux_sym_program_repeat1] = STATE(4), - [sym_name] = ACTIONS(109), - [aux_sym_class_declaration_token1] = ACTIONS(112), - [aux_sym__create_addition_token1] = ACTIONS(115), - [aux_sym_interface_declaration_token1] = ACTIONS(118), - [aux_sym_variable_declaration_token1] = ACTIONS(121), - [aux_sym_field_symbol_declaration_token1] = ACTIONS(124), - [aux_sym_loop_statement_token1] = ACTIONS(127), - [aux_sym_loop_statement_token6] = ACTIONS(130), - [aux_sym_exit_statement_token1] = ACTIONS(132), - [aux_sym_continue_statement_token1] = ACTIONS(135), - [aux_sym_return_statement_token1] = ACTIONS(138), - [aux_sym_report_statement_token1] = ACTIONS(141), - [aux_sym_if_statement_token1] = ACTIONS(144), - [aux_sym_if_statement_token2] = ACTIONS(130), - [aux_sym_check_statement_token1] = ACTIONS(147), - [aux_sym_select_statement_obsolete_token1] = ACTIONS(150), - [aux_sym_read_table_statement_token1] = ACTIONS(153), - [aux_sym_try_catch_statement_token1] = ACTIONS(156), - [aux_sym_try_catch_statement_token2] = ACTIONS(130), - [aux_sym_catch_statement_token1] = ACTIONS(130), - [aux_sym_write_statement_token1] = ACTIONS(159), - [aux_sym_call_function_token1] = ACTIONS(162), - [aux_sym_call_function_token2] = ACTIONS(165), - [aux_sym_raise_exception_statement_token1] = ACTIONS(168), - [aux_sym_clear_statement_token1] = ACTIONS(171), - [aux_sym_append_statement_token1] = ACTIONS(174), - [aux_sym_include_statement_token1] = ACTIONS(177), + [sym_name] = ACTIONS(107), + [aux_sym_class_declaration_token1] = ACTIONS(110), + [aux_sym__create_addition_token1] = ACTIONS(113), + [aux_sym_interface_declaration_token1] = ACTIONS(116), + [aux_sym_variable_declaration_token1] = ACTIONS(119), + [aux_sym_field_symbol_declaration_token1] = ACTIONS(122), + [aux_sym_loop_statement_token1] = ACTIONS(125), + [aux_sym_loop_statement_token6] = ACTIONS(128), + [aux_sym_exit_statement_token1] = ACTIONS(130), + [aux_sym_continue_statement_token1] = ACTIONS(133), + [aux_sym_return_statement_token1] = ACTIONS(136), + [aux_sym_report_statement_token1] = ACTIONS(139), + [aux_sym_if_statement_token1] = ACTIONS(142), + [aux_sym_if_statement_token2] = ACTIONS(128), + [aux_sym_check_statement_token1] = ACTIONS(145), + [aux_sym_select_statement_obsolete_token1] = ACTIONS(148), + [aux_sym_read_table_statement_token1] = ACTIONS(151), + [aux_sym_try_catch_statement_token1] = ACTIONS(154), + [aux_sym_try_catch_statement_token2] = ACTIONS(128), + [aux_sym_catch_statement_token1] = ACTIONS(128), + [aux_sym_write_statement_token1] = ACTIONS(157), + [aux_sym_call_function_token1] = ACTIONS(160), + [aux_sym_call_function_token2] = ACTIONS(163), + [aux_sym_raise_exception_statement_token1] = ACTIONS(166), + [aux_sym_clear_statement_token1] = ACTIONS(169), + [aux_sym_append_statement_token1] = ACTIONS(172), + [aux_sym_include_statement_token1] = ACTIONS(175), [sym_eol_comment] = ACTIONS(3), + [sym_field_symbol_name] = ACTIONS(178), + [sym__whitespace] = ACTIONS(3), [sym_bol_comment] = ACTIONS(3), - [sym_field_symbol_name] = ACTIONS(180), }, [5] = { [sym__statement] = STATE(8), @@ -12842,7 +12730,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_attribute_access_static] = STATE(2960), [sym_assignment] = STATE(8), [sym_try_catch_statement] = STATE(8), - [sym_catch_block] = STATE(1926), + [sym_catch_block] = STATE(1940), [sym_write_statement] = STATE(8), [sym_chained_write_statement] = STATE(8), [sym_call_method] = STATE(8), @@ -12859,34 +12747,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_implementation] = STATE(8), [sym_raise_statement] = STATE(8), [aux_sym_program_repeat1] = STATE(8), - [sym_name] = ACTIONS(57), - [aux_sym_class_declaration_token1] = ACTIONS(59), - [aux_sym__create_addition_token1] = ACTIONS(61), - [aux_sym_interface_declaration_token1] = ACTIONS(63), - [aux_sym_variable_declaration_token1] = ACTIONS(65), - [aux_sym_field_symbol_declaration_token1] = ACTIONS(67), - [aux_sym_loop_statement_token1] = ACTIONS(69), - [aux_sym_exit_statement_token1] = ACTIONS(71), - [aux_sym_continue_statement_token1] = ACTIONS(73), - [aux_sym_return_statement_token1] = ACTIONS(75), - [aux_sym_report_statement_token1] = ACTIONS(77), - [aux_sym_if_statement_token1] = ACTIONS(79), - [aux_sym_check_statement_token1] = ACTIONS(81), - [aux_sym_select_statement_obsolete_token1] = ACTIONS(83), - [aux_sym_read_table_statement_token1] = ACTIONS(85), - [aux_sym_try_catch_statement_token1] = ACTIONS(87), - [aux_sym_try_catch_statement_token2] = ACTIONS(183), - [aux_sym_catch_statement_token1] = ACTIONS(183), - [aux_sym_write_statement_token1] = ACTIONS(93), - [aux_sym_call_function_token1] = ACTIONS(95), - [aux_sym_call_function_token2] = ACTIONS(97), - [aux_sym_raise_exception_statement_token1] = ACTIONS(99), - [aux_sym_clear_statement_token1] = ACTIONS(101), - [aux_sym_append_statement_token1] = ACTIONS(103), - [aux_sym_include_statement_token1] = ACTIONS(105), + [sym_name] = ACTIONS(55), + [aux_sym_class_declaration_token1] = ACTIONS(57), + [aux_sym__create_addition_token1] = ACTIONS(59), + [aux_sym_interface_declaration_token1] = ACTIONS(61), + [aux_sym_variable_declaration_token1] = ACTIONS(63), + [aux_sym_field_symbol_declaration_token1] = ACTIONS(65), + [aux_sym_loop_statement_token1] = ACTIONS(67), + [aux_sym_exit_statement_token1] = ACTIONS(69), + [aux_sym_continue_statement_token1] = ACTIONS(71), + [aux_sym_return_statement_token1] = ACTIONS(73), + [aux_sym_report_statement_token1] = ACTIONS(75), + [aux_sym_if_statement_token1] = ACTIONS(77), + [aux_sym_check_statement_token1] = ACTIONS(79), + [aux_sym_select_statement_obsolete_token1] = ACTIONS(81), + [aux_sym_read_table_statement_token1] = ACTIONS(83), + [aux_sym_try_catch_statement_token1] = ACTIONS(85), + [aux_sym_try_catch_statement_token2] = ACTIONS(181), + [aux_sym_catch_statement_token1] = ACTIONS(181), + [aux_sym_write_statement_token1] = ACTIONS(91), + [aux_sym_call_function_token1] = ACTIONS(93), + [aux_sym_call_function_token2] = ACTIONS(95), + [aux_sym_raise_exception_statement_token1] = ACTIONS(97), + [aux_sym_clear_statement_token1] = ACTIONS(99), + [aux_sym_append_statement_token1] = ACTIONS(101), + [aux_sym_include_statement_token1] = ACTIONS(103), [sym_eol_comment] = ACTIONS(3), + [sym_field_symbol_name] = ACTIONS(53), + [sym__whitespace] = ACTIONS(3), [sym_bol_comment] = ACTIONS(3), - [sym_field_symbol_name] = ACTIONS(55), }, [6] = { [sym__statement] = STATE(8), @@ -12917,7 +12806,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_attribute_access_static] = STATE(2960), [sym_assignment] = STATE(8), [sym_try_catch_statement] = STATE(8), - [sym_catch_block] = STATE(2016), + [sym_catch_block] = STATE(2018), [sym_write_statement] = STATE(8), [sym_chained_write_statement] = STATE(8), [sym_call_method] = STATE(8), @@ -12934,34 +12823,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_implementation] = STATE(8), [sym_raise_statement] = STATE(8), [aux_sym_program_repeat1] = STATE(8), - [sym_name] = ACTIONS(57), - [aux_sym_class_declaration_token1] = ACTIONS(59), - [aux_sym__create_addition_token1] = ACTIONS(61), - [aux_sym_interface_declaration_token1] = ACTIONS(63), - [aux_sym_variable_declaration_token1] = ACTIONS(65), - [aux_sym_field_symbol_declaration_token1] = ACTIONS(67), - [aux_sym_loop_statement_token1] = ACTIONS(69), - [aux_sym_exit_statement_token1] = ACTIONS(71), - [aux_sym_continue_statement_token1] = ACTIONS(73), - [aux_sym_return_statement_token1] = ACTIONS(75), - [aux_sym_report_statement_token1] = ACTIONS(77), - [aux_sym_if_statement_token1] = ACTIONS(79), - [aux_sym_check_statement_token1] = ACTIONS(81), - [aux_sym_select_statement_obsolete_token1] = ACTIONS(83), - [aux_sym_read_table_statement_token1] = ACTIONS(85), - [aux_sym_try_catch_statement_token1] = ACTIONS(87), - [aux_sym_try_catch_statement_token2] = ACTIONS(185), - [aux_sym_catch_statement_token1] = ACTIONS(185), - [aux_sym_write_statement_token1] = ACTIONS(93), - [aux_sym_call_function_token1] = ACTIONS(95), - [aux_sym_call_function_token2] = ACTIONS(97), - [aux_sym_raise_exception_statement_token1] = ACTIONS(99), - [aux_sym_clear_statement_token1] = ACTIONS(101), - [aux_sym_append_statement_token1] = ACTIONS(103), - [aux_sym_include_statement_token1] = ACTIONS(105), + [sym_name] = ACTIONS(55), + [aux_sym_class_declaration_token1] = ACTIONS(57), + [aux_sym__create_addition_token1] = ACTIONS(59), + [aux_sym_interface_declaration_token1] = ACTIONS(61), + [aux_sym_variable_declaration_token1] = ACTIONS(63), + [aux_sym_field_symbol_declaration_token1] = ACTIONS(65), + [aux_sym_loop_statement_token1] = ACTIONS(67), + [aux_sym_exit_statement_token1] = ACTIONS(69), + [aux_sym_continue_statement_token1] = ACTIONS(71), + [aux_sym_return_statement_token1] = ACTIONS(73), + [aux_sym_report_statement_token1] = ACTIONS(75), + [aux_sym_if_statement_token1] = ACTIONS(77), + [aux_sym_check_statement_token1] = ACTIONS(79), + [aux_sym_select_statement_obsolete_token1] = ACTIONS(81), + [aux_sym_read_table_statement_token1] = ACTIONS(83), + [aux_sym_try_catch_statement_token1] = ACTIONS(85), + [aux_sym_try_catch_statement_token2] = ACTIONS(183), + [aux_sym_catch_statement_token1] = ACTIONS(183), + [aux_sym_write_statement_token1] = ACTIONS(91), + [aux_sym_call_function_token1] = ACTIONS(93), + [aux_sym_call_function_token2] = ACTIONS(95), + [aux_sym_raise_exception_statement_token1] = ACTIONS(97), + [aux_sym_clear_statement_token1] = ACTIONS(99), + [aux_sym_append_statement_token1] = ACTIONS(101), + [aux_sym_include_statement_token1] = ACTIONS(103), [sym_eol_comment] = ACTIONS(3), + [sym_field_symbol_name] = ACTIONS(53), + [sym__whitespace] = ACTIONS(3), [sym_bol_comment] = ACTIONS(3), - [sym_field_symbol_name] = ACTIONS(55), }, [7] = { [sym__statement] = STATE(4), @@ -13008,34 +12898,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_implementation] = STATE(4), [sym_raise_statement] = STATE(4), [aux_sym_program_repeat1] = STATE(4), - [sym_name] = ACTIONS(57), - [aux_sym_class_declaration_token1] = ACTIONS(59), - [aux_sym__create_addition_token1] = ACTIONS(61), - [aux_sym_interface_declaration_token1] = ACTIONS(63), - [aux_sym_variable_declaration_token1] = ACTIONS(65), - [aux_sym_field_symbol_declaration_token1] = ACTIONS(67), - [aux_sym_loop_statement_token1] = ACTIONS(69), - [aux_sym_exit_statement_token1] = ACTIONS(71), - [aux_sym_continue_statement_token1] = ACTIONS(73), - [aux_sym_return_statement_token1] = ACTIONS(75), - [aux_sym_report_statement_token1] = ACTIONS(77), - [aux_sym_if_statement_token1] = ACTIONS(79), - [aux_sym_check_statement_token1] = ACTIONS(81), - [aux_sym_select_statement_obsolete_token1] = ACTIONS(83), - [aux_sym_read_table_statement_token1] = ACTIONS(85), - [aux_sym_try_catch_statement_token1] = ACTIONS(87), - [aux_sym_try_catch_statement_token2] = ACTIONS(187), - [aux_sym_catch_statement_token1] = ACTIONS(187), - [aux_sym_write_statement_token1] = ACTIONS(93), - [aux_sym_call_function_token1] = ACTIONS(95), - [aux_sym_call_function_token2] = ACTIONS(97), - [aux_sym_raise_exception_statement_token1] = ACTIONS(99), - [aux_sym_clear_statement_token1] = ACTIONS(101), - [aux_sym_append_statement_token1] = ACTIONS(103), - [aux_sym_include_statement_token1] = ACTIONS(105), + [sym_name] = ACTIONS(55), + [aux_sym_class_declaration_token1] = ACTIONS(57), + [aux_sym__create_addition_token1] = ACTIONS(59), + [aux_sym_interface_declaration_token1] = ACTIONS(61), + [aux_sym_variable_declaration_token1] = ACTIONS(63), + [aux_sym_field_symbol_declaration_token1] = ACTIONS(65), + [aux_sym_loop_statement_token1] = ACTIONS(67), + [aux_sym_exit_statement_token1] = ACTIONS(69), + [aux_sym_continue_statement_token1] = ACTIONS(71), + [aux_sym_return_statement_token1] = ACTIONS(73), + [aux_sym_report_statement_token1] = ACTIONS(75), + [aux_sym_if_statement_token1] = ACTIONS(77), + [aux_sym_check_statement_token1] = ACTIONS(79), + [aux_sym_select_statement_obsolete_token1] = ACTIONS(81), + [aux_sym_read_table_statement_token1] = ACTIONS(83), + [aux_sym_try_catch_statement_token1] = ACTIONS(85), + [aux_sym_try_catch_statement_token2] = ACTIONS(185), + [aux_sym_catch_statement_token1] = ACTIONS(185), + [aux_sym_write_statement_token1] = ACTIONS(91), + [aux_sym_call_function_token1] = ACTIONS(93), + [aux_sym_call_function_token2] = ACTIONS(95), + [aux_sym_raise_exception_statement_token1] = ACTIONS(97), + [aux_sym_clear_statement_token1] = ACTIONS(99), + [aux_sym_append_statement_token1] = ACTIONS(101), + [aux_sym_include_statement_token1] = ACTIONS(103), [sym_eol_comment] = ACTIONS(3), + [sym_field_symbol_name] = ACTIONS(53), + [sym__whitespace] = ACTIONS(3), [sym_bol_comment] = ACTIONS(3), - [sym_field_symbol_name] = ACTIONS(55), }, [8] = { [sym__statement] = STATE(4), @@ -13082,36 +12973,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_implementation] = STATE(4), [sym_raise_statement] = STATE(4), [aux_sym_program_repeat1] = STATE(4), - [sym_name] = ACTIONS(57), - [aux_sym_class_declaration_token1] = ACTIONS(59), - [aux_sym__create_addition_token1] = ACTIONS(61), - [aux_sym_interface_declaration_token1] = ACTIONS(63), - [aux_sym_variable_declaration_token1] = ACTIONS(65), - [aux_sym_field_symbol_declaration_token1] = ACTIONS(67), - [aux_sym_loop_statement_token1] = ACTIONS(69), - [aux_sym_exit_statement_token1] = ACTIONS(71), - [aux_sym_continue_statement_token1] = ACTIONS(73), - [aux_sym_return_statement_token1] = ACTIONS(75), - [aux_sym_report_statement_token1] = ACTIONS(77), - [aux_sym_if_statement_token1] = ACTIONS(79), - [aux_sym_check_statement_token1] = ACTIONS(81), - [aux_sym_select_statement_obsolete_token1] = ACTIONS(83), - [aux_sym_read_table_statement_token1] = ACTIONS(85), - [aux_sym_try_catch_statement_token1] = ACTIONS(87), - [aux_sym_try_catch_statement_token2] = ACTIONS(189), - [aux_sym_catch_statement_token1] = ACTIONS(189), - [aux_sym_write_statement_token1] = ACTIONS(93), - [aux_sym_call_function_token1] = ACTIONS(95), - [aux_sym_call_function_token2] = ACTIONS(97), - [aux_sym_raise_exception_statement_token1] = ACTIONS(99), - [aux_sym_clear_statement_token1] = ACTIONS(101), - [aux_sym_append_statement_token1] = ACTIONS(103), - [aux_sym_include_statement_token1] = ACTIONS(105), + [sym_name] = ACTIONS(55), + [aux_sym_class_declaration_token1] = ACTIONS(57), + [aux_sym__create_addition_token1] = ACTIONS(59), + [aux_sym_interface_declaration_token1] = ACTIONS(61), + [aux_sym_variable_declaration_token1] = ACTIONS(63), + [aux_sym_field_symbol_declaration_token1] = ACTIONS(65), + [aux_sym_loop_statement_token1] = ACTIONS(67), + [aux_sym_exit_statement_token1] = ACTIONS(69), + [aux_sym_continue_statement_token1] = ACTIONS(71), + [aux_sym_return_statement_token1] = ACTIONS(73), + [aux_sym_report_statement_token1] = ACTIONS(75), + [aux_sym_if_statement_token1] = ACTIONS(77), + [aux_sym_check_statement_token1] = ACTIONS(79), + [aux_sym_select_statement_obsolete_token1] = ACTIONS(81), + [aux_sym_read_table_statement_token1] = ACTIONS(83), + [aux_sym_try_catch_statement_token1] = ACTIONS(85), + [aux_sym_try_catch_statement_token2] = ACTIONS(187), + [aux_sym_catch_statement_token1] = ACTIONS(187), + [aux_sym_write_statement_token1] = ACTIONS(91), + [aux_sym_call_function_token1] = ACTIONS(93), + [aux_sym_call_function_token2] = ACTIONS(95), + [aux_sym_raise_exception_statement_token1] = ACTIONS(97), + [aux_sym_clear_statement_token1] = ACTIONS(99), + [aux_sym_append_statement_token1] = ACTIONS(101), + [aux_sym_include_statement_token1] = ACTIONS(103), [sym_eol_comment] = ACTIONS(3), + [sym_field_symbol_name] = ACTIONS(53), + [sym__whitespace] = ACTIONS(3), [sym_bol_comment] = ACTIONS(3), - [sym_field_symbol_name] = ACTIONS(55), }, [9] = { + [sym__statement] = STATE(19), + [sym__implementation_statement] = STATE(19), + [sym_class_declaration] = STATE(19), + [sym_class_implementation] = STATE(19), + [sym_class_publication] = STATE(19), + [sym_class_local_friend_publication] = STATE(19), + [sym_interface_declaration] = STATE(19), + [sym_variable_declaration] = STATE(19), + [sym_chained_variable_declaration] = STATE(19), + [sym_chained_structure_declaration] = STATE(19), + [sym_field_symbol_declaration] = STATE(19), + [sym_chained_field_symbol_declaration] = STATE(19), + [sym_loop_statement] = STATE(19), + [sym_exit_statement] = STATE(19), + [sym_continue_statement] = STATE(19), + [sym_return_statement] = STATE(19), + [sym_report_statement] = STATE(19), + [sym_if_statement] = STATE(19), + [sym_check_statement] = STATE(19), + [sym__writeable_expression] = STATE(2960), + [sym_table_expression] = STATE(2960), + [sym_select_statement_obsolete] = STATE(19), + [sym_read_table_statement] = STATE(19), + [sym__data_object] = STATE(2960), + [sym_structured_data_object] = STATE(2960), + [sym_attribute_access_static] = STATE(2960), + [sym_assignment] = STATE(19), + [sym_try_catch_statement] = STATE(19), + [sym_write_statement] = STATE(19), + [sym_chained_write_statement] = STATE(19), + [sym_call_method] = STATE(19), + [sym_call_method_static] = STATE(19), + [sym_call_method_instance] = STATE(19), + [sym_call_function] = STATE(19), + [sym_raise_exception_statement] = STATE(19), + [sym_clear_statement] = STATE(19), + [sym_append_statement] = STATE(19), + [sym_append_statement_obsolete] = STATE(19), + [sym_create_object_statement] = STATE(19), + [sym_include_statement] = STATE(19), + [sym_macro_include] = STATE(19), + [sym_function_implementation] = STATE(19), + [sym_raise_statement] = STATE(19), + [aux_sym_program_repeat1] = STATE(19), + [sym_name] = ACTIONS(55), + [aux_sym_class_declaration_token1] = ACTIONS(57), + [aux_sym__create_addition_token1] = ACTIONS(59), + [aux_sym_interface_declaration_token1] = ACTIONS(61), + [aux_sym_variable_declaration_token1] = ACTIONS(63), + [aux_sym_field_symbol_declaration_token1] = ACTIONS(65), + [aux_sym_loop_statement_token1] = ACTIONS(67), + [aux_sym_loop_statement_token6] = ACTIONS(189), + [aux_sym_exit_statement_token1] = ACTIONS(69), + [aux_sym_continue_statement_token1] = ACTIONS(71), + [aux_sym_return_statement_token1] = ACTIONS(73), + [aux_sym_report_statement_token1] = ACTIONS(75), + [aux_sym_if_statement_token1] = ACTIONS(77), + [aux_sym_check_statement_token1] = ACTIONS(79), + [aux_sym_select_statement_obsolete_token1] = ACTIONS(81), + [aux_sym_read_table_statement_token1] = ACTIONS(83), + [aux_sym_try_catch_statement_token1] = ACTIONS(85), + [aux_sym_write_statement_token1] = ACTIONS(91), + [aux_sym_call_function_token1] = ACTIONS(93), + [aux_sym_call_function_token2] = ACTIONS(95), + [aux_sym_raise_exception_statement_token1] = ACTIONS(97), + [aux_sym_clear_statement_token1] = ACTIONS(99), + [aux_sym_append_statement_token1] = ACTIONS(101), + [aux_sym_include_statement_token1] = ACTIONS(103), + [sym_eol_comment] = ACTIONS(3), + [sym_field_symbol_name] = ACTIONS(53), + [sym__whitespace] = ACTIONS(3), + [sym_bol_comment] = ACTIONS(3), + }, + [10] = { [sym__statement] = STATE(4), [sym__implementation_statement] = STATE(4), [sym_class_declaration] = STATE(4), @@ -13156,179 +13122,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_implementation] = STATE(4), [sym_raise_statement] = STATE(4), [aux_sym_program_repeat1] = STATE(4), - [sym_name] = ACTIONS(57), - [aux_sym_class_declaration_token1] = ACTIONS(59), - [aux_sym__create_addition_token1] = ACTIONS(61), - [aux_sym_interface_declaration_token1] = ACTIONS(63), - [aux_sym_variable_declaration_token1] = ACTIONS(65), - [aux_sym_field_symbol_declaration_token1] = ACTIONS(67), - [aux_sym_loop_statement_token1] = ACTIONS(69), + [sym_name] = ACTIONS(55), + [aux_sym_class_declaration_token1] = ACTIONS(57), + [aux_sym__create_addition_token1] = ACTIONS(59), + [aux_sym_interface_declaration_token1] = ACTIONS(61), + [aux_sym_variable_declaration_token1] = ACTIONS(63), + [aux_sym_field_symbol_declaration_token1] = ACTIONS(65), + [aux_sym_loop_statement_token1] = ACTIONS(67), [aux_sym_loop_statement_token6] = ACTIONS(191), - [aux_sym_exit_statement_token1] = ACTIONS(71), - [aux_sym_continue_statement_token1] = ACTIONS(73), - [aux_sym_return_statement_token1] = ACTIONS(75), - [aux_sym_report_statement_token1] = ACTIONS(77), - [aux_sym_if_statement_token1] = ACTIONS(79), - [aux_sym_check_statement_token1] = ACTIONS(81), - [aux_sym_select_statement_obsolete_token1] = ACTIONS(83), - [aux_sym_read_table_statement_token1] = ACTIONS(85), - [aux_sym_try_catch_statement_token1] = ACTIONS(87), - [aux_sym_write_statement_token1] = ACTIONS(93), - [aux_sym_call_function_token1] = ACTIONS(95), - [aux_sym_call_function_token2] = ACTIONS(97), - [aux_sym_raise_exception_statement_token1] = ACTIONS(99), - [aux_sym_clear_statement_token1] = ACTIONS(101), - [aux_sym_append_statement_token1] = ACTIONS(103), - [aux_sym_include_statement_token1] = ACTIONS(105), - [sym_eol_comment] = ACTIONS(3), - [sym_bol_comment] = ACTIONS(3), - [sym_field_symbol_name] = ACTIONS(55), - }, - [10] = { - [sym__statement] = STATE(22), - [sym__implementation_statement] = STATE(22), - [sym_class_declaration] = STATE(22), - [sym_class_implementation] = STATE(22), - [sym_class_publication] = STATE(22), - [sym_class_local_friend_publication] = STATE(22), - [sym_interface_declaration] = STATE(22), - [sym_variable_declaration] = STATE(22), - [sym_chained_variable_declaration] = STATE(22), - [sym_chained_structure_declaration] = STATE(22), - [sym_field_symbol_declaration] = STATE(22), - [sym_chained_field_symbol_declaration] = STATE(22), - [sym_loop_statement] = STATE(22), - [sym_exit_statement] = STATE(22), - [sym_continue_statement] = STATE(22), - [sym_return_statement] = STATE(22), - [sym_report_statement] = STATE(22), - [sym_if_statement] = STATE(22), - [sym_check_statement] = STATE(22), - [sym__writeable_expression] = STATE(2960), - [sym_table_expression] = STATE(2960), - [sym_select_statement_obsolete] = STATE(22), - [sym_read_table_statement] = STATE(22), - [sym__data_object] = STATE(2960), - [sym_structured_data_object] = STATE(2960), - [sym_attribute_access_static] = STATE(2960), - [sym_assignment] = STATE(22), - [sym_try_catch_statement] = STATE(22), - [sym_write_statement] = STATE(22), - [sym_chained_write_statement] = STATE(22), - [sym_call_method] = STATE(22), - [sym_call_method_static] = STATE(22), - [sym_call_method_instance] = STATE(22), - [sym_call_function] = STATE(22), - [sym_raise_exception_statement] = STATE(22), - [sym_clear_statement] = STATE(22), - [sym_append_statement] = STATE(22), - [sym_append_statement_obsolete] = STATE(22), - [sym_create_object_statement] = STATE(22), - [sym_include_statement] = STATE(22), - [sym_macro_include] = STATE(22), - [sym_function_implementation] = STATE(22), - [sym_raise_statement] = STATE(22), - [aux_sym_program_repeat1] = STATE(22), - [sym_name] = ACTIONS(57), - [aux_sym_class_declaration_token1] = ACTIONS(59), - [aux_sym__create_addition_token1] = ACTIONS(61), - [aux_sym_interface_declaration_token1] = ACTIONS(63), - [aux_sym_variable_declaration_token1] = ACTIONS(65), - [aux_sym_field_symbol_declaration_token1] = ACTIONS(67), - [aux_sym_loop_statement_token1] = ACTIONS(69), - [aux_sym_exit_statement_token1] = ACTIONS(71), - [aux_sym_continue_statement_token1] = ACTIONS(73), - [aux_sym_return_statement_token1] = ACTIONS(75), - [aux_sym_report_statement_token1] = ACTIONS(77), - [aux_sym_if_statement_token1] = ACTIONS(79), - [aux_sym_if_statement_token2] = ACTIONS(193), - [aux_sym_check_statement_token1] = ACTIONS(81), - [aux_sym_select_statement_obsolete_token1] = ACTIONS(83), - [aux_sym_read_table_statement_token1] = ACTIONS(85), - [aux_sym_try_catch_statement_token1] = ACTIONS(87), - [aux_sym_write_statement_token1] = ACTIONS(93), - [aux_sym_call_function_token1] = ACTIONS(95), - [aux_sym_call_function_token2] = ACTIONS(97), - [aux_sym_raise_exception_statement_token1] = ACTIONS(99), - [aux_sym_clear_statement_token1] = ACTIONS(101), - [aux_sym_append_statement_token1] = ACTIONS(103), - [aux_sym_include_statement_token1] = ACTIONS(105), + [aux_sym_exit_statement_token1] = ACTIONS(69), + [aux_sym_continue_statement_token1] = ACTIONS(71), + [aux_sym_return_statement_token1] = ACTIONS(73), + [aux_sym_report_statement_token1] = ACTIONS(75), + [aux_sym_if_statement_token1] = ACTIONS(77), + [aux_sym_check_statement_token1] = ACTIONS(79), + [aux_sym_select_statement_obsolete_token1] = ACTIONS(81), + [aux_sym_read_table_statement_token1] = ACTIONS(83), + [aux_sym_try_catch_statement_token1] = ACTIONS(85), + [aux_sym_write_statement_token1] = ACTIONS(91), + [aux_sym_call_function_token1] = ACTIONS(93), + [aux_sym_call_function_token2] = ACTIONS(95), + [aux_sym_raise_exception_statement_token1] = ACTIONS(97), + [aux_sym_clear_statement_token1] = ACTIONS(99), + [aux_sym_append_statement_token1] = ACTIONS(101), + [aux_sym_include_statement_token1] = ACTIONS(103), [sym_eol_comment] = ACTIONS(3), + [sym_field_symbol_name] = ACTIONS(53), + [sym__whitespace] = ACTIONS(3), [sym_bol_comment] = ACTIONS(3), - [sym_field_symbol_name] = ACTIONS(55), }, [11] = { - [sym__statement] = STATE(18), - [sym__implementation_statement] = STATE(18), - [sym_class_declaration] = STATE(18), - [sym_class_implementation] = STATE(18), - [sym_class_publication] = STATE(18), - [sym_class_local_friend_publication] = STATE(18), - [sym_interface_declaration] = STATE(18), - [sym_variable_declaration] = STATE(18), - [sym_chained_variable_declaration] = STATE(18), - [sym_chained_structure_declaration] = STATE(18), - [sym_field_symbol_declaration] = STATE(18), - [sym_chained_field_symbol_declaration] = STATE(18), - [sym_loop_statement] = STATE(18), - [sym_exit_statement] = STATE(18), - [sym_continue_statement] = STATE(18), - [sym_return_statement] = STATE(18), - [sym_report_statement] = STATE(18), - [sym_if_statement] = STATE(18), - [sym_check_statement] = STATE(18), + [sym__statement] = STATE(29), + [sym__implementation_statement] = STATE(29), + [sym_class_declaration] = STATE(29), + [sym_class_implementation] = STATE(29), + [sym_class_publication] = STATE(29), + [sym_class_local_friend_publication] = STATE(29), + [sym_interface_declaration] = STATE(29), + [sym_variable_declaration] = STATE(29), + [sym_chained_variable_declaration] = STATE(29), + [sym_chained_structure_declaration] = STATE(29), + [sym_field_symbol_declaration] = STATE(29), + [sym_chained_field_symbol_declaration] = STATE(29), + [sym_loop_statement] = STATE(29), + [sym_exit_statement] = STATE(29), + [sym_continue_statement] = STATE(29), + [sym_return_statement] = STATE(29), + [sym_report_statement] = STATE(29), + [sym_if_statement] = STATE(29), + [sym_check_statement] = STATE(29), [sym__writeable_expression] = STATE(2960), [sym_table_expression] = STATE(2960), - [sym_select_statement_obsolete] = STATE(18), - [sym_read_table_statement] = STATE(18), + [sym_select_statement_obsolete] = STATE(29), + [sym_read_table_statement] = STATE(29), [sym__data_object] = STATE(2960), [sym_structured_data_object] = STATE(2960), [sym_attribute_access_static] = STATE(2960), - [sym_assignment] = STATE(18), - [sym_try_catch_statement] = STATE(18), - [sym_write_statement] = STATE(18), - [sym_chained_write_statement] = STATE(18), - [sym_call_method] = STATE(18), - [sym_call_method_static] = STATE(18), - [sym_call_method_instance] = STATE(18), - [sym_call_function] = STATE(18), - [sym_raise_exception_statement] = STATE(18), - [sym_clear_statement] = STATE(18), - [sym_append_statement] = STATE(18), - [sym_append_statement_obsolete] = STATE(18), - [sym_create_object_statement] = STATE(18), - [sym_include_statement] = STATE(18), - [sym_macro_include] = STATE(18), - [sym_function_implementation] = STATE(18), - [sym_raise_statement] = STATE(18), - [aux_sym_program_repeat1] = STATE(18), - [sym_name] = ACTIONS(57), - [aux_sym_class_declaration_token1] = ACTIONS(59), - [aux_sym__create_addition_token1] = ACTIONS(61), - [aux_sym_interface_declaration_token1] = ACTIONS(63), - [aux_sym_variable_declaration_token1] = ACTIONS(65), - [aux_sym_field_symbol_declaration_token1] = ACTIONS(67), - [aux_sym_loop_statement_token1] = ACTIONS(69), - [aux_sym_loop_statement_token6] = ACTIONS(195), - [aux_sym_exit_statement_token1] = ACTIONS(71), - [aux_sym_continue_statement_token1] = ACTIONS(73), - [aux_sym_return_statement_token1] = ACTIONS(75), - [aux_sym_report_statement_token1] = ACTIONS(77), - [aux_sym_if_statement_token1] = ACTIONS(79), - [aux_sym_check_statement_token1] = ACTIONS(81), - [aux_sym_select_statement_obsolete_token1] = ACTIONS(83), - [aux_sym_read_table_statement_token1] = ACTIONS(85), - [aux_sym_try_catch_statement_token1] = ACTIONS(87), - [aux_sym_write_statement_token1] = ACTIONS(93), - [aux_sym_call_function_token1] = ACTIONS(95), - [aux_sym_call_function_token2] = ACTIONS(97), - [aux_sym_raise_exception_statement_token1] = ACTIONS(99), - [aux_sym_clear_statement_token1] = ACTIONS(101), - [aux_sym_append_statement_token1] = ACTIONS(103), - [aux_sym_include_statement_token1] = ACTIONS(105), + [sym_assignment] = STATE(29), + [sym_try_catch_statement] = STATE(29), + [sym_write_statement] = STATE(29), + [sym_chained_write_statement] = STATE(29), + [sym_call_method] = STATE(29), + [sym_call_method_static] = STATE(29), + [sym_call_method_instance] = STATE(29), + [sym_call_function] = STATE(29), + [sym_raise_exception_statement] = STATE(29), + [sym_clear_statement] = STATE(29), + [sym_append_statement] = STATE(29), + [sym_append_statement_obsolete] = STATE(29), + [sym_create_object_statement] = STATE(29), + [sym_include_statement] = STATE(29), + [sym_macro_include] = STATE(29), + [sym_function_implementation] = STATE(29), + [sym_raise_statement] = STATE(29), + [aux_sym_program_repeat1] = STATE(29), + [sym_name] = ACTIONS(55), + [aux_sym_class_declaration_token1] = ACTIONS(57), + [aux_sym__create_addition_token1] = ACTIONS(59), + [aux_sym_interface_declaration_token1] = ACTIONS(61), + [aux_sym_variable_declaration_token1] = ACTIONS(63), + [aux_sym_field_symbol_declaration_token1] = ACTIONS(65), + [aux_sym_loop_statement_token1] = ACTIONS(67), + [aux_sym_loop_statement_token6] = ACTIONS(193), + [aux_sym_exit_statement_token1] = ACTIONS(69), + [aux_sym_continue_statement_token1] = ACTIONS(71), + [aux_sym_return_statement_token1] = ACTIONS(73), + [aux_sym_report_statement_token1] = ACTIONS(75), + [aux_sym_if_statement_token1] = ACTIONS(77), + [aux_sym_check_statement_token1] = ACTIONS(79), + [aux_sym_select_statement_obsolete_token1] = ACTIONS(81), + [aux_sym_read_table_statement_token1] = ACTIONS(83), + [aux_sym_try_catch_statement_token1] = ACTIONS(85), + [aux_sym_write_statement_token1] = ACTIONS(91), + [aux_sym_call_function_token1] = ACTIONS(93), + [aux_sym_call_function_token2] = ACTIONS(95), + [aux_sym_raise_exception_statement_token1] = ACTIONS(97), + [aux_sym_clear_statement_token1] = ACTIONS(99), + [aux_sym_append_statement_token1] = ACTIONS(101), + [aux_sym_include_statement_token1] = ACTIONS(103), [sym_eol_comment] = ACTIONS(3), + [sym_field_symbol_name] = ACTIONS(53), + [sym__whitespace] = ACTIONS(3), [sym_bol_comment] = ACTIONS(3), - [sym_field_symbol_name] = ACTIONS(55), }, [12] = { [sym__statement] = STATE(4), @@ -13375,106 +13270,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_implementation] = STATE(4), [sym_raise_statement] = STATE(4), [aux_sym_program_repeat1] = STATE(4), - [sym_name] = ACTIONS(57), - [aux_sym_class_declaration_token1] = ACTIONS(59), - [aux_sym__create_addition_token1] = ACTIONS(61), - [aux_sym_interface_declaration_token1] = ACTIONS(63), - [aux_sym_variable_declaration_token1] = ACTIONS(65), - [aux_sym_field_symbol_declaration_token1] = ACTIONS(67), - [aux_sym_loop_statement_token1] = ACTIONS(69), - [aux_sym_loop_statement_token6] = ACTIONS(197), - [aux_sym_exit_statement_token1] = ACTIONS(71), - [aux_sym_continue_statement_token1] = ACTIONS(73), - [aux_sym_return_statement_token1] = ACTIONS(75), - [aux_sym_report_statement_token1] = ACTIONS(77), - [aux_sym_if_statement_token1] = ACTIONS(79), - [aux_sym_check_statement_token1] = ACTIONS(81), - [aux_sym_select_statement_obsolete_token1] = ACTIONS(83), - [aux_sym_read_table_statement_token1] = ACTIONS(85), - [aux_sym_try_catch_statement_token1] = ACTIONS(87), - [aux_sym_write_statement_token1] = ACTIONS(93), - [aux_sym_call_function_token1] = ACTIONS(95), - [aux_sym_call_function_token2] = ACTIONS(97), - [aux_sym_raise_exception_statement_token1] = ACTIONS(99), - [aux_sym_clear_statement_token1] = ACTIONS(101), - [aux_sym_append_statement_token1] = ACTIONS(103), - [aux_sym_include_statement_token1] = ACTIONS(105), + [sym_name] = ACTIONS(55), + [aux_sym_class_declaration_token1] = ACTIONS(57), + [aux_sym__create_addition_token1] = ACTIONS(59), + [aux_sym_interface_declaration_token1] = ACTIONS(61), + [aux_sym_variable_declaration_token1] = ACTIONS(63), + [aux_sym_field_symbol_declaration_token1] = ACTIONS(65), + [aux_sym_loop_statement_token1] = ACTIONS(67), + [aux_sym_loop_statement_token6] = ACTIONS(195), + [aux_sym_exit_statement_token1] = ACTIONS(69), + [aux_sym_continue_statement_token1] = ACTIONS(71), + [aux_sym_return_statement_token1] = ACTIONS(73), + [aux_sym_report_statement_token1] = ACTIONS(75), + [aux_sym_if_statement_token1] = ACTIONS(77), + [aux_sym_check_statement_token1] = ACTIONS(79), + [aux_sym_select_statement_obsolete_token1] = ACTIONS(81), + [aux_sym_read_table_statement_token1] = ACTIONS(83), + [aux_sym_try_catch_statement_token1] = ACTIONS(85), + [aux_sym_write_statement_token1] = ACTIONS(91), + [aux_sym_call_function_token1] = ACTIONS(93), + [aux_sym_call_function_token2] = ACTIONS(95), + [aux_sym_raise_exception_statement_token1] = ACTIONS(97), + [aux_sym_clear_statement_token1] = ACTIONS(99), + [aux_sym_append_statement_token1] = ACTIONS(101), + [aux_sym_include_statement_token1] = ACTIONS(103), [sym_eol_comment] = ACTIONS(3), + [sym_field_symbol_name] = ACTIONS(53), + [sym__whitespace] = ACTIONS(3), [sym_bol_comment] = ACTIONS(3), - [sym_field_symbol_name] = ACTIONS(55), }, [13] = { - [sym__statement] = STATE(14), - [sym__implementation_statement] = STATE(14), - [sym_class_declaration] = STATE(14), - [sym_class_implementation] = STATE(14), - [sym_class_publication] = STATE(14), - [sym_class_local_friend_publication] = STATE(14), - [sym_interface_declaration] = STATE(14), - [sym_variable_declaration] = STATE(14), - [sym_chained_variable_declaration] = STATE(14), - [sym_chained_structure_declaration] = STATE(14), - [sym_field_symbol_declaration] = STATE(14), - [sym_chained_field_symbol_declaration] = STATE(14), - [sym_loop_statement] = STATE(14), - [sym_exit_statement] = STATE(14), - [sym_continue_statement] = STATE(14), - [sym_return_statement] = STATE(14), - [sym_report_statement] = STATE(14), - [sym_if_statement] = STATE(14), - [sym_check_statement] = STATE(14), + [sym__statement] = STATE(20), + [sym__implementation_statement] = STATE(20), + [sym_class_declaration] = STATE(20), + [sym_class_implementation] = STATE(20), + [sym_class_publication] = STATE(20), + [sym_class_local_friend_publication] = STATE(20), + [sym_interface_declaration] = STATE(20), + [sym_variable_declaration] = STATE(20), + [sym_chained_variable_declaration] = STATE(20), + [sym_chained_structure_declaration] = STATE(20), + [sym_field_symbol_declaration] = STATE(20), + [sym_chained_field_symbol_declaration] = STATE(20), + [sym_loop_statement] = STATE(20), + [sym_exit_statement] = STATE(20), + [sym_continue_statement] = STATE(20), + [sym_return_statement] = STATE(20), + [sym_report_statement] = STATE(20), + [sym_if_statement] = STATE(20), + [sym_check_statement] = STATE(20), [sym__writeable_expression] = STATE(2960), [sym_table_expression] = STATE(2960), - [sym_select_statement_obsolete] = STATE(14), - [sym_read_table_statement] = STATE(14), + [sym_select_statement_obsolete] = STATE(20), + [sym_read_table_statement] = STATE(20), [sym__data_object] = STATE(2960), [sym_structured_data_object] = STATE(2960), [sym_attribute_access_static] = STATE(2960), - [sym_assignment] = STATE(14), - [sym_try_catch_statement] = STATE(14), - [sym_write_statement] = STATE(14), - [sym_chained_write_statement] = STATE(14), - [sym_call_method] = STATE(14), - [sym_call_method_static] = STATE(14), - [sym_call_method_instance] = STATE(14), - [sym_call_function] = STATE(14), - [sym_raise_exception_statement] = STATE(14), - [sym_clear_statement] = STATE(14), - [sym_append_statement] = STATE(14), - [sym_append_statement_obsolete] = STATE(14), - [sym_create_object_statement] = STATE(14), - [sym_include_statement] = STATE(14), - [sym_macro_include] = STATE(14), - [sym_function_implementation] = STATE(14), - [sym_raise_statement] = STATE(14), - [aux_sym_program_repeat1] = STATE(14), - [sym_name] = ACTIONS(57), - [aux_sym_class_declaration_token1] = ACTIONS(59), - [aux_sym__create_addition_token1] = ACTIONS(61), - [aux_sym_interface_declaration_token1] = ACTIONS(63), - [aux_sym_variable_declaration_token1] = ACTIONS(65), - [aux_sym_field_symbol_declaration_token1] = ACTIONS(67), - [aux_sym_loop_statement_token1] = ACTIONS(69), - [aux_sym_exit_statement_token1] = ACTIONS(71), - [aux_sym_continue_statement_token1] = ACTIONS(73), - [aux_sym_return_statement_token1] = ACTIONS(75), - [aux_sym_report_statement_token1] = ACTIONS(77), - [aux_sym_if_statement_token1] = ACTIONS(79), - [aux_sym_if_statement_token2] = ACTIONS(199), - [aux_sym_check_statement_token1] = ACTIONS(81), - [aux_sym_select_statement_obsolete_token1] = ACTIONS(83), - [aux_sym_read_table_statement_token1] = ACTIONS(85), - [aux_sym_try_catch_statement_token1] = ACTIONS(87), - [aux_sym_write_statement_token1] = ACTIONS(93), - [aux_sym_call_function_token1] = ACTIONS(95), - [aux_sym_call_function_token2] = ACTIONS(97), - [aux_sym_raise_exception_statement_token1] = ACTIONS(99), - [aux_sym_clear_statement_token1] = ACTIONS(101), - [aux_sym_append_statement_token1] = ACTIONS(103), - [aux_sym_include_statement_token1] = ACTIONS(105), + [sym_assignment] = STATE(20), + [sym_try_catch_statement] = STATE(20), + [sym_write_statement] = STATE(20), + [sym_chained_write_statement] = STATE(20), + [sym_call_method] = STATE(20), + [sym_call_method_static] = STATE(20), + [sym_call_method_instance] = STATE(20), + [sym_call_function] = STATE(20), + [sym_raise_exception_statement] = STATE(20), + [sym_clear_statement] = STATE(20), + [sym_append_statement] = STATE(20), + [sym_append_statement_obsolete] = STATE(20), + [sym_create_object_statement] = STATE(20), + [sym_include_statement] = STATE(20), + [sym_macro_include] = STATE(20), + [sym_function_implementation] = STATE(20), + [sym_raise_statement] = STATE(20), + [aux_sym_program_repeat1] = STATE(20), + [sym_name] = ACTIONS(55), + [aux_sym_class_declaration_token1] = ACTIONS(57), + [aux_sym__create_addition_token1] = ACTIONS(59), + [aux_sym_interface_declaration_token1] = ACTIONS(61), + [aux_sym_variable_declaration_token1] = ACTIONS(63), + [aux_sym_field_symbol_declaration_token1] = ACTIONS(65), + [aux_sym_loop_statement_token1] = ACTIONS(67), + [aux_sym_exit_statement_token1] = ACTIONS(69), + [aux_sym_continue_statement_token1] = ACTIONS(71), + [aux_sym_return_statement_token1] = ACTIONS(73), + [aux_sym_report_statement_token1] = ACTIONS(75), + [aux_sym_if_statement_token1] = ACTIONS(77), + [aux_sym_if_statement_token2] = ACTIONS(197), + [aux_sym_check_statement_token1] = ACTIONS(79), + [aux_sym_select_statement_obsolete_token1] = ACTIONS(81), + [aux_sym_read_table_statement_token1] = ACTIONS(83), + [aux_sym_try_catch_statement_token1] = ACTIONS(85), + [aux_sym_write_statement_token1] = ACTIONS(91), + [aux_sym_call_function_token1] = ACTIONS(93), + [aux_sym_call_function_token2] = ACTIONS(95), + [aux_sym_raise_exception_statement_token1] = ACTIONS(97), + [aux_sym_clear_statement_token1] = ACTIONS(99), + [aux_sym_append_statement_token1] = ACTIONS(101), + [aux_sym_include_statement_token1] = ACTIONS(103), [sym_eol_comment] = ACTIONS(3), + [sym_field_symbol_name] = ACTIONS(53), + [sym__whitespace] = ACTIONS(3), [sym_bol_comment] = ACTIONS(3), - [sym_field_symbol_name] = ACTIONS(55), }, [14] = { [sym__statement] = STATE(4), @@ -13521,35 +13418,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_implementation] = STATE(4), [sym_raise_statement] = STATE(4), [aux_sym_program_repeat1] = STATE(4), - [sym_name] = ACTIONS(57), - [aux_sym_class_declaration_token1] = ACTIONS(59), - [aux_sym__create_addition_token1] = ACTIONS(61), - [aux_sym_interface_declaration_token1] = ACTIONS(63), - [aux_sym_variable_declaration_token1] = ACTIONS(65), - [aux_sym_field_symbol_declaration_token1] = ACTIONS(67), - [aux_sym_loop_statement_token1] = ACTIONS(69), - [aux_sym_exit_statement_token1] = ACTIONS(71), - [aux_sym_continue_statement_token1] = ACTIONS(73), - [aux_sym_return_statement_token1] = ACTIONS(75), - [aux_sym_report_statement_token1] = ACTIONS(77), - [aux_sym_if_statement_token1] = ACTIONS(79), - [aux_sym_if_statement_token2] = ACTIONS(201), - [aux_sym_check_statement_token1] = ACTIONS(81), - [aux_sym_select_statement_obsolete_token1] = ACTIONS(83), - [aux_sym_read_table_statement_token1] = ACTIONS(85), - [aux_sym_try_catch_statement_token1] = ACTIONS(87), - [aux_sym_write_statement_token1] = ACTIONS(93), - [aux_sym_call_function_token1] = ACTIONS(95), - [aux_sym_call_function_token2] = ACTIONS(97), - [aux_sym_raise_exception_statement_token1] = ACTIONS(99), - [aux_sym_clear_statement_token1] = ACTIONS(101), - [aux_sym_append_statement_token1] = ACTIONS(103), - [aux_sym_include_statement_token1] = ACTIONS(105), + [sym_name] = ACTIONS(55), + [aux_sym_class_declaration_token1] = ACTIONS(57), + [aux_sym__create_addition_token1] = ACTIONS(59), + [aux_sym_interface_declaration_token1] = ACTIONS(61), + [aux_sym_variable_declaration_token1] = ACTIONS(63), + [aux_sym_field_symbol_declaration_token1] = ACTIONS(65), + [aux_sym_loop_statement_token1] = ACTIONS(67), + [aux_sym_exit_statement_token1] = ACTIONS(69), + [aux_sym_continue_statement_token1] = ACTIONS(71), + [aux_sym_return_statement_token1] = ACTIONS(73), + [aux_sym_report_statement_token1] = ACTIONS(75), + [aux_sym_if_statement_token1] = ACTIONS(77), + [aux_sym_if_statement_token2] = ACTIONS(199), + [aux_sym_check_statement_token1] = ACTIONS(79), + [aux_sym_select_statement_obsolete_token1] = ACTIONS(81), + [aux_sym_read_table_statement_token1] = ACTIONS(83), + [aux_sym_try_catch_statement_token1] = ACTIONS(85), + [aux_sym_write_statement_token1] = ACTIONS(91), + [aux_sym_call_function_token1] = ACTIONS(93), + [aux_sym_call_function_token2] = ACTIONS(95), + [aux_sym_raise_exception_statement_token1] = ACTIONS(97), + [aux_sym_clear_statement_token1] = ACTIONS(99), + [aux_sym_append_statement_token1] = ACTIONS(101), + [aux_sym_include_statement_token1] = ACTIONS(103), [sym_eol_comment] = ACTIONS(3), + [sym_field_symbol_name] = ACTIONS(53), + [sym__whitespace] = ACTIONS(3), [sym_bol_comment] = ACTIONS(3), - [sym_field_symbol_name] = ACTIONS(55), }, [15] = { + [sym__statement] = STATE(10), + [sym__implementation_statement] = STATE(10), + [sym_class_declaration] = STATE(10), + [sym_class_implementation] = STATE(10), + [sym_class_publication] = STATE(10), + [sym_class_local_friend_publication] = STATE(10), + [sym_interface_declaration] = STATE(10), + [sym_variable_declaration] = STATE(10), + [sym_chained_variable_declaration] = STATE(10), + [sym_chained_structure_declaration] = STATE(10), + [sym_field_symbol_declaration] = STATE(10), + [sym_chained_field_symbol_declaration] = STATE(10), + [sym_loop_statement] = STATE(10), + [sym_exit_statement] = STATE(10), + [sym_continue_statement] = STATE(10), + [sym_return_statement] = STATE(10), + [sym_report_statement] = STATE(10), + [sym_if_statement] = STATE(10), + [sym_check_statement] = STATE(10), + [sym__writeable_expression] = STATE(2960), + [sym_table_expression] = STATE(2960), + [sym_select_statement_obsolete] = STATE(10), + [sym_read_table_statement] = STATE(10), + [sym__data_object] = STATE(2960), + [sym_structured_data_object] = STATE(2960), + [sym_attribute_access_static] = STATE(2960), + [sym_assignment] = STATE(10), + [sym_try_catch_statement] = STATE(10), + [sym_write_statement] = STATE(10), + [sym_chained_write_statement] = STATE(10), + [sym_call_method] = STATE(10), + [sym_call_method_static] = STATE(10), + [sym_call_method_instance] = STATE(10), + [sym_call_function] = STATE(10), + [sym_raise_exception_statement] = STATE(10), + [sym_clear_statement] = STATE(10), + [sym_append_statement] = STATE(10), + [sym_append_statement_obsolete] = STATE(10), + [sym_create_object_statement] = STATE(10), + [sym_include_statement] = STATE(10), + [sym_macro_include] = STATE(10), + [sym_function_implementation] = STATE(10), + [sym_raise_statement] = STATE(10), + [aux_sym_program_repeat1] = STATE(10), + [sym_name] = ACTIONS(55), + [aux_sym_class_declaration_token1] = ACTIONS(57), + [aux_sym__create_addition_token1] = ACTIONS(59), + [aux_sym_interface_declaration_token1] = ACTIONS(61), + [aux_sym_variable_declaration_token1] = ACTIONS(63), + [aux_sym_field_symbol_declaration_token1] = ACTIONS(65), + [aux_sym_loop_statement_token1] = ACTIONS(67), + [aux_sym_loop_statement_token6] = ACTIONS(201), + [aux_sym_exit_statement_token1] = ACTIONS(69), + [aux_sym_continue_statement_token1] = ACTIONS(71), + [aux_sym_return_statement_token1] = ACTIONS(73), + [aux_sym_report_statement_token1] = ACTIONS(75), + [aux_sym_if_statement_token1] = ACTIONS(77), + [aux_sym_check_statement_token1] = ACTIONS(79), + [aux_sym_select_statement_obsolete_token1] = ACTIONS(81), + [aux_sym_read_table_statement_token1] = ACTIONS(83), + [aux_sym_try_catch_statement_token1] = ACTIONS(85), + [aux_sym_write_statement_token1] = ACTIONS(91), + [aux_sym_call_function_token1] = ACTIONS(93), + [aux_sym_call_function_token2] = ACTIONS(95), + [aux_sym_raise_exception_statement_token1] = ACTIONS(97), + [aux_sym_clear_statement_token1] = ACTIONS(99), + [aux_sym_append_statement_token1] = ACTIONS(101), + [aux_sym_include_statement_token1] = ACTIONS(103), + [sym_eol_comment] = ACTIONS(3), + [sym_field_symbol_name] = ACTIONS(53), + [sym__whitespace] = ACTIONS(3), + [sym_bol_comment] = ACTIONS(3), + }, + [16] = { [sym__statement] = STATE(16), [sym__implementation_statement] = STATE(16), [sym_class_declaration] = STATE(16), @@ -13569,13 +13541,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_report_statement] = STATE(16), [sym_if_statement] = STATE(16), [sym_check_statement] = STATE(16), - [sym__writeable_expression] = STATE(2960), - [sym_table_expression] = STATE(2960), + [sym__writeable_expression] = STATE(2993), + [sym_table_expression] = STATE(2993), [sym_select_statement_obsolete] = STATE(16), [sym_read_table_statement] = STATE(16), - [sym__data_object] = STATE(2960), - [sym_structured_data_object] = STATE(2960), - [sym_attribute_access_static] = STATE(2960), + [sym__data_object] = STATE(2993), + [sym_structured_data_object] = STATE(2993), + [sym_attribute_access_static] = STATE(2993), [sym_assignment] = STATE(16), [sym_try_catch_statement] = STATE(16), [sym_write_statement] = STATE(16), @@ -13594,35 +13566,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_implementation] = STATE(16), [sym_raise_statement] = STATE(16), [aux_sym_program_repeat1] = STATE(16), - [sym_name] = ACTIONS(57), - [aux_sym_class_declaration_token1] = ACTIONS(59), - [aux_sym__create_addition_token1] = ACTIONS(61), - [aux_sym_interface_declaration_token1] = ACTIONS(63), - [aux_sym_variable_declaration_token1] = ACTIONS(65), - [aux_sym_field_symbol_declaration_token1] = ACTIONS(67), - [aux_sym_loop_statement_token1] = ACTIONS(69), - [aux_sym_loop_statement_token6] = ACTIONS(203), - [aux_sym_exit_statement_token1] = ACTIONS(71), - [aux_sym_continue_statement_token1] = ACTIONS(73), - [aux_sym_return_statement_token1] = ACTIONS(75), - [aux_sym_report_statement_token1] = ACTIONS(77), - [aux_sym_if_statement_token1] = ACTIONS(79), - [aux_sym_check_statement_token1] = ACTIONS(81), - [aux_sym_select_statement_obsolete_token1] = ACTIONS(83), - [aux_sym_read_table_statement_token1] = ACTIONS(85), - [aux_sym_try_catch_statement_token1] = ACTIONS(87), - [aux_sym_write_statement_token1] = ACTIONS(93), - [aux_sym_call_function_token1] = ACTIONS(95), - [aux_sym_call_function_token2] = ACTIONS(97), - [aux_sym_raise_exception_statement_token1] = ACTIONS(99), - [aux_sym_clear_statement_token1] = ACTIONS(101), - [aux_sym_append_statement_token1] = ACTIONS(103), - [aux_sym_include_statement_token1] = ACTIONS(105), + [ts_builtin_sym_end] = ACTIONS(128), + [sym_name] = ACTIONS(203), + [aux_sym_class_declaration_token1] = ACTIONS(206), + [aux_sym__create_addition_token1] = ACTIONS(209), + [aux_sym_interface_declaration_token1] = ACTIONS(212), + [aux_sym_variable_declaration_token1] = ACTIONS(215), + [aux_sym_field_symbol_declaration_token1] = ACTIONS(218), + [aux_sym_loop_statement_token1] = ACTIONS(221), + [aux_sym_exit_statement_token1] = ACTIONS(224), + [aux_sym_continue_statement_token1] = ACTIONS(227), + [aux_sym_return_statement_token1] = ACTIONS(230), + [aux_sym_report_statement_token1] = ACTIONS(233), + [aux_sym_if_statement_token1] = ACTIONS(236), + [aux_sym_check_statement_token1] = ACTIONS(239), + [aux_sym_select_statement_obsolete_token1] = ACTIONS(242), + [aux_sym_read_table_statement_token1] = ACTIONS(245), + [aux_sym_try_catch_statement_token1] = ACTIONS(248), + [aux_sym_write_statement_token1] = ACTIONS(251), + [aux_sym_call_function_token1] = ACTIONS(254), + [aux_sym_call_function_token2] = ACTIONS(257), + [aux_sym_raise_exception_statement_token1] = ACTIONS(260), + [aux_sym_clear_statement_token1] = ACTIONS(263), + [aux_sym_append_statement_token1] = ACTIONS(266), + [aux_sym_include_statement_token1] = ACTIONS(269), [sym_eol_comment] = ACTIONS(3), + [sym_field_symbol_name] = ACTIONS(178), + [sym__whitespace] = ACTIONS(3), [sym_bol_comment] = ACTIONS(3), - [sym_field_symbol_name] = ACTIONS(55), }, - [16] = { + [17] = { [sym__statement] = STATE(4), [sym__implementation_statement] = STATE(4), [sym_class_declaration] = STATE(4), @@ -13667,35 +13640,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_implementation] = STATE(4), [sym_raise_statement] = STATE(4), [aux_sym_program_repeat1] = STATE(4), - [sym_name] = ACTIONS(57), - [aux_sym_class_declaration_token1] = ACTIONS(59), - [aux_sym__create_addition_token1] = ACTIONS(61), - [aux_sym_interface_declaration_token1] = ACTIONS(63), - [aux_sym_variable_declaration_token1] = ACTIONS(65), - [aux_sym_field_symbol_declaration_token1] = ACTIONS(67), - [aux_sym_loop_statement_token1] = ACTIONS(69), - [aux_sym_loop_statement_token6] = ACTIONS(205), - [aux_sym_exit_statement_token1] = ACTIONS(71), - [aux_sym_continue_statement_token1] = ACTIONS(73), - [aux_sym_return_statement_token1] = ACTIONS(75), - [aux_sym_report_statement_token1] = ACTIONS(77), - [aux_sym_if_statement_token1] = ACTIONS(79), - [aux_sym_check_statement_token1] = ACTIONS(81), - [aux_sym_select_statement_obsolete_token1] = ACTIONS(83), - [aux_sym_read_table_statement_token1] = ACTIONS(85), - [aux_sym_try_catch_statement_token1] = ACTIONS(87), - [aux_sym_write_statement_token1] = ACTIONS(93), - [aux_sym_call_function_token1] = ACTIONS(95), - [aux_sym_call_function_token2] = ACTIONS(97), - [aux_sym_raise_exception_statement_token1] = ACTIONS(99), - [aux_sym_clear_statement_token1] = ACTIONS(101), - [aux_sym_append_statement_token1] = ACTIONS(103), - [aux_sym_include_statement_token1] = ACTIONS(105), + [sym_name] = ACTIONS(55), + [aux_sym_class_declaration_token1] = ACTIONS(57), + [aux_sym__create_addition_token1] = ACTIONS(59), + [aux_sym_interface_declaration_token1] = ACTIONS(61), + [aux_sym_variable_declaration_token1] = ACTIONS(63), + [aux_sym_field_symbol_declaration_token1] = ACTIONS(65), + [aux_sym_loop_statement_token1] = ACTIONS(67), + [aux_sym_loop_statement_token6] = ACTIONS(272), + [aux_sym_exit_statement_token1] = ACTIONS(69), + [aux_sym_continue_statement_token1] = ACTIONS(71), + [aux_sym_return_statement_token1] = ACTIONS(73), + [aux_sym_report_statement_token1] = ACTIONS(75), + [aux_sym_if_statement_token1] = ACTIONS(77), + [aux_sym_check_statement_token1] = ACTIONS(79), + [aux_sym_select_statement_obsolete_token1] = ACTIONS(81), + [aux_sym_read_table_statement_token1] = ACTIONS(83), + [aux_sym_try_catch_statement_token1] = ACTIONS(85), + [aux_sym_write_statement_token1] = ACTIONS(91), + [aux_sym_call_function_token1] = ACTIONS(93), + [aux_sym_call_function_token2] = ACTIONS(95), + [aux_sym_raise_exception_statement_token1] = ACTIONS(97), + [aux_sym_clear_statement_token1] = ACTIONS(99), + [aux_sym_append_statement_token1] = ACTIONS(101), + [aux_sym_include_statement_token1] = ACTIONS(103), [sym_eol_comment] = ACTIONS(3), + [sym_field_symbol_name] = ACTIONS(53), + [sym__whitespace] = ACTIONS(3), [sym_bol_comment] = ACTIONS(3), - [sym_field_symbol_name] = ACTIONS(55), }, - [17] = { + [18] = { + [sym__statement] = STATE(12), + [sym__implementation_statement] = STATE(12), + [sym_class_declaration] = STATE(12), + [sym_class_implementation] = STATE(12), + [sym_class_publication] = STATE(12), + [sym_class_local_friend_publication] = STATE(12), + [sym_interface_declaration] = STATE(12), + [sym_variable_declaration] = STATE(12), + [sym_chained_variable_declaration] = STATE(12), + [sym_chained_structure_declaration] = STATE(12), + [sym_field_symbol_declaration] = STATE(12), + [sym_chained_field_symbol_declaration] = STATE(12), + [sym_loop_statement] = STATE(12), + [sym_exit_statement] = STATE(12), + [sym_continue_statement] = STATE(12), + [sym_return_statement] = STATE(12), + [sym_report_statement] = STATE(12), + [sym_if_statement] = STATE(12), + [sym_check_statement] = STATE(12), + [sym__writeable_expression] = STATE(2960), + [sym_table_expression] = STATE(2960), + [sym_select_statement_obsolete] = STATE(12), + [sym_read_table_statement] = STATE(12), + [sym__data_object] = STATE(2960), + [sym_structured_data_object] = STATE(2960), + [sym_attribute_access_static] = STATE(2960), + [sym_assignment] = STATE(12), + [sym_try_catch_statement] = STATE(12), + [sym_write_statement] = STATE(12), + [sym_chained_write_statement] = STATE(12), + [sym_call_method] = STATE(12), + [sym_call_method_static] = STATE(12), + [sym_call_method_instance] = STATE(12), + [sym_call_function] = STATE(12), + [sym_raise_exception_statement] = STATE(12), + [sym_clear_statement] = STATE(12), + [sym_append_statement] = STATE(12), + [sym_append_statement_obsolete] = STATE(12), + [sym_create_object_statement] = STATE(12), + [sym_include_statement] = STATE(12), + [sym_macro_include] = STATE(12), + [sym_function_implementation] = STATE(12), + [sym_raise_statement] = STATE(12), + [aux_sym_program_repeat1] = STATE(12), + [sym_name] = ACTIONS(55), + [aux_sym_class_declaration_token1] = ACTIONS(57), + [aux_sym__create_addition_token1] = ACTIONS(59), + [aux_sym_interface_declaration_token1] = ACTIONS(61), + [aux_sym_variable_declaration_token1] = ACTIONS(63), + [aux_sym_field_symbol_declaration_token1] = ACTIONS(65), + [aux_sym_loop_statement_token1] = ACTIONS(67), + [aux_sym_loop_statement_token6] = ACTIONS(274), + [aux_sym_exit_statement_token1] = ACTIONS(69), + [aux_sym_continue_statement_token1] = ACTIONS(71), + [aux_sym_return_statement_token1] = ACTIONS(73), + [aux_sym_report_statement_token1] = ACTIONS(75), + [aux_sym_if_statement_token1] = ACTIONS(77), + [aux_sym_check_statement_token1] = ACTIONS(79), + [aux_sym_select_statement_obsolete_token1] = ACTIONS(81), + [aux_sym_read_table_statement_token1] = ACTIONS(83), + [aux_sym_try_catch_statement_token1] = ACTIONS(85), + [aux_sym_write_statement_token1] = ACTIONS(91), + [aux_sym_call_function_token1] = ACTIONS(93), + [aux_sym_call_function_token2] = ACTIONS(95), + [aux_sym_raise_exception_statement_token1] = ACTIONS(97), + [aux_sym_clear_statement_token1] = ACTIONS(99), + [aux_sym_append_statement_token1] = ACTIONS(101), + [aux_sym_include_statement_token1] = ACTIONS(103), + [sym_eol_comment] = ACTIONS(3), + [sym_field_symbol_name] = ACTIONS(53), + [sym__whitespace] = ACTIONS(3), + [sym_bol_comment] = ACTIONS(3), + }, + [19] = { [sym__statement] = STATE(4), [sym__implementation_statement] = STATE(4), [sym_class_declaration] = STATE(4), @@ -13740,35 +13788,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_implementation] = STATE(4), [sym_raise_statement] = STATE(4), [aux_sym_program_repeat1] = STATE(4), - [sym_name] = ACTIONS(57), - [aux_sym_class_declaration_token1] = ACTIONS(59), - [aux_sym__create_addition_token1] = ACTIONS(61), - [aux_sym_interface_declaration_token1] = ACTIONS(63), - [aux_sym_variable_declaration_token1] = ACTIONS(65), - [aux_sym_field_symbol_declaration_token1] = ACTIONS(67), - [aux_sym_loop_statement_token1] = ACTIONS(69), - [aux_sym_loop_statement_token6] = ACTIONS(207), - [aux_sym_exit_statement_token1] = ACTIONS(71), - [aux_sym_continue_statement_token1] = ACTIONS(73), - [aux_sym_return_statement_token1] = ACTIONS(75), - [aux_sym_report_statement_token1] = ACTIONS(77), - [aux_sym_if_statement_token1] = ACTIONS(79), - [aux_sym_check_statement_token1] = ACTIONS(81), - [aux_sym_select_statement_obsolete_token1] = ACTIONS(83), - [aux_sym_read_table_statement_token1] = ACTIONS(85), - [aux_sym_try_catch_statement_token1] = ACTIONS(87), - [aux_sym_write_statement_token1] = ACTIONS(93), - [aux_sym_call_function_token1] = ACTIONS(95), - [aux_sym_call_function_token2] = ACTIONS(97), - [aux_sym_raise_exception_statement_token1] = ACTIONS(99), - [aux_sym_clear_statement_token1] = ACTIONS(101), - [aux_sym_append_statement_token1] = ACTIONS(103), - [aux_sym_include_statement_token1] = ACTIONS(105), + [sym_name] = ACTIONS(55), + [aux_sym_class_declaration_token1] = ACTIONS(57), + [aux_sym__create_addition_token1] = ACTIONS(59), + [aux_sym_interface_declaration_token1] = ACTIONS(61), + [aux_sym_variable_declaration_token1] = ACTIONS(63), + [aux_sym_field_symbol_declaration_token1] = ACTIONS(65), + [aux_sym_loop_statement_token1] = ACTIONS(67), + [aux_sym_loop_statement_token6] = ACTIONS(276), + [aux_sym_exit_statement_token1] = ACTIONS(69), + [aux_sym_continue_statement_token1] = ACTIONS(71), + [aux_sym_return_statement_token1] = ACTIONS(73), + [aux_sym_report_statement_token1] = ACTIONS(75), + [aux_sym_if_statement_token1] = ACTIONS(77), + [aux_sym_check_statement_token1] = ACTIONS(79), + [aux_sym_select_statement_obsolete_token1] = ACTIONS(81), + [aux_sym_read_table_statement_token1] = ACTIONS(83), + [aux_sym_try_catch_statement_token1] = ACTIONS(85), + [aux_sym_write_statement_token1] = ACTIONS(91), + [aux_sym_call_function_token1] = ACTIONS(93), + [aux_sym_call_function_token2] = ACTIONS(95), + [aux_sym_raise_exception_statement_token1] = ACTIONS(97), + [aux_sym_clear_statement_token1] = ACTIONS(99), + [aux_sym_append_statement_token1] = ACTIONS(101), + [aux_sym_include_statement_token1] = ACTIONS(103), [sym_eol_comment] = ACTIONS(3), + [sym_field_symbol_name] = ACTIONS(53), + [sym__whitespace] = ACTIONS(3), [sym_bol_comment] = ACTIONS(3), - [sym_field_symbol_name] = ACTIONS(55), }, - [18] = { + [20] = { [sym__statement] = STATE(4), [sym__implementation_statement] = STATE(4), [sym_class_declaration] = STATE(4), @@ -13813,181 +13862,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_implementation] = STATE(4), [sym_raise_statement] = STATE(4), [aux_sym_program_repeat1] = STATE(4), - [sym_name] = ACTIONS(57), - [aux_sym_class_declaration_token1] = ACTIONS(59), - [aux_sym__create_addition_token1] = ACTIONS(61), - [aux_sym_interface_declaration_token1] = ACTIONS(63), - [aux_sym_variable_declaration_token1] = ACTIONS(65), - [aux_sym_field_symbol_declaration_token1] = ACTIONS(67), - [aux_sym_loop_statement_token1] = ACTIONS(69), - [aux_sym_loop_statement_token6] = ACTIONS(209), - [aux_sym_exit_statement_token1] = ACTIONS(71), - [aux_sym_continue_statement_token1] = ACTIONS(73), - [aux_sym_return_statement_token1] = ACTIONS(75), - [aux_sym_report_statement_token1] = ACTIONS(77), - [aux_sym_if_statement_token1] = ACTIONS(79), - [aux_sym_check_statement_token1] = ACTIONS(81), - [aux_sym_select_statement_obsolete_token1] = ACTIONS(83), - [aux_sym_read_table_statement_token1] = ACTIONS(85), - [aux_sym_try_catch_statement_token1] = ACTIONS(87), - [aux_sym_write_statement_token1] = ACTIONS(93), - [aux_sym_call_function_token1] = ACTIONS(95), - [aux_sym_call_function_token2] = ACTIONS(97), - [aux_sym_raise_exception_statement_token1] = ACTIONS(99), - [aux_sym_clear_statement_token1] = ACTIONS(101), - [aux_sym_append_statement_token1] = ACTIONS(103), - [aux_sym_include_statement_token1] = ACTIONS(105), + [sym_name] = ACTIONS(55), + [aux_sym_class_declaration_token1] = ACTIONS(57), + [aux_sym__create_addition_token1] = ACTIONS(59), + [aux_sym_interface_declaration_token1] = ACTIONS(61), + [aux_sym_variable_declaration_token1] = ACTIONS(63), + [aux_sym_field_symbol_declaration_token1] = ACTIONS(65), + [aux_sym_loop_statement_token1] = ACTIONS(67), + [aux_sym_exit_statement_token1] = ACTIONS(69), + [aux_sym_continue_statement_token1] = ACTIONS(71), + [aux_sym_return_statement_token1] = ACTIONS(73), + [aux_sym_report_statement_token1] = ACTIONS(75), + [aux_sym_if_statement_token1] = ACTIONS(77), + [aux_sym_if_statement_token2] = ACTIONS(278), + [aux_sym_check_statement_token1] = ACTIONS(79), + [aux_sym_select_statement_obsolete_token1] = ACTIONS(81), + [aux_sym_read_table_statement_token1] = ACTIONS(83), + [aux_sym_try_catch_statement_token1] = ACTIONS(85), + [aux_sym_write_statement_token1] = ACTIONS(91), + [aux_sym_call_function_token1] = ACTIONS(93), + [aux_sym_call_function_token2] = ACTIONS(95), + [aux_sym_raise_exception_statement_token1] = ACTIONS(97), + [aux_sym_clear_statement_token1] = ACTIONS(99), + [aux_sym_append_statement_token1] = ACTIONS(101), + [aux_sym_include_statement_token1] = ACTIONS(103), [sym_eol_comment] = ACTIONS(3), + [sym_field_symbol_name] = ACTIONS(53), + [sym__whitespace] = ACTIONS(3), [sym_bol_comment] = ACTIONS(3), - [sym_field_symbol_name] = ACTIONS(55), }, - [19] = { - [sym__statement] = STATE(9), - [sym__implementation_statement] = STATE(9), - [sym_class_declaration] = STATE(9), - [sym_class_implementation] = STATE(9), - [sym_class_publication] = STATE(9), - [sym_class_local_friend_publication] = STATE(9), - [sym_interface_declaration] = STATE(9), - [sym_variable_declaration] = STATE(9), - [sym_chained_variable_declaration] = STATE(9), - [sym_chained_structure_declaration] = STATE(9), - [sym_field_symbol_declaration] = STATE(9), - [sym_chained_field_symbol_declaration] = STATE(9), - [sym_loop_statement] = STATE(9), - [sym_exit_statement] = STATE(9), - [sym_continue_statement] = STATE(9), - [sym_return_statement] = STATE(9), - [sym_report_statement] = STATE(9), - [sym_if_statement] = STATE(9), - [sym_check_statement] = STATE(9), + [21] = { + [sym__statement] = STATE(22), + [sym__implementation_statement] = STATE(22), + [sym_class_declaration] = STATE(22), + [sym_class_implementation] = STATE(22), + [sym_class_publication] = STATE(22), + [sym_class_local_friend_publication] = STATE(22), + [sym_interface_declaration] = STATE(22), + [sym_variable_declaration] = STATE(22), + [sym_chained_variable_declaration] = STATE(22), + [sym_chained_structure_declaration] = STATE(22), + [sym_field_symbol_declaration] = STATE(22), + [sym_chained_field_symbol_declaration] = STATE(22), + [sym_loop_statement] = STATE(22), + [sym_exit_statement] = STATE(22), + [sym_continue_statement] = STATE(22), + [sym_return_statement] = STATE(22), + [sym_report_statement] = STATE(22), + [sym_if_statement] = STATE(22), + [sym_check_statement] = STATE(22), [sym__writeable_expression] = STATE(2960), [sym_table_expression] = STATE(2960), - [sym_select_statement_obsolete] = STATE(9), - [sym_read_table_statement] = STATE(9), + [sym_select_statement_obsolete] = STATE(22), + [sym_read_table_statement] = STATE(22), [sym__data_object] = STATE(2960), [sym_structured_data_object] = STATE(2960), [sym_attribute_access_static] = STATE(2960), - [sym_assignment] = STATE(9), - [sym_try_catch_statement] = STATE(9), - [sym_write_statement] = STATE(9), - [sym_chained_write_statement] = STATE(9), - [sym_call_method] = STATE(9), - [sym_call_method_static] = STATE(9), - [sym_call_method_instance] = STATE(9), - [sym_call_function] = STATE(9), - [sym_raise_exception_statement] = STATE(9), - [sym_clear_statement] = STATE(9), - [sym_append_statement] = STATE(9), - [sym_append_statement_obsolete] = STATE(9), - [sym_create_object_statement] = STATE(9), - [sym_include_statement] = STATE(9), - [sym_macro_include] = STATE(9), - [sym_function_implementation] = STATE(9), - [sym_raise_statement] = STATE(9), - [aux_sym_program_repeat1] = STATE(9), - [sym_name] = ACTIONS(57), - [aux_sym_class_declaration_token1] = ACTIONS(59), - [aux_sym__create_addition_token1] = ACTIONS(61), - [aux_sym_interface_declaration_token1] = ACTIONS(63), - [aux_sym_variable_declaration_token1] = ACTIONS(65), - [aux_sym_field_symbol_declaration_token1] = ACTIONS(67), - [aux_sym_loop_statement_token1] = ACTIONS(69), - [aux_sym_loop_statement_token6] = ACTIONS(211), - [aux_sym_exit_statement_token1] = ACTIONS(71), - [aux_sym_continue_statement_token1] = ACTIONS(73), - [aux_sym_return_statement_token1] = ACTIONS(75), - [aux_sym_report_statement_token1] = ACTIONS(77), - [aux_sym_if_statement_token1] = ACTIONS(79), - [aux_sym_check_statement_token1] = ACTIONS(81), - [aux_sym_select_statement_obsolete_token1] = ACTIONS(83), - [aux_sym_read_table_statement_token1] = ACTIONS(85), - [aux_sym_try_catch_statement_token1] = ACTIONS(87), - [aux_sym_write_statement_token1] = ACTIONS(93), - [aux_sym_call_function_token1] = ACTIONS(95), - [aux_sym_call_function_token2] = ACTIONS(97), - [aux_sym_raise_exception_statement_token1] = ACTIONS(99), - [aux_sym_clear_statement_token1] = ACTIONS(101), - [aux_sym_append_statement_token1] = ACTIONS(103), - [aux_sym_include_statement_token1] = ACTIONS(105), - [sym_eol_comment] = ACTIONS(3), - [sym_bol_comment] = ACTIONS(3), - [sym_field_symbol_name] = ACTIONS(55), - }, - [20] = { - [sym__statement] = STATE(20), - [sym__implementation_statement] = STATE(20), - [sym_class_declaration] = STATE(20), - [sym_class_implementation] = STATE(20), - [sym_class_publication] = STATE(20), - [sym_class_local_friend_publication] = STATE(20), - [sym_interface_declaration] = STATE(20), - [sym_variable_declaration] = STATE(20), - [sym_chained_variable_declaration] = STATE(20), - [sym_chained_structure_declaration] = STATE(20), - [sym_field_symbol_declaration] = STATE(20), - [sym_chained_field_symbol_declaration] = STATE(20), - [sym_loop_statement] = STATE(20), - [sym_exit_statement] = STATE(20), - [sym_continue_statement] = STATE(20), - [sym_return_statement] = STATE(20), - [sym_report_statement] = STATE(20), - [sym_if_statement] = STATE(20), - [sym_check_statement] = STATE(20), - [sym__writeable_expression] = STATE(2993), - [sym_table_expression] = STATE(2993), - [sym_select_statement_obsolete] = STATE(20), - [sym_read_table_statement] = STATE(20), - [sym__data_object] = STATE(2993), - [sym_structured_data_object] = STATE(2993), - [sym_attribute_access_static] = STATE(2993), - [sym_assignment] = STATE(20), - [sym_try_catch_statement] = STATE(20), - [sym_write_statement] = STATE(20), - [sym_chained_write_statement] = STATE(20), - [sym_call_method] = STATE(20), - [sym_call_method_static] = STATE(20), - [sym_call_method_instance] = STATE(20), - [sym_call_function] = STATE(20), - [sym_raise_exception_statement] = STATE(20), - [sym_clear_statement] = STATE(20), - [sym_append_statement] = STATE(20), - [sym_append_statement_obsolete] = STATE(20), - [sym_create_object_statement] = STATE(20), - [sym_include_statement] = STATE(20), - [sym_macro_include] = STATE(20), - [sym_function_implementation] = STATE(20), - [sym_raise_statement] = STATE(20), - [aux_sym_program_repeat1] = STATE(20), - [ts_builtin_sym_end] = ACTIONS(130), - [sym_name] = ACTIONS(213), - [aux_sym_class_declaration_token1] = ACTIONS(216), - [aux_sym__create_addition_token1] = ACTIONS(219), - [aux_sym_interface_declaration_token1] = ACTIONS(222), - [aux_sym_variable_declaration_token1] = ACTIONS(225), - [aux_sym_field_symbol_declaration_token1] = ACTIONS(228), - [aux_sym_loop_statement_token1] = ACTIONS(231), - [aux_sym_exit_statement_token1] = ACTIONS(234), - [aux_sym_continue_statement_token1] = ACTIONS(237), - [aux_sym_return_statement_token1] = ACTIONS(240), - [aux_sym_report_statement_token1] = ACTIONS(243), - [aux_sym_if_statement_token1] = ACTIONS(246), - [aux_sym_check_statement_token1] = ACTIONS(249), - [aux_sym_select_statement_obsolete_token1] = ACTIONS(252), - [aux_sym_read_table_statement_token1] = ACTIONS(255), - [aux_sym_try_catch_statement_token1] = ACTIONS(258), - [aux_sym_write_statement_token1] = ACTIONS(261), - [aux_sym_call_function_token1] = ACTIONS(264), - [aux_sym_call_function_token2] = ACTIONS(267), - [aux_sym_raise_exception_statement_token1] = ACTIONS(270), - [aux_sym_clear_statement_token1] = ACTIONS(273), - [aux_sym_append_statement_token1] = ACTIONS(276), - [aux_sym_include_statement_token1] = ACTIONS(279), + [sym_assignment] = STATE(22), + [sym_try_catch_statement] = STATE(22), + [sym_write_statement] = STATE(22), + [sym_chained_write_statement] = STATE(22), + [sym_call_method] = STATE(22), + [sym_call_method_static] = STATE(22), + [sym_call_method_instance] = STATE(22), + [sym_call_function] = STATE(22), + [sym_raise_exception_statement] = STATE(22), + [sym_clear_statement] = STATE(22), + [sym_append_statement] = STATE(22), + [sym_append_statement_obsolete] = STATE(22), + [sym_create_object_statement] = STATE(22), + [sym_include_statement] = STATE(22), + [sym_macro_include] = STATE(22), + [sym_function_implementation] = STATE(22), + [sym_raise_statement] = STATE(22), + [aux_sym_program_repeat1] = STATE(22), + [sym_name] = ACTIONS(55), + [aux_sym_class_declaration_token1] = ACTIONS(57), + [aux_sym__create_addition_token1] = ACTIONS(59), + [aux_sym_interface_declaration_token1] = ACTIONS(61), + [aux_sym_variable_declaration_token1] = ACTIONS(63), + [aux_sym_field_symbol_declaration_token1] = ACTIONS(65), + [aux_sym_loop_statement_token1] = ACTIONS(67), + [aux_sym_loop_statement_token6] = ACTIONS(280), + [aux_sym_exit_statement_token1] = ACTIONS(69), + [aux_sym_continue_statement_token1] = ACTIONS(71), + [aux_sym_return_statement_token1] = ACTIONS(73), + [aux_sym_report_statement_token1] = ACTIONS(75), + [aux_sym_if_statement_token1] = ACTIONS(77), + [aux_sym_check_statement_token1] = ACTIONS(79), + [aux_sym_select_statement_obsolete_token1] = ACTIONS(81), + [aux_sym_read_table_statement_token1] = ACTIONS(83), + [aux_sym_try_catch_statement_token1] = ACTIONS(85), + [aux_sym_write_statement_token1] = ACTIONS(91), + [aux_sym_call_function_token1] = ACTIONS(93), + [aux_sym_call_function_token2] = ACTIONS(95), + [aux_sym_raise_exception_statement_token1] = ACTIONS(97), + [aux_sym_clear_statement_token1] = ACTIONS(99), + [aux_sym_append_statement_token1] = ACTIONS(101), + [aux_sym_include_statement_token1] = ACTIONS(103), [sym_eol_comment] = ACTIONS(3), + [sym_field_symbol_name] = ACTIONS(53), + [sym__whitespace] = ACTIONS(3), [sym_bol_comment] = ACTIONS(3), - [sym_field_symbol_name] = ACTIONS(180), }, - [21] = { + [22] = { [sym__statement] = STATE(4), [sym__implementation_statement] = STATE(4), [sym_class_declaration] = STATE(4), @@ -14032,35 +14010,258 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_implementation] = STATE(4), [sym_raise_statement] = STATE(4), [aux_sym_program_repeat1] = STATE(4), - [sym_name] = ACTIONS(57), - [aux_sym_class_declaration_token1] = ACTIONS(59), - [aux_sym__create_addition_token1] = ACTIONS(61), - [aux_sym_interface_declaration_token1] = ACTIONS(63), - [aux_sym_variable_declaration_token1] = ACTIONS(65), - [aux_sym_field_symbol_declaration_token1] = ACTIONS(67), - [aux_sym_loop_statement_token1] = ACTIONS(69), + [sym_name] = ACTIONS(55), + [aux_sym_class_declaration_token1] = ACTIONS(57), + [aux_sym__create_addition_token1] = ACTIONS(59), + [aux_sym_interface_declaration_token1] = ACTIONS(61), + [aux_sym_variable_declaration_token1] = ACTIONS(63), + [aux_sym_field_symbol_declaration_token1] = ACTIONS(65), + [aux_sym_loop_statement_token1] = ACTIONS(67), [aux_sym_loop_statement_token6] = ACTIONS(282), - [aux_sym_exit_statement_token1] = ACTIONS(71), - [aux_sym_continue_statement_token1] = ACTIONS(73), - [aux_sym_return_statement_token1] = ACTIONS(75), - [aux_sym_report_statement_token1] = ACTIONS(77), - [aux_sym_if_statement_token1] = ACTIONS(79), - [aux_sym_check_statement_token1] = ACTIONS(81), - [aux_sym_select_statement_obsolete_token1] = ACTIONS(83), - [aux_sym_read_table_statement_token1] = ACTIONS(85), - [aux_sym_try_catch_statement_token1] = ACTIONS(87), - [aux_sym_write_statement_token1] = ACTIONS(93), - [aux_sym_call_function_token1] = ACTIONS(95), - [aux_sym_call_function_token2] = ACTIONS(97), - [aux_sym_raise_exception_statement_token1] = ACTIONS(99), - [aux_sym_clear_statement_token1] = ACTIONS(101), - [aux_sym_append_statement_token1] = ACTIONS(103), - [aux_sym_include_statement_token1] = ACTIONS(105), + [aux_sym_exit_statement_token1] = ACTIONS(69), + [aux_sym_continue_statement_token1] = ACTIONS(71), + [aux_sym_return_statement_token1] = ACTIONS(73), + [aux_sym_report_statement_token1] = ACTIONS(75), + [aux_sym_if_statement_token1] = ACTIONS(77), + [aux_sym_check_statement_token1] = ACTIONS(79), + [aux_sym_select_statement_obsolete_token1] = ACTIONS(81), + [aux_sym_read_table_statement_token1] = ACTIONS(83), + [aux_sym_try_catch_statement_token1] = ACTIONS(85), + [aux_sym_write_statement_token1] = ACTIONS(91), + [aux_sym_call_function_token1] = ACTIONS(93), + [aux_sym_call_function_token2] = ACTIONS(95), + [aux_sym_raise_exception_statement_token1] = ACTIONS(97), + [aux_sym_clear_statement_token1] = ACTIONS(99), + [aux_sym_append_statement_token1] = ACTIONS(101), + [aux_sym_include_statement_token1] = ACTIONS(103), [sym_eol_comment] = ACTIONS(3), + [sym_field_symbol_name] = ACTIONS(53), + [sym__whitespace] = ACTIONS(3), [sym_bol_comment] = ACTIONS(3), - [sym_field_symbol_name] = ACTIONS(55), }, - [22] = { + [23] = { + [sym__statement] = STATE(17), + [sym__implementation_statement] = STATE(17), + [sym_class_declaration] = STATE(17), + [sym_class_implementation] = STATE(17), + [sym_class_publication] = STATE(17), + [sym_class_local_friend_publication] = STATE(17), + [sym_interface_declaration] = STATE(17), + [sym_variable_declaration] = STATE(17), + [sym_chained_variable_declaration] = STATE(17), + [sym_chained_structure_declaration] = STATE(17), + [sym_field_symbol_declaration] = STATE(17), + [sym_chained_field_symbol_declaration] = STATE(17), + [sym_loop_statement] = STATE(17), + [sym_exit_statement] = STATE(17), + [sym_continue_statement] = STATE(17), + [sym_return_statement] = STATE(17), + [sym_report_statement] = STATE(17), + [sym_if_statement] = STATE(17), + [sym_check_statement] = STATE(17), + [sym__writeable_expression] = STATE(2960), + [sym_table_expression] = STATE(2960), + [sym_select_statement_obsolete] = STATE(17), + [sym_read_table_statement] = STATE(17), + [sym__data_object] = STATE(2960), + [sym_structured_data_object] = STATE(2960), + [sym_attribute_access_static] = STATE(2960), + [sym_assignment] = STATE(17), + [sym_try_catch_statement] = STATE(17), + [sym_write_statement] = STATE(17), + [sym_chained_write_statement] = STATE(17), + [sym_call_method] = STATE(17), + [sym_call_method_static] = STATE(17), + [sym_call_method_instance] = STATE(17), + [sym_call_function] = STATE(17), + [sym_raise_exception_statement] = STATE(17), + [sym_clear_statement] = STATE(17), + [sym_append_statement] = STATE(17), + [sym_append_statement_obsolete] = STATE(17), + [sym_create_object_statement] = STATE(17), + [sym_include_statement] = STATE(17), + [sym_macro_include] = STATE(17), + [sym_function_implementation] = STATE(17), + [sym_raise_statement] = STATE(17), + [aux_sym_program_repeat1] = STATE(17), + [sym_name] = ACTIONS(55), + [aux_sym_class_declaration_token1] = ACTIONS(57), + [aux_sym__create_addition_token1] = ACTIONS(59), + [aux_sym_interface_declaration_token1] = ACTIONS(61), + [aux_sym_variable_declaration_token1] = ACTIONS(63), + [aux_sym_field_symbol_declaration_token1] = ACTIONS(65), + [aux_sym_loop_statement_token1] = ACTIONS(67), + [aux_sym_loop_statement_token6] = ACTIONS(284), + [aux_sym_exit_statement_token1] = ACTIONS(69), + [aux_sym_continue_statement_token1] = ACTIONS(71), + [aux_sym_return_statement_token1] = ACTIONS(73), + [aux_sym_report_statement_token1] = ACTIONS(75), + [aux_sym_if_statement_token1] = ACTIONS(77), + [aux_sym_check_statement_token1] = ACTIONS(79), + [aux_sym_select_statement_obsolete_token1] = ACTIONS(81), + [aux_sym_read_table_statement_token1] = ACTIONS(83), + [aux_sym_try_catch_statement_token1] = ACTIONS(85), + [aux_sym_write_statement_token1] = ACTIONS(91), + [aux_sym_call_function_token1] = ACTIONS(93), + [aux_sym_call_function_token2] = ACTIONS(95), + [aux_sym_raise_exception_statement_token1] = ACTIONS(97), + [aux_sym_clear_statement_token1] = ACTIONS(99), + [aux_sym_append_statement_token1] = ACTIONS(101), + [aux_sym_include_statement_token1] = ACTIONS(103), + [sym_eol_comment] = ACTIONS(3), + [sym_field_symbol_name] = ACTIONS(53), + [sym__whitespace] = ACTIONS(3), + [sym_bol_comment] = ACTIONS(3), + }, + [24] = { + [sym__statement] = STATE(26), + [sym__implementation_statement] = STATE(26), + [sym_class_declaration] = STATE(26), + [sym_class_implementation] = STATE(26), + [sym_class_publication] = STATE(26), + [sym_class_local_friend_publication] = STATE(26), + [sym_interface_declaration] = STATE(26), + [sym_variable_declaration] = STATE(26), + [sym_chained_variable_declaration] = STATE(26), + [sym_chained_structure_declaration] = STATE(26), + [sym_field_symbol_declaration] = STATE(26), + [sym_chained_field_symbol_declaration] = STATE(26), + [sym_loop_statement] = STATE(26), + [sym_exit_statement] = STATE(26), + [sym_continue_statement] = STATE(26), + [sym_return_statement] = STATE(26), + [sym_report_statement] = STATE(26), + [sym_if_statement] = STATE(26), + [sym_check_statement] = STATE(26), + [sym__writeable_expression] = STATE(2960), + [sym_table_expression] = STATE(2960), + [sym_select_statement_obsolete] = STATE(26), + [sym_read_table_statement] = STATE(26), + [sym__data_object] = STATE(2960), + [sym_structured_data_object] = STATE(2960), + [sym_attribute_access_static] = STATE(2960), + [sym_assignment] = STATE(26), + [sym_try_catch_statement] = STATE(26), + [sym_write_statement] = STATE(26), + [sym_chained_write_statement] = STATE(26), + [sym_call_method] = STATE(26), + [sym_call_method_static] = STATE(26), + [sym_call_method_instance] = STATE(26), + [sym_call_function] = STATE(26), + [sym_raise_exception_statement] = STATE(26), + [sym_clear_statement] = STATE(26), + [sym_append_statement] = STATE(26), + [sym_append_statement_obsolete] = STATE(26), + [sym_create_object_statement] = STATE(26), + [sym_include_statement] = STATE(26), + [sym_macro_include] = STATE(26), + [sym_function_implementation] = STATE(26), + [sym_raise_statement] = STATE(26), + [aux_sym_program_repeat1] = STATE(26), + [sym_name] = ACTIONS(55), + [aux_sym_class_declaration_token1] = ACTIONS(57), + [aux_sym__create_addition_token1] = ACTIONS(59), + [aux_sym_interface_declaration_token1] = ACTIONS(61), + [aux_sym_variable_declaration_token1] = ACTIONS(63), + [aux_sym_field_symbol_declaration_token1] = ACTIONS(65), + [aux_sym_loop_statement_token1] = ACTIONS(67), + [aux_sym_loop_statement_token6] = ACTIONS(286), + [aux_sym_exit_statement_token1] = ACTIONS(69), + [aux_sym_continue_statement_token1] = ACTIONS(71), + [aux_sym_return_statement_token1] = ACTIONS(73), + [aux_sym_report_statement_token1] = ACTIONS(75), + [aux_sym_if_statement_token1] = ACTIONS(77), + [aux_sym_check_statement_token1] = ACTIONS(79), + [aux_sym_select_statement_obsolete_token1] = ACTIONS(81), + [aux_sym_read_table_statement_token1] = ACTIONS(83), + [aux_sym_try_catch_statement_token1] = ACTIONS(85), + [aux_sym_write_statement_token1] = ACTIONS(91), + [aux_sym_call_function_token1] = ACTIONS(93), + [aux_sym_call_function_token2] = ACTIONS(95), + [aux_sym_raise_exception_statement_token1] = ACTIONS(97), + [aux_sym_clear_statement_token1] = ACTIONS(99), + [aux_sym_append_statement_token1] = ACTIONS(101), + [aux_sym_include_statement_token1] = ACTIONS(103), + [sym_eol_comment] = ACTIONS(3), + [sym_field_symbol_name] = ACTIONS(53), + [sym__whitespace] = ACTIONS(3), + [sym_bol_comment] = ACTIONS(3), + }, + [25] = { + [sym__statement] = STATE(14), + [sym__implementation_statement] = STATE(14), + [sym_class_declaration] = STATE(14), + [sym_class_implementation] = STATE(14), + [sym_class_publication] = STATE(14), + [sym_class_local_friend_publication] = STATE(14), + [sym_interface_declaration] = STATE(14), + [sym_variable_declaration] = STATE(14), + [sym_chained_variable_declaration] = STATE(14), + [sym_chained_structure_declaration] = STATE(14), + [sym_field_symbol_declaration] = STATE(14), + [sym_chained_field_symbol_declaration] = STATE(14), + [sym_loop_statement] = STATE(14), + [sym_exit_statement] = STATE(14), + [sym_continue_statement] = STATE(14), + [sym_return_statement] = STATE(14), + [sym_report_statement] = STATE(14), + [sym_if_statement] = STATE(14), + [sym_check_statement] = STATE(14), + [sym__writeable_expression] = STATE(2960), + [sym_table_expression] = STATE(2960), + [sym_select_statement_obsolete] = STATE(14), + [sym_read_table_statement] = STATE(14), + [sym__data_object] = STATE(2960), + [sym_structured_data_object] = STATE(2960), + [sym_attribute_access_static] = STATE(2960), + [sym_assignment] = STATE(14), + [sym_try_catch_statement] = STATE(14), + [sym_write_statement] = STATE(14), + [sym_chained_write_statement] = STATE(14), + [sym_call_method] = STATE(14), + [sym_call_method_static] = STATE(14), + [sym_call_method_instance] = STATE(14), + [sym_call_function] = STATE(14), + [sym_raise_exception_statement] = STATE(14), + [sym_clear_statement] = STATE(14), + [sym_append_statement] = STATE(14), + [sym_append_statement_obsolete] = STATE(14), + [sym_create_object_statement] = STATE(14), + [sym_include_statement] = STATE(14), + [sym_macro_include] = STATE(14), + [sym_function_implementation] = STATE(14), + [sym_raise_statement] = STATE(14), + [aux_sym_program_repeat1] = STATE(14), + [sym_name] = ACTIONS(55), + [aux_sym_class_declaration_token1] = ACTIONS(57), + [aux_sym__create_addition_token1] = ACTIONS(59), + [aux_sym_interface_declaration_token1] = ACTIONS(61), + [aux_sym_variable_declaration_token1] = ACTIONS(63), + [aux_sym_field_symbol_declaration_token1] = ACTIONS(65), + [aux_sym_loop_statement_token1] = ACTIONS(67), + [aux_sym_exit_statement_token1] = ACTIONS(69), + [aux_sym_continue_statement_token1] = ACTIONS(71), + [aux_sym_return_statement_token1] = ACTIONS(73), + [aux_sym_report_statement_token1] = ACTIONS(75), + [aux_sym_if_statement_token1] = ACTIONS(77), + [aux_sym_if_statement_token2] = ACTIONS(288), + [aux_sym_check_statement_token1] = ACTIONS(79), + [aux_sym_select_statement_obsolete_token1] = ACTIONS(81), + [aux_sym_read_table_statement_token1] = ACTIONS(83), + [aux_sym_try_catch_statement_token1] = ACTIONS(85), + [aux_sym_write_statement_token1] = ACTIONS(91), + [aux_sym_call_function_token1] = ACTIONS(93), + [aux_sym_call_function_token2] = ACTIONS(95), + [aux_sym_raise_exception_statement_token1] = ACTIONS(97), + [aux_sym_clear_statement_token1] = ACTIONS(99), + [aux_sym_append_statement_token1] = ACTIONS(101), + [aux_sym_include_statement_token1] = ACTIONS(103), + [sym_eol_comment] = ACTIONS(3), + [sym_field_symbol_name] = ACTIONS(53), + [sym__whitespace] = ACTIONS(3), + [sym_bol_comment] = ACTIONS(3), + }, + [26] = { [sym__statement] = STATE(4), [sym__implementation_statement] = STATE(4), [sym_class_declaration] = STATE(4), @@ -14105,108 +14306,184 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_implementation] = STATE(4), [sym_raise_statement] = STATE(4), [aux_sym_program_repeat1] = STATE(4), - [sym_name] = ACTIONS(57), - [aux_sym_class_declaration_token1] = ACTIONS(59), - [aux_sym__create_addition_token1] = ACTIONS(61), - [aux_sym_interface_declaration_token1] = ACTIONS(63), - [aux_sym_variable_declaration_token1] = ACTIONS(65), - [aux_sym_field_symbol_declaration_token1] = ACTIONS(67), - [aux_sym_loop_statement_token1] = ACTIONS(69), - [aux_sym_exit_statement_token1] = ACTIONS(71), - [aux_sym_continue_statement_token1] = ACTIONS(73), - [aux_sym_return_statement_token1] = ACTIONS(75), - [aux_sym_report_statement_token1] = ACTIONS(77), - [aux_sym_if_statement_token1] = ACTIONS(79), - [aux_sym_if_statement_token2] = ACTIONS(284), - [aux_sym_check_statement_token1] = ACTIONS(81), - [aux_sym_select_statement_obsolete_token1] = ACTIONS(83), - [aux_sym_read_table_statement_token1] = ACTIONS(85), - [aux_sym_try_catch_statement_token1] = ACTIONS(87), - [aux_sym_write_statement_token1] = ACTIONS(93), - [aux_sym_call_function_token1] = ACTIONS(95), - [aux_sym_call_function_token2] = ACTIONS(97), - [aux_sym_raise_exception_statement_token1] = ACTIONS(99), - [aux_sym_clear_statement_token1] = ACTIONS(101), - [aux_sym_append_statement_token1] = ACTIONS(103), - [aux_sym_include_statement_token1] = ACTIONS(105), + [sym_name] = ACTIONS(55), + [aux_sym_class_declaration_token1] = ACTIONS(57), + [aux_sym__create_addition_token1] = ACTIONS(59), + [aux_sym_interface_declaration_token1] = ACTIONS(61), + [aux_sym_variable_declaration_token1] = ACTIONS(63), + [aux_sym_field_symbol_declaration_token1] = ACTIONS(65), + [aux_sym_loop_statement_token1] = ACTIONS(67), + [aux_sym_loop_statement_token6] = ACTIONS(290), + [aux_sym_exit_statement_token1] = ACTIONS(69), + [aux_sym_continue_statement_token1] = ACTIONS(71), + [aux_sym_return_statement_token1] = ACTIONS(73), + [aux_sym_report_statement_token1] = ACTIONS(75), + [aux_sym_if_statement_token1] = ACTIONS(77), + [aux_sym_check_statement_token1] = ACTIONS(79), + [aux_sym_select_statement_obsolete_token1] = ACTIONS(81), + [aux_sym_read_table_statement_token1] = ACTIONS(83), + [aux_sym_try_catch_statement_token1] = ACTIONS(85), + [aux_sym_write_statement_token1] = ACTIONS(91), + [aux_sym_call_function_token1] = ACTIONS(93), + [aux_sym_call_function_token2] = ACTIONS(95), + [aux_sym_raise_exception_statement_token1] = ACTIONS(97), + [aux_sym_clear_statement_token1] = ACTIONS(99), + [aux_sym_append_statement_token1] = ACTIONS(101), + [aux_sym_include_statement_token1] = ACTIONS(103), [sym_eol_comment] = ACTIONS(3), + [sym_field_symbol_name] = ACTIONS(53), + [sym__whitespace] = ACTIONS(3), [sym_bol_comment] = ACTIONS(3), - [sym_field_symbol_name] = ACTIONS(55), }, - [23] = { - [sym__statement] = STATE(24), - [sym__implementation_statement] = STATE(24), - [sym_class_declaration] = STATE(24), - [sym_class_implementation] = STATE(24), - [sym_class_publication] = STATE(24), - [sym_class_local_friend_publication] = STATE(24), - [sym_interface_declaration] = STATE(24), - [sym_variable_declaration] = STATE(24), - [sym_chained_variable_declaration] = STATE(24), - [sym_chained_structure_declaration] = STATE(24), - [sym_field_symbol_declaration] = STATE(24), - [sym_chained_field_symbol_declaration] = STATE(24), - [sym_loop_statement] = STATE(24), - [sym_exit_statement] = STATE(24), - [sym_continue_statement] = STATE(24), - [sym_return_statement] = STATE(24), - [sym_report_statement] = STATE(24), - [sym_if_statement] = STATE(24), - [sym_check_statement] = STATE(24), + [27] = { + [sym__statement] = STATE(16), + [sym__implementation_statement] = STATE(16), + [sym_class_declaration] = STATE(16), + [sym_class_implementation] = STATE(16), + [sym_class_publication] = STATE(16), + [sym_class_local_friend_publication] = STATE(16), + [sym_interface_declaration] = STATE(16), + [sym_variable_declaration] = STATE(16), + [sym_chained_variable_declaration] = STATE(16), + [sym_chained_structure_declaration] = STATE(16), + [sym_field_symbol_declaration] = STATE(16), + [sym_chained_field_symbol_declaration] = STATE(16), + [sym_loop_statement] = STATE(16), + [sym_exit_statement] = STATE(16), + [sym_continue_statement] = STATE(16), + [sym_return_statement] = STATE(16), + [sym_report_statement] = STATE(16), + [sym_if_statement] = STATE(16), + [sym_check_statement] = STATE(16), + [sym__writeable_expression] = STATE(2993), + [sym_table_expression] = STATE(2993), + [sym_select_statement_obsolete] = STATE(16), + [sym_read_table_statement] = STATE(16), + [sym__data_object] = STATE(2993), + [sym_structured_data_object] = STATE(2993), + [sym_attribute_access_static] = STATE(2993), + [sym_assignment] = STATE(16), + [sym_try_catch_statement] = STATE(16), + [sym_write_statement] = STATE(16), + [sym_chained_write_statement] = STATE(16), + [sym_call_method] = STATE(16), + [sym_call_method_static] = STATE(16), + [sym_call_method_instance] = STATE(16), + [sym_call_function] = STATE(16), + [sym_raise_exception_statement] = STATE(16), + [sym_clear_statement] = STATE(16), + [sym_append_statement] = STATE(16), + [sym_append_statement_obsolete] = STATE(16), + [sym_create_object_statement] = STATE(16), + [sym_include_statement] = STATE(16), + [sym_macro_include] = STATE(16), + [sym_function_implementation] = STATE(16), + [sym_raise_statement] = STATE(16), + [aux_sym_program_repeat1] = STATE(16), + [ts_builtin_sym_end] = ACTIONS(292), + [sym_name] = ACTIONS(7), + [aux_sym_class_declaration_token1] = ACTIONS(9), + [aux_sym__create_addition_token1] = ACTIONS(11), + [aux_sym_interface_declaration_token1] = ACTIONS(13), + [aux_sym_variable_declaration_token1] = ACTIONS(15), + [aux_sym_field_symbol_declaration_token1] = ACTIONS(17), + [aux_sym_loop_statement_token1] = ACTIONS(19), + [aux_sym_exit_statement_token1] = ACTIONS(21), + [aux_sym_continue_statement_token1] = ACTIONS(23), + [aux_sym_return_statement_token1] = ACTIONS(25), + [aux_sym_report_statement_token1] = ACTIONS(27), + [aux_sym_if_statement_token1] = ACTIONS(29), + [aux_sym_check_statement_token1] = ACTIONS(31), + [aux_sym_select_statement_obsolete_token1] = ACTIONS(33), + [aux_sym_read_table_statement_token1] = ACTIONS(35), + [aux_sym_try_catch_statement_token1] = ACTIONS(37), + [aux_sym_write_statement_token1] = ACTIONS(39), + [aux_sym_call_function_token1] = ACTIONS(41), + [aux_sym_call_function_token2] = ACTIONS(43), + [aux_sym_raise_exception_statement_token1] = ACTIONS(45), + [aux_sym_clear_statement_token1] = ACTIONS(47), + [aux_sym_append_statement_token1] = ACTIONS(49), + [aux_sym_include_statement_token1] = ACTIONS(51), + [sym_eol_comment] = ACTIONS(3), + [sym_field_symbol_name] = ACTIONS(53), + [sym__whitespace] = ACTIONS(3), + [sym_bol_comment] = ACTIONS(3), + }, + [28] = { + [sym__statement] = STATE(4), + [sym__implementation_statement] = STATE(4), + [sym_class_declaration] = STATE(4), + [sym_class_implementation] = STATE(4), + [sym_class_publication] = STATE(4), + [sym_class_local_friend_publication] = STATE(4), + [sym_interface_declaration] = STATE(4), + [sym_variable_declaration] = STATE(4), + [sym_chained_variable_declaration] = STATE(4), + [sym_chained_structure_declaration] = STATE(4), + [sym_field_symbol_declaration] = STATE(4), + [sym_chained_field_symbol_declaration] = STATE(4), + [sym_loop_statement] = STATE(4), + [sym_exit_statement] = STATE(4), + [sym_continue_statement] = STATE(4), + [sym_return_statement] = STATE(4), + [sym_report_statement] = STATE(4), + [sym_if_statement] = STATE(4), + [sym_check_statement] = STATE(4), [sym__writeable_expression] = STATE(2960), [sym_table_expression] = STATE(2960), - [sym_select_statement_obsolete] = STATE(24), - [sym_read_table_statement] = STATE(24), + [sym_select_statement_obsolete] = STATE(4), + [sym_read_table_statement] = STATE(4), [sym__data_object] = STATE(2960), [sym_structured_data_object] = STATE(2960), [sym_attribute_access_static] = STATE(2960), - [sym_assignment] = STATE(24), - [sym_try_catch_statement] = STATE(24), - [sym_write_statement] = STATE(24), - [sym_chained_write_statement] = STATE(24), - [sym_call_method] = STATE(24), - [sym_call_method_static] = STATE(24), - [sym_call_method_instance] = STATE(24), - [sym_call_function] = STATE(24), - [sym_raise_exception_statement] = STATE(24), - [sym_clear_statement] = STATE(24), - [sym_append_statement] = STATE(24), - [sym_append_statement_obsolete] = STATE(24), - [sym_create_object_statement] = STATE(24), - [sym_include_statement] = STATE(24), - [sym_macro_include] = STATE(24), - [sym_function_implementation] = STATE(24), - [sym_raise_statement] = STATE(24), - [aux_sym_program_repeat1] = STATE(24), - [sym_name] = ACTIONS(57), - [aux_sym_class_declaration_token1] = ACTIONS(59), - [aux_sym__create_addition_token1] = ACTIONS(61), - [aux_sym_interface_declaration_token1] = ACTIONS(63), - [aux_sym_variable_declaration_token1] = ACTIONS(65), - [aux_sym_field_symbol_declaration_token1] = ACTIONS(67), - [aux_sym_loop_statement_token1] = ACTIONS(69), - [aux_sym_loop_statement_token6] = ACTIONS(286), - [aux_sym_exit_statement_token1] = ACTIONS(71), - [aux_sym_continue_statement_token1] = ACTIONS(73), - [aux_sym_return_statement_token1] = ACTIONS(75), - [aux_sym_report_statement_token1] = ACTIONS(77), - [aux_sym_if_statement_token1] = ACTIONS(79), - [aux_sym_check_statement_token1] = ACTIONS(81), - [aux_sym_select_statement_obsolete_token1] = ACTIONS(83), - [aux_sym_read_table_statement_token1] = ACTIONS(85), - [aux_sym_try_catch_statement_token1] = ACTIONS(87), - [aux_sym_write_statement_token1] = ACTIONS(93), - [aux_sym_call_function_token1] = ACTIONS(95), - [aux_sym_call_function_token2] = ACTIONS(97), - [aux_sym_raise_exception_statement_token1] = ACTIONS(99), - [aux_sym_clear_statement_token1] = ACTIONS(101), - [aux_sym_append_statement_token1] = ACTIONS(103), - [aux_sym_include_statement_token1] = ACTIONS(105), + [sym_assignment] = STATE(4), + [sym_try_catch_statement] = STATE(4), + [sym_write_statement] = STATE(4), + [sym_chained_write_statement] = STATE(4), + [sym_call_method] = STATE(4), + [sym_call_method_static] = STATE(4), + [sym_call_method_instance] = STATE(4), + [sym_call_function] = STATE(4), + [sym_raise_exception_statement] = STATE(4), + [sym_clear_statement] = STATE(4), + [sym_append_statement] = STATE(4), + [sym_append_statement_obsolete] = STATE(4), + [sym_create_object_statement] = STATE(4), + [sym_include_statement] = STATE(4), + [sym_macro_include] = STATE(4), + [sym_function_implementation] = STATE(4), + [sym_raise_statement] = STATE(4), + [aux_sym_program_repeat1] = STATE(4), + [sym_name] = ACTIONS(55), + [aux_sym_class_declaration_token1] = ACTIONS(57), + [aux_sym__create_addition_token1] = ACTIONS(59), + [aux_sym_interface_declaration_token1] = ACTIONS(61), + [aux_sym_variable_declaration_token1] = ACTIONS(63), + [aux_sym_field_symbol_declaration_token1] = ACTIONS(65), + [aux_sym_loop_statement_token1] = ACTIONS(67), + [aux_sym_loop_statement_token6] = ACTIONS(294), + [aux_sym_exit_statement_token1] = ACTIONS(69), + [aux_sym_continue_statement_token1] = ACTIONS(71), + [aux_sym_return_statement_token1] = ACTIONS(73), + [aux_sym_report_statement_token1] = ACTIONS(75), + [aux_sym_if_statement_token1] = ACTIONS(77), + [aux_sym_check_statement_token1] = ACTIONS(79), + [aux_sym_select_statement_obsolete_token1] = ACTIONS(81), + [aux_sym_read_table_statement_token1] = ACTIONS(83), + [aux_sym_try_catch_statement_token1] = ACTIONS(85), + [aux_sym_write_statement_token1] = ACTIONS(91), + [aux_sym_call_function_token1] = ACTIONS(93), + [aux_sym_call_function_token2] = ACTIONS(95), + [aux_sym_raise_exception_statement_token1] = ACTIONS(97), + [aux_sym_clear_statement_token1] = ACTIONS(99), + [aux_sym_append_statement_token1] = ACTIONS(101), + [aux_sym_include_statement_token1] = ACTIONS(103), [sym_eol_comment] = ACTIONS(3), + [sym_field_symbol_name] = ACTIONS(53), + [sym__whitespace] = ACTIONS(3), [sym_bol_comment] = ACTIONS(3), - [sym_field_symbol_name] = ACTIONS(55), }, - [24] = { + [29] = { [sym__statement] = STATE(4), [sym__implementation_statement] = STATE(4), [sym_class_declaration] = STATE(4), @@ -14251,532 +14528,170 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_function_implementation] = STATE(4), [sym_raise_statement] = STATE(4), [aux_sym_program_repeat1] = STATE(4), - [sym_name] = ACTIONS(57), - [aux_sym_class_declaration_token1] = ACTIONS(59), - [aux_sym__create_addition_token1] = ACTIONS(61), - [aux_sym_interface_declaration_token1] = ACTIONS(63), - [aux_sym_variable_declaration_token1] = ACTIONS(65), - [aux_sym_field_symbol_declaration_token1] = ACTIONS(67), - [aux_sym_loop_statement_token1] = ACTIONS(69), - [aux_sym_loop_statement_token6] = ACTIONS(288), - [aux_sym_exit_statement_token1] = ACTIONS(71), - [aux_sym_continue_statement_token1] = ACTIONS(73), - [aux_sym_return_statement_token1] = ACTIONS(75), - [aux_sym_report_statement_token1] = ACTIONS(77), - [aux_sym_if_statement_token1] = ACTIONS(79), - [aux_sym_check_statement_token1] = ACTIONS(81), - [aux_sym_select_statement_obsolete_token1] = ACTIONS(83), - [aux_sym_read_table_statement_token1] = ACTIONS(85), - [aux_sym_try_catch_statement_token1] = ACTIONS(87), - [aux_sym_write_statement_token1] = ACTIONS(93), - [aux_sym_call_function_token1] = ACTIONS(95), - [aux_sym_call_function_token2] = ACTIONS(97), - [aux_sym_raise_exception_statement_token1] = ACTIONS(99), - [aux_sym_clear_statement_token1] = ACTIONS(101), - [aux_sym_append_statement_token1] = ACTIONS(103), - [aux_sym_include_statement_token1] = ACTIONS(105), + [sym_name] = ACTIONS(55), + [aux_sym_class_declaration_token1] = ACTIONS(57), + [aux_sym__create_addition_token1] = ACTIONS(59), + [aux_sym_interface_declaration_token1] = ACTIONS(61), + [aux_sym_variable_declaration_token1] = ACTIONS(63), + [aux_sym_field_symbol_declaration_token1] = ACTIONS(65), + [aux_sym_loop_statement_token1] = ACTIONS(67), + [aux_sym_loop_statement_token6] = ACTIONS(296), + [aux_sym_exit_statement_token1] = ACTIONS(69), + [aux_sym_continue_statement_token1] = ACTIONS(71), + [aux_sym_return_statement_token1] = ACTIONS(73), + [aux_sym_report_statement_token1] = ACTIONS(75), + [aux_sym_if_statement_token1] = ACTIONS(77), + [aux_sym_check_statement_token1] = ACTIONS(79), + [aux_sym_select_statement_obsolete_token1] = ACTIONS(81), + [aux_sym_read_table_statement_token1] = ACTIONS(83), + [aux_sym_try_catch_statement_token1] = ACTIONS(85), + [aux_sym_write_statement_token1] = ACTIONS(91), + [aux_sym_call_function_token1] = ACTIONS(93), + [aux_sym_call_function_token2] = ACTIONS(95), + [aux_sym_raise_exception_statement_token1] = ACTIONS(97), + [aux_sym_clear_statement_token1] = ACTIONS(99), + [aux_sym_append_statement_token1] = ACTIONS(101), + [aux_sym_include_statement_token1] = ACTIONS(103), [sym_eol_comment] = ACTIONS(3), + [sym_field_symbol_name] = ACTIONS(53), + [sym__whitespace] = ACTIONS(3), [sym_bol_comment] = ACTIONS(3), - [sym_field_symbol_name] = ACTIONS(55), - }, - [25] = { - [sym__statement] = STATE(17), - [sym__implementation_statement] = STATE(17), - [sym_class_declaration] = STATE(17), - [sym_class_implementation] = STATE(17), - [sym_class_publication] = STATE(17), - [sym_class_local_friend_publication] = STATE(17), - [sym_interface_declaration] = STATE(17), - [sym_variable_declaration] = STATE(17), - [sym_chained_variable_declaration] = STATE(17), - [sym_chained_structure_declaration] = STATE(17), - [sym_field_symbol_declaration] = STATE(17), - [sym_chained_field_symbol_declaration] = STATE(17), - [sym_loop_statement] = STATE(17), - [sym_exit_statement] = STATE(17), - [sym_continue_statement] = STATE(17), - [sym_return_statement] = STATE(17), - [sym_report_statement] = STATE(17), - [sym_if_statement] = STATE(17), - [sym_check_statement] = STATE(17), - [sym__writeable_expression] = STATE(2960), - [sym_table_expression] = STATE(2960), - [sym_select_statement_obsolete] = STATE(17), - [sym_read_table_statement] = STATE(17), - [sym__data_object] = STATE(2960), - [sym_structured_data_object] = STATE(2960), - [sym_attribute_access_static] = STATE(2960), - [sym_assignment] = STATE(17), - [sym_try_catch_statement] = STATE(17), - [sym_write_statement] = STATE(17), - [sym_chained_write_statement] = STATE(17), - [sym_call_method] = STATE(17), - [sym_call_method_static] = STATE(17), - [sym_call_method_instance] = STATE(17), - [sym_call_function] = STATE(17), - [sym_raise_exception_statement] = STATE(17), - [sym_clear_statement] = STATE(17), - [sym_append_statement] = STATE(17), - [sym_append_statement_obsolete] = STATE(17), - [sym_create_object_statement] = STATE(17), - [sym_include_statement] = STATE(17), - [sym_macro_include] = STATE(17), - [sym_function_implementation] = STATE(17), - [sym_raise_statement] = STATE(17), - [aux_sym_program_repeat1] = STATE(17), - [sym_name] = ACTIONS(57), - [aux_sym_class_declaration_token1] = ACTIONS(59), - [aux_sym__create_addition_token1] = ACTIONS(61), - [aux_sym_interface_declaration_token1] = ACTIONS(63), - [aux_sym_variable_declaration_token1] = ACTIONS(65), - [aux_sym_field_symbol_declaration_token1] = ACTIONS(67), - [aux_sym_loop_statement_token1] = ACTIONS(69), - [aux_sym_loop_statement_token6] = ACTIONS(290), - [aux_sym_exit_statement_token1] = ACTIONS(71), - [aux_sym_continue_statement_token1] = ACTIONS(73), - [aux_sym_return_statement_token1] = ACTIONS(75), - [aux_sym_report_statement_token1] = ACTIONS(77), - [aux_sym_if_statement_token1] = ACTIONS(79), - [aux_sym_check_statement_token1] = ACTIONS(81), - [aux_sym_select_statement_obsolete_token1] = ACTIONS(83), - [aux_sym_read_table_statement_token1] = ACTIONS(85), - [aux_sym_try_catch_statement_token1] = ACTIONS(87), - [aux_sym_write_statement_token1] = ACTIONS(93), - [aux_sym_call_function_token1] = ACTIONS(95), - [aux_sym_call_function_token2] = ACTIONS(97), - [aux_sym_raise_exception_statement_token1] = ACTIONS(99), - [aux_sym_clear_statement_token1] = ACTIONS(101), - [aux_sym_append_statement_token1] = ACTIONS(103), - [aux_sym_include_statement_token1] = ACTIONS(105), - [sym_eol_comment] = ACTIONS(3), - [sym_bol_comment] = ACTIONS(3), - [sym_field_symbol_name] = ACTIONS(55), - }, - [26] = { - [sym__statement] = STATE(21), - [sym__implementation_statement] = STATE(21), - [sym_class_declaration] = STATE(21), - [sym_class_implementation] = STATE(21), - [sym_class_publication] = STATE(21), - [sym_class_local_friend_publication] = STATE(21), - [sym_interface_declaration] = STATE(21), - [sym_variable_declaration] = STATE(21), - [sym_chained_variable_declaration] = STATE(21), - [sym_chained_structure_declaration] = STATE(21), - [sym_field_symbol_declaration] = STATE(21), - [sym_chained_field_symbol_declaration] = STATE(21), - [sym_loop_statement] = STATE(21), - [sym_exit_statement] = STATE(21), - [sym_continue_statement] = STATE(21), - [sym_return_statement] = STATE(21), - [sym_report_statement] = STATE(21), - [sym_if_statement] = STATE(21), - [sym_check_statement] = STATE(21), - [sym__writeable_expression] = STATE(2960), - [sym_table_expression] = STATE(2960), - [sym_select_statement_obsolete] = STATE(21), - [sym_read_table_statement] = STATE(21), - [sym__data_object] = STATE(2960), - [sym_structured_data_object] = STATE(2960), - [sym_attribute_access_static] = STATE(2960), - [sym_assignment] = STATE(21), - [sym_try_catch_statement] = STATE(21), - [sym_write_statement] = STATE(21), - [sym_chained_write_statement] = STATE(21), - [sym_call_method] = STATE(21), - [sym_call_method_static] = STATE(21), - [sym_call_method_instance] = STATE(21), - [sym_call_function] = STATE(21), - [sym_raise_exception_statement] = STATE(21), - [sym_clear_statement] = STATE(21), - [sym_append_statement] = STATE(21), - [sym_append_statement_obsolete] = STATE(21), - [sym_create_object_statement] = STATE(21), - [sym_include_statement] = STATE(21), - [sym_macro_include] = STATE(21), - [sym_function_implementation] = STATE(21), - [sym_raise_statement] = STATE(21), - [aux_sym_program_repeat1] = STATE(21), - [sym_name] = ACTIONS(57), - [aux_sym_class_declaration_token1] = ACTIONS(59), - [aux_sym__create_addition_token1] = ACTIONS(61), - [aux_sym_interface_declaration_token1] = ACTIONS(63), - [aux_sym_variable_declaration_token1] = ACTIONS(65), - [aux_sym_field_symbol_declaration_token1] = ACTIONS(67), - [aux_sym_loop_statement_token1] = ACTIONS(69), - [aux_sym_loop_statement_token6] = ACTIONS(292), - [aux_sym_exit_statement_token1] = ACTIONS(71), - [aux_sym_continue_statement_token1] = ACTIONS(73), - [aux_sym_return_statement_token1] = ACTIONS(75), - [aux_sym_report_statement_token1] = ACTIONS(77), - [aux_sym_if_statement_token1] = ACTIONS(79), - [aux_sym_check_statement_token1] = ACTIONS(81), - [aux_sym_select_statement_obsolete_token1] = ACTIONS(83), - [aux_sym_read_table_statement_token1] = ACTIONS(85), - [aux_sym_try_catch_statement_token1] = ACTIONS(87), - [aux_sym_write_statement_token1] = ACTIONS(93), - [aux_sym_call_function_token1] = ACTIONS(95), - [aux_sym_call_function_token2] = ACTIONS(97), - [aux_sym_raise_exception_statement_token1] = ACTIONS(99), - [aux_sym_clear_statement_token1] = ACTIONS(101), - [aux_sym_append_statement_token1] = ACTIONS(103), - [aux_sym_include_statement_token1] = ACTIONS(105), - [sym_eol_comment] = ACTIONS(3), - [sym_bol_comment] = ACTIONS(3), - [sym_field_symbol_name] = ACTIONS(55), - }, - [27] = { - [sym__statement] = STATE(30), - [sym__implementation_statement] = STATE(30), - [sym_class_declaration] = STATE(30), - [sym_class_implementation] = STATE(30), - [sym_class_publication] = STATE(30), - [sym_class_local_friend_publication] = STATE(30), - [sym_interface_declaration] = STATE(30), - [sym_variable_declaration] = STATE(30), - [sym_chained_variable_declaration] = STATE(30), - [sym_chained_structure_declaration] = STATE(30), - [sym_field_symbol_declaration] = STATE(30), - [sym_chained_field_symbol_declaration] = STATE(30), - [sym_loop_statement] = STATE(30), - [sym_exit_statement] = STATE(30), - [sym_continue_statement] = STATE(30), - [sym_return_statement] = STATE(30), - [sym_report_statement] = STATE(30), - [sym_if_statement] = STATE(30), - [sym_check_statement] = STATE(30), - [sym__writeable_expression] = STATE(2960), - [sym_table_expression] = STATE(2960), - [sym_select_statement_obsolete] = STATE(30), - [sym_read_table_statement] = STATE(30), - [sym__data_object] = STATE(2960), - [sym_structured_data_object] = STATE(2960), - [sym_attribute_access_static] = STATE(2960), - [sym_assignment] = STATE(30), - [sym_try_catch_statement] = STATE(30), - [sym_write_statement] = STATE(30), - [sym_chained_write_statement] = STATE(30), - [sym_call_method] = STATE(30), - [sym_call_method_static] = STATE(30), - [sym_call_method_instance] = STATE(30), - [sym_call_function] = STATE(30), - [sym_raise_exception_statement] = STATE(30), - [sym_clear_statement] = STATE(30), - [sym_append_statement] = STATE(30), - [sym_append_statement_obsolete] = STATE(30), - [sym_create_object_statement] = STATE(30), - [sym_include_statement] = STATE(30), - [sym_macro_include] = STATE(30), - [sym_function_implementation] = STATE(30), - [sym_raise_statement] = STATE(30), - [aux_sym_program_repeat1] = STATE(30), - [sym_name] = ACTIONS(57), - [aux_sym_class_declaration_token1] = ACTIONS(59), - [aux_sym__create_addition_token1] = ACTIONS(61), - [aux_sym_interface_declaration_token1] = ACTIONS(63), - [aux_sym_variable_declaration_token1] = ACTIONS(65), - [aux_sym_field_symbol_declaration_token1] = ACTIONS(67), - [aux_sym_loop_statement_token1] = ACTIONS(69), - [aux_sym_loop_statement_token6] = ACTIONS(294), - [aux_sym_exit_statement_token1] = ACTIONS(71), - [aux_sym_continue_statement_token1] = ACTIONS(73), - [aux_sym_return_statement_token1] = ACTIONS(75), - [aux_sym_report_statement_token1] = ACTIONS(77), - [aux_sym_if_statement_token1] = ACTIONS(79), - [aux_sym_check_statement_token1] = ACTIONS(81), - [aux_sym_select_statement_obsolete_token1] = ACTIONS(83), - [aux_sym_read_table_statement_token1] = ACTIONS(85), - [aux_sym_try_catch_statement_token1] = ACTIONS(87), - [aux_sym_write_statement_token1] = ACTIONS(93), - [aux_sym_call_function_token1] = ACTIONS(95), - [aux_sym_call_function_token2] = ACTIONS(97), - [aux_sym_raise_exception_statement_token1] = ACTIONS(99), - [aux_sym_clear_statement_token1] = ACTIONS(101), - [aux_sym_append_statement_token1] = ACTIONS(103), - [aux_sym_include_statement_token1] = ACTIONS(105), - [sym_eol_comment] = ACTIONS(3), - [sym_bol_comment] = ACTIONS(3), - [sym_field_symbol_name] = ACTIONS(55), - }, - [28] = { - [sym__statement] = STATE(20), - [sym__implementation_statement] = STATE(20), - [sym_class_declaration] = STATE(20), - [sym_class_implementation] = STATE(20), - [sym_class_publication] = STATE(20), - [sym_class_local_friend_publication] = STATE(20), - [sym_interface_declaration] = STATE(20), - [sym_variable_declaration] = STATE(20), - [sym_chained_variable_declaration] = STATE(20), - [sym_chained_structure_declaration] = STATE(20), - [sym_field_symbol_declaration] = STATE(20), - [sym_chained_field_symbol_declaration] = STATE(20), - [sym_loop_statement] = STATE(20), - [sym_exit_statement] = STATE(20), - [sym_continue_statement] = STATE(20), - [sym_return_statement] = STATE(20), - [sym_report_statement] = STATE(20), - [sym_if_statement] = STATE(20), - [sym_check_statement] = STATE(20), - [sym__writeable_expression] = STATE(2993), - [sym_table_expression] = STATE(2993), - [sym_select_statement_obsolete] = STATE(20), - [sym_read_table_statement] = STATE(20), - [sym__data_object] = STATE(2993), - [sym_structured_data_object] = STATE(2993), - [sym_attribute_access_static] = STATE(2993), - [sym_assignment] = STATE(20), - [sym_try_catch_statement] = STATE(20), - [sym_write_statement] = STATE(20), - [sym_chained_write_statement] = STATE(20), - [sym_call_method] = STATE(20), - [sym_call_method_static] = STATE(20), - [sym_call_method_instance] = STATE(20), - [sym_call_function] = STATE(20), - [sym_raise_exception_statement] = STATE(20), - [sym_clear_statement] = STATE(20), - [sym_append_statement] = STATE(20), - [sym_append_statement_obsolete] = STATE(20), - [sym_create_object_statement] = STATE(20), - [sym_include_statement] = STATE(20), - [sym_macro_include] = STATE(20), - [sym_function_implementation] = STATE(20), - [sym_raise_statement] = STATE(20), - [aux_sym_program_repeat1] = STATE(20), - [ts_builtin_sym_end] = ACTIONS(296), - [sym_name] = ACTIONS(9), - [aux_sym_class_declaration_token1] = ACTIONS(11), - [aux_sym__create_addition_token1] = ACTIONS(13), - [aux_sym_interface_declaration_token1] = ACTIONS(15), - [aux_sym_variable_declaration_token1] = ACTIONS(17), - [aux_sym_field_symbol_declaration_token1] = ACTIONS(19), - [aux_sym_loop_statement_token1] = ACTIONS(21), - [aux_sym_exit_statement_token1] = ACTIONS(23), - [aux_sym_continue_statement_token1] = ACTIONS(25), - [aux_sym_return_statement_token1] = ACTIONS(27), - [aux_sym_report_statement_token1] = ACTIONS(29), - [aux_sym_if_statement_token1] = ACTIONS(31), - [aux_sym_check_statement_token1] = ACTIONS(33), - [aux_sym_select_statement_obsolete_token1] = ACTIONS(35), - [aux_sym_read_table_statement_token1] = ACTIONS(37), - [aux_sym_try_catch_statement_token1] = ACTIONS(39), - [aux_sym_write_statement_token1] = ACTIONS(41), - [aux_sym_call_function_token1] = ACTIONS(43), - [aux_sym_call_function_token2] = ACTIONS(45), - [aux_sym_raise_exception_statement_token1] = ACTIONS(47), - [aux_sym_clear_statement_token1] = ACTIONS(49), - [aux_sym_append_statement_token1] = ACTIONS(51), - [aux_sym_include_statement_token1] = ACTIONS(53), - [sym_eol_comment] = ACTIONS(3), - [sym_bol_comment] = ACTIONS(3), - [sym_field_symbol_name] = ACTIONS(55), - }, - [29] = { - [sym__statement] = STATE(12), - [sym__implementation_statement] = STATE(12), - [sym_class_declaration] = STATE(12), - [sym_class_implementation] = STATE(12), - [sym_class_publication] = STATE(12), - [sym_class_local_friend_publication] = STATE(12), - [sym_interface_declaration] = STATE(12), - [sym_variable_declaration] = STATE(12), - [sym_chained_variable_declaration] = STATE(12), - [sym_chained_structure_declaration] = STATE(12), - [sym_field_symbol_declaration] = STATE(12), - [sym_chained_field_symbol_declaration] = STATE(12), - [sym_loop_statement] = STATE(12), - [sym_exit_statement] = STATE(12), - [sym_continue_statement] = STATE(12), - [sym_return_statement] = STATE(12), - [sym_report_statement] = STATE(12), - [sym_if_statement] = STATE(12), - [sym_check_statement] = STATE(12), - [sym__writeable_expression] = STATE(2960), - [sym_table_expression] = STATE(2960), - [sym_select_statement_obsolete] = STATE(12), - [sym_read_table_statement] = STATE(12), - [sym__data_object] = STATE(2960), - [sym_structured_data_object] = STATE(2960), - [sym_attribute_access_static] = STATE(2960), - [sym_assignment] = STATE(12), - [sym_try_catch_statement] = STATE(12), - [sym_write_statement] = STATE(12), - [sym_chained_write_statement] = STATE(12), - [sym_call_method] = STATE(12), - [sym_call_method_static] = STATE(12), - [sym_call_method_instance] = STATE(12), - [sym_call_function] = STATE(12), - [sym_raise_exception_statement] = STATE(12), - [sym_clear_statement] = STATE(12), - [sym_append_statement] = STATE(12), - [sym_append_statement_obsolete] = STATE(12), - [sym_create_object_statement] = STATE(12), - [sym_include_statement] = STATE(12), - [sym_macro_include] = STATE(12), - [sym_function_implementation] = STATE(12), - [sym_raise_statement] = STATE(12), - [aux_sym_program_repeat1] = STATE(12), - [sym_name] = ACTIONS(57), - [aux_sym_class_declaration_token1] = ACTIONS(59), - [aux_sym__create_addition_token1] = ACTIONS(61), - [aux_sym_interface_declaration_token1] = ACTIONS(63), - [aux_sym_variable_declaration_token1] = ACTIONS(65), - [aux_sym_field_symbol_declaration_token1] = ACTIONS(67), - [aux_sym_loop_statement_token1] = ACTIONS(69), - [aux_sym_loop_statement_token6] = ACTIONS(298), - [aux_sym_exit_statement_token1] = ACTIONS(71), - [aux_sym_continue_statement_token1] = ACTIONS(73), - [aux_sym_return_statement_token1] = ACTIONS(75), - [aux_sym_report_statement_token1] = ACTIONS(77), - [aux_sym_if_statement_token1] = ACTIONS(79), - [aux_sym_check_statement_token1] = ACTIONS(81), - [aux_sym_select_statement_obsolete_token1] = ACTIONS(83), - [aux_sym_read_table_statement_token1] = ACTIONS(85), - [aux_sym_try_catch_statement_token1] = ACTIONS(87), - [aux_sym_write_statement_token1] = ACTIONS(93), - [aux_sym_call_function_token1] = ACTIONS(95), - [aux_sym_call_function_token2] = ACTIONS(97), - [aux_sym_raise_exception_statement_token1] = ACTIONS(99), - [aux_sym_clear_statement_token1] = ACTIONS(101), - [aux_sym_append_statement_token1] = ACTIONS(103), - [aux_sym_include_statement_token1] = ACTIONS(105), - [sym_eol_comment] = ACTIONS(3), - [sym_bol_comment] = ACTIONS(3), - [sym_field_symbol_name] = ACTIONS(55), }, [30] = { - [sym__statement] = STATE(4), - [sym__implementation_statement] = STATE(4), - [sym_class_declaration] = STATE(4), - [sym_class_implementation] = STATE(4), - [sym_class_publication] = STATE(4), - [sym_class_local_friend_publication] = STATE(4), - [sym_interface_declaration] = STATE(4), - [sym_variable_declaration] = STATE(4), - [sym_chained_variable_declaration] = STATE(4), - [sym_chained_structure_declaration] = STATE(4), - [sym_field_symbol_declaration] = STATE(4), - [sym_chained_field_symbol_declaration] = STATE(4), - [sym_loop_statement] = STATE(4), - [sym_exit_statement] = STATE(4), - [sym_continue_statement] = STATE(4), - [sym_return_statement] = STATE(4), - [sym_report_statement] = STATE(4), - [sym_if_statement] = STATE(4), - [sym_check_statement] = STATE(4), + [sym__statement] = STATE(28), + [sym__implementation_statement] = STATE(28), + [sym_class_declaration] = STATE(28), + [sym_class_implementation] = STATE(28), + [sym_class_publication] = STATE(28), + [sym_class_local_friend_publication] = STATE(28), + [sym_interface_declaration] = STATE(28), + [sym_variable_declaration] = STATE(28), + [sym_chained_variable_declaration] = STATE(28), + [sym_chained_structure_declaration] = STATE(28), + [sym_field_symbol_declaration] = STATE(28), + [sym_chained_field_symbol_declaration] = STATE(28), + [sym_loop_statement] = STATE(28), + [sym_exit_statement] = STATE(28), + [sym_continue_statement] = STATE(28), + [sym_return_statement] = STATE(28), + [sym_report_statement] = STATE(28), + [sym_if_statement] = STATE(28), + [sym_check_statement] = STATE(28), [sym__writeable_expression] = STATE(2960), [sym_table_expression] = STATE(2960), - [sym_select_statement_obsolete] = STATE(4), - [sym_read_table_statement] = STATE(4), + [sym_select_statement_obsolete] = STATE(28), + [sym_read_table_statement] = STATE(28), [sym__data_object] = STATE(2960), [sym_structured_data_object] = STATE(2960), [sym_attribute_access_static] = STATE(2960), - [sym_assignment] = STATE(4), - [sym_try_catch_statement] = STATE(4), - [sym_write_statement] = STATE(4), - [sym_chained_write_statement] = STATE(4), - [sym_call_method] = STATE(4), - [sym_call_method_static] = STATE(4), - [sym_call_method_instance] = STATE(4), - [sym_call_function] = STATE(4), - [sym_raise_exception_statement] = STATE(4), - [sym_clear_statement] = STATE(4), - [sym_append_statement] = STATE(4), - [sym_append_statement_obsolete] = STATE(4), - [sym_create_object_statement] = STATE(4), - [sym_include_statement] = STATE(4), - [sym_macro_include] = STATE(4), - [sym_function_implementation] = STATE(4), - [sym_raise_statement] = STATE(4), - [aux_sym_program_repeat1] = STATE(4), - [sym_name] = ACTIONS(57), - [aux_sym_class_declaration_token1] = ACTIONS(59), - [aux_sym__create_addition_token1] = ACTIONS(61), - [aux_sym_interface_declaration_token1] = ACTIONS(63), - [aux_sym_variable_declaration_token1] = ACTIONS(65), - [aux_sym_field_symbol_declaration_token1] = ACTIONS(67), - [aux_sym_loop_statement_token1] = ACTIONS(69), - [aux_sym_loop_statement_token6] = ACTIONS(300), - [aux_sym_exit_statement_token1] = ACTIONS(71), - [aux_sym_continue_statement_token1] = ACTIONS(73), - [aux_sym_return_statement_token1] = ACTIONS(75), - [aux_sym_report_statement_token1] = ACTIONS(77), - [aux_sym_if_statement_token1] = ACTIONS(79), - [aux_sym_check_statement_token1] = ACTIONS(81), - [aux_sym_select_statement_obsolete_token1] = ACTIONS(83), - [aux_sym_read_table_statement_token1] = ACTIONS(85), - [aux_sym_try_catch_statement_token1] = ACTIONS(87), - [aux_sym_write_statement_token1] = ACTIONS(93), - [aux_sym_call_function_token1] = ACTIONS(95), - [aux_sym_call_function_token2] = ACTIONS(97), - [aux_sym_raise_exception_statement_token1] = ACTIONS(99), - [aux_sym_clear_statement_token1] = ACTIONS(101), - [aux_sym_append_statement_token1] = ACTIONS(103), - [aux_sym_include_statement_token1] = ACTIONS(105), + [sym_assignment] = STATE(28), + [sym_try_catch_statement] = STATE(28), + [sym_write_statement] = STATE(28), + [sym_chained_write_statement] = STATE(28), + [sym_call_method] = STATE(28), + [sym_call_method_static] = STATE(28), + [sym_call_method_instance] = STATE(28), + [sym_call_function] = STATE(28), + [sym_raise_exception_statement] = STATE(28), + [sym_clear_statement] = STATE(28), + [sym_append_statement] = STATE(28), + [sym_append_statement_obsolete] = STATE(28), + [sym_create_object_statement] = STATE(28), + [sym_include_statement] = STATE(28), + [sym_macro_include] = STATE(28), + [sym_function_implementation] = STATE(28), + [sym_raise_statement] = STATE(28), + [aux_sym_program_repeat1] = STATE(28), + [sym_name] = ACTIONS(55), + [aux_sym_class_declaration_token1] = ACTIONS(57), + [aux_sym__create_addition_token1] = ACTIONS(59), + [aux_sym_interface_declaration_token1] = ACTIONS(61), + [aux_sym_variable_declaration_token1] = ACTIONS(63), + [aux_sym_field_symbol_declaration_token1] = ACTIONS(65), + [aux_sym_loop_statement_token1] = ACTIONS(67), + [aux_sym_loop_statement_token6] = ACTIONS(298), + [aux_sym_exit_statement_token1] = ACTIONS(69), + [aux_sym_continue_statement_token1] = ACTIONS(71), + [aux_sym_return_statement_token1] = ACTIONS(73), + [aux_sym_report_statement_token1] = ACTIONS(75), + [aux_sym_if_statement_token1] = ACTIONS(77), + [aux_sym_check_statement_token1] = ACTIONS(79), + [aux_sym_select_statement_obsolete_token1] = ACTIONS(81), + [aux_sym_read_table_statement_token1] = ACTIONS(83), + [aux_sym_try_catch_statement_token1] = ACTIONS(85), + [aux_sym_write_statement_token1] = ACTIONS(91), + [aux_sym_call_function_token1] = ACTIONS(93), + [aux_sym_call_function_token2] = ACTIONS(95), + [aux_sym_raise_exception_statement_token1] = ACTIONS(97), + [aux_sym_clear_statement_token1] = ACTIONS(99), + [aux_sym_append_statement_token1] = ACTIONS(101), + [aux_sym_include_statement_token1] = ACTIONS(103), [sym_eol_comment] = ACTIONS(3), + [sym_field_symbol_name] = ACTIONS(53), + [sym__whitespace] = ACTIONS(3), [sym_bol_comment] = ACTIONS(3), - [sym_field_symbol_name] = ACTIONS(55), }, }; static const uint16_t ts_small_parse_table[] = { [0] = 26, - ACTIONS(55), 1, + ACTIONS(53), 1, sym_field_symbol_name, - ACTIONS(57), 1, + ACTIONS(55), 1, sym_name, - ACTIONS(61), 1, + ACTIONS(59), 1, aux_sym__create_addition_token1, - ACTIONS(65), 1, + ACTIONS(63), 1, aux_sym_variable_declaration_token1, - ACTIONS(67), 1, + ACTIONS(65), 1, aux_sym_field_symbol_declaration_token1, - ACTIONS(69), 1, + ACTIONS(67), 1, aux_sym_loop_statement_token1, - ACTIONS(71), 1, + ACTIONS(69), 1, aux_sym_exit_statement_token1, - ACTIONS(73), 1, + ACTIONS(71), 1, aux_sym_continue_statement_token1, - ACTIONS(75), 1, + ACTIONS(73), 1, aux_sym_return_statement_token1, - ACTIONS(77), 1, + ACTIONS(75), 1, aux_sym_report_statement_token1, - ACTIONS(79), 1, + ACTIONS(77), 1, aux_sym_if_statement_token1, - ACTIONS(81), 1, + ACTIONS(79), 1, aux_sym_check_statement_token1, - ACTIONS(83), 1, + ACTIONS(81), 1, aux_sym_select_statement_obsolete_token1, - ACTIONS(85), 1, + ACTIONS(83), 1, aux_sym_read_table_statement_token1, - ACTIONS(87), 1, + ACTIONS(85), 1, aux_sym_try_catch_statement_token1, - ACTIONS(93), 1, + ACTIONS(91), 1, aux_sym_write_statement_token1, - ACTIONS(95), 1, + ACTIONS(93), 1, aux_sym_call_function_token1, - ACTIONS(99), 1, + ACTIONS(97), 1, aux_sym_raise_exception_statement_token1, - ACTIONS(101), 1, + ACTIONS(99), 1, aux_sym_clear_statement_token1, - ACTIONS(103), 1, + ACTIONS(101), 1, aux_sym_append_statement_token1, - ACTIONS(105), 1, + ACTIONS(103), 1, aux_sym_include_statement_token1, - ACTIONS(302), 1, + ACTIONS(300), 1, aux_sym_method_implementation_token2, - STATE(2197), 1, + STATE(2199), 1, sym_method_body, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, STATE(2960), 5, sym__writeable_expression, sym_table_expression, sym__data_object, sym_structured_data_object, sym_attribute_access_static, - STATE(35), 32, + STATE(37), 32, sym__implementation_statement, sym_variable_declaration, sym_chained_variable_declaration, @@ -14809,55 +14724,56 @@ static const uint16_t ts_small_parse_table[] = { sym_macro_include, sym_raise_statement, aux_sym_method_body_repeat1, - [115] = 25, - ACTIONS(304), 1, + [116] = 25, + ACTIONS(302), 1, sym_name, - ACTIONS(307), 1, + ACTIONS(305), 1, aux_sym__create_addition_token1, - ACTIONS(312), 1, + ACTIONS(310), 1, aux_sym_variable_declaration_token1, - ACTIONS(315), 1, + ACTIONS(313), 1, aux_sym_field_symbol_declaration_token1, - ACTIONS(318), 1, + ACTIONS(316), 1, aux_sym_loop_statement_token1, - ACTIONS(321), 1, + ACTIONS(319), 1, aux_sym_exit_statement_token1, - ACTIONS(324), 1, + ACTIONS(322), 1, aux_sym_continue_statement_token1, - ACTIONS(327), 1, + ACTIONS(325), 1, aux_sym_return_statement_token1, - ACTIONS(330), 1, + ACTIONS(328), 1, aux_sym_report_statement_token1, - ACTIONS(333), 1, + ACTIONS(331), 1, aux_sym_if_statement_token1, - ACTIONS(336), 1, + ACTIONS(334), 1, aux_sym_check_statement_token1, - ACTIONS(339), 1, + ACTIONS(337), 1, aux_sym_select_statement_obsolete_token1, - ACTIONS(342), 1, + ACTIONS(340), 1, aux_sym_read_table_statement_token1, - ACTIONS(345), 1, + ACTIONS(343), 1, aux_sym_try_catch_statement_token1, - ACTIONS(348), 1, + ACTIONS(346), 1, aux_sym_write_statement_token1, - ACTIONS(351), 1, + ACTIONS(349), 1, aux_sym_call_function_token1, - ACTIONS(354), 1, + ACTIONS(352), 1, aux_sym_raise_exception_statement_token1, - ACTIONS(357), 1, + ACTIONS(355), 1, aux_sym_clear_statement_token1, - ACTIONS(360), 1, + ACTIONS(358), 1, aux_sym_append_statement_token1, - ACTIONS(363), 1, + ACTIONS(361), 1, aux_sym_include_statement_token1, - ACTIONS(366), 1, + ACTIONS(364), 1, sym_field_symbol_name, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(310), 2, + ACTIONS(308), 2, aux_sym_method_implementation_token2, aux_sym_function_implementation_token1, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, STATE(2960), 5, sym__writeable_expression, sym_table_expression, @@ -14897,61 +14813,62 @@ static const uint16_t ts_small_parse_table[] = { sym_macro_include, sym_raise_statement, aux_sym_method_body_repeat1, - [228] = 25, - ACTIONS(55), 1, + [230] = 25, + ACTIONS(53), 1, sym_field_symbol_name, - ACTIONS(57), 1, + ACTIONS(55), 1, sym_name, - ACTIONS(61), 1, + ACTIONS(59), 1, aux_sym__create_addition_token1, - ACTIONS(65), 1, + ACTIONS(63), 1, aux_sym_variable_declaration_token1, - ACTIONS(67), 1, + ACTIONS(65), 1, aux_sym_field_symbol_declaration_token1, - ACTIONS(69), 1, + ACTIONS(67), 1, aux_sym_loop_statement_token1, - ACTIONS(71), 1, + ACTIONS(69), 1, aux_sym_exit_statement_token1, - ACTIONS(73), 1, + ACTIONS(71), 1, aux_sym_continue_statement_token1, - ACTIONS(75), 1, + ACTIONS(73), 1, aux_sym_return_statement_token1, - ACTIONS(77), 1, + ACTIONS(75), 1, aux_sym_report_statement_token1, - ACTIONS(79), 1, + ACTIONS(77), 1, aux_sym_if_statement_token1, - ACTIONS(81), 1, + ACTIONS(79), 1, aux_sym_check_statement_token1, - ACTIONS(83), 1, + ACTIONS(81), 1, aux_sym_select_statement_obsolete_token1, - ACTIONS(85), 1, + ACTIONS(83), 1, aux_sym_read_table_statement_token1, - ACTIONS(87), 1, + ACTIONS(85), 1, aux_sym_try_catch_statement_token1, - ACTIONS(93), 1, + ACTIONS(91), 1, aux_sym_write_statement_token1, - ACTIONS(95), 1, + ACTIONS(93), 1, aux_sym_call_function_token1, - ACTIONS(99), 1, + ACTIONS(97), 1, aux_sym_raise_exception_statement_token1, - ACTIONS(101), 1, + ACTIONS(99), 1, aux_sym_clear_statement_token1, - ACTIONS(103), 1, + ACTIONS(101), 1, aux_sym_append_statement_token1, - ACTIONS(105), 1, + ACTIONS(103), 1, aux_sym_include_statement_token1, - ACTIONS(369), 1, + ACTIONS(367), 1, aux_sym_function_implementation_token1, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, STATE(2960), 5, sym__writeable_expression, sym_table_expression, sym__data_object, sym_structured_data_object, sym_attribute_access_static, - STATE(32), 32, + STATE(34), 32, sym__implementation_statement, sym_variable_declaration, sym_chained_variable_declaration, @@ -14984,61 +14901,62 @@ static const uint16_t ts_small_parse_table[] = { sym_macro_include, sym_raise_statement, aux_sym_method_body_repeat1, - [340] = 25, - ACTIONS(55), 1, + [343] = 25, + ACTIONS(53), 1, sym_field_symbol_name, - ACTIONS(57), 1, + ACTIONS(55), 1, sym_name, - ACTIONS(61), 1, + ACTIONS(59), 1, aux_sym__create_addition_token1, - ACTIONS(65), 1, + ACTIONS(63), 1, aux_sym_variable_declaration_token1, - ACTIONS(67), 1, + ACTIONS(65), 1, aux_sym_field_symbol_declaration_token1, - ACTIONS(69), 1, + ACTIONS(67), 1, aux_sym_loop_statement_token1, - ACTIONS(71), 1, + ACTIONS(69), 1, aux_sym_exit_statement_token1, - ACTIONS(73), 1, + ACTIONS(71), 1, aux_sym_continue_statement_token1, - ACTIONS(75), 1, + ACTIONS(73), 1, aux_sym_return_statement_token1, - ACTIONS(77), 1, + ACTIONS(75), 1, aux_sym_report_statement_token1, - ACTIONS(79), 1, + ACTIONS(77), 1, aux_sym_if_statement_token1, - ACTIONS(81), 1, + ACTIONS(79), 1, aux_sym_check_statement_token1, - ACTIONS(83), 1, + ACTIONS(81), 1, aux_sym_select_statement_obsolete_token1, - ACTIONS(85), 1, + ACTIONS(83), 1, aux_sym_read_table_statement_token1, - ACTIONS(87), 1, + ACTIONS(85), 1, aux_sym_try_catch_statement_token1, - ACTIONS(93), 1, + ACTIONS(91), 1, aux_sym_write_statement_token1, - ACTIONS(95), 1, + ACTIONS(93), 1, aux_sym_call_function_token1, - ACTIONS(99), 1, + ACTIONS(97), 1, aux_sym_raise_exception_statement_token1, - ACTIONS(101), 1, + ACTIONS(99), 1, aux_sym_clear_statement_token1, - ACTIONS(103), 1, + ACTIONS(101), 1, aux_sym_append_statement_token1, - ACTIONS(105), 1, + ACTIONS(103), 1, aux_sym_include_statement_token1, - ACTIONS(371), 1, + ACTIONS(369), 1, aux_sym_function_implementation_token1, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, STATE(2960), 5, sym__writeable_expression, sym_table_expression, sym__data_object, sym_structured_data_object, sym_attribute_access_static, - STATE(33), 32, + STATE(32), 32, sym__implementation_statement, sym_variable_declaration, sym_chained_variable_declaration, @@ -15071,54 +14989,55 @@ static const uint16_t ts_small_parse_table[] = { sym_macro_include, sym_raise_statement, aux_sym_method_body_repeat1, - [452] = 25, - ACTIONS(55), 1, + [456] = 25, + ACTIONS(53), 1, sym_field_symbol_name, - ACTIONS(57), 1, + ACTIONS(55), 1, sym_name, - ACTIONS(61), 1, + ACTIONS(59), 1, aux_sym__create_addition_token1, - ACTIONS(65), 1, + ACTIONS(63), 1, aux_sym_variable_declaration_token1, - ACTIONS(67), 1, + ACTIONS(65), 1, aux_sym_field_symbol_declaration_token1, - ACTIONS(69), 1, + ACTIONS(67), 1, aux_sym_loop_statement_token1, - ACTIONS(71), 1, + ACTIONS(69), 1, aux_sym_exit_statement_token1, - ACTIONS(73), 1, + ACTIONS(71), 1, aux_sym_continue_statement_token1, - ACTIONS(75), 1, + ACTIONS(73), 1, aux_sym_return_statement_token1, - ACTIONS(77), 1, + ACTIONS(75), 1, aux_sym_report_statement_token1, - ACTIONS(79), 1, + ACTIONS(77), 1, aux_sym_if_statement_token1, - ACTIONS(81), 1, + ACTIONS(79), 1, aux_sym_check_statement_token1, - ACTIONS(83), 1, + ACTIONS(81), 1, aux_sym_select_statement_obsolete_token1, - ACTIONS(85), 1, + ACTIONS(83), 1, aux_sym_read_table_statement_token1, - ACTIONS(87), 1, + ACTIONS(85), 1, aux_sym_try_catch_statement_token1, - ACTIONS(93), 1, + ACTIONS(91), 1, aux_sym_write_statement_token1, - ACTIONS(95), 1, + ACTIONS(93), 1, aux_sym_call_function_token1, - ACTIONS(99), 1, + ACTIONS(97), 1, aux_sym_raise_exception_statement_token1, - ACTIONS(101), 1, + ACTIONS(99), 1, aux_sym_clear_statement_token1, - ACTIONS(103), 1, + ACTIONS(101), 1, aux_sym_append_statement_token1, - ACTIONS(105), 1, + ACTIONS(103), 1, aux_sym_include_statement_token1, - ACTIONS(373), 1, - aux_sym_method_implementation_token2, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(371), 1, + aux_sym_function_implementation_token1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, STATE(2960), 5, sym__writeable_expression, sym_table_expression, @@ -15158,61 +15077,62 @@ static const uint16_t ts_small_parse_table[] = { sym_macro_include, sym_raise_statement, aux_sym_method_body_repeat1, - [564] = 25, - ACTIONS(55), 1, + [569] = 25, + ACTIONS(53), 1, sym_field_symbol_name, - ACTIONS(57), 1, + ACTIONS(55), 1, sym_name, - ACTIONS(61), 1, + ACTIONS(59), 1, aux_sym__create_addition_token1, - ACTIONS(65), 1, + ACTIONS(63), 1, aux_sym_variable_declaration_token1, - ACTIONS(67), 1, + ACTIONS(65), 1, aux_sym_field_symbol_declaration_token1, - ACTIONS(69), 1, + ACTIONS(67), 1, aux_sym_loop_statement_token1, - ACTIONS(71), 1, + ACTIONS(69), 1, aux_sym_exit_statement_token1, - ACTIONS(73), 1, + ACTIONS(71), 1, aux_sym_continue_statement_token1, - ACTIONS(75), 1, + ACTIONS(73), 1, aux_sym_return_statement_token1, - ACTIONS(77), 1, + ACTIONS(75), 1, aux_sym_report_statement_token1, - ACTIONS(79), 1, + ACTIONS(77), 1, aux_sym_if_statement_token1, - ACTIONS(81), 1, + ACTIONS(79), 1, aux_sym_check_statement_token1, - ACTIONS(83), 1, + ACTIONS(81), 1, aux_sym_select_statement_obsolete_token1, - ACTIONS(85), 1, + ACTIONS(83), 1, aux_sym_read_table_statement_token1, - ACTIONS(87), 1, + ACTIONS(85), 1, aux_sym_try_catch_statement_token1, - ACTIONS(93), 1, + ACTIONS(91), 1, aux_sym_write_statement_token1, - ACTIONS(95), 1, + ACTIONS(93), 1, aux_sym_call_function_token1, - ACTIONS(99), 1, + ACTIONS(97), 1, aux_sym_raise_exception_statement_token1, - ACTIONS(101), 1, + ACTIONS(99), 1, aux_sym_clear_statement_token1, - ACTIONS(103), 1, + ACTIONS(101), 1, aux_sym_append_statement_token1, - ACTIONS(105), 1, + ACTIONS(103), 1, aux_sym_include_statement_token1, - ACTIONS(375), 1, + ACTIONS(373), 1, aux_sym_function_implementation_token1, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, STATE(2960), 5, sym__writeable_expression, sym_table_expression, sym__data_object, sym_structured_data_object, sym_attribute_access_static, - STATE(32), 32, + STATE(35), 32, sym__implementation_statement, sym_variable_declaration, sym_chained_variable_declaration, @@ -15245,61 +15165,62 @@ static const uint16_t ts_small_parse_table[] = { sym_macro_include, sym_raise_statement, aux_sym_method_body_repeat1, - [676] = 25, - ACTIONS(55), 1, + [682] = 25, + ACTIONS(53), 1, sym_field_symbol_name, - ACTIONS(57), 1, + ACTIONS(55), 1, sym_name, - ACTIONS(61), 1, + ACTIONS(59), 1, aux_sym__create_addition_token1, - ACTIONS(65), 1, + ACTIONS(63), 1, aux_sym_variable_declaration_token1, - ACTIONS(67), 1, + ACTIONS(65), 1, aux_sym_field_symbol_declaration_token1, - ACTIONS(69), 1, + ACTIONS(67), 1, aux_sym_loop_statement_token1, - ACTIONS(71), 1, + ACTIONS(69), 1, aux_sym_exit_statement_token1, - ACTIONS(73), 1, + ACTIONS(71), 1, aux_sym_continue_statement_token1, - ACTIONS(75), 1, + ACTIONS(73), 1, aux_sym_return_statement_token1, - ACTIONS(77), 1, + ACTIONS(75), 1, aux_sym_report_statement_token1, - ACTIONS(79), 1, + ACTIONS(77), 1, aux_sym_if_statement_token1, - ACTIONS(81), 1, + ACTIONS(79), 1, aux_sym_check_statement_token1, - ACTIONS(83), 1, + ACTIONS(81), 1, aux_sym_select_statement_obsolete_token1, - ACTIONS(85), 1, + ACTIONS(83), 1, aux_sym_read_table_statement_token1, - ACTIONS(87), 1, + ACTIONS(85), 1, aux_sym_try_catch_statement_token1, - ACTIONS(93), 1, + ACTIONS(91), 1, aux_sym_write_statement_token1, - ACTIONS(95), 1, + ACTIONS(93), 1, aux_sym_call_function_token1, - ACTIONS(99), 1, + ACTIONS(97), 1, aux_sym_raise_exception_statement_token1, - ACTIONS(101), 1, + ACTIONS(99), 1, aux_sym_clear_statement_token1, - ACTIONS(103), 1, + ACTIONS(101), 1, aux_sym_append_statement_token1, - ACTIONS(105), 1, + ACTIONS(103), 1, aux_sym_include_statement_token1, - ACTIONS(377), 1, - aux_sym_function_implementation_token1, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(375), 1, + aux_sym_method_implementation_token2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, STATE(2960), 5, sym__writeable_expression, sym_table_expression, sym__data_object, sym_structured_data_object, sym_attribute_access_static, - STATE(36), 32, + STATE(32), 32, sym__implementation_statement, sym_variable_declaration, sym_chained_variable_declaration, @@ -15332,133 +15253,51 @@ static const uint16_t ts_small_parse_table[] = { sym_macro_include, sym_raise_statement, aux_sym_method_body_repeat1, - [788] = 6, - ACTIONS(3), 1, - sym_eol_comment, - ACTIONS(5), 1, - sym_bol_comment, - ACTIONS(383), 1, - anon_sym_DASH2, - STATE(40), 1, - aux_sym_structured_data_object_repeat1, - ACTIONS(379), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_STAR_STAR, + [795] = 3, + ACTIONS(377), 1, sym_name, - ACTIONS(381), 25, - anon_sym_DOT, - aux_sym__method_declaration_importing_token1, - aux_sym__method_declaration_exporting_token1, - aux_sym__method_declaration_changing_token1, - anon_sym_RPAREN, - aux_sym__method_declaration_exceptions_token1, - anon_sym_COMMA, - aux_sym_complete_typing_token2, - aux_sym_loop_statement_token3, - aux_sym_loop_statement_token5, - aux_sym__logical_expression_token2, - aux_sym__logical_expression_token3, - anon_sym_EQ, - aux_sym_comparison_expression_token1, - anon_sym_LT_GT, - aux_sym_comparison_expression_token2, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DIV, - anon_sym_MOD, - anon_sym_RBRACK, - aux_sym_select_statement_obsolete_token3, - aux_sym_line_spec_token3, - aux_sym__read_table_result_token1, - aux_sym__explicit_parameter_list_token1, - [834] = 6, - ACTIONS(3), 1, - sym_eol_comment, - ACTIONS(5), 1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(389), 1, - anon_sym_DASH2, - STATE(39), 1, - aux_sym_structured_data_object_repeat1, - ACTIONS(385), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_STAR_STAR, - sym_name, - ACTIONS(387), 25, - anon_sym_DOT, - aux_sym__method_declaration_importing_token1, - aux_sym__method_declaration_exporting_token1, - aux_sym__method_declaration_changing_token1, - anon_sym_RPAREN, - aux_sym__method_declaration_exceptions_token1, - anon_sym_COMMA, - aux_sym_complete_typing_token2, - aux_sym_loop_statement_token3, - aux_sym_loop_statement_token5, - aux_sym__logical_expression_token2, - aux_sym__logical_expression_token3, - anon_sym_EQ, - aux_sym_comparison_expression_token1, - anon_sym_LT_GT, - aux_sym_comparison_expression_token2, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DIV, - anon_sym_MOD, - anon_sym_RBRACK, - aux_sym_select_statement_obsolete_token3, - aux_sym_line_spec_token3, - aux_sym__read_table_result_token1, - aux_sym__explicit_parameter_list_token1, - [880] = 6, - ACTIONS(3), 1, sym_eol_comment, - ACTIONS(5), 1, - sym_bol_comment, - ACTIONS(383), 1, - anon_sym_DASH2, - STATE(39), 1, - aux_sym_structured_data_object_repeat1, - ACTIONS(392), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_STAR_STAR, - sym_name, - ACTIONS(394), 25, - anon_sym_DOT, - aux_sym__method_declaration_importing_token1, - aux_sym__method_declaration_exporting_token1, - aux_sym__method_declaration_changing_token1, - anon_sym_RPAREN, - aux_sym__method_declaration_exceptions_token1, - anon_sym_COMMA, - aux_sym_complete_typing_token2, - aux_sym_loop_statement_token3, - aux_sym_loop_statement_token5, - aux_sym__logical_expression_token2, - aux_sym__logical_expression_token3, - anon_sym_EQ, - aux_sym_comparison_expression_token1, - anon_sym_LT_GT, - aux_sym_comparison_expression_token2, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DIV, - anon_sym_MOD, - anon_sym_RBRACK, - aux_sym_select_statement_obsolete_token3, - aux_sym_line_spec_token3, - aux_sym__read_table_result_token1, - aux_sym__explicit_parameter_list_token1, - [926] = 3, - ACTIONS(396), 1, + ACTIONS(379), 29, + aux_sym_class_declaration_token1, + aux_sym__create_addition_token1, + aux_sym_method_implementation_token2, + aux_sym_interface_declaration_token1, + aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, + aux_sym_loop_statement_token1, + aux_sym_loop_statement_token6, + aux_sym_exit_statement_token1, + aux_sym_continue_statement_token1, + aux_sym_return_statement_token1, + aux_sym_report_statement_token1, + aux_sym_if_statement_token1, + aux_sym_if_statement_token2, + aux_sym_check_statement_token1, + aux_sym_select_statement_obsolete_token1, + aux_sym_read_table_statement_token1, + aux_sym_try_catch_statement_token1, + aux_sym_try_catch_statement_token2, + aux_sym_catch_statement_token1, + aux_sym_write_statement_token1, + aux_sym_call_function_token1, + aux_sym_call_function_token2, + aux_sym_raise_exception_statement_token1, + aux_sym_clear_statement_token1, + aux_sym_append_statement_token1, + aux_sym_include_statement_token1, + aux_sym_function_implementation_token1, + sym_field_symbol_name, + [835] = 3, + ACTIONS(381), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(398), 29, + sym_eol_comment, + ACTIONS(383), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, @@ -15488,13 +15327,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_include_statement_token1, aux_sym_function_implementation_token1, sym_field_symbol_name, - [965] = 3, - ACTIONS(400), 1, + [875] = 3, + ACTIONS(385), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(402), 29, + sym_eol_comment, + ACTIONS(387), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, @@ -15524,13 +15364,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_include_statement_token1, aux_sym_function_implementation_token1, sym_field_symbol_name, - [1004] = 3, - ACTIONS(404), 1, + [915] = 3, + ACTIONS(389), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(406), 29, + sym_eol_comment, + ACTIONS(391), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, @@ -15560,13 +15401,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_include_statement_token1, aux_sym_function_implementation_token1, sym_field_symbol_name, - [1043] = 3, - ACTIONS(408), 1, + [955] = 3, + ACTIONS(393), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(410), 29, + sym_eol_comment, + ACTIONS(395), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, @@ -15596,13 +15438,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_include_statement_token1, aux_sym_function_implementation_token1, sym_field_symbol_name, - [1082] = 3, - ACTIONS(412), 1, + [995] = 3, + ACTIONS(397), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(414), 29, + sym_eol_comment, + ACTIONS(399), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, @@ -15632,13 +15475,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_include_statement_token1, aux_sym_function_implementation_token1, sym_field_symbol_name, - [1121] = 3, - ACTIONS(416), 1, + [1035] = 3, + ACTIONS(401), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(418), 29, + sym_eol_comment, + ACTIONS(403), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, @@ -15668,13 +15512,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_include_statement_token1, aux_sym_function_implementation_token1, sym_field_symbol_name, - [1160] = 3, - ACTIONS(420), 1, + [1075] = 3, + ACTIONS(405), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(422), 29, + sym_eol_comment, + ACTIONS(407), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, @@ -15704,13 +15549,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_include_statement_token1, aux_sym_function_implementation_token1, sym_field_symbol_name, - [1199] = 3, - ACTIONS(424), 1, + [1115] = 3, + ACTIONS(409), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(426), 29, + sym_eol_comment, + ACTIONS(411), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, @@ -15740,13 +15586,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_include_statement_token1, aux_sym_function_implementation_token1, sym_field_symbol_name, - [1238] = 3, - ACTIONS(428), 1, + [1155] = 3, + ACTIONS(413), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(430), 29, + sym_eol_comment, + ACTIONS(415), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, @@ -15776,13 +15623,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_include_statement_token1, aux_sym_function_implementation_token1, sym_field_symbol_name, - [1277] = 3, - ACTIONS(432), 1, + [1195] = 3, + ACTIONS(417), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(434), 29, + sym_eol_comment, + ACTIONS(419), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, @@ -15812,13 +15660,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_include_statement_token1, aux_sym_function_implementation_token1, sym_field_symbol_name, - [1316] = 3, - ACTIONS(436), 1, + [1235] = 3, + ACTIONS(421), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(438), 29, + sym_eol_comment, + ACTIONS(423), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, @@ -15848,13 +15697,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_include_statement_token1, aux_sym_function_implementation_token1, sym_field_symbol_name, - [1355] = 3, - ACTIONS(440), 1, + [1275] = 3, + ACTIONS(425), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(442), 29, + sym_eol_comment, + ACTIONS(427), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, @@ -15884,13 +15734,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_include_statement_token1, aux_sym_function_implementation_token1, sym_field_symbol_name, - [1394] = 3, - ACTIONS(444), 1, + [1315] = 3, + ACTIONS(429), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(446), 29, + sym_eol_comment, + ACTIONS(431), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, @@ -15920,13 +15771,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_include_statement_token1, aux_sym_function_implementation_token1, sym_field_symbol_name, - [1433] = 3, - ACTIONS(448), 1, + [1355] = 3, + ACTIONS(433), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(450), 29, + sym_eol_comment, + ACTIONS(435), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, @@ -15956,13 +15808,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_include_statement_token1, aux_sym_function_implementation_token1, sym_field_symbol_name, - [1472] = 3, - ACTIONS(452), 1, + [1395] = 3, + ACTIONS(437), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(454), 29, + sym_eol_comment, + ACTIONS(439), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, @@ -15992,13 +15845,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_include_statement_token1, aux_sym_function_implementation_token1, sym_field_symbol_name, - [1511] = 3, - ACTIONS(456), 1, + [1435] = 3, + ACTIONS(441), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(458), 29, + sym_eol_comment, + ACTIONS(443), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, @@ -16028,13 +15882,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_include_statement_token1, aux_sym_function_implementation_token1, sym_field_symbol_name, - [1550] = 3, - ACTIONS(460), 1, + [1475] = 3, + ACTIONS(445), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(462), 29, + sym_eol_comment, + ACTIONS(447), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, @@ -16064,13 +15919,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_include_statement_token1, aux_sym_function_implementation_token1, sym_field_symbol_name, - [1589] = 3, - ACTIONS(464), 1, + [1515] = 3, + ACTIONS(449), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(466), 29, + sym_eol_comment, + ACTIONS(451), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, @@ -16100,13 +15956,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_include_statement_token1, aux_sym_function_implementation_token1, sym_field_symbol_name, - [1628] = 3, - ACTIONS(468), 1, + [1555] = 3, + ACTIONS(453), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(470), 29, + sym_eol_comment, + ACTIONS(455), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, @@ -16136,13 +15993,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_include_statement_token1, aux_sym_function_implementation_token1, sym_field_symbol_name, - [1667] = 3, - ACTIONS(472), 1, + [1595] = 3, + ACTIONS(457), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(474), 29, + sym_eol_comment, + ACTIONS(459), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, @@ -16172,13 +16030,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_include_statement_token1, aux_sym_function_implementation_token1, sym_field_symbol_name, - [1706] = 3, - ACTIONS(476), 1, + [1635] = 3, + ACTIONS(461), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(478), 29, + sym_eol_comment, + ACTIONS(463), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, @@ -16208,13 +16067,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_include_statement_token1, aux_sym_function_implementation_token1, sym_field_symbol_name, - [1745] = 3, - ACTIONS(480), 1, + [1675] = 3, + ACTIONS(465), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(482), 29, + sym_eol_comment, + ACTIONS(467), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, @@ -16244,13 +16104,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_include_statement_token1, aux_sym_function_implementation_token1, sym_field_symbol_name, - [1784] = 3, - ACTIONS(484), 1, + [1715] = 3, + ACTIONS(469), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(486), 29, + sym_eol_comment, + ACTIONS(471), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, @@ -16280,13 +16141,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_include_statement_token1, aux_sym_function_implementation_token1, sym_field_symbol_name, - [1823] = 3, - ACTIONS(488), 1, + [1755] = 3, + ACTIONS(473), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(490), 29, + sym_eol_comment, + ACTIONS(475), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, @@ -16316,13 +16178,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_include_statement_token1, aux_sym_function_implementation_token1, sym_field_symbol_name, - [1862] = 3, - ACTIONS(492), 1, + [1795] = 3, + ACTIONS(477), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(494), 29, + sym_eol_comment, + ACTIONS(479), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, @@ -16352,13 +16215,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_include_statement_token1, aux_sym_function_implementation_token1, sym_field_symbol_name, - [1901] = 3, - ACTIONS(496), 1, + [1835] = 3, + ACTIONS(481), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(498), 29, + sym_eol_comment, + ACTIONS(483), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, @@ -16388,13 +16252,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_include_statement_token1, aux_sym_function_implementation_token1, sym_field_symbol_name, - [1940] = 3, - ACTIONS(500), 1, + [1875] = 3, + ACTIONS(485), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(502), 29, + sym_eol_comment, + ACTIONS(487), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, @@ -16424,13 +16289,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_include_statement_token1, aux_sym_function_implementation_token1, sym_field_symbol_name, - [1979] = 3, - ACTIONS(504), 1, + [1915] = 3, + ACTIONS(489), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(506), 29, + sym_eol_comment, + ACTIONS(491), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, @@ -16460,13 +16326,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_include_statement_token1, aux_sym_function_implementation_token1, sym_field_symbol_name, - [2018] = 3, - ACTIONS(508), 1, + [1955] = 3, + ACTIONS(493), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(510), 29, + sym_eol_comment, + ACTIONS(495), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, @@ -16496,13 +16363,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_include_statement_token1, aux_sym_function_implementation_token1, sym_field_symbol_name, - [2057] = 3, - ACTIONS(512), 1, + [1995] = 3, + ACTIONS(497), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(514), 29, + sym_eol_comment, + ACTIONS(499), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, @@ -16532,13 +16400,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_include_statement_token1, aux_sym_function_implementation_token1, sym_field_symbol_name, - [2096] = 3, - ACTIONS(516), 1, + [2035] = 3, + ACTIONS(501), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(518), 29, + sym_eol_comment, + ACTIONS(503), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, @@ -16568,13 +16437,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_include_statement_token1, aux_sym_function_implementation_token1, sym_field_symbol_name, - [2135] = 3, - ACTIONS(520), 1, + [2075] = 3, + ACTIONS(505), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(522), 29, + sym_eol_comment, + ACTIONS(507), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, @@ -16604,13 +16474,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_include_statement_token1, aux_sym_function_implementation_token1, sym_field_symbol_name, - [2174] = 3, - ACTIONS(524), 1, + [2115] = 3, + ACTIONS(509), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(526), 29, + sym_eol_comment, + ACTIONS(511), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, @@ -16640,13 +16511,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_include_statement_token1, aux_sym_function_implementation_token1, sym_field_symbol_name, - [2213] = 3, - ACTIONS(528), 1, + [2155] = 3, + ACTIONS(513), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(530), 29, + sym_eol_comment, + ACTIONS(515), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, @@ -16676,13 +16548,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_include_statement_token1, aux_sym_function_implementation_token1, sym_field_symbol_name, - [2252] = 3, - ACTIONS(532), 1, + [2195] = 3, + ACTIONS(517), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(534), 29, + sym_eol_comment, + ACTIONS(519), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, @@ -16712,13 +16585,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_include_statement_token1, aux_sym_function_implementation_token1, sym_field_symbol_name, - [2291] = 3, - ACTIONS(536), 1, + [2235] = 3, + ACTIONS(521), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(538), 29, + sym_eol_comment, + ACTIONS(523), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, @@ -16748,13 +16622,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_include_statement_token1, aux_sym_function_implementation_token1, sym_field_symbol_name, - [2330] = 3, - ACTIONS(540), 1, + [2275] = 3, + ACTIONS(525), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(542), 29, + sym_eol_comment, + ACTIONS(527), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, @@ -16784,13 +16659,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_include_statement_token1, aux_sym_function_implementation_token1, sym_field_symbol_name, - [2369] = 3, - ACTIONS(544), 1, + [2315] = 3, + ACTIONS(529), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(546), 29, + sym_eol_comment, + ACTIONS(531), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, @@ -16820,13 +16696,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_include_statement_token1, aux_sym_function_implementation_token1, sym_field_symbol_name, - [2408] = 3, - ACTIONS(548), 1, + [2355] = 3, + ACTIONS(533), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(550), 29, + sym_eol_comment, + ACTIONS(535), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, @@ -16856,13 +16733,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_include_statement_token1, aux_sym_function_implementation_token1, sym_field_symbol_name, - [2447] = 3, - ACTIONS(552), 1, + [2395] = 3, + ACTIONS(537), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(554), 29, + sym_eol_comment, + ACTIONS(539), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, @@ -16892,50 +16770,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_include_statement_token1, aux_sym_function_implementation_token1, sym_field_symbol_name, - [2486] = 4, - ACTIONS(3), 1, - sym_eol_comment, - ACTIONS(5), 1, - sym_bol_comment, - ACTIONS(556), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_STAR_STAR, + [2435] = 3, + ACTIONS(541), 1, sym_name, - ACTIONS(558), 26, - anon_sym_DOT, - aux_sym__method_declaration_importing_token1, - aux_sym__method_declaration_exporting_token1, - aux_sym__method_declaration_changing_token1, - anon_sym_RPAREN, - aux_sym__method_declaration_exceptions_token1, - anon_sym_COMMA, - aux_sym_complete_typing_token2, - aux_sym_loop_statement_token3, - aux_sym_loop_statement_token5, - aux_sym__logical_expression_token2, - aux_sym__logical_expression_token3, - anon_sym_EQ, - aux_sym_comparison_expression_token1, - anon_sym_LT_GT, - aux_sym_comparison_expression_token2, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DIV, - anon_sym_MOD, - anon_sym_RBRACK, - aux_sym_select_statement_obsolete_token3, - aux_sym_line_spec_token3, - aux_sym__read_table_result_token1, - anon_sym_DASH2, - aux_sym__explicit_parameter_list_token1, - [2527] = 3, - ACTIONS(560), 1, - sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(562), 29, + sym_eol_comment, + ACTIONS(543), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, @@ -16965,13 +16807,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_include_statement_token1, aux_sym_function_implementation_token1, sym_field_symbol_name, - [2566] = 3, - ACTIONS(564), 1, + [2475] = 3, + ACTIONS(545), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(566), 29, + sym_eol_comment, + ACTIONS(547), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, @@ -17001,13 +16844,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_include_statement_token1, aux_sym_function_implementation_token1, sym_field_symbol_name, - [2605] = 3, - ACTIONS(568), 1, + [2515] = 3, + ACTIONS(549), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(570), 29, + sym_eol_comment, + ACTIONS(551), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, @@ -17037,13 +16881,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_include_statement_token1, aux_sym_function_implementation_token1, sym_field_symbol_name, - [2644] = 3, - ACTIONS(572), 1, + [2555] = 3, + ACTIONS(553), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(574), 29, + sym_eol_comment, + ACTIONS(555), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, @@ -17073,13 +16918,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_include_statement_token1, aux_sym_function_implementation_token1, sym_field_symbol_name, - [2683] = 3, - ACTIONS(576), 1, + [2595] = 3, + ACTIONS(557), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(578), 29, + sym_eol_comment, + ACTIONS(559), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, @@ -17109,13 +16955,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_include_statement_token1, aux_sym_function_implementation_token1, sym_field_symbol_name, - [2722] = 3, - ACTIONS(580), 1, + [2635] = 3, + ACTIONS(561), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(582), 29, + sym_eol_comment, + ACTIONS(563), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, @@ -17145,13 +16992,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_include_statement_token1, aux_sym_function_implementation_token1, sym_field_symbol_name, - [2761] = 3, - ACTIONS(584), 1, + [2675] = 3, + ACTIONS(565), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(586), 29, + sym_eol_comment, + ACTIONS(567), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, @@ -17181,13 +17029,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_include_statement_token1, aux_sym_function_implementation_token1, sym_field_symbol_name, - [2800] = 3, - ACTIONS(588), 1, + [2715] = 3, + ACTIONS(569), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(590), 29, + sym_eol_comment, + ACTIONS(571), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, @@ -17217,13 +17066,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_include_statement_token1, aux_sym_function_implementation_token1, sym_field_symbol_name, - [2839] = 3, - ACTIONS(592), 1, + [2755] = 3, + ACTIONS(573), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(594), 29, + sym_eol_comment, + ACTIONS(575), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, @@ -17253,13 +17103,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_include_statement_token1, aux_sym_function_implementation_token1, sym_field_symbol_name, - [2878] = 3, - ACTIONS(596), 1, + [2795] = 3, + ACTIONS(577), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(598), 29, + sym_eol_comment, + ACTIONS(579), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, @@ -17289,13 +17140,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_include_statement_token1, aux_sym_function_implementation_token1, sym_field_symbol_name, - [2917] = 3, - ACTIONS(600), 1, + [2835] = 3, + ACTIONS(581), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(602), 29, + sym_eol_comment, + ACTIONS(583), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, @@ -17325,13 +17177,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_include_statement_token1, aux_sym_function_implementation_token1, sym_field_symbol_name, - [2956] = 3, - ACTIONS(604), 1, + [2875] = 3, + ACTIONS(585), 1, sym_name, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + ACTIONS(587), 29, + aux_sym_class_declaration_token1, + aux_sym__create_addition_token1, + aux_sym_method_implementation_token2, + aux_sym_interface_declaration_token1, + aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, + aux_sym_loop_statement_token1, + aux_sym_loop_statement_token6, + aux_sym_exit_statement_token1, + aux_sym_continue_statement_token1, + aux_sym_return_statement_token1, + aux_sym_report_statement_token1, + aux_sym_if_statement_token1, + aux_sym_if_statement_token2, + aux_sym_check_statement_token1, + aux_sym_select_statement_obsolete_token1, + aux_sym_read_table_statement_token1, + aux_sym_try_catch_statement_token1, + aux_sym_try_catch_statement_token2, + aux_sym_catch_statement_token1, + aux_sym_write_statement_token1, + aux_sym_call_function_token1, + aux_sym_call_function_token2, + aux_sym_raise_exception_statement_token1, + aux_sym_clear_statement_token1, + aux_sym_append_statement_token1, + aux_sym_include_statement_token1, + aux_sym_function_implementation_token1, + sym_field_symbol_name, + [2915] = 3, + ACTIONS(589), 1, + sym_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(606), 29, + sym_eol_comment, + ACTIONS(591), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, @@ -17361,13 +17251,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_include_statement_token1, aux_sym_function_implementation_token1, sym_field_symbol_name, - [2995] = 3, - ACTIONS(608), 1, + [2955] = 3, + ACTIONS(593), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(610), 29, + sym_eol_comment, + ACTIONS(595), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, @@ -17397,13 +17288,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_include_statement_token1, aux_sym_function_implementation_token1, sym_field_symbol_name, - [3034] = 3, - ACTIONS(612), 1, + [2995] = 3, + ACTIONS(597), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(614), 29, + sym_eol_comment, + ACTIONS(599), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, @@ -17433,13 +17325,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_include_statement_token1, aux_sym_function_implementation_token1, sym_field_symbol_name, - [3073] = 3, - ACTIONS(616), 1, + [3035] = 3, + ACTIONS(601), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(618), 29, + sym_eol_comment, + ACTIONS(603), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, @@ -17469,13 +17362,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_include_statement_token1, aux_sym_function_implementation_token1, sym_field_symbol_name, - [3112] = 3, - ACTIONS(620), 1, + [3075] = 3, + ACTIONS(605), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(622), 29, + sym_eol_comment, + ACTIONS(607), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, @@ -17505,13 +17399,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_include_statement_token1, aux_sym_function_implementation_token1, sym_field_symbol_name, - [3151] = 3, - ACTIONS(624), 1, + [3115] = 3, + ACTIONS(609), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(626), 29, + sym_eol_comment, + ACTIONS(611), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, @@ -17541,13 +17436,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_include_statement_token1, aux_sym_function_implementation_token1, sym_field_symbol_name, - [3190] = 3, - ACTIONS(628), 1, + [3155] = 3, + ACTIONS(613), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(630), 29, + sym_eol_comment, + ACTIONS(615), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, @@ -17577,13 +17473,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_include_statement_token1, aux_sym_function_implementation_token1, sym_field_symbol_name, - [3229] = 3, - ACTIONS(632), 1, + [3195] = 3, + ACTIONS(617), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(634), 29, + sym_eol_comment, + ACTIONS(619), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, @@ -17613,13 +17510,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_include_statement_token1, aux_sym_function_implementation_token1, sym_field_symbol_name, - [3268] = 3, - ACTIONS(636), 1, + [3235] = 3, + ACTIONS(621), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(638), 29, + sym_eol_comment, + ACTIONS(623), 29, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_method_implementation_token2, @@ -17649,16 +17547,52 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_include_statement_token1, aux_sym_function_implementation_token1, sym_field_symbol_name, - [3307] = 3, - ACTIONS(640), 1, + [3275] = 3, + ACTIONS(625), 2, + anon_sym_STAR, sym_name, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + ACTIONS(627), 27, + anon_sym_DOT, + aux_sym__method_declaration_importing_token1, + aux_sym__method_declaration_exporting_token1, + aux_sym__method_declaration_changing_token1, + anon_sym_RPAREN, + aux_sym__method_declaration_exceptions_token1, + anon_sym_COMMA, + aux_sym_complete_typing_token2, + aux_sym_loop_statement_token3, + aux_sym_loop_statement_token5, + aux_sym__logical_expression_token2, + aux_sym__logical_expression_token3, + anon_sym_EQ, + aux_sym_comparison_expression_token1, + anon_sym_LT_GT, + aux_sym_comparison_expression_token2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_DIV, + anon_sym_MOD, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_select_statement_obsolete_token3, + aux_sym_line_spec_token3, + aux_sym__read_table_result_token1, + aux_sym__explicit_parameter_list_token1, + [3314] = 3, + ACTIONS(629), 1, + sym_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(642), 29, + sym_eol_comment, + ACTIONS(631), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, - aux_sym_method_implementation_token2, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, aux_sym_field_symbol_declaration_token1, @@ -17683,18 +17617,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - aux_sym_function_implementation_token1, sym_field_symbol_name, - [3346] = 3, - ACTIONS(644), 1, + [3352] = 3, + ACTIONS(633), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(646), 29, + sym_eol_comment, + ACTIONS(635), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, - aux_sym_method_implementation_token2, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, aux_sym_field_symbol_declaration_token1, @@ -17719,87 +17652,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_clear_statement_token1, aux_sym_append_statement_token1, aux_sym_include_statement_token1, - aux_sym_function_implementation_token1, sym_field_symbol_name, - [3385] = 4, - ACTIONS(3), 1, - sym_eol_comment, - ACTIONS(5), 1, - sym_bol_comment, - ACTIONS(648), 3, - anon_sym_STAR, - anon_sym_STAR_STAR, + [3390] = 3, + ACTIONS(637), 1, sym_name, - ACTIONS(650), 26, - anon_sym_DOT, - aux_sym__method_declaration_importing_token1, - aux_sym__method_declaration_exporting_token1, - aux_sym__method_declaration_changing_token1, - anon_sym_RPAREN, - aux_sym__method_declaration_exceptions_token1, - anon_sym_COMMA, - aux_sym_complete_typing_token2, - aux_sym_loop_statement_token3, - aux_sym_loop_statement_token5, - aux_sym__logical_expression_token2, - aux_sym__logical_expression_token3, - anon_sym_EQ, - aux_sym_comparison_expression_token1, - anon_sym_LT_GT, - aux_sym_comparison_expression_token2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_DIV, - anon_sym_MOD, - anon_sym_RBRACK, - aux_sym_select_statement_obsolete_token3, - aux_sym_line_spec_token3, - aux_sym__read_table_result_token1, - aux_sym__explicit_parameter_list_token1, - [3425] = 4, - ACTIONS(3), 1, - sym_eol_comment, - ACTIONS(5), 1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(652), 3, - anon_sym_STAR, - anon_sym_STAR_STAR, - sym_name, - ACTIONS(654), 26, - anon_sym_DOT, - aux_sym__method_declaration_importing_token1, - aux_sym__method_declaration_exporting_token1, - aux_sym__method_declaration_changing_token1, - anon_sym_RPAREN, - aux_sym__method_declaration_exceptions_token1, - anon_sym_COMMA, - aux_sym_complete_typing_token2, - aux_sym_loop_statement_token3, - aux_sym_loop_statement_token5, - aux_sym__logical_expression_token2, - aux_sym__logical_expression_token3, - anon_sym_EQ, - aux_sym_comparison_expression_token1, - anon_sym_LT_GT, - aux_sym_comparison_expression_token2, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_DIV, - anon_sym_MOD, - anon_sym_RBRACK, - aux_sym_select_statement_obsolete_token3, - aux_sym_line_spec_token3, - aux_sym__read_table_result_token1, - aux_sym__explicit_parameter_list_token1, - [3465] = 3, - ACTIONS(656), 1, - sym_name, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(658), 27, + ACTIONS(639), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -17827,13 +17688,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [3502] = 3, - ACTIONS(660), 1, + [3428] = 3, + ACTIONS(641), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(662), 27, + sym_eol_comment, + ACTIONS(643), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -17861,13 +17723,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [3539] = 3, - ACTIONS(664), 1, + [3466] = 3, + ACTIONS(645), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(666), 27, + sym_eol_comment, + ACTIONS(647), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -17895,13 +17758,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [3576] = 3, - ACTIONS(668), 1, + [3504] = 3, + ACTIONS(649), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(670), 27, + sym_eol_comment, + ACTIONS(651), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -17929,13 +17793,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [3613] = 3, - ACTIONS(672), 1, + [3542] = 3, + ACTIONS(653), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(674), 27, + sym_eol_comment, + ACTIONS(655), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -17963,13 +17828,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [3650] = 3, - ACTIONS(676), 1, + [3580] = 3, + ACTIONS(657), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(678), 27, + sym_eol_comment, + ACTIONS(659), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -17997,13 +17863,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [3687] = 3, - ACTIONS(680), 1, + [3618] = 3, + ACTIONS(661), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(682), 27, + sym_eol_comment, + ACTIONS(663), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -18031,13 +17898,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [3724] = 3, - ACTIONS(684), 1, + [3656] = 3, + ACTIONS(665), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(686), 27, + sym_eol_comment, + ACTIONS(667), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -18065,13 +17933,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [3761] = 3, - ACTIONS(688), 1, + [3694] = 3, + ACTIONS(669), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(690), 27, + sym_eol_comment, + ACTIONS(671), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -18099,13 +17968,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [3798] = 3, - ACTIONS(692), 1, + [3732] = 3, + ACTIONS(673), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(694), 27, + sym_eol_comment, + ACTIONS(675), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -18133,13 +18003,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [3835] = 3, - ACTIONS(696), 1, + [3770] = 3, + ACTIONS(677), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(698), 27, + sym_eol_comment, + ACTIONS(679), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -18167,13 +18038,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [3872] = 3, - ACTIONS(700), 1, + [3808] = 3, + ACTIONS(681), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(702), 27, + sym_eol_comment, + ACTIONS(683), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -18201,13 +18073,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [3909] = 3, - ACTIONS(704), 1, + [3846] = 3, + ACTIONS(685), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(706), 27, + sym_eol_comment, + ACTIONS(687), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -18235,13 +18108,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [3946] = 3, - ACTIONS(708), 1, + [3884] = 3, + ACTIONS(689), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(710), 27, + sym_eol_comment, + ACTIONS(691), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -18269,13 +18143,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [3983] = 3, - ACTIONS(712), 1, + [3922] = 3, + ACTIONS(693), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(714), 27, + sym_eol_comment, + ACTIONS(695), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -18303,13 +18178,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [4020] = 3, - ACTIONS(716), 1, + [3960] = 3, + ACTIONS(697), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(718), 27, + sym_eol_comment, + ACTIONS(699), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -18337,13 +18213,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [4057] = 3, - ACTIONS(720), 1, + [3998] = 3, + ACTIONS(701), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(722), 27, + sym_eol_comment, + ACTIONS(703), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -18371,13 +18248,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [4094] = 3, - ACTIONS(724), 1, + [4036] = 3, + ACTIONS(705), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(726), 27, + sym_eol_comment, + ACTIONS(707), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -18405,13 +18283,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [4131] = 3, - ACTIONS(728), 1, + [4074] = 3, + ACTIONS(709), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(730), 27, + sym_eol_comment, + ACTIONS(711), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -18439,13 +18318,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [4168] = 3, - ACTIONS(732), 1, + [4112] = 3, + ACTIONS(713), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(734), 27, + sym_eol_comment, + ACTIONS(715), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -18473,13 +18353,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [4205] = 3, - ACTIONS(736), 1, + [4150] = 3, + ACTIONS(717), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(738), 27, + sym_eol_comment, + ACTIONS(719), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -18507,13 +18388,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [4242] = 3, - ACTIONS(740), 1, + [4188] = 3, + ACTIONS(721), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(742), 27, + sym_eol_comment, + ACTIONS(723), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -18541,13 +18423,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [4279] = 3, - ACTIONS(744), 1, + [4226] = 3, + ACTIONS(725), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(746), 27, + sym_eol_comment, + ACTIONS(727), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -18575,13 +18458,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [4316] = 3, - ACTIONS(748), 1, + [4264] = 3, + ACTIONS(729), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(750), 27, + sym_eol_comment, + ACTIONS(731), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -18609,13 +18493,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [4353] = 3, - ACTIONS(752), 1, + [4302] = 3, + ACTIONS(733), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(754), 27, + sym_eol_comment, + ACTIONS(735), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -18643,13 +18528,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [4390] = 3, - ACTIONS(756), 1, + [4340] = 3, + ACTIONS(737), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(758), 27, + sym_eol_comment, + ACTIONS(739), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -18677,13 +18563,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [4427] = 3, - ACTIONS(760), 1, + [4378] = 3, + ACTIONS(741), 1, sym_name, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + ACTIONS(743), 27, + aux_sym_class_declaration_token1, + aux_sym__create_addition_token1, + aux_sym_interface_declaration_token1, + aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, + aux_sym_loop_statement_token1, + aux_sym_loop_statement_token6, + aux_sym_exit_statement_token1, + aux_sym_continue_statement_token1, + aux_sym_return_statement_token1, + aux_sym_report_statement_token1, + aux_sym_if_statement_token1, + aux_sym_if_statement_token2, + aux_sym_check_statement_token1, + aux_sym_select_statement_obsolete_token1, + aux_sym_read_table_statement_token1, + aux_sym_try_catch_statement_token1, + aux_sym_try_catch_statement_token2, + aux_sym_catch_statement_token1, + aux_sym_write_statement_token1, + aux_sym_call_function_token1, + aux_sym_call_function_token2, + aux_sym_raise_exception_statement_token1, + aux_sym_clear_statement_token1, + aux_sym_append_statement_token1, + aux_sym_include_statement_token1, + sym_field_symbol_name, + [4416] = 3, + ACTIONS(745), 1, + sym_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(762), 27, + sym_eol_comment, + ACTIONS(747), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -18711,13 +18633,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [4464] = 3, - ACTIONS(764), 1, + [4454] = 3, + ACTIONS(749), 1, sym_name, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + ACTIONS(751), 27, + aux_sym_class_declaration_token1, + aux_sym__create_addition_token1, + aux_sym_interface_declaration_token1, + aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, + aux_sym_loop_statement_token1, + aux_sym_loop_statement_token6, + aux_sym_exit_statement_token1, + aux_sym_continue_statement_token1, + aux_sym_return_statement_token1, + aux_sym_report_statement_token1, + aux_sym_if_statement_token1, + aux_sym_if_statement_token2, + aux_sym_check_statement_token1, + aux_sym_select_statement_obsolete_token1, + aux_sym_read_table_statement_token1, + aux_sym_try_catch_statement_token1, + aux_sym_try_catch_statement_token2, + aux_sym_catch_statement_token1, + aux_sym_write_statement_token1, + aux_sym_call_function_token1, + aux_sym_call_function_token2, + aux_sym_raise_exception_statement_token1, + aux_sym_clear_statement_token1, + aux_sym_append_statement_token1, + aux_sym_include_statement_token1, + sym_field_symbol_name, + [4492] = 3, + ACTIONS(753), 1, + sym_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(766), 27, + sym_eol_comment, + ACTIONS(755), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -18745,13 +18703,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [4501] = 3, - ACTIONS(768), 1, + [4530] = 3, + ACTIONS(757), 1, sym_name, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + ACTIONS(759), 27, + aux_sym_class_declaration_token1, + aux_sym__create_addition_token1, + aux_sym_interface_declaration_token1, + aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, + aux_sym_loop_statement_token1, + aux_sym_loop_statement_token6, + aux_sym_exit_statement_token1, + aux_sym_continue_statement_token1, + aux_sym_return_statement_token1, + aux_sym_report_statement_token1, + aux_sym_if_statement_token1, + aux_sym_if_statement_token2, + aux_sym_check_statement_token1, + aux_sym_select_statement_obsolete_token1, + aux_sym_read_table_statement_token1, + aux_sym_try_catch_statement_token1, + aux_sym_try_catch_statement_token2, + aux_sym_catch_statement_token1, + aux_sym_write_statement_token1, + aux_sym_call_function_token1, + aux_sym_call_function_token2, + aux_sym_raise_exception_statement_token1, + aux_sym_clear_statement_token1, + aux_sym_append_statement_token1, + aux_sym_include_statement_token1, + sym_field_symbol_name, + [4568] = 3, + ACTIONS(761), 1, + sym_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(770), 27, + sym_eol_comment, + ACTIONS(763), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -18779,13 +18773,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [4538] = 3, - ACTIONS(772), 1, + [4606] = 3, + ACTIONS(765), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(774), 27, + sym_eol_comment, + ACTIONS(767), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -18813,13 +18808,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [4575] = 3, - ACTIONS(776), 1, + [4644] = 3, + ACTIONS(769), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(778), 27, + sym_eol_comment, + ACTIONS(771), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -18847,13 +18843,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [4612] = 3, - ACTIONS(780), 1, + [4682] = 3, + ACTIONS(773), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(782), 27, + sym_eol_comment, + ACTIONS(775), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -18881,13 +18878,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [4649] = 3, - ACTIONS(784), 1, + [4720] = 3, + ACTIONS(777), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(786), 27, + sym_eol_comment, + ACTIONS(779), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -18915,13 +18913,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [4686] = 3, - ACTIONS(788), 1, + [4758] = 3, + ACTIONS(781), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(790), 27, + sym_eol_comment, + ACTIONS(783), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -18949,13 +18948,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [4723] = 3, - ACTIONS(792), 1, + [4796] = 3, + ACTIONS(785), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(794), 27, + sym_eol_comment, + ACTIONS(787), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -18983,13 +18983,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [4760] = 3, - ACTIONS(796), 1, + [4834] = 3, + ACTIONS(789), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(798), 27, + sym_eol_comment, + ACTIONS(791), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -19017,12 +19018,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [4797] = 3, + [4872] = 5, + ACTIONS(797), 1, + anon_sym_DASH2, + STATE(142), 1, + aux_sym_structured_data_object_repeat1, + ACTIONS(795), 2, + anon_sym_DASH, + anon_sym_STAR, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + ACTIONS(793), 24, + anon_sym_DOT, + aux_sym__method_declaration_importing_token1, + aux_sym__method_declaration_exporting_token1, + aux_sym__method_declaration_changing_token1, + anon_sym_RPAREN, + aux_sym_method_parameters_token1, + anon_sym_COMMA, + aux_sym_complete_typing_token2, + aux_sym__data_object_typing_normal_token5, + aux_sym_loop_statement_token5, + aux_sym__logical_expression_token2, + aux_sym__logical_expression_token3, + anon_sym_EQ, + aux_sym_comparison_expression_token1, + anon_sym_LT_GT, + aux_sym_comparison_expression_token2, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DIV, + anon_sym_MOD, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_select_statement_obsolete_token3, + aux_sym__explicit_parameter_list_token1, + [4914] = 3, ACTIONS(800), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, ACTIONS(802), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -19051,12 +19090,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [4834] = 3, + [4952] = 3, ACTIONS(804), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, ACTIONS(806), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -19085,12 +19125,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [4871] = 3, + [4990] = 3, ACTIONS(808), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, ACTIONS(810), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -19119,12 +19160,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [4908] = 3, + [5028] = 3, ACTIONS(812), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, ACTIONS(814), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -19153,12 +19195,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [4945] = 3, + [5066] = 3, ACTIONS(816), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, ACTIONS(818), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -19187,12 +19230,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [4982] = 3, + [5104] = 3, ACTIONS(820), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, ACTIONS(822), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -19221,12 +19265,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [5019] = 3, + [5142] = 3, ACTIONS(824), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, ACTIONS(826), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -19255,12 +19300,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [5056] = 3, + [5180] = 3, ACTIONS(828), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, ACTIONS(830), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -19289,12 +19335,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [5093] = 3, + [5218] = 3, ACTIONS(832), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, ACTIONS(834), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -19323,13 +19370,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [5130] = 3, - ACTIONS(836), 1, - sym_name, - ACTIONS(3), 2, + [5256] = 5, + ACTIONS(840), 1, + anon_sym_DASH2, + STATE(196), 1, + aux_sym_structured_data_object_repeat1, + ACTIONS(838), 2, + anon_sym_DASH, + anon_sym_STAR, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + ACTIONS(836), 24, + anon_sym_DOT, + aux_sym__method_declaration_importing_token1, + aux_sym__method_declaration_exporting_token1, + aux_sym__method_declaration_changing_token1, + anon_sym_RPAREN, + aux_sym_method_parameters_token1, + anon_sym_COMMA, + aux_sym_complete_typing_token2, + aux_sym__data_object_typing_normal_token5, + aux_sym_loop_statement_token5, + aux_sym__logical_expression_token2, + aux_sym__logical_expression_token3, + anon_sym_EQ, + aux_sym_comparison_expression_token1, + anon_sym_LT_GT, + aux_sym_comparison_expression_token2, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DIV, + anon_sym_MOD, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_select_statement_obsolete_token3, + aux_sym__explicit_parameter_list_token1, + [5298] = 3, + ACTIONS(842), 1, + sym_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(838), 27, + sym_eol_comment, + ACTIONS(844), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -19357,13 +19442,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [5167] = 3, - ACTIONS(840), 1, + [5336] = 3, + ACTIONS(846), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(842), 27, + sym_eol_comment, + ACTIONS(848), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -19391,13 +19477,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [5204] = 3, - ACTIONS(844), 1, + [5374] = 3, + ACTIONS(850), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(846), 27, + sym_eol_comment, + ACTIONS(852), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -19425,13 +19512,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [5241] = 3, - ACTIONS(848), 1, + [5412] = 3, + ACTIONS(854), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(850), 27, + sym_eol_comment, + ACTIONS(856), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -19459,13 +19547,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [5278] = 3, - ACTIONS(852), 1, + [5450] = 3, + ACTIONS(858), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(854), 27, + sym_eol_comment, + ACTIONS(860), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -19493,13 +19582,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [5315] = 3, - ACTIONS(856), 1, + [5488] = 3, + ACTIONS(862), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(858), 27, + sym_eol_comment, + ACTIONS(864), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -19527,13 +19617,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [5352] = 3, - ACTIONS(860), 1, + [5526] = 3, + ACTIONS(866), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(862), 27, + sym_eol_comment, + ACTIONS(868), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -19561,13 +19652,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [5389] = 3, - ACTIONS(864), 1, + [5564] = 3, + ACTIONS(870), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(866), 27, + sym_eol_comment, + ACTIONS(872), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -19595,13 +19687,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [5426] = 3, - ACTIONS(868), 1, + [5602] = 3, + ACTIONS(874), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(870), 27, + sym_eol_comment, + ACTIONS(876), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -19629,13 +19722,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [5463] = 3, - ACTIONS(872), 1, + [5640] = 3, + ACTIONS(878), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(874), 27, + sym_eol_comment, + ACTIONS(880), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -19663,13 +19757,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [5500] = 3, - ACTIONS(876), 1, + [5678] = 3, + ACTIONS(882), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(878), 27, + sym_eol_comment, + ACTIONS(884), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -19697,13 +19792,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [5537] = 3, - ACTIONS(880), 1, + [5716] = 3, + ACTIONS(886), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(882), 27, + sym_eol_comment, + ACTIONS(888), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -19731,13 +19827,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [5574] = 3, - ACTIONS(884), 1, + [5754] = 3, + ACTIONS(890), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(886), 27, + sym_eol_comment, + ACTIONS(892), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -19765,13 +19862,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [5611] = 3, - ACTIONS(888), 1, + [5792] = 3, + ACTIONS(894), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(890), 27, + sym_eol_comment, + ACTIONS(896), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -19799,13 +19897,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [5648] = 3, - ACTIONS(892), 1, + [5830] = 3, + ACTIONS(898), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(894), 27, + sym_eol_comment, + ACTIONS(900), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -19833,13 +19932,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [5685] = 3, - ACTIONS(896), 1, + [5868] = 3, + ACTIONS(902), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(898), 27, + sym_eol_comment, + ACTIONS(904), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -19867,13 +19967,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [5722] = 3, - ACTIONS(900), 1, + [5906] = 3, + ACTIONS(906), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(902), 27, + sym_eol_comment, + ACTIONS(908), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -19901,13 +20002,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [5759] = 3, - ACTIONS(904), 1, + [5944] = 3, + ACTIONS(910), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(906), 27, + sym_eol_comment, + ACTIONS(912), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -19935,13 +20037,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [5796] = 3, - ACTIONS(908), 1, + [5982] = 3, + ACTIONS(914), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(910), 27, + sym_eol_comment, + ACTIONS(916), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -19969,13 +20072,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [5833] = 3, - ACTIONS(912), 1, + [6020] = 3, + ACTIONS(918), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(914), 27, + sym_eol_comment, + ACTIONS(920), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -20003,13 +20107,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [5870] = 3, - ACTIONS(916), 1, + [6058] = 3, + ACTIONS(922), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(918), 27, + sym_eol_comment, + ACTIONS(924), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -20037,13 +20142,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [5907] = 3, - ACTIONS(920), 1, + [6096] = 3, + ACTIONS(926), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(922), 27, + sym_eol_comment, + ACTIONS(928), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -20071,13 +20177,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [5944] = 3, - ACTIONS(924), 1, + [6134] = 3, + ACTIONS(930), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(926), 27, + sym_eol_comment, + ACTIONS(932), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -20105,13 +20212,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [5981] = 3, - ACTIONS(928), 1, + [6172] = 3, + ACTIONS(934), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(930), 27, + sym_eol_comment, + ACTIONS(936), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -20139,13 +20247,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [6018] = 3, - ACTIONS(932), 1, + [6210] = 3, + ACTIONS(938), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(934), 27, + sym_eol_comment, + ACTIONS(940), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -20173,13 +20282,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [6055] = 3, - ACTIONS(936), 1, + [6248] = 3, + ACTIONS(942), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(938), 27, + sym_eol_comment, + ACTIONS(944), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -20207,13 +20317,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [6092] = 3, - ACTIONS(940), 1, + [6286] = 3, + ACTIONS(946), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(942), 27, + sym_eol_comment, + ACTIONS(948), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -20241,13 +20352,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [6129] = 3, - ACTIONS(944), 1, + [6324] = 3, + ACTIONS(950), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(946), 27, + sym_eol_comment, + ACTIONS(952), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -20275,13 +20387,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [6166] = 3, - ACTIONS(948), 1, + [6362] = 3, + ACTIONS(954), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(950), 27, + sym_eol_comment, + ACTIONS(956), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -20309,13 +20422,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [6203] = 3, - ACTIONS(952), 1, + [6400] = 3, + ACTIONS(958), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(954), 27, + sym_eol_comment, + ACTIONS(960), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -20343,13 +20457,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [6240] = 3, - ACTIONS(956), 1, + [6438] = 3, + ACTIONS(962), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(958), 27, + sym_eol_comment, + ACTIONS(964), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -20377,13 +20492,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [6277] = 3, - ACTIONS(960), 1, + [6476] = 3, + ACTIONS(966), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(962), 27, + sym_eol_comment, + ACTIONS(968), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -20411,13 +20527,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [6314] = 3, - ACTIONS(964), 1, + [6514] = 3, + ACTIONS(970), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(966), 27, + sym_eol_comment, + ACTIONS(972), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -20445,13 +20562,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [6351] = 3, - ACTIONS(968), 1, + [6552] = 3, + ACTIONS(974), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(970), 27, + sym_eol_comment, + ACTIONS(976), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -20479,13 +20597,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [6388] = 3, - ACTIONS(972), 1, + [6590] = 3, + ACTIONS(978), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(974), 27, + sym_eol_comment, + ACTIONS(980), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -20513,13 +20632,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [6425] = 3, - ACTIONS(976), 1, + [6628] = 3, + ACTIONS(982), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(978), 27, + sym_eol_comment, + ACTIONS(984), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -20547,13 +20667,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [6462] = 3, - ACTIONS(980), 1, + [6666] = 3, + ACTIONS(986), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(982), 27, + sym_eol_comment, + ACTIONS(988), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -20581,13 +20702,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [6499] = 3, - ACTIONS(984), 1, + [6704] = 3, + ACTIONS(990), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(986), 27, + sym_eol_comment, + ACTIONS(992), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -20615,13 +20737,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [6536] = 3, - ACTIONS(988), 1, + [6742] = 3, + ACTIONS(994), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(990), 27, + sym_eol_comment, + ACTIONS(996), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -20649,13 +20772,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [6573] = 3, - ACTIONS(992), 1, + [6780] = 3, + ACTIONS(998), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(994), 27, + sym_eol_comment, + ACTIONS(1000), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -20683,13 +20807,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [6610] = 3, - ACTIONS(996), 1, + [6818] = 3, + ACTIONS(1002), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(998), 27, + sym_eol_comment, + ACTIONS(1004), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -20717,13 +20842,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [6647] = 3, - ACTIONS(1000), 1, + [6856] = 3, + ACTIONS(1006), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1002), 27, + sym_eol_comment, + ACTIONS(1008), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -20751,13 +20877,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [6684] = 3, - ACTIONS(1004), 1, + [6894] = 3, + ACTIONS(1010), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1006), 27, + sym_eol_comment, + ACTIONS(1012), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -20785,13 +20912,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [6721] = 3, - ACTIONS(1008), 1, - sym_name, - ACTIONS(3), 2, + [6932] = 5, + ACTIONS(840), 1, + anon_sym_DASH2, + STATE(142), 1, + aux_sym_structured_data_object_repeat1, + ACTIONS(1016), 2, + anon_sym_DASH, + anon_sym_STAR, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + ACTIONS(1014), 24, + anon_sym_DOT, + aux_sym__method_declaration_importing_token1, + aux_sym__method_declaration_exporting_token1, + aux_sym__method_declaration_changing_token1, + anon_sym_RPAREN, + aux_sym_method_parameters_token1, + anon_sym_COMMA, + aux_sym_complete_typing_token2, + aux_sym__data_object_typing_normal_token5, + aux_sym_loop_statement_token5, + aux_sym__logical_expression_token2, + aux_sym__logical_expression_token3, + anon_sym_EQ, + aux_sym_comparison_expression_token1, + anon_sym_LT_GT, + aux_sym_comparison_expression_token2, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DIV, + anon_sym_MOD, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_select_statement_obsolete_token3, + aux_sym__explicit_parameter_list_token1, + [6974] = 3, + ACTIONS(1018), 1, + sym_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1010), 27, + sym_eol_comment, + ACTIONS(1020), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -20819,13 +20984,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [6758] = 3, - ACTIONS(1012), 1, + [7012] = 3, + ACTIONS(1022), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1014), 27, + sym_eol_comment, + ACTIONS(1024), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -20853,13 +21019,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [6795] = 3, - ACTIONS(1016), 1, + [7050] = 3, + ACTIONS(1026), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1018), 27, + sym_eol_comment, + ACTIONS(1028), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -20887,13 +21054,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [6832] = 3, - ACTIONS(1020), 1, + [7088] = 3, + ACTIONS(1030), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1022), 27, + sym_eol_comment, + ACTIONS(1032), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -20921,13 +21089,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [6869] = 3, - ACTIONS(1024), 1, + [7126] = 3, + ACTIONS(1034), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1026), 27, + sym_eol_comment, + ACTIONS(1036), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -20955,13 +21124,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [6906] = 3, - ACTIONS(1028), 1, + [7164] = 3, + ACTIONS(1038), 1, sym_name, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + ACTIONS(1040), 27, + aux_sym_class_declaration_token1, + aux_sym__create_addition_token1, + aux_sym_interface_declaration_token1, + aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, + aux_sym_loop_statement_token1, + aux_sym_loop_statement_token6, + aux_sym_exit_statement_token1, + aux_sym_continue_statement_token1, + aux_sym_return_statement_token1, + aux_sym_report_statement_token1, + aux_sym_if_statement_token1, + aux_sym_if_statement_token2, + aux_sym_check_statement_token1, + aux_sym_select_statement_obsolete_token1, + aux_sym_read_table_statement_token1, + aux_sym_try_catch_statement_token1, + aux_sym_try_catch_statement_token2, + aux_sym_catch_statement_token1, + aux_sym_write_statement_token1, + aux_sym_call_function_token1, + aux_sym_call_function_token2, + aux_sym_raise_exception_statement_token1, + aux_sym_clear_statement_token1, + aux_sym_append_statement_token1, + aux_sym_include_statement_token1, + sym_field_symbol_name, + [7202] = 3, + ACTIONS(1042), 1, + sym_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1030), 27, + sym_eol_comment, + ACTIONS(1044), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -20989,47 +21194,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [6943] = 3, - ACTIONS(1032), 1, + [7240] = 3, + ACTIONS(1046), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1034), 27, - aux_sym_class_declaration_token1, - aux_sym__create_addition_token1, - aux_sym_interface_declaration_token1, - aux_sym_variable_declaration_token1, - aux_sym_field_symbol_declaration_token1, - aux_sym_loop_statement_token1, - aux_sym_loop_statement_token6, - aux_sym_exit_statement_token1, - aux_sym_continue_statement_token1, - aux_sym_return_statement_token1, - aux_sym_report_statement_token1, - aux_sym_if_statement_token1, - aux_sym_if_statement_token2, - aux_sym_check_statement_token1, - aux_sym_select_statement_obsolete_token1, - aux_sym_read_table_statement_token1, - aux_sym_try_catch_statement_token1, - aux_sym_try_catch_statement_token2, - aux_sym_catch_statement_token1, - aux_sym_write_statement_token1, - aux_sym_call_function_token1, - aux_sym_call_function_token2, - aux_sym_raise_exception_statement_token1, - aux_sym_clear_statement_token1, - aux_sym_append_statement_token1, - aux_sym_include_statement_token1, - sym_field_symbol_name, - [6980] = 3, - ACTIONS(1036), 1, - sym_name, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(1038), 27, + ACTIONS(1048), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -21057,47 +21229,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [7017] = 3, - ACTIONS(1040), 1, + [7278] = 3, + ACTIONS(1050), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1042), 27, - aux_sym_class_declaration_token1, - aux_sym__create_addition_token1, - aux_sym_interface_declaration_token1, - aux_sym_variable_declaration_token1, - aux_sym_field_symbol_declaration_token1, - aux_sym_loop_statement_token1, - aux_sym_loop_statement_token6, - aux_sym_exit_statement_token1, - aux_sym_continue_statement_token1, - aux_sym_return_statement_token1, - aux_sym_report_statement_token1, - aux_sym_if_statement_token1, - aux_sym_if_statement_token2, - aux_sym_check_statement_token1, - aux_sym_select_statement_obsolete_token1, - aux_sym_read_table_statement_token1, - aux_sym_try_catch_statement_token1, - aux_sym_try_catch_statement_token2, - aux_sym_catch_statement_token1, - aux_sym_write_statement_token1, - aux_sym_call_function_token1, - aux_sym_call_function_token2, - aux_sym_raise_exception_statement_token1, - aux_sym_clear_statement_token1, - aux_sym_append_statement_token1, - aux_sym_include_statement_token1, - sym_field_symbol_name, - [7054] = 3, - ACTIONS(1044), 1, - sym_name, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(1046), 27, + ACTIONS(1052), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -21125,47 +21264,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [7091] = 3, - ACTIONS(1048), 1, + [7316] = 3, + ACTIONS(1054), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1050), 27, - aux_sym_class_declaration_token1, - aux_sym__create_addition_token1, - aux_sym_interface_declaration_token1, - aux_sym_variable_declaration_token1, - aux_sym_field_symbol_declaration_token1, - aux_sym_loop_statement_token1, - aux_sym_loop_statement_token6, - aux_sym_exit_statement_token1, - aux_sym_continue_statement_token1, - aux_sym_return_statement_token1, - aux_sym_report_statement_token1, - aux_sym_if_statement_token1, - aux_sym_if_statement_token2, - aux_sym_check_statement_token1, - aux_sym_select_statement_obsolete_token1, - aux_sym_read_table_statement_token1, - aux_sym_try_catch_statement_token1, - aux_sym_try_catch_statement_token2, - aux_sym_catch_statement_token1, - aux_sym_write_statement_token1, - aux_sym_call_function_token1, - aux_sym_call_function_token2, - aux_sym_raise_exception_statement_token1, - aux_sym_clear_statement_token1, - aux_sym_append_statement_token1, - aux_sym_include_statement_token1, - sym_field_symbol_name, - [7128] = 3, - ACTIONS(1052), 1, - sym_name, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(1054), 27, + ACTIONS(1056), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -21193,47 +21299,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [7165] = 3, - ACTIONS(1056), 1, + [7354] = 3, + ACTIONS(1058), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1058), 27, - aux_sym_class_declaration_token1, - aux_sym__create_addition_token1, - aux_sym_interface_declaration_token1, - aux_sym_variable_declaration_token1, - aux_sym_field_symbol_declaration_token1, - aux_sym_loop_statement_token1, - aux_sym_loop_statement_token6, - aux_sym_exit_statement_token1, - aux_sym_continue_statement_token1, - aux_sym_return_statement_token1, - aux_sym_report_statement_token1, - aux_sym_if_statement_token1, - aux_sym_if_statement_token2, - aux_sym_check_statement_token1, - aux_sym_select_statement_obsolete_token1, - aux_sym_read_table_statement_token1, - aux_sym_try_catch_statement_token1, - aux_sym_try_catch_statement_token2, - aux_sym_catch_statement_token1, - aux_sym_write_statement_token1, - aux_sym_call_function_token1, - aux_sym_call_function_token2, - aux_sym_raise_exception_statement_token1, - aux_sym_clear_statement_token1, - aux_sym_append_statement_token1, - aux_sym_include_statement_token1, - sym_field_symbol_name, - [7202] = 3, - ACTIONS(1060), 1, - sym_name, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(1062), 27, + ACTIONS(1060), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -21261,47 +21334,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [7239] = 3, - ACTIONS(1064), 1, + [7392] = 3, + ACTIONS(1062), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1066), 27, - aux_sym_class_declaration_token1, - aux_sym__create_addition_token1, - aux_sym_interface_declaration_token1, - aux_sym_variable_declaration_token1, - aux_sym_field_symbol_declaration_token1, - aux_sym_loop_statement_token1, - aux_sym_loop_statement_token6, - aux_sym_exit_statement_token1, - aux_sym_continue_statement_token1, - aux_sym_return_statement_token1, - aux_sym_report_statement_token1, - aux_sym_if_statement_token1, - aux_sym_if_statement_token2, - aux_sym_check_statement_token1, - aux_sym_select_statement_obsolete_token1, - aux_sym_read_table_statement_token1, - aux_sym_try_catch_statement_token1, - aux_sym_try_catch_statement_token2, - aux_sym_catch_statement_token1, - aux_sym_write_statement_token1, - aux_sym_call_function_token1, - aux_sym_call_function_token2, - aux_sym_raise_exception_statement_token1, - aux_sym_clear_statement_token1, - aux_sym_append_statement_token1, - aux_sym_include_statement_token1, - sym_field_symbol_name, - [7276] = 3, - ACTIONS(1068), 1, - sym_name, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(1070), 27, + ACTIONS(1064), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -21329,47 +21369,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [7313] = 3, - ACTIONS(1072), 1, + [7430] = 3, + ACTIONS(1066), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1074), 27, - aux_sym_class_declaration_token1, - aux_sym__create_addition_token1, - aux_sym_interface_declaration_token1, - aux_sym_variable_declaration_token1, - aux_sym_field_symbol_declaration_token1, - aux_sym_loop_statement_token1, - aux_sym_loop_statement_token6, - aux_sym_exit_statement_token1, - aux_sym_continue_statement_token1, - aux_sym_return_statement_token1, - aux_sym_report_statement_token1, - aux_sym_if_statement_token1, - aux_sym_if_statement_token2, - aux_sym_check_statement_token1, - aux_sym_select_statement_obsolete_token1, - aux_sym_read_table_statement_token1, - aux_sym_try_catch_statement_token1, - aux_sym_try_catch_statement_token2, - aux_sym_catch_statement_token1, - aux_sym_write_statement_token1, - aux_sym_call_function_token1, - aux_sym_call_function_token2, - aux_sym_raise_exception_statement_token1, - aux_sym_clear_statement_token1, - aux_sym_append_statement_token1, - aux_sym_include_statement_token1, - sym_field_symbol_name, - [7350] = 3, - ACTIONS(1076), 1, - sym_name, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(1078), 27, + ACTIONS(1068), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -21397,47 +21404,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [7387] = 3, - ACTIONS(1080), 1, + [7468] = 3, + ACTIONS(1070), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1082), 27, - aux_sym_class_declaration_token1, - aux_sym__create_addition_token1, - aux_sym_interface_declaration_token1, - aux_sym_variable_declaration_token1, - aux_sym_field_symbol_declaration_token1, - aux_sym_loop_statement_token1, - aux_sym_loop_statement_token6, - aux_sym_exit_statement_token1, - aux_sym_continue_statement_token1, - aux_sym_return_statement_token1, - aux_sym_report_statement_token1, - aux_sym_if_statement_token1, - aux_sym_if_statement_token2, - aux_sym_check_statement_token1, - aux_sym_select_statement_obsolete_token1, - aux_sym_read_table_statement_token1, - aux_sym_try_catch_statement_token1, - aux_sym_try_catch_statement_token2, - aux_sym_catch_statement_token1, - aux_sym_write_statement_token1, - aux_sym_call_function_token1, - aux_sym_call_function_token2, - aux_sym_raise_exception_statement_token1, - aux_sym_clear_statement_token1, - aux_sym_append_statement_token1, - aux_sym_include_statement_token1, - sym_field_symbol_name, - [7424] = 3, - ACTIONS(1084), 1, - sym_name, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(1086), 27, + ACTIONS(1072), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -21465,13 +21439,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [7461] = 3, - ACTIONS(1088), 1, + [7506] = 3, + ACTIONS(1074), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1090), 27, + sym_eol_comment, + ACTIONS(1076), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -21499,13 +21474,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [7498] = 3, - ACTIONS(1092), 1, + [7544] = 3, + ACTIONS(1078), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1094), 27, + sym_eol_comment, + ACTIONS(1080), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -21533,13 +21509,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [7535] = 3, - ACTIONS(1096), 1, + [7582] = 3, + ACTIONS(1082), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1098), 27, + sym_eol_comment, + ACTIONS(1084), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -21567,13 +21544,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [7572] = 3, - ACTIONS(1100), 1, + [7620] = 3, + ACTIONS(1086), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1102), 27, + sym_eol_comment, + ACTIONS(1088), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -21601,13 +21579,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [7609] = 3, - ACTIONS(1104), 1, + [7658] = 3, + ACTIONS(1090), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1106), 27, + sym_eol_comment, + ACTIONS(1092), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -21635,13 +21614,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [7646] = 3, - ACTIONS(1108), 1, + [7696] = 3, + ACTIONS(1094), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1110), 27, + sym_eol_comment, + ACTIONS(1096), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -21669,13 +21649,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [7683] = 3, - ACTIONS(1112), 1, + [7734] = 3, + ACTIONS(1098), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1114), 27, + sym_eol_comment, + ACTIONS(1100), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -21703,13 +21684,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [7720] = 3, - ACTIONS(1116), 1, + [7772] = 3, + ACTIONS(1102), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1118), 27, + sym_eol_comment, + ACTIONS(1104), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -21737,13 +21719,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [7757] = 3, - ACTIONS(1120), 1, + [7810] = 3, + ACTIONS(1106), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1122), 27, + sym_eol_comment, + ACTIONS(1108), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -21771,13 +21754,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [7794] = 3, - ACTIONS(1124), 1, + [7848] = 3, + ACTIONS(1110), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1126), 27, + sym_eol_comment, + ACTIONS(1112), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -21805,13 +21789,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [7831] = 3, - ACTIONS(1128), 1, + [7886] = 3, + ACTIONS(1114), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1130), 27, + sym_eol_comment, + ACTIONS(1116), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -21839,13 +21824,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [7868] = 3, - ACTIONS(1132), 1, + [7924] = 3, + ACTIONS(1118), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1134), 27, + sym_eol_comment, + ACTIONS(1120), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -21873,13 +21859,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [7905] = 3, - ACTIONS(1136), 1, + [7962] = 3, + ACTIONS(1122), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1138), 27, + sym_eol_comment, + ACTIONS(1124), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -21907,13 +21894,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [7942] = 3, - ACTIONS(1140), 1, + [8000] = 3, + ACTIONS(1126), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1142), 27, + sym_eol_comment, + ACTIONS(1128), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -21941,13 +21929,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [7979] = 3, - ACTIONS(1144), 1, + [8038] = 3, + ACTIONS(1130), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1146), 27, + sym_eol_comment, + ACTIONS(1132), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -21975,13 +21964,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [8016] = 3, - ACTIONS(1148), 1, + [8076] = 3, + ACTIONS(1134), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1150), 27, + sym_eol_comment, + ACTIONS(1136), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -22009,13 +21999,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [8053] = 3, - ACTIONS(1152), 1, + [8114] = 3, + ACTIONS(1138), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1154), 27, + sym_eol_comment, + ACTIONS(1140), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -22043,13 +22034,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [8090] = 3, - ACTIONS(1156), 1, + [8152] = 3, + ACTIONS(1142), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1158), 27, + sym_eol_comment, + ACTIONS(1144), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -22077,13 +22069,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [8127] = 3, - ACTIONS(1160), 1, + [8190] = 3, + ACTIONS(1146), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1162), 27, + sym_eol_comment, + ACTIONS(1148), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -22111,13 +22104,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [8164] = 3, - ACTIONS(1164), 1, + [8228] = 3, + ACTIONS(1150), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1166), 27, + sym_eol_comment, + ACTIONS(1152), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -22145,13 +22139,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [8201] = 3, - ACTIONS(1168), 1, + [8266] = 3, + ACTIONS(1154), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1170), 27, + sym_eol_comment, + ACTIONS(1156), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -22179,13 +22174,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [8238] = 3, - ACTIONS(1172), 1, + [8304] = 3, + ACTIONS(1158), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1174), 27, + sym_eol_comment, + ACTIONS(1160), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -22213,13 +22209,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [8275] = 3, - ACTIONS(1176), 1, + [8342] = 3, + ACTIONS(1162), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1178), 27, + sym_eol_comment, + ACTIONS(1164), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -22247,13 +22244,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [8312] = 3, - ACTIONS(1180), 1, + [8380] = 3, + ACTIONS(1166), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1182), 27, + sym_eol_comment, + ACTIONS(1168), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -22281,13 +22279,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [8349] = 3, - ACTIONS(1184), 1, + [8418] = 3, + ACTIONS(1170), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1186), 27, + sym_eol_comment, + ACTIONS(1172), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -22315,51 +22314,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [8386] = 7, - ACTIONS(3), 1, - sym_eol_comment, - ACTIONS(5), 1, - sym_bol_comment, - ACTIONS(383), 1, - anon_sym_DASH2, - ACTIONS(1188), 1, - anon_sym_EQ_GT, - STATE(40), 1, - aux_sym_structured_data_object_repeat1, - ACTIONS(379), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_STAR_STAR, + [8456] = 3, + ACTIONS(1174), 1, sym_name, - ACTIONS(381), 21, - anon_sym_DOT, - aux_sym__method_declaration_importing_token1, - aux_sym__method_declaration_exporting_token1, - aux_sym__method_declaration_changing_token1, - anon_sym_RPAREN, - aux_sym__method_declaration_exceptions_token1, - anon_sym_COMMA, - aux_sym_complete_typing_token2, - aux_sym_loop_statement_token3, - aux_sym_loop_statement_token5, - aux_sym__logical_expression_token2, - aux_sym__logical_expression_token3, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DIV, - anon_sym_MOD, - anon_sym_RBRACK, - aux_sym_select_statement_obsolete_token3, - aux_sym_line_spec_token3, - aux_sym__read_table_result_token1, - aux_sym__explicit_parameter_list_token1, - [8431] = 3, - ACTIONS(1190), 1, - sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1192), 27, + sym_eol_comment, + ACTIONS(1176), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -22387,13 +22349,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [8468] = 3, - ACTIONS(1194), 1, + [8494] = 3, + ACTIONS(1178), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1196), 27, + sym_eol_comment, + ACTIONS(1180), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -22421,13 +22384,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [8505] = 3, - ACTIONS(1198), 1, + [8532] = 3, + ACTIONS(1182), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1200), 27, + sym_eol_comment, + ACTIONS(1184), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -22455,13 +22419,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [8542] = 3, - ACTIONS(1202), 1, + [8570] = 3, + ACTIONS(1186), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1204), 27, + sym_eol_comment, + ACTIONS(1188), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -22489,13 +22454,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [8579] = 3, - ACTIONS(1206), 1, + [8608] = 3, + ACTIONS(1190), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1208), 27, + sym_eol_comment, + ACTIONS(1192), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -22523,13 +22489,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [8616] = 3, - ACTIONS(1210), 1, + [8646] = 3, + ACTIONS(1194), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1212), 27, + sym_eol_comment, + ACTIONS(1196), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -22557,13 +22524,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [8653] = 3, - ACTIONS(1214), 1, + [8684] = 3, + ACTIONS(1198), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1216), 27, + sym_eol_comment, + ACTIONS(1200), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -22591,13 +22559,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [8690] = 3, - ACTIONS(1218), 1, + [8722] = 3, + ACTIONS(1202), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1220), 27, + sym_eol_comment, + ACTIONS(1204), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, @@ -22625,29 +22594,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [8727] = 3, - ACTIONS(824), 1, + [8760] = 3, + ACTIONS(1206), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(826), 24, - ts_builtin_sym_end, + sym_eol_comment, + ACTIONS(1208), 27, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, aux_sym_interface_declaration_token1, aux_sym_variable_declaration_token1, aux_sym_field_symbol_declaration_token1, aux_sym_loop_statement_token1, + aux_sym_loop_statement_token6, aux_sym_exit_statement_token1, aux_sym_continue_statement_token1, aux_sym_return_statement_token1, aux_sym_report_statement_token1, aux_sym_if_statement_token1, + aux_sym_if_statement_token2, aux_sym_check_statement_token1, aux_sym_select_statement_obsolete_token1, aux_sym_read_table_statement_token1, aux_sym_try_catch_statement_token1, + aux_sym_try_catch_statement_token2, + aux_sym_catch_statement_token1, aux_sym_write_statement_token1, aux_sym_call_function_token1, aux_sym_call_function_token2, @@ -22656,13 +22629,81 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [8761] = 3, - ACTIONS(544), 1, - sym_name, - ACTIONS(3), 2, + [8798] = 3, + ACTIONS(1212), 2, + anon_sym_DASH, + anon_sym_STAR, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + ACTIONS(1210), 25, + anon_sym_DOT, + aux_sym__method_declaration_importing_token1, + aux_sym__method_declaration_exporting_token1, + aux_sym__method_declaration_changing_token1, + anon_sym_RPAREN, + aux_sym_method_parameters_token1, + anon_sym_COMMA, + aux_sym_complete_typing_token2, + aux_sym__data_object_typing_normal_token5, + aux_sym_loop_statement_token5, + aux_sym__logical_expression_token2, + aux_sym__logical_expression_token3, + anon_sym_EQ, + aux_sym_comparison_expression_token1, + anon_sym_LT_GT, + aux_sym_comparison_expression_token2, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DIV, + anon_sym_MOD, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_select_statement_obsolete_token3, + anon_sym_DASH2, + aux_sym__explicit_parameter_list_token1, + [8835] = 3, + ACTIONS(1216), 1, + anon_sym_STAR, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(546), 24, + sym_eol_comment, + ACTIONS(1214), 25, + anon_sym_DOT, + aux_sym__method_declaration_importing_token1, + aux_sym__method_declaration_exporting_token1, + aux_sym__method_declaration_changing_token1, + anon_sym_RPAREN, + aux_sym_method_parameters_token1, + anon_sym_COMMA, + aux_sym_complete_typing_token2, + aux_sym__data_object_typing_normal_token5, + aux_sym_loop_statement_token5, + aux_sym__logical_expression_token2, + aux_sym__logical_expression_token3, + anon_sym_EQ, + aux_sym_comparison_expression_token1, + anon_sym_LT_GT, + aux_sym_comparison_expression_token2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_DIV, + anon_sym_MOD, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_select_statement_obsolete_token3, + aux_sym__explicit_parameter_list_token1, + [8871] = 3, + ACTIONS(816), 1, + sym_name, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + ACTIONS(818), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -22687,13 +22728,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [8795] = 3, - ACTIONS(684), 1, + [8906] = 3, + ACTIONS(858), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(686), 24, + sym_eol_comment, + ACTIONS(860), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -22718,13 +22760,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [8829] = 3, - ACTIONS(708), 1, + [8941] = 3, + ACTIONS(409), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(710), 24, + sym_eol_comment, + ACTIONS(411), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -22749,13 +22792,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [8863] = 3, - ACTIONS(1210), 1, + [8976] = 3, + ACTIONS(669), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1212), 24, + sym_eol_comment, + ACTIONS(671), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -22780,13 +22824,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [8897] = 3, - ACTIONS(1206), 1, + [9011] = 3, + ACTIONS(665), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1208), 24, + sym_eol_comment, + ACTIONS(667), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -22811,13 +22856,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [8931] = 3, - ACTIONS(1202), 1, + [9046] = 3, + ACTIONS(689), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1204), 24, + sym_eol_comment, + ACTIONS(691), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -22842,13 +22888,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [8965] = 3, - ACTIONS(1198), 1, + [9081] = 3, + ACTIONS(982), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1200), 24, + sym_eol_comment, + ACTIONS(984), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -22873,13 +22920,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [8999] = 3, - ACTIONS(944), 1, + [9116] = 3, + ACTIONS(978), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(946), 24, + sym_eol_comment, + ACTIONS(980), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -22904,13 +22952,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [9033] = 3, - ACTIONS(1194), 1, + [9151] = 3, + ACTIONS(974), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1196), 24, + sym_eol_comment, + ACTIONS(976), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -22935,13 +22984,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [9067] = 3, - ACTIONS(1190), 1, + [9186] = 3, + ACTIONS(970), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1192), 24, + sym_eol_comment, + ACTIONS(972), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -22966,13 +23016,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [9101] = 3, - ACTIONS(1184), 1, + [9221] = 3, + ACTIONS(966), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1186), 24, + sym_eol_comment, + ACTIONS(968), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -22997,13 +23048,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [9135] = 3, - ACTIONS(700), 1, + [9256] = 3, + ACTIONS(962), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(702), 24, + sym_eol_comment, + ACTIONS(964), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -23028,13 +23080,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [9169] = 3, - ACTIONS(704), 1, + [9291] = 3, + ACTIONS(958), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(706), 24, + sym_eol_comment, + ACTIONS(960), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -23059,13 +23112,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [9203] = 3, - ACTIONS(696), 1, + [9326] = 3, + ACTIONS(453), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(698), 24, + sym_eol_comment, + ACTIONS(455), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -23090,13 +23144,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [9237] = 3, - ACTIONS(680), 1, + [9361] = 3, + ACTIONS(569), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(682), 24, + sym_eol_comment, + ACTIONS(571), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -23121,81 +23176,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [9271] = 7, - ACTIONS(3), 1, - sym_eol_comment, - ACTIONS(5), 1, - sym_bol_comment, - ACTIONS(648), 1, + [9396] = 3, + ACTIONS(681), 1, sym_name, - ACTIONS(1222), 1, - anon_sym_STAR, - ACTIONS(1226), 1, - anon_sym_STAR_STAR, - ACTIONS(1224), 3, - anon_sym_SLASH, - anon_sym_DIV, - anon_sym_MOD, - ACTIONS(650), 19, - anon_sym_DOT, - aux_sym__method_declaration_importing_token1, - aux_sym__method_declaration_exporting_token1, - aux_sym__method_declaration_changing_token1, - anon_sym_RPAREN, - aux_sym__method_declaration_exceptions_token1, - anon_sym_COMMA, - aux_sym_complete_typing_token2, - aux_sym_loop_statement_token3, - aux_sym_loop_statement_token5, - aux_sym__logical_expression_token2, - aux_sym__logical_expression_token3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - aux_sym_select_statement_obsolete_token3, - aux_sym_line_spec_token3, - aux_sym__read_table_result_token1, - aux_sym__explicit_parameter_list_token1, - [9313] = 5, - ACTIONS(3), 1, - sym_eol_comment, - ACTIONS(5), 1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1226), 1, - anon_sym_STAR_STAR, - ACTIONS(648), 2, - anon_sym_STAR, - sym_name, - ACTIONS(650), 22, - anon_sym_DOT, - aux_sym__method_declaration_importing_token1, - aux_sym__method_declaration_exporting_token1, - aux_sym__method_declaration_changing_token1, - anon_sym_RPAREN, - aux_sym__method_declaration_exceptions_token1, - anon_sym_COMMA, - aux_sym_complete_typing_token2, - aux_sym_loop_statement_token3, - aux_sym_loop_statement_token5, - aux_sym__logical_expression_token2, - aux_sym__logical_expression_token3, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_DIV, - anon_sym_MOD, - anon_sym_RBRACK, - aux_sym_select_statement_obsolete_token3, - aux_sym_line_spec_token3, - aux_sym__read_table_result_token1, - aux_sym__explicit_parameter_list_token1, - [9351] = 3, - ACTIONS(1172), 1, - sym_name, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(1174), 24, + ACTIONS(683), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -23220,13 +23208,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [9385] = 3, - ACTIONS(844), 1, + [9431] = 3, + ACTIONS(685), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(846), 24, + sym_eol_comment, + ACTIONS(687), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -23251,13 +23240,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [9419] = 3, - ACTIONS(1168), 1, + [9466] = 3, + ACTIONS(677), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1170), 24, + sym_eol_comment, + ACTIONS(679), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -23282,13 +23272,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [9453] = 3, - ACTIONS(692), 1, + [9501] = 3, + ACTIONS(661), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(694), 24, + sym_eol_comment, + ACTIONS(663), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -23313,13 +23304,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [9487] = 3, - ACTIONS(1164), 1, + [9536] = 3, + ACTIONS(954), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1166), 24, + sym_eol_comment, + ACTIONS(956), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -23344,13 +23336,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [9521] = 3, - ACTIONS(640), 1, + [9571] = 3, + ACTIONS(950), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(642), 24, + sym_eol_comment, + ACTIONS(952), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -23375,13 +23368,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [9555] = 3, - ACTIONS(1160), 1, + [9606] = 3, + ACTIONS(757), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1162), 24, + sym_eol_comment, + ACTIONS(759), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -23406,13 +23400,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [9589] = 3, - ACTIONS(628), 1, + [9641] = 3, + ACTIONS(946), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(630), 24, + sym_eol_comment, + ACTIONS(948), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -23437,13 +23432,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [9623] = 3, - ACTIONS(1156), 1, + [9676] = 3, + ACTIONS(986), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1158), 24, + sym_eol_comment, + ACTIONS(988), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -23468,13 +23464,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [9657] = 3, - ACTIONS(436), 1, + [9711] = 3, + ACTIONS(938), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(438), 24, + sym_eol_comment, + ACTIONS(940), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -23499,13 +23496,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [9691] = 3, - ACTIONS(440), 1, + [9746] = 3, + ACTIONS(381), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(442), 24, + sym_eol_comment, + ACTIONS(383), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -23530,13 +23528,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [9725] = 3, - ACTIONS(1152), 1, + [9781] = 3, + ACTIONS(990), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1154), 24, + sym_eol_comment, + ACTIONS(992), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -23561,13 +23560,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [9759] = 3, - ACTIONS(1218), 1, + [9816] = 3, + ACTIONS(1202), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1220), 24, + sym_eol_comment, + ACTIONS(1204), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -23592,13 +23592,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [9793] = 3, - ACTIONS(1148), 1, + [9851] = 3, + ACTIONS(1198), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1150), 24, + sym_eol_comment, + ACTIONS(1200), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -23623,13 +23624,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [9827] = 3, - ACTIONS(1008), 1, + [9886] = 3, + ACTIONS(934), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1010), 24, + sym_eol_comment, + ACTIONS(936), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -23654,13 +23656,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [9861] = 3, - ACTIONS(1140), 1, + [9921] = 3, + ACTIONS(994), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1142), 24, + sym_eol_comment, + ACTIONS(996), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -23685,13 +23688,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [9895] = 3, - ACTIONS(444), 1, + [9956] = 3, + ACTIONS(1006), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(446), 24, + sym_eol_comment, + ACTIONS(1008), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -23716,13 +23720,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [9929] = 3, - ACTIONS(1132), 1, + [9991] = 3, + ACTIONS(1194), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1134), 24, + sym_eol_comment, + ACTIONS(1196), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -23747,13 +23752,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [9963] = 3, - ACTIONS(1128), 1, + [10026] = 3, + ACTIONS(998), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1130), 24, + sym_eol_comment, + ACTIONS(1000), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -23778,13 +23784,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [9997] = 3, - ACTIONS(1124), 1, + [10061] = 3, + ACTIONS(930), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1126), 24, + sym_eol_comment, + ACTIONS(932), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -23809,13 +23816,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [10031] = 3, - ACTIONS(1120), 1, + [10096] = 3, + ACTIONS(425), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1122), 24, + sym_eol_comment, + ACTIONS(427), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -23840,13 +23848,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [10065] = 3, - ACTIONS(1116), 1, + [10131] = 3, + ACTIONS(1190), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1118), 24, + sym_eol_comment, + ACTIONS(1192), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -23871,13 +23880,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [10099] = 3, - ACTIONS(1112), 1, + [10166] = 3, + ACTIONS(473), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1114), 24, + sym_eol_comment, + ACTIONS(475), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -23902,13 +23912,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [10133] = 3, - ACTIONS(1104), 1, + [10201] = 3, + ACTIONS(573), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1106), 24, + sym_eol_comment, + ACTIONS(575), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -23933,13 +23944,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [10167] = 3, - ACTIONS(1100), 1, + [10236] = 3, + ACTIONS(541), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1102), 24, + sym_eol_comment, + ACTIONS(543), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -23964,44 +23976,49 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [10201] = 3, - ACTIONS(1096), 1, - sym_name, - ACTIONS(3), 2, - sym_eol_comment, + [10271] = 6, + ACTIONS(1218), 1, + anon_sym_DASH2, + ACTIONS(1220), 1, + anon_sym_EQ_GT, + STATE(452), 1, + aux_sym_structured_data_object_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1098), 24, - ts_builtin_sym_end, - aux_sym_class_declaration_token1, - aux_sym__create_addition_token1, - aux_sym_interface_declaration_token1, - aux_sym_variable_declaration_token1, - aux_sym_field_symbol_declaration_token1, - aux_sym_loop_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_continue_statement_token1, - aux_sym_return_statement_token1, - aux_sym_report_statement_token1, - aux_sym_if_statement_token1, - aux_sym_check_statement_token1, - aux_sym_select_statement_obsolete_token1, - aux_sym_read_table_statement_token1, - aux_sym_try_catch_statement_token1, - aux_sym_write_statement_token1, - aux_sym_call_function_token1, - aux_sym_call_function_token2, - aux_sym_raise_exception_statement_token1, - aux_sym_clear_statement_token1, - aux_sym_append_statement_token1, - aux_sym_include_statement_token1, + sym_eol_comment, + ACTIONS(838), 3, + anon_sym_DASH, + anon_sym_STAR, + sym_name, + ACTIONS(836), 19, + anon_sym_DOT, + aux_sym__method_declaration_importing_token1, + aux_sym__method_declaration_exporting_token1, + aux_sym__method_declaration_changing_token1, + anon_sym_RPAREN, + aux_sym__method_declaration_exceptions_token1, + aux_sym_loop_statement_token3, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DIV, + anon_sym_MOD, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_line_spec_token3, + aux_sym__read_table_result_token1, + aux_sym__explicit_parameter_list_token1, + sym_numeric_literal, + sym_character_literal, sym_field_symbol_name, - [10235] = 3, - ACTIONS(572), 1, + [10312] = 3, + ACTIONS(886), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(574), 24, + sym_eol_comment, + ACTIONS(888), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -24026,13 +24043,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [10269] = 3, - ACTIONS(568), 1, + [10347] = 3, + ACTIONS(854), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(570), 24, + sym_eol_comment, + ACTIONS(856), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -24057,13 +24075,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [10303] = 3, - ACTIONS(564), 1, + [10382] = 3, + ACTIONS(922), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(566), 24, + sym_eol_comment, + ACTIONS(924), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -24088,13 +24107,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [10337] = 3, - ACTIONS(1092), 1, + [10417] = 3, + ACTIONS(918), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1094), 24, + sym_eol_comment, + ACTIONS(920), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -24119,13 +24139,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [10371] = 3, - ACTIONS(1088), 1, + [10452] = 3, + ACTIONS(621), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1090), 24, + sym_eol_comment, + ACTIONS(623), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -24150,13 +24171,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [10405] = 3, - ACTIONS(448), 1, + [10487] = 3, + ACTIONS(1002), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(450), 24, + sym_eol_comment, + ACTIONS(1004), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -24181,13 +24203,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [10439] = 3, - ACTIONS(1084), 1, + [10522] = 3, + ACTIONS(914), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1086), 24, + sym_eol_comment, + ACTIONS(916), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -24212,13 +24235,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [10473] = 3, - ACTIONS(1080), 1, + [10557] = 3, + ACTIONS(1018), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1082), 24, + sym_eol_comment, + ACTIONS(1020), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -24243,13 +24267,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [10507] = 3, - ACTIONS(1076), 1, + [10592] = 3, + ACTIONS(910), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1078), 24, + sym_eol_comment, + ACTIONS(912), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -24274,13 +24299,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [10541] = 3, - ACTIONS(1072), 1, + [10627] = 3, + ACTIONS(429), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1074), 24, + sym_eol_comment, + ACTIONS(431), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -24305,13 +24331,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [10575] = 3, - ACTIONS(452), 1, + [10662] = 3, + ACTIONS(477), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(454), 24, + sym_eol_comment, + ACTIONS(479), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -24336,13 +24363,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [10609] = 3, - ACTIONS(560), 1, + [10697] = 3, + ACTIONS(1186), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(562), 24, + sym_eol_comment, + ACTIONS(1188), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -24367,13 +24395,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [10643] = 3, - ACTIONS(1064), 1, + [10732] = 3, + ACTIONS(906), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1066), 24, + sym_eol_comment, + ACTIONS(908), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -24398,13 +24427,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [10677] = 3, - ACTIONS(636), 1, + [10767] = 3, + ACTIONS(1170), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(638), 24, + sym_eol_comment, + ACTIONS(1172), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -24429,13 +24459,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [10711] = 3, - ACTIONS(1060), 1, + [10802] = 3, + ACTIONS(433), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1062), 24, + sym_eol_comment, + ACTIONS(435), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -24460,13 +24491,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [10745] = 3, - ACTIONS(1056), 1, + [10837] = 3, + ACTIONS(894), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1058), 24, + sym_eol_comment, + ACTIONS(896), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -24491,13 +24523,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [10779] = 3, - ACTIONS(472), 1, + [10872] = 3, + ACTIONS(629), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(474), 24, + sym_eol_comment, + ACTIONS(631), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -24522,13 +24555,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [10813] = 3, - ACTIONS(1052), 1, + [10907] = 3, + ACTIONS(926), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1054), 24, + sym_eol_comment, + ACTIONS(928), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -24553,13 +24587,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [10847] = 3, - ACTIONS(1048), 1, + [10942] = 3, + ACTIONS(902), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1050), 24, + sym_eol_comment, + ACTIONS(904), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -24584,13 +24619,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [10881] = 3, - ACTIONS(428), 1, + [10977] = 3, + ACTIONS(1166), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(430), 24, + sym_eol_comment, + ACTIONS(1168), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -24615,13 +24651,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [10915] = 3, - ACTIONS(1044), 1, + [11012] = 3, + ACTIONS(481), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1046), 24, + sym_eol_comment, + ACTIONS(483), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -24646,13 +24683,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [10949] = 3, - ACTIONS(1036), 1, + [11047] = 3, + ACTIONS(489), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1038), 24, + sym_eol_comment, + ACTIONS(491), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -24677,13 +24715,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [10983] = 3, - ACTIONS(456), 1, + [11082] = 3, + ACTIONS(405), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(458), 24, + sym_eol_comment, + ACTIONS(407), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -24708,13 +24747,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [11017] = 3, - ACTIONS(1032), 1, + [11117] = 3, + ACTIONS(597), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1034), 24, + sym_eol_comment, + ACTIONS(599), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -24739,13 +24779,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [11051] = 3, - ACTIONS(460), 1, + [11152] = 3, + ACTIONS(1162), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(462), 24, + sym_eol_comment, + ACTIONS(1164), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -24770,13 +24811,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [11085] = 3, - ACTIONS(1028), 1, + [11187] = 3, + ACTIONS(517), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1030), 24, + sym_eol_comment, + ACTIONS(519), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -24801,13 +24843,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [11119] = 3, - ACTIONS(1024), 1, + [11222] = 3, + ACTIONS(437), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1026), 24, + sym_eol_comment, + ACTIONS(439), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -24832,13 +24875,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [11153] = 3, - ACTIONS(1020), 1, + [11257] = 3, + ACTIONS(898), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1022), 24, + sym_eol_comment, + ACTIONS(900), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -24863,13 +24907,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [11187] = 3, - ACTIONS(400), 1, + [11292] = 3, + ACTIONS(441), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(402), 24, + sym_eol_comment, + ACTIONS(443), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -24894,13 +24939,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [11221] = 3, - ACTIONS(1004), 1, + [11327] = 3, + ACTIONS(942), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1006), 24, + sym_eol_comment, + ACTIONS(944), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -24925,13 +24971,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [11255] = 3, - ACTIONS(1000), 1, + [11362] = 3, + ACTIONS(1158), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1002), 24, + sym_eol_comment, + ACTIONS(1160), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -24956,13 +25003,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [11289] = 3, - ACTIONS(616), 1, + [11397] = 3, + ACTIONS(1154), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(618), 24, + sym_eol_comment, + ACTIONS(1156), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -24987,13 +25035,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [11323] = 3, - ACTIONS(432), 1, + [11432] = 3, + ACTIONS(601), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(434), 24, + sym_eol_comment, + ACTIONS(603), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -25018,13 +25067,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [11357] = 3, - ACTIONS(464), 1, + [11467] = 3, + ACTIONS(1150), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(466), 24, + sym_eol_comment, + ACTIONS(1152), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -25049,13 +25099,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [11391] = 3, - ACTIONS(996), 1, + [11502] = 3, + ACTIONS(1146), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(998), 24, + sym_eol_comment, + ACTIONS(1148), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -25080,13 +25131,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [11425] = 3, - ACTIONS(424), 1, + [11537] = 3, + ACTIONS(1138), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(426), 24, + sym_eol_comment, + ACTIONS(1140), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -25111,13 +25163,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [11459] = 3, - ACTIONS(468), 1, + [11572] = 3, + ACTIONS(401), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(470), 24, + sym_eol_comment, + ACTIONS(403), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -25142,13 +25195,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [11493] = 3, - ACTIONS(1214), 1, + [11607] = 3, + ACTIONS(445), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1216), 24, + sym_eol_comment, + ACTIONS(447), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -25173,13 +25227,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [11527] = 3, - ACTIONS(992), 1, + [11642] = 3, + ACTIONS(605), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(994), 24, + sym_eol_comment, + ACTIONS(607), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -25204,13 +25259,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [11561] = 3, - ACTIONS(988), 1, + [11677] = 3, + ACTIONS(1134), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(990), 24, + sym_eol_comment, + ACTIONS(1136), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -25235,13 +25291,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [11595] = 3, - ACTIONS(476), 1, + [11712] = 3, + ACTIONS(449), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(478), 24, + sym_eol_comment, + ACTIONS(451), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -25266,13 +25323,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [11629] = 3, - ACTIONS(984), 1, + [11747] = 3, + ACTIONS(1182), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(986), 24, + sym_eol_comment, + ACTIONS(1184), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -25297,13 +25355,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [11663] = 3, - ACTIONS(480), 1, + [11782] = 3, + ACTIONS(1126), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(482), 24, + sym_eol_comment, + ACTIONS(1128), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -25328,13 +25387,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [11697] = 3, - ACTIONS(484), 1, + [11817] = 3, + ACTIONS(609), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(486), 24, + sym_eol_comment, + ACTIONS(611), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -25359,13 +25419,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [11731] = 3, - ACTIONS(980), 1, + [11852] = 3, + ACTIONS(457), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(982), 24, + sym_eol_comment, + ACTIONS(459), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -25390,13 +25451,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [11765] = 3, - ACTIONS(620), 1, + [11887] = 3, + ACTIONS(693), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(622), 24, + sym_eol_comment, + ACTIONS(695), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -25421,13 +25483,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [11799] = 3, - ACTIONS(976), 1, + [11922] = 3, + ACTIONS(461), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(978), 24, + sym_eol_comment, + ACTIONS(463), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -25452,13 +25515,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [11833] = 3, - ACTIONS(712), 1, + [11957] = 3, + ACTIONS(465), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(714), 24, + sym_eol_comment, + ACTIONS(467), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -25483,13 +25547,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [11867] = 3, - ACTIONS(972), 1, + [11992] = 3, + ACTIONS(633), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(974), 24, + sym_eol_comment, + ACTIONS(635), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -25514,13 +25579,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [11901] = 3, - ACTIONS(492), 1, + [12027] = 3, + ACTIONS(697), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(494), 24, + sym_eol_comment, + ACTIONS(699), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -25545,13 +25611,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [11935] = 3, - ACTIONS(716), 1, + [12062] = 3, + ACTIONS(1122), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(718), 24, + sym_eol_comment, + ACTIONS(1124), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -25576,13 +25643,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [11969] = 3, - ACTIONS(968), 1, + [12097] = 3, + ACTIONS(701), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(970), 24, + sym_eol_comment, + ACTIONS(703), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -25607,13 +25675,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [12003] = 3, - ACTIONS(720), 1, + [12132] = 3, + ACTIONS(1010), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(722), 24, + sym_eol_comment, + ACTIONS(1012), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -25638,13 +25707,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [12037] = 3, - ACTIONS(420), 1, + [12167] = 3, + ACTIONS(469), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(422), 24, + sym_eol_comment, + ACTIONS(471), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -25669,13 +25739,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [12071] = 3, - ACTIONS(724), 1, + [12202] = 3, + ACTIONS(705), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(726), 24, + sym_eol_comment, + ACTIONS(707), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -25700,13 +25771,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [12105] = 3, - ACTIONS(416), 1, + [12237] = 3, + ACTIONS(413), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(418), 24, + sym_eol_comment, + ACTIONS(415), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -25731,13 +25803,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [12139] = 3, - ACTIONS(488), 1, + [12272] = 3, + ACTIONS(397), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(490), 24, + sym_eol_comment, + ACTIONS(399), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -25762,13 +25835,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [12173] = 3, - ACTIONS(412), 1, + [12307] = 3, + ACTIONS(393), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(414), 24, + sym_eol_comment, + ACTIONS(395), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -25793,13 +25867,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [12207] = 3, - ACTIONS(728), 1, + [12342] = 3, + ACTIONS(709), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(730), 24, + sym_eol_comment, + ACTIONS(711), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -25824,13 +25899,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [12241] = 3, - ACTIONS(964), 1, + [12377] = 3, + ACTIONS(1206), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(966), 24, + sym_eol_comment, + ACTIONS(1208), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -25855,13 +25931,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [12275] = 3, - ACTIONS(732), 1, + [12412] = 3, + ACTIONS(389), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(734), 24, + sym_eol_comment, + ACTIONS(391), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -25886,13 +25963,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [12309] = 3, - ACTIONS(736), 1, + [12447] = 3, + ACTIONS(1118), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(738), 24, + sym_eol_comment, + ACTIONS(1120), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -25917,13 +25995,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [12343] = 3, - ACTIONS(740), 1, + [12482] = 3, + ACTIONS(713), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(742), 24, + sym_eol_comment, + ACTIONS(715), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -25948,13 +26027,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [12377] = 3, - ACTIONS(744), 1, + [12517] = 3, + ACTIONS(717), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(746), 24, + sym_eol_comment, + ACTIONS(719), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -25979,13 +26059,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [12411] = 3, - ACTIONS(748), 1, + [12552] = 3, + ACTIONS(721), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(750), 24, + sym_eol_comment, + ACTIONS(723), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -26010,13 +26091,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [12445] = 3, - ACTIONS(408), 1, + [12587] = 3, + ACTIONS(725), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(410), 24, + sym_eol_comment, + ACTIONS(727), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -26041,13 +26123,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [12479] = 3, - ACTIONS(960), 1, + [12622] = 3, + ACTIONS(729), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(962), 24, + sym_eol_comment, + ACTIONS(731), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -26072,13 +26155,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [12513] = 3, - ACTIONS(956), 1, + [12657] = 3, + ACTIONS(417), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(958), 24, + sym_eol_comment, + ACTIONS(419), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -26103,13 +26187,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [12547] = 3, - ACTIONS(584), 1, + [12692] = 3, + ACTIONS(385), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(586), 24, + sym_eol_comment, + ACTIONS(387), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -26134,13 +26219,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [12581] = 3, - ACTIONS(952), 1, + [12727] = 3, + ACTIONS(1114), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(954), 24, + sym_eol_comment, + ACTIONS(1116), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -26165,13 +26251,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [12615] = 3, - ACTIONS(632), 1, + [12762] = 3, + ACTIONS(529), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(634), 24, + sym_eol_comment, + ACTIONS(531), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -26196,13 +26283,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [12649] = 3, - ACTIONS(1180), 1, + [12797] = 3, + ACTIONS(1110), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1182), 24, + sym_eol_comment, + ACTIONS(1112), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -26227,13 +26315,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [12683] = 3, - ACTIONS(396), 1, + [12832] = 3, + ACTIONS(617), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(398), 24, + sym_eol_comment, + ACTIONS(619), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -26258,13 +26347,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [12717] = 3, - ACTIONS(496), 1, + [12867] = 3, + ACTIONS(377), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(498), 24, + sym_eol_comment, + ACTIONS(379), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -26289,13 +26379,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [12751] = 3, - ACTIONS(1176), 1, + [12902] = 3, + ACTIONS(1038), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1178), 24, + sym_eol_comment, + ACTIONS(1040), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -26320,13 +26411,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [12785] = 3, - ACTIONS(948), 1, + [12937] = 3, + ACTIONS(1178), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(950), 24, + sym_eol_comment, + ACTIONS(1180), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -26351,13 +26443,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [12819] = 3, - ACTIONS(1144), 1, + [12972] = 3, + ACTIONS(890), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1146), 24, + sym_eol_comment, + ACTIONS(892), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -26382,13 +26475,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [12853] = 3, - ACTIONS(644), 1, + [13007] = 3, + ACTIONS(589), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(646), 24, + sym_eol_comment, + ACTIONS(591), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -26413,13 +26507,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [12887] = 3, - ACTIONS(660), 1, + [13042] = 3, + ACTIONS(1174), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(662), 24, + sym_eol_comment, + ACTIONS(1176), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -26444,13 +26539,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [12921] = 3, - ACTIONS(936), 1, + [13077] = 3, + ACTIONS(733), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(938), 24, + sym_eol_comment, + ACTIONS(735), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -26475,44 +26571,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [12955] = 3, - ACTIONS(508), 1, + [13112] = 3, + ACTIONS(1142), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(510), 24, - ts_builtin_sym_end, - aux_sym_class_declaration_token1, - aux_sym__create_addition_token1, - aux_sym_interface_declaration_token1, - aux_sym_variable_declaration_token1, - aux_sym_field_symbol_declaration_token1, - aux_sym_loop_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_continue_statement_token1, - aux_sym_return_statement_token1, - aux_sym_report_statement_token1, - aux_sym_if_statement_token1, - aux_sym_check_statement_token1, - aux_sym_select_statement_obsolete_token1, - aux_sym_read_table_statement_token1, - aux_sym_try_catch_statement_token1, - aux_sym_write_statement_token1, - aux_sym_call_function_token1, - aux_sym_call_function_token2, - aux_sym_raise_exception_statement_token1, - aux_sym_clear_statement_token1, - aux_sym_append_statement_token1, - aux_sym_include_statement_token1, - sym_field_symbol_name, - [12989] = 3, - ACTIONS(1136), 1, - sym_name, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(1138), 24, + ACTIONS(1144), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -26537,44 +26603,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [13023] = 3, - ACTIONS(580), 1, + [13147] = 3, + ACTIONS(1022), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(582), 24, - ts_builtin_sym_end, - aux_sym_class_declaration_token1, - aux_sym__create_addition_token1, - aux_sym_interface_declaration_token1, - aux_sym_variable_declaration_token1, - aux_sym_field_symbol_declaration_token1, - aux_sym_loop_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_continue_statement_token1, - aux_sym_return_statement_token1, - aux_sym_report_statement_token1, - aux_sym_if_statement_token1, - aux_sym_check_statement_token1, - aux_sym_select_statement_obsolete_token1, - aux_sym_read_table_statement_token1, - aux_sym_try_catch_statement_token1, - aux_sym_write_statement_token1, - aux_sym_call_function_token1, - aux_sym_call_function_token2, - aux_sym_raise_exception_statement_token1, - aux_sym_clear_statement_token1, - aux_sym_append_statement_token1, - aux_sym_include_statement_token1, - sym_field_symbol_name, - [13057] = 3, - ACTIONS(752), 1, - sym_name, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(754), 24, + ACTIONS(1024), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -26599,44 +26635,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [13091] = 3, - ACTIONS(588), 1, + [13182] = 3, + ACTIONS(882), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(590), 24, - ts_builtin_sym_end, - aux_sym_class_declaration_token1, - aux_sym__create_addition_token1, - aux_sym_interface_declaration_token1, - aux_sym_variable_declaration_token1, - aux_sym_field_symbol_declaration_token1, - aux_sym_loop_statement_token1, - aux_sym_exit_statement_token1, - aux_sym_continue_statement_token1, - aux_sym_return_statement_token1, - aux_sym_report_statement_token1, - aux_sym_if_statement_token1, - aux_sym_check_statement_token1, - aux_sym_select_statement_obsolete_token1, - aux_sym_read_table_statement_token1, - aux_sym_try_catch_statement_token1, - aux_sym_write_statement_token1, - aux_sym_call_function_token1, - aux_sym_call_function_token2, - aux_sym_raise_exception_statement_token1, - aux_sym_clear_statement_token1, - aux_sym_append_statement_token1, - aux_sym_include_statement_token1, - sym_field_symbol_name, - [13125] = 3, - ACTIONS(932), 1, - sym_name, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(934), 24, + ACTIONS(884), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -26661,13 +26667,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [13159] = 3, - ACTIONS(656), 1, + [13217] = 3, + ACTIONS(878), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(658), 24, + sym_eol_comment, + ACTIONS(880), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -26692,13 +26699,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [13193] = 3, - ACTIONS(500), 1, + [13252] = 3, + ACTIONS(485), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(502), 24, + sym_eol_comment, + ACTIONS(487), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -26723,13 +26731,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [13227] = 3, - ACTIONS(756), 1, + [13287] = 3, + ACTIONS(1130), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(758), 24, + sym_eol_comment, + ACTIONS(1132), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -26754,13 +26763,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [13261] = 3, - ACTIONS(760), 1, + [13322] = 3, + ACTIONS(737), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(762), 24, + sym_eol_comment, + ACTIONS(739), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -26785,13 +26795,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [13295] = 3, - ACTIONS(404), 1, + [13357] = 3, + ACTIONS(741), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(406), 24, + sym_eol_comment, + ACTIONS(743), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -26816,13 +26827,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [13329] = 3, - ACTIONS(928), 1, + [13392] = 3, + ACTIONS(1102), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(930), 24, + sym_eol_comment, + ACTIONS(1104), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -26847,13 +26859,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [13363] = 3, - ACTIONS(924), 1, + [13427] = 3, + ACTIONS(1098), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(926), 24, + sym_eol_comment, + ACTIONS(1100), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -26878,13 +26891,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [13397] = 3, - ACTIONS(764), 1, + [13462] = 3, + ACTIONS(1094), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(766), 24, + sym_eol_comment, + ACTIONS(1096), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -26909,13 +26923,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [13431] = 3, - ACTIONS(920), 1, + [13497] = 3, + ACTIONS(1090), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(922), 24, + sym_eol_comment, + ACTIONS(1092), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -26940,13 +26955,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [13465] = 3, - ACTIONS(916), 1, + [13532] = 3, + ACTIONS(745), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(918), 24, + sym_eol_comment, + ACTIONS(747), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -26971,13 +26987,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [13499] = 3, - ACTIONS(912), 1, + [13567] = 3, + ACTIONS(585), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(914), 24, + sym_eol_comment, + ACTIONS(587), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -27002,13 +27019,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [13533] = 3, - ACTIONS(908), 1, + [13602] = 3, + ACTIONS(874), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(910), 24, + sym_eol_comment, + ACTIONS(876), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -27033,13 +27051,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [13567] = 3, - ACTIONS(504), 1, + [13637] = 3, + ACTIONS(870), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(506), 24, + sym_eol_comment, + ACTIONS(872), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -27064,13 +27083,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [13601] = 3, - ACTIONS(512), 1, + [13672] = 3, + ACTIONS(1086), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(514), 24, + sym_eol_comment, + ACTIONS(1088), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -27095,13 +27115,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [13635] = 3, - ACTIONS(900), 1, + [13707] = 3, + ACTIONS(749), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(902), 24, + sym_eol_comment, + ACTIONS(751), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -27126,13 +27147,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [13669] = 3, - ACTIONS(768), 1, + [13742] = 3, + ACTIONS(1026), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(770), 24, + sym_eol_comment, + ACTIONS(1028), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -27157,13 +27179,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [13703] = 3, - ACTIONS(772), 1, + [13777] = 3, + ACTIONS(866), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(774), 24, + sym_eol_comment, + ACTIONS(868), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -27188,13 +27211,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [13737] = 3, - ACTIONS(540), 1, + [13812] = 3, + ACTIONS(753), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(542), 24, + sym_eol_comment, + ACTIONS(755), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -27219,13 +27243,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [13771] = 3, - ACTIONS(888), 1, + [13847] = 3, + ACTIONS(1082), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(890), 24, + sym_eol_comment, + ACTIONS(1084), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -27250,13 +27275,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [13805] = 3, - ACTIONS(596), 1, + [13882] = 3, + ACTIONS(1066), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(598), 24, + sym_eol_comment, + ACTIONS(1068), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -27281,13 +27307,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [13839] = 3, - ACTIONS(776), 1, + [13917] = 3, + ACTIONS(862), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(778), 24, + sym_eol_comment, + ACTIONS(864), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -27312,13 +27339,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [13873] = 3, - ACTIONS(612), 1, + [13952] = 3, + ACTIONS(1078), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(614), 24, + sym_eol_comment, + ACTIONS(1080), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -27343,13 +27371,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [13907] = 3, - ACTIONS(552), 1, + [13987] = 3, + ACTIONS(761), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(554), 24, + sym_eol_comment, + ACTIONS(763), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -27374,13 +27403,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [13941] = 3, - ACTIONS(904), 1, + [14022] = 3, + ACTIONS(765), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(906), 24, + sym_eol_comment, + ACTIONS(767), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -27405,13 +27435,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [13975] = 3, - ACTIONS(780), 1, + [14057] = 3, + ACTIONS(581), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(782), 24, + sym_eol_comment, + ACTIONS(583), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -27436,13 +27467,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [14009] = 3, - ACTIONS(676), 1, + [14092] = 3, + ACTIONS(557), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(678), 24, + sym_eol_comment, + ACTIONS(559), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -27467,13 +27499,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [14043] = 3, - ACTIONS(784), 1, + [14127] = 3, + ACTIONS(577), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(786), 24, + sym_eol_comment, + ACTIONS(579), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -27498,13 +27531,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [14077] = 3, - ACTIONS(788), 1, + [14162] = 3, + ACTIONS(565), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(790), 24, + sym_eol_comment, + ACTIONS(567), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -27529,13 +27563,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [14111] = 3, - ACTIONS(672), 1, + [14197] = 3, + ACTIONS(1030), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(674), 24, + sym_eol_comment, + ACTIONS(1032), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -27560,13 +27595,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [14145] = 3, - ACTIONS(792), 1, + [14232] = 3, + ACTIONS(850), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(794), 24, + sym_eol_comment, + ACTIONS(852), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -27591,13 +27627,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [14179] = 3, - ACTIONS(796), 1, + [14267] = 3, + ACTIONS(769), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(798), 24, + sym_eol_comment, + ACTIONS(771), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -27622,13 +27659,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [14213] = 3, - ACTIONS(668), 1, + [14302] = 3, + ACTIONS(773), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(670), 24, + sym_eol_comment, + ACTIONS(775), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -27653,13 +27691,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [14247] = 3, - ACTIONS(664), 1, + [14337] = 3, + ACTIONS(657), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(666), 24, + sym_eol_comment, + ACTIONS(659), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -27684,13 +27723,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [14281] = 3, - ACTIONS(600), 1, + [14372] = 3, + ACTIONS(777), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(602), 24, + sym_eol_comment, + ACTIONS(779), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -27715,13 +27755,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [14315] = 3, - ACTIONS(896), 1, + [14407] = 3, + ACTIONS(653), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(898), 24, + sym_eol_comment, + ACTIONS(655), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -27746,13 +27787,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [14349] = 3, - ACTIONS(1012), 1, + [14442] = 3, + ACTIONS(781), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1014), 24, + sym_eol_comment, + ACTIONS(783), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -27777,13 +27819,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [14383] = 3, - ACTIONS(940), 1, + [14477] = 3, + ACTIONS(649), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(942), 24, + sym_eol_comment, + ACTIONS(651), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -27808,13 +27851,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [14417] = 3, - ACTIONS(1016), 1, + [14512] = 3, + ACTIONS(645), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1018), 24, + sym_eol_comment, + ACTIONS(647), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -27839,13 +27883,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [14451] = 3, - ACTIONS(1040), 1, + [14547] = 3, + ACTIONS(641), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1042), 24, + sym_eol_comment, + ACTIONS(643), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -27870,13 +27915,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [14485] = 3, - ACTIONS(516), 1, + [14582] = 3, + ACTIONS(561), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(518), 24, + sym_eol_comment, + ACTIONS(563), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -27901,13 +27947,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [14519] = 3, - ACTIONS(860), 1, + [14617] = 3, + ACTIONS(637), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(862), 24, + sym_eol_comment, + ACTIONS(639), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -27932,13 +27979,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [14553] = 3, - ACTIONS(892), 1, + [14652] = 3, + ACTIONS(421), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(894), 24, + sym_eol_comment, + ACTIONS(423), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -27963,13 +28011,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [14587] = 3, - ACTIONS(608), 1, + [14687] = 3, + ACTIONS(553), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(610), 24, + sym_eol_comment, + ACTIONS(555), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -27994,13 +28043,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [14621] = 3, - ACTIONS(884), 1, + [14722] = 3, + ACTIONS(593), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(886), 24, + sym_eol_comment, + ACTIONS(595), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -28025,13 +28075,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [14655] = 3, - ACTIONS(880), 1, + [14757] = 3, + ACTIONS(549), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(882), 24, + sym_eol_comment, + ACTIONS(551), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -28056,13 +28107,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [14689] = 3, - ACTIONS(520), 1, + [14792] = 3, + ACTIONS(846), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(522), 24, + sym_eol_comment, + ACTIONS(848), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -28087,13 +28139,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [14723] = 3, - ACTIONS(876), 1, + [14827] = 3, + ACTIONS(493), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(878), 24, + sym_eol_comment, + ACTIONS(495), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -28118,13 +28171,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [14757] = 3, - ACTIONS(872), 1, + [14862] = 3, + ACTIONS(1074), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(874), 24, + sym_eol_comment, + ACTIONS(1076), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -28149,13 +28203,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [14791] = 3, - ACTIONS(868), 1, + [14897] = 3, + ACTIONS(1070), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(870), 24, + sym_eol_comment, + ACTIONS(1072), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -28180,13 +28235,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [14825] = 3, - ACTIONS(592), 1, + [14932] = 3, + ACTIONS(842), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(594), 24, + sym_eol_comment, + ACTIONS(844), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -28211,13 +28267,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [14859] = 3, - ACTIONS(1068), 1, + [14967] = 3, + ACTIONS(545), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1070), 24, + sym_eol_comment, + ACTIONS(547), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -28242,13 +28299,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [14893] = 3, - ACTIONS(624), 1, + [15002] = 3, + ACTIONS(1062), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(626), 24, + sym_eol_comment, + ACTIONS(1064), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -28273,13 +28331,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [14927] = 3, - ACTIONS(864), 1, + [15037] = 3, + ACTIONS(497), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(866), 24, + sym_eol_comment, + ACTIONS(499), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -28304,13 +28363,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [14961] = 3, - ACTIONS(800), 1, + [15072] = 3, + ACTIONS(1058), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(802), 24, + sym_eol_comment, + ACTIONS(1060), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -28335,13 +28395,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [14995] = 3, - ACTIONS(524), 1, + [15107] = 3, + ACTIONS(533), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(526), 24, + sym_eol_comment, + ACTIONS(535), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -28366,13 +28427,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [15029] = 3, - ACTIONS(804), 1, + [15142] = 3, + ACTIONS(537), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(806), 24, + sym_eol_comment, + ACTIONS(539), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -28397,13 +28459,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [15063] = 3, - ACTIONS(808), 1, + [15177] = 3, + ACTIONS(613), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(810), 24, + sym_eol_comment, + ACTIONS(615), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -28428,13 +28491,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [15097] = 3, - ACTIONS(812), 1, + [15212] = 3, + ACTIONS(1054), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(814), 24, + sym_eol_comment, + ACTIONS(1056), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -28459,13 +28523,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [15131] = 3, - ACTIONS(528), 1, + [15247] = 3, + ACTIONS(785), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(530), 24, + sym_eol_comment, + ACTIONS(787), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -28490,13 +28555,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [15165] = 3, - ACTIONS(532), 1, + [15282] = 3, + ACTIONS(789), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(534), 24, + sym_eol_comment, + ACTIONS(791), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -28521,13 +28587,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [15199] = 3, - ACTIONS(816), 1, + [15317] = 3, + ACTIONS(800), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(818), 24, + sym_eol_comment, + ACTIONS(802), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -28552,13 +28619,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [15233] = 3, - ACTIONS(604), 1, + [15352] = 3, + ACTIONS(501), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(606), 24, + sym_eol_comment, + ACTIONS(503), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -28583,13 +28651,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [15267] = 3, - ACTIONS(820), 1, + [15387] = 3, + ACTIONS(804), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(822), 24, + sym_eol_comment, + ACTIONS(806), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -28614,13 +28683,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [15301] = 3, - ACTIONS(828), 1, + [15422] = 3, + ACTIONS(808), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(830), 24, + sym_eol_comment, + ACTIONS(810), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -28645,13 +28715,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [15335] = 3, - ACTIONS(536), 1, + [15457] = 3, + ACTIONS(812), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(538), 24, + sym_eol_comment, + ACTIONS(814), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -28676,13 +28747,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [15369] = 3, - ACTIONS(1108), 1, + [15492] = 3, + ACTIONS(505), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1110), 24, + sym_eol_comment, + ACTIONS(507), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -28707,13 +28779,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [15403] = 3, - ACTIONS(832), 1, + [15527] = 3, + ACTIONS(509), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(834), 24, + sym_eol_comment, + ACTIONS(511), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -28738,13 +28811,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [15437] = 3, - ACTIONS(688), 1, + [15562] = 3, + ACTIONS(673), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(690), 24, + sym_eol_comment, + ACTIONS(675), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -28769,13 +28843,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [15471] = 3, - ACTIONS(836), 1, + [15597] = 3, + ACTIONS(1050), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(838), 24, + sym_eol_comment, + ACTIONS(1052), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -28800,13 +28875,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [15505] = 3, - ACTIONS(548), 1, + [15632] = 3, + ACTIONS(820), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(550), 24, + sym_eol_comment, + ACTIONS(822), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -28831,13 +28907,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [15539] = 3, - ACTIONS(840), 1, + [15667] = 3, + ACTIONS(824), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(842), 24, + sym_eol_comment, + ACTIONS(826), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -28862,13 +28939,78 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [15573] = 3, - ACTIONS(856), 1, + [15702] = 3, + ACTIONS(513), 1, sym_name, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + ACTIONS(515), 24, + ts_builtin_sym_end, + aux_sym_class_declaration_token1, + aux_sym__create_addition_token1, + aux_sym_interface_declaration_token1, + aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, + aux_sym_loop_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_continue_statement_token1, + aux_sym_return_statement_token1, + aux_sym_report_statement_token1, + aux_sym_if_statement_token1, + aux_sym_check_statement_token1, + aux_sym_select_statement_obsolete_token1, + aux_sym_read_table_statement_token1, + aux_sym_try_catch_statement_token1, + aux_sym_write_statement_token1, + aux_sym_call_function_token1, + aux_sym_call_function_token2, + aux_sym_raise_exception_statement_token1, + aux_sym_clear_statement_token1, + aux_sym_append_statement_token1, + aux_sym_include_statement_token1, + sym_field_symbol_name, + [15737] = 3, + ACTIONS(1106), 1, + sym_name, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + ACTIONS(1108), 24, + ts_builtin_sym_end, + aux_sym_class_declaration_token1, + aux_sym__create_addition_token1, + aux_sym_interface_declaration_token1, + aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, + aux_sym_loop_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_continue_statement_token1, + aux_sym_return_statement_token1, + aux_sym_report_statement_token1, + aux_sym_if_statement_token1, + aux_sym_check_statement_token1, + aux_sym_select_statement_obsolete_token1, + aux_sym_read_table_statement_token1, + aux_sym_try_catch_statement_token1, + aux_sym_write_statement_token1, + aux_sym_call_function_token1, + aux_sym_call_function_token2, + aux_sym_raise_exception_statement_token1, + aux_sym_clear_statement_token1, + aux_sym_append_statement_token1, + aux_sym_include_statement_token1, + sym_field_symbol_name, + [15772] = 3, + ACTIONS(828), 1, + sym_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(858), 24, + sym_eol_comment, + ACTIONS(830), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -28893,13 +29035,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [15607] = 3, - ACTIONS(852), 1, + [15807] = 3, + ACTIONS(521), 1, sym_name, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + ACTIONS(523), 24, + ts_builtin_sym_end, + aux_sym_class_declaration_token1, + aux_sym__create_addition_token1, + aux_sym_interface_declaration_token1, + aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, + aux_sym_loop_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_continue_statement_token1, + aux_sym_return_statement_token1, + aux_sym_report_statement_token1, + aux_sym_if_statement_token1, + aux_sym_check_statement_token1, + aux_sym_select_statement_obsolete_token1, + aux_sym_read_table_statement_token1, + aux_sym_try_catch_statement_token1, + aux_sym_write_statement_token1, + aux_sym_call_function_token1, + aux_sym_call_function_token2, + aux_sym_raise_exception_statement_token1, + aux_sym_clear_statement_token1, + aux_sym_append_statement_token1, + aux_sym_include_statement_token1, + sym_field_symbol_name, + [15842] = 3, + ACTIONS(832), 1, + sym_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(854), 24, + sym_eol_comment, + ACTIONS(834), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -28924,13 +29099,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [15641] = 3, - ACTIONS(576), 1, + [15877] = 3, + ACTIONS(525), 1, sym_name, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + ACTIONS(527), 24, + ts_builtin_sym_end, + aux_sym_class_declaration_token1, + aux_sym__create_addition_token1, + aux_sym_interface_declaration_token1, + aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, + aux_sym_loop_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_continue_statement_token1, + aux_sym_return_statement_token1, + aux_sym_report_statement_token1, + aux_sym_if_statement_token1, + aux_sym_check_statement_token1, + aux_sym_select_statement_obsolete_token1, + aux_sym_read_table_statement_token1, + aux_sym_try_catch_statement_token1, + aux_sym_write_statement_token1, + aux_sym_call_function_token1, + aux_sym_call_function_token2, + aux_sym_raise_exception_statement_token1, + aux_sym_clear_statement_token1, + aux_sym_append_statement_token1, + aux_sym_include_statement_token1, + sym_field_symbol_name, + [15912] = 3, + ACTIONS(1046), 1, + sym_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(578), 24, + sym_eol_comment, + ACTIONS(1048), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -28955,13 +29163,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [15675] = 3, - ACTIONS(848), 1, + [15947] = 3, + ACTIONS(1042), 1, sym_name, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + ACTIONS(1044), 24, + ts_builtin_sym_end, + aux_sym_class_declaration_token1, + aux_sym__create_addition_token1, + aux_sym_interface_declaration_token1, + aux_sym_variable_declaration_token1, + aux_sym_field_symbol_declaration_token1, + aux_sym_loop_statement_token1, + aux_sym_exit_statement_token1, + aux_sym_continue_statement_token1, + aux_sym_return_statement_token1, + aux_sym_report_statement_token1, + aux_sym_if_statement_token1, + aux_sym_check_statement_token1, + aux_sym_select_statement_obsolete_token1, + aux_sym_read_table_statement_token1, + aux_sym_try_catch_statement_token1, + aux_sym_write_statement_token1, + aux_sym_call_function_token1, + aux_sym_call_function_token2, + aux_sym_raise_exception_statement_token1, + aux_sym_clear_statement_token1, + aux_sym_append_statement_token1, + aux_sym_include_statement_token1, + sym_field_symbol_name, + [15982] = 3, + ACTIONS(1034), 1, + sym_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(850), 24, + sym_eol_comment, + ACTIONS(1036), 24, ts_builtin_sym_end, aux_sym_class_declaration_token1, aux_sym__create_addition_token1, @@ -28986,325 +29227,696 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_append_statement_token1, aux_sym_include_statement_token1, sym_field_symbol_name, - [15709] = 11, - ACTIONS(1228), 1, + [16017] = 5, + ACTIONS(1218), 1, + anon_sym_DASH2, + STATE(452), 1, + aux_sym_structured_data_object_repeat1, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + ACTIONS(838), 3, + anon_sym_DASH, + anon_sym_STAR, + sym_name, + ACTIONS(836), 19, + anon_sym_DOT, + aux_sym__method_declaration_importing_token1, + aux_sym__method_declaration_exporting_token1, + aux_sym__method_declaration_changing_token1, + anon_sym_RPAREN, + aux_sym__method_declaration_exceptions_token1, + aux_sym_loop_statement_token3, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DIV, + anon_sym_MOD, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_line_spec_token3, + aux_sym__read_table_result_token1, + aux_sym__explicit_parameter_list_token1, + sym_numeric_literal, + sym_character_literal, + sym_field_symbol_name, + [16055] = 5, + ACTIONS(1218), 1, + anon_sym_DASH2, + STATE(453), 1, + aux_sym_structured_data_object_repeat1, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + ACTIONS(1016), 3, + anon_sym_DASH, + anon_sym_STAR, sym_name, - ACTIONS(1232), 1, + ACTIONS(1014), 19, + anon_sym_DOT, + aux_sym__method_declaration_importing_token1, + aux_sym__method_declaration_exporting_token1, + aux_sym__method_declaration_changing_token1, anon_sym_RPAREN, - ACTIONS(1234), 1, + aux_sym__method_declaration_exceptions_token1, + aux_sym_loop_statement_token3, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DIV, + anon_sym_MOD, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_line_spec_token3, + aux_sym__read_table_result_token1, aux_sym__explicit_parameter_list_token1, - ACTIONS(1238), 1, + sym_numeric_literal, + sym_character_literal, sym_field_symbol_name, - STATE(991), 1, - aux_sym__explicit_parameter_list_repeat1, - ACTIONS(3), 2, + [16093] = 5, + ACTIONS(1222), 1, + anon_sym_DASH2, + STATE(453), 1, + aux_sym_structured_data_object_repeat1, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + ACTIONS(795), 3, + anon_sym_DASH, + anon_sym_STAR, + sym_name, + ACTIONS(793), 19, + anon_sym_DOT, + aux_sym__method_declaration_importing_token1, + aux_sym__method_declaration_exporting_token1, + aux_sym__method_declaration_changing_token1, + anon_sym_RPAREN, + aux_sym__method_declaration_exceptions_token1, + aux_sym_loop_statement_token3, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DIV, + anon_sym_MOD, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_line_spec_token3, + aux_sym__read_table_result_token1, + aux_sym__explicit_parameter_list_token1, + sym_numeric_literal, + sym_character_literal, + sym_field_symbol_name, + [16131] = 6, + ACTIONS(840), 1, + anon_sym_DASH2, + ACTIONS(1225), 1, + anon_sym_EQ_GT, + STATE(196), 1, + aux_sym_structured_data_object_repeat1, + ACTIONS(838), 2, + anon_sym_DASH, + anon_sym_STAR, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + ACTIONS(836), 18, + anon_sym_DOT, + aux_sym__method_declaration_importing_token1, + aux_sym__method_declaration_exporting_token1, + aux_sym__method_declaration_changing_token1, + anon_sym_RPAREN, + anon_sym_COMMA, + aux_sym_complete_typing_token2, + aux_sym_loop_statement_token5, + aux_sym__logical_expression_token2, + aux_sym__logical_expression_token3, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DIV, + anon_sym_MOD, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_select_statement_obsolete_token3, + aux_sym__explicit_parameter_list_token1, + [16170] = 3, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + ACTIONS(1212), 3, + anon_sym_DASH, + anon_sym_STAR, + sym_name, + ACTIONS(1210), 20, + anon_sym_DOT, + aux_sym__method_declaration_importing_token1, + aux_sym__method_declaration_exporting_token1, + aux_sym__method_declaration_changing_token1, + anon_sym_RPAREN, + aux_sym__method_declaration_exceptions_token1, + aux_sym_loop_statement_token3, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DIV, + anon_sym_MOD, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_line_spec_token3, + aux_sym__read_table_result_token1, + anon_sym_DASH2, + aux_sym__explicit_parameter_list_token1, + sym_numeric_literal, + sym_character_literal, + sym_field_symbol_name, + [16203] = 3, + ACTIONS(1216), 2, + anon_sym_STAR, + sym_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1236), 2, + sym_eol_comment, + ACTIONS(1214), 20, + anon_sym_DOT, + aux_sym__method_declaration_importing_token1, + aux_sym__method_declaration_exporting_token1, + aux_sym__method_declaration_changing_token1, + anon_sym_RPAREN, + aux_sym__method_declaration_exceptions_token1, + aux_sym_loop_statement_token3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_DIV, + anon_sym_MOD, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + aux_sym_line_spec_token3, + aux_sym__read_table_result_token1, + aux_sym__explicit_parameter_list_token1, + sym_numeric_literal, + sym_character_literal, + sym_field_symbol_name, + [16235] = 11, + ACTIONS(53), 1, + sym_field_symbol_name, + ACTIONS(1227), 1, + sym_name, + ACTIONS(1231), 1, + anon_sym_RPAREN, + ACTIONS(1233), 1, + aux_sym__explicit_parameter_list_token1, + STATE(1016), 1, + aux_sym__explicit_parameter_list_repeat1, + ACTIONS(1235), 2, sym_numeric_literal, sym_character_literal, - STATE(562), 2, + STATE(560), 2, sym_parameter_binding, aux_sym_parameter_list_repeat1, - STATE(2673), 2, + STATE(2378), 2, sym_parameter_list, sym__explicit_parameter_list, - ACTIONS(1230), 3, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + ACTIONS(1229), 3, aux_sym__method_declaration_importing_token1, aux_sym__method_declaration_exporting_token1, aux_sym__method_declaration_changing_token1, - STATE(619), 6, + STATE(640), 6, sym__general_expression_position, sym__calculation_expression, sym_arithmetic_expression, sym__data_object, sym_structured_data_object, sym_attribute_access_static, - [15754] = 11, - ACTIONS(1228), 1, - sym_name, - ACTIONS(1234), 1, + [16281] = 4, + ACTIONS(625), 1, + anon_sym_STAR, + ACTIONS(1237), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + ACTIONS(627), 18, + anon_sym_DOT, + aux_sym__method_declaration_importing_token1, + aux_sym__method_declaration_exporting_token1, + aux_sym__method_declaration_changing_token1, + anon_sym_RPAREN, + anon_sym_COMMA, + aux_sym_complete_typing_token2, + aux_sym_loop_statement_token5, + aux_sym__logical_expression_token2, + aux_sym__logical_expression_token3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_DIV, + anon_sym_MOD, + anon_sym_RBRACK, + aux_sym_select_statement_obsolete_token3, aux_sym__explicit_parameter_list_token1, - ACTIONS(1238), 1, + [16313] = 11, + ACTIONS(53), 1, sym_field_symbol_name, - ACTIONS(1240), 1, + ACTIONS(1227), 1, + sym_name, + ACTIONS(1233), 1, + aux_sym__explicit_parameter_list_token1, + ACTIONS(1239), 1, anon_sym_RPAREN, - STATE(991), 1, + STATE(1016), 1, aux_sym__explicit_parameter_list_repeat1, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1242), 2, + ACTIONS(1241), 2, sym_numeric_literal, sym_character_literal, - STATE(562), 2, + STATE(560), 2, sym_parameter_binding, aux_sym_parameter_list_repeat1, - STATE(2671), 2, + STATE(2352), 2, sym_parameter_list, sym__explicit_parameter_list, - ACTIONS(1230), 3, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + ACTIONS(1229), 3, aux_sym__method_declaration_importing_token1, aux_sym__method_declaration_exporting_token1, aux_sym__method_declaration_changing_token1, - STATE(618), 6, + STATE(639), 6, sym__general_expression_position, sym__calculation_expression, sym_arithmetic_expression, sym__data_object, sym_structured_data_object, sym_attribute_access_static, - [15799] = 11, - ACTIONS(1228), 1, + [16359] = 11, + ACTIONS(53), 1, + sym_field_symbol_name, + ACTIONS(1227), 1, sym_name, - ACTIONS(1234), 1, + ACTIONS(1233), 1, aux_sym__explicit_parameter_list_token1, - ACTIONS(1238), 1, - sym_field_symbol_name, - ACTIONS(1244), 1, + ACTIONS(1243), 1, anon_sym_RPAREN, - STATE(991), 1, + STATE(1016), 1, aux_sym__explicit_parameter_list_repeat1, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1246), 2, + ACTIONS(1245), 2, sym_numeric_literal, sym_character_literal, - STATE(562), 2, + STATE(560), 2, sym_parameter_binding, aux_sym_parameter_list_repeat1, - STATE(2379), 2, + STATE(2648), 2, sym_parameter_list, sym__explicit_parameter_list, - ACTIONS(1230), 3, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + ACTIONS(1229), 3, aux_sym__method_declaration_importing_token1, aux_sym__method_declaration_exporting_token1, aux_sym__method_declaration_changing_token1, - STATE(621), 6, + STATE(648), 6, sym__general_expression_position, sym__calculation_expression, sym_arithmetic_expression, sym__data_object, sym_structured_data_object, sym_attribute_access_static, - [15844] = 11, - ACTIONS(1228), 1, + [16405] = 11, + ACTIONS(53), 1, + sym_field_symbol_name, + ACTIONS(1227), 1, sym_name, - ACTIONS(1234), 1, + ACTIONS(1233), 1, aux_sym__explicit_parameter_list_token1, - ACTIONS(1238), 1, - sym_field_symbol_name, - ACTIONS(1248), 1, + ACTIONS(1247), 1, anon_sym_RPAREN, - STATE(991), 1, + STATE(1016), 1, aux_sym__explicit_parameter_list_repeat1, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1250), 2, + ACTIONS(1249), 2, sym_numeric_literal, sym_character_literal, - STATE(562), 2, + STATE(560), 2, sym_parameter_binding, aux_sym_parameter_list_repeat1, - STATE(2648), 2, + STATE(2671), 2, sym_parameter_list, sym__explicit_parameter_list, - ACTIONS(1230), 3, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + ACTIONS(1229), 3, aux_sym__method_declaration_importing_token1, aux_sym__method_declaration_exporting_token1, aux_sym__method_declaration_changing_token1, - STATE(611), 6, + STATE(635), 6, sym__general_expression_position, sym__calculation_expression, sym_arithmetic_expression, sym__data_object, sym_structured_data_object, sym_attribute_access_static, - [15889] = 11, - ACTIONS(1228), 1, + [16451] = 11, + ACTIONS(53), 1, + sym_field_symbol_name, + ACTIONS(1227), 1, sym_name, - ACTIONS(1234), 1, + ACTIONS(1233), 1, aux_sym__explicit_parameter_list_token1, - ACTIONS(1238), 1, - sym_field_symbol_name, - ACTIONS(1252), 1, + ACTIONS(1251), 1, anon_sym_RPAREN, - STATE(991), 1, + STATE(1016), 1, aux_sym__explicit_parameter_list_repeat1, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1254), 2, + ACTIONS(1253), 2, sym_numeric_literal, sym_character_literal, - STATE(562), 2, + STATE(560), 2, sym_parameter_binding, aux_sym_parameter_list_repeat1, - STATE(2790), 2, + STATE(2673), 2, sym_parameter_list, sym__explicit_parameter_list, - ACTIONS(1230), 3, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + ACTIONS(1229), 3, aux_sym__method_declaration_importing_token1, aux_sym__method_declaration_exporting_token1, aux_sym__method_declaration_changing_token1, - STATE(623), 6, + STATE(636), 6, sym__general_expression_position, sym__calculation_expression, sym_arithmetic_expression, sym__data_object, sym_structured_data_object, sym_attribute_access_static, - [15934] = 11, - ACTIONS(1228), 1, + [16497] = 11, + ACTIONS(53), 1, + sym_field_symbol_name, + ACTIONS(1227), 1, sym_name, - ACTIONS(1234), 1, + ACTIONS(1233), 1, aux_sym__explicit_parameter_list_token1, - ACTIONS(1238), 1, - sym_field_symbol_name, - ACTIONS(1256), 1, + ACTIONS(1255), 1, anon_sym_RPAREN, - STATE(991), 1, + STATE(1016), 1, aux_sym__explicit_parameter_list_repeat1, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1258), 2, + ACTIONS(1257), 2, sym_numeric_literal, sym_character_literal, - STATE(562), 2, + STATE(560), 2, sym_parameter_binding, aux_sym_parameter_list_repeat1, - STATE(2377), 2, + STATE(2790), 2, sym_parameter_list, sym__explicit_parameter_list, - ACTIONS(1230), 3, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + ACTIONS(1229), 3, aux_sym__method_declaration_importing_token1, aux_sym__method_declaration_exporting_token1, aux_sym__method_declaration_changing_token1, - STATE(622), 6, + STATE(624), 6, sym__general_expression_position, sym__calculation_expression, sym_arithmetic_expression, sym__data_object, sym_structured_data_object, sym_attribute_access_static, - [15979] = 14, - ACTIONS(379), 1, + [16543] = 5, + ACTIONS(1237), 1, + anon_sym_STAR_STAR, + ACTIONS(1259), 1, + anon_sym_STAR, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + ACTIONS(1261), 3, + anon_sym_SLASH, + anon_sym_DIV, + anon_sym_MOD, + ACTIONS(627), 15, + anon_sym_DOT, + aux_sym__method_declaration_importing_token1, + aux_sym__method_declaration_exporting_token1, + aux_sym__method_declaration_changing_token1, + anon_sym_RPAREN, + anon_sym_COMMA, + aux_sym_complete_typing_token2, + aux_sym_loop_statement_token5, + aux_sym__logical_expression_token2, + aux_sym__logical_expression_token3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_RBRACK, + aux_sym_select_statement_obsolete_token3, + aux_sym__explicit_parameter_list_token1, + [16577] = 4, + ACTIONS(1263), 1, + anon_sym_STAR_STAR, + ACTIONS(625), 2, + anon_sym_STAR, + sym_name, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + ACTIONS(627), 16, + anon_sym_DOT, + aux_sym__method_declaration_importing_token1, + aux_sym__method_declaration_exporting_token1, + aux_sym__method_declaration_changing_token1, + anon_sym_RPAREN, + aux_sym__method_declaration_exceptions_token1, + aux_sym_loop_statement_token3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_DIV, + anon_sym_MOD, + anon_sym_RBRACK, + aux_sym_line_spec_token3, + aux_sym__read_table_result_token1, + aux_sym__explicit_parameter_list_token1, + [16608] = 6, + ACTIONS(625), 1, + sym_name, + ACTIONS(1263), 1, + anon_sym_STAR_STAR, + ACTIONS(1265), 1, + anon_sym_STAR, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + ACTIONS(1267), 3, + anon_sym_SLASH, + anon_sym_DIV, + anon_sym_MOD, + ACTIONS(627), 13, + anon_sym_DOT, + aux_sym__method_declaration_importing_token1, + aux_sym__method_declaration_exporting_token1, + aux_sym__method_declaration_changing_token1, + anon_sym_RPAREN, + aux_sym__method_declaration_exceptions_token1, + aux_sym_loop_statement_token3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_RBRACK, + aux_sym_line_spec_token3, + aux_sym__read_table_result_token1, + aux_sym__explicit_parameter_list_token1, + [16643] = 14, + ACTIONS(838), 1, anon_sym_EQ, - ACTIONS(1260), 1, + ACTIONS(1269), 1, sym_name, - ACTIONS(1262), 1, + ACTIONS(1271), 1, anon_sym_DOT, - ACTIONS(1264), 1, + ACTIONS(1273), 1, anon_sym_LBRACK, - ACTIONS(1266), 1, + ACTIONS(1275), 1, anon_sym_DASH2, - ACTIONS(1268), 1, + ACTIONS(1277), 1, anon_sym_EQ_GT, - ACTIONS(1270), 1, + ACTIONS(1279), 1, anon_sym_LPAREN2, - ACTIONS(1272), 1, + ACTIONS(1281), 1, anon_sym_DASH_GT, - ACTIONS(1276), 1, + ACTIONS(1285), 1, sym_field_symbol_name, - STATE(515), 1, - aux_sym_macro_include_repeat1, - STATE(702), 1, + STATE(196), 1, aux_sym_structured_data_object_repeat1, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1274), 2, + STATE(511), 1, + aux_sym_macro_include_repeat1, + ACTIONS(1283), 2, sym_numeric_literal, sym_character_literal, - STATE(516), 6, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + STATE(513), 6, sym__general_expression_position, sym__calculation_expression, sym_arithmetic_expression, sym__data_object, sym_structured_data_object, sym_attribute_access_static, - [16029] = 14, - ACTIONS(379), 1, + [16694] = 14, + ACTIONS(838), 1, anon_sym_EQ, - ACTIONS(1260), 1, + ACTIONS(1269), 1, sym_name, - ACTIONS(1264), 1, + ACTIONS(1273), 1, anon_sym_LBRACK, - ACTIONS(1266), 1, + ACTIONS(1275), 1, anon_sym_DASH2, - ACTIONS(1276), 1, + ACTIONS(1285), 1, sym_field_symbol_name, - ACTIONS(1278), 1, + ACTIONS(1287), 1, anon_sym_DOT, - ACTIONS(1280), 1, + ACTIONS(1289), 1, anon_sym_EQ_GT, - ACTIONS(1282), 1, + ACTIONS(1291), 1, anon_sym_LPAREN2, - ACTIONS(1284), 1, + ACTIONS(1293), 1, anon_sym_DASH_GT, - STATE(500), 1, - aux_sym_macro_include_repeat1, - STATE(702), 1, + STATE(196), 1, aux_sym_structured_data_object_repeat1, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1274), 2, + STATE(510), 1, + aux_sym_macro_include_repeat1, + ACTIONS(1283), 2, sym_numeric_literal, sym_character_literal, - STATE(516), 6, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + STATE(513), 6, sym__general_expression_position, sym__calculation_expression, sym_arithmetic_expression, sym__data_object, sym_structured_data_object, sym_attribute_access_static, - [16079] = 10, - ACTIONS(1238), 1, + [16745] = 6, + ACTIONS(840), 1, + anon_sym_DASH2, + ACTIONS(1225), 1, + anon_sym_EQ_GT, + STATE(196), 1, + aux_sym_structured_data_object_repeat1, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + ACTIONS(838), 3, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_STAR, + ACTIONS(836), 12, + anon_sym_DOT, + aux_sym_method_parameters_token1, + anon_sym_COMMA, + aux_sym__data_object_typing_normal_token5, + aux_sym_comparison_expression_token1, + anon_sym_LT_GT, + aux_sym_comparison_expression_token2, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DIV, + anon_sym_MOD, + anon_sym_STAR_STAR, + [16779] = 10, + ACTIONS(53), 1, sym_field_symbol_name, - ACTIONS(1286), 1, + ACTIONS(1295), 1, sym_name, - ACTIONS(1288), 1, + ACTIONS(1297), 1, aux_sym__logical_expression_token1, - ACTIONS(1290), 1, + ACTIONS(1299), 1, anon_sym_BANG, - STATE(2235), 1, + STATE(2236), 1, sym__sql_condition, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(1301), 2, + sym_numeric_literal, + sym_character_literal, + STATE(1709), 2, + sym__logical_expression, + sym_comparison_expression, + STATE(2971), 2, + sym__operand, + sym__escaped_operand, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1292), 2, + sym_eol_comment, + STATE(523), 6, + sym__general_expression_position, + sym__calculation_expression, + sym_arithmetic_expression, + sym__data_object, + sym_structured_data_object, + sym_attribute_access_static, + [16820] = 9, + ACTIONS(53), 1, + sym_field_symbol_name, + ACTIONS(1295), 1, + sym_name, + ACTIONS(1297), 1, + aux_sym__logical_expression_token1, + ACTIONS(1299), 1, + anon_sym_BANG, + ACTIONS(1301), 2, sym_numeric_literal, sym_character_literal, - STATE(1806), 2, + STATE(1641), 2, sym__logical_expression, sym_comparison_expression, STATE(2971), 2, sym__operand, sym__escaped_operand, - STATE(524), 6, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + STATE(523), 6, sym__general_expression_position, sym__calculation_expression, sym_arithmetic_expression, sym__data_object, sym_structured_data_object, sym_attribute_access_static, - [16119] = 7, - ACTIONS(1296), 1, + [16858] = 7, + ACTIONS(1305), 1, aux_sym_method_declaration_class_token1, - ACTIONS(1298), 1, + ACTIONS(1308), 1, aux_sym_class_constructor_declaration_token1, - ACTIONS(1300), 1, + ACTIONS(1311), 1, aux_sym_chained_interface_declaration_token1, - ACTIONS(1302), 1, + ACTIONS(1314), 1, aux_sym_variable_declaration_token1, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1294), 3, + sym_eol_comment, + ACTIONS(1303), 3, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -29318,281 +29930,314 @@ static const uint16_t ts_small_parse_table[] = { sym_chained_interface_declaration, sym_variable_declaration, aux_sym_public_section_repeat1, - [16152] = 9, - ACTIONS(1238), 1, + [16892] = 9, + ACTIONS(53), 1, sym_field_symbol_name, - ACTIONS(1286), 1, + ACTIONS(1295), 1, sym_name, - ACTIONS(1288), 1, + ACTIONS(1297), 1, aux_sym__logical_expression_token1, - ACTIONS(1290), 1, + ACTIONS(1299), 1, anon_sym_BANG, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1292), 2, + ACTIONS(1301), 2, sym_numeric_literal, sym_character_literal, - STATE(1714), 2, + STATE(1646), 2, sym__logical_expression, sym_comparison_expression, STATE(2971), 2, sym__operand, sym__escaped_operand, - STATE(524), 6, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + STATE(523), 6, sym__general_expression_position, sym__calculation_expression, sym_arithmetic_expression, sym__data_object, sym_structured_data_object, sym_attribute_access_static, - [16189] = 9, - ACTIONS(1238), 1, - sym_field_symbol_name, - ACTIONS(1286), 1, - sym_name, - ACTIONS(1288), 1, - aux_sym__logical_expression_token1, - ACTIONS(1290), 1, - anon_sym_BANG, - ACTIONS(3), 2, - sym_eol_comment, + [16930] = 7, + ACTIONS(1319), 1, + aux_sym_method_declaration_class_token1, + ACTIONS(1321), 1, + aux_sym_class_constructor_declaration_token1, + ACTIONS(1323), 1, + aux_sym_chained_interface_declaration_token1, + ACTIONS(1325), 1, + aux_sym_variable_declaration_token1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1292), 2, - sym_numeric_literal, - sym_character_literal, - STATE(1718), 2, - sym__logical_expression, - sym_comparison_expression, - STATE(2971), 2, - sym__operand, - sym__escaped_operand, - STATE(524), 6, - sym__general_expression_position, - sym__calculation_expression, - sym_arithmetic_expression, - sym__data_object, - sym_structured_data_object, - sym_attribute_access_static, - [16226] = 9, - ACTIONS(1238), 1, + sym_eol_comment, + ACTIONS(1317), 3, + aux_sym_class_declaration_token13, + aux_sym__create_addition_token2, + aux_sym__create_addition_token3, + STATE(479), 9, + sym__class_components, + sym_method_declaration_class, + sym_constructor_declaration, + sym_class_constructor_declaration, + sym_method_redefinition, + sym_class_method_declaration_class, + sym_chained_interface_declaration, + sym_variable_declaration, + aux_sym_public_section_repeat1, + [16964] = 9, + ACTIONS(53), 1, sym_field_symbol_name, - ACTIONS(1286), 1, + ACTIONS(1295), 1, sym_name, - ACTIONS(1288), 1, + ACTIONS(1297), 1, aux_sym__logical_expression_token1, - ACTIONS(1290), 1, + ACTIONS(1299), 1, anon_sym_BANG, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1292), 2, + ACTIONS(1301), 2, sym_numeric_literal, sym_character_literal, - STATE(1789), 2, + STATE(1887), 2, sym__logical_expression, sym_comparison_expression, STATE(2971), 2, sym__operand, sym__escaped_operand, - STATE(524), 6, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + STATE(523), 6, sym__general_expression_position, sym__calculation_expression, sym_arithmetic_expression, sym__data_object, sym_structured_data_object, sym_attribute_access_static, - [16263] = 9, - ACTIONS(1238), 1, + [17002] = 9, + ACTIONS(53), 1, sym_field_symbol_name, - ACTIONS(1286), 1, + ACTIONS(1295), 1, sym_name, - ACTIONS(1288), 1, + ACTIONS(1297), 1, aux_sym__logical_expression_token1, - ACTIONS(1290), 1, + ACTIONS(1299), 1, anon_sym_BANG, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1292), 2, + ACTIONS(1301), 2, sym_numeric_literal, sym_character_literal, - STATE(1661), 2, + STATE(1812), 2, sym__logical_expression, sym_comparison_expression, STATE(2971), 2, sym__operand, sym__escaped_operand, - STATE(524), 6, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + STATE(523), 6, sym__general_expression_position, sym__calculation_expression, sym_arithmetic_expression, sym__data_object, sym_structured_data_object, sym_attribute_access_static, - [16300] = 9, - ACTIONS(1238), 1, + [17040] = 9, + ACTIONS(53), 1, sym_field_symbol_name, - ACTIONS(1286), 1, + ACTIONS(1295), 1, sym_name, - ACTIONS(1288), 1, + ACTIONS(1297), 1, aux_sym__logical_expression_token1, - ACTIONS(1290), 1, + ACTIONS(1299), 1, anon_sym_BANG, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1292), 2, + ACTIONS(1301), 2, sym_numeric_literal, sym_character_literal, - STATE(1737), 2, + STATE(1718), 2, sym__logical_expression, sym_comparison_expression, STATE(2971), 2, sym__operand, sym__escaped_operand, - STATE(524), 6, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + STATE(523), 6, sym__general_expression_position, sym__calculation_expression, sym_arithmetic_expression, sym__data_object, sym_structured_data_object, sym_attribute_access_static, - [16337] = 9, - ACTIONS(1238), 1, + [17078] = 9, + ACTIONS(53), 1, sym_field_symbol_name, - ACTIONS(1286), 1, + ACTIONS(1295), 1, sym_name, - ACTIONS(1288), 1, + ACTIONS(1297), 1, aux_sym__logical_expression_token1, - ACTIONS(1290), 1, + ACTIONS(1299), 1, anon_sym_BANG, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1292), 2, + ACTIONS(1301), 2, sym_numeric_literal, sym_character_literal, - STATE(1536), 2, + STATE(1808), 2, sym__logical_expression, sym_comparison_expression, STATE(2971), 2, sym__operand, sym__escaped_operand, - STATE(524), 6, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + STATE(523), 6, sym__general_expression_position, sym__calculation_expression, sym_arithmetic_expression, sym__data_object, sym_structured_data_object, sym_attribute_access_static, - [16374] = 9, - ACTIONS(1238), 1, + [17116] = 7, + ACTIONS(1319), 1, + aux_sym_method_declaration_class_token1, + ACTIONS(1321), 1, + aux_sym_class_constructor_declaration_token1, + ACTIONS(1323), 1, + aux_sym_chained_interface_declaration_token1, + ACTIONS(1325), 1, + aux_sym_variable_declaration_token1, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + ACTIONS(1327), 3, + aux_sym_class_declaration_token13, + aux_sym__create_addition_token2, + aux_sym__create_addition_token3, + STATE(472), 9, + sym__class_components, + sym_method_declaration_class, + sym_constructor_declaration, + sym_class_constructor_declaration, + sym_method_redefinition, + sym_class_method_declaration_class, + sym_chained_interface_declaration, + sym_variable_declaration, + aux_sym_public_section_repeat1, + [17150] = 9, + ACTIONS(53), 1, sym_field_symbol_name, - ACTIONS(1286), 1, + ACTIONS(1295), 1, sym_name, - ACTIONS(1288), 1, + ACTIONS(1297), 1, aux_sym__logical_expression_token1, - ACTIONS(1290), 1, + ACTIONS(1299), 1, anon_sym_BANG, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1292), 2, + ACTIONS(1301), 2, sym_numeric_literal, sym_character_literal, - STATE(1654), 2, + STATE(1645), 2, sym__logical_expression, sym_comparison_expression, STATE(2971), 2, sym__operand, sym__escaped_operand, - STATE(524), 6, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + STATE(523), 6, sym__general_expression_position, sym__calculation_expression, sym_arithmetic_expression, sym__data_object, sym_structured_data_object, sym_attribute_access_static, - [16411] = 17, - ACTIONS(1304), 1, + [17188] = 17, + ACTIONS(1329), 1, aux_sym_class_declaration_token6, - ACTIONS(1306), 1, + ACTIONS(1331), 1, aux_sym_class_declaration_token7, - ACTIONS(1308), 1, + ACTIONS(1333), 1, anon_sym_DOT, - ACTIONS(1310), 1, + ACTIONS(1335), 1, aux_sym__method_declaration_importing_token1, - ACTIONS(1312), 1, + ACTIONS(1337), 1, aux_sym__method_declaration_exporting_token1, - ACTIONS(1314), 1, + ACTIONS(1339), 1, aux_sym__method_declaration_changing_token1, - ACTIONS(1316), 1, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(1320), 1, + ACTIONS(1345), 1, aux_sym_returning_parameter_token1, - ACTIONS(1322), 1, + ACTIONS(1347), 1, aux_sym_method_redefinition_token1, - STATE(519), 1, + STATE(531), 1, sym__method_declaration_importing, - STATE(604), 1, + STATE(606), 1, sym__method_declaration_exporting, - STATE(955), 1, + STATE(969), 1, sym__method_declaration_changing, - STATE(1019), 1, + STATE(1124), 1, sym_returning_parameter, - STATE(1625), 1, + STATE(1633), 1, sym__method_declaration_raising, - STATE(2758), 1, + STATE(2987), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [16464] = 7, - ACTIONS(1326), 1, - aux_sym_method_declaration_class_token1, - ACTIONS(1329), 1, - aux_sym_class_constructor_declaration_token1, - ACTIONS(1332), 1, - aux_sym_chained_interface_declaration_token1, - ACTIONS(1335), 1, - aux_sym_variable_declaration_token1, - ACTIONS(3), 2, sym_eol_comment, + [17242] = 7, + ACTIONS(840), 1, + anon_sym_DASH2, + ACTIONS(1225), 1, + anon_sym_EQ_GT, + ACTIONS(1349), 1, + aux_sym__data_object_typing_normal_token3, + STATE(196), 1, + aux_sym_structured_data_object_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1324), 3, - aux_sym_class_declaration_token13, - aux_sym__create_addition_token2, - aux_sym__create_addition_token3, - STATE(471), 9, - sym__class_components, - sym_method_declaration_class, - sym_constructor_declaration, - sym_class_constructor_declaration, - sym_method_redefinition, - sym_class_method_declaration_class, - sym_chained_interface_declaration, - sym_variable_declaration, - aux_sym_public_section_repeat1, - [16497] = 7, - ACTIONS(1296), 1, + sym_eol_comment, + ACTIONS(838), 3, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_STAR, + ACTIONS(836), 8, + aux_sym_comparison_expression_token1, + anon_sym_LT_GT, + aux_sym_comparison_expression_token2, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_DIV, + anon_sym_MOD, + anon_sym_STAR_STAR, + [17275] = 7, + ACTIONS(1319), 1, aux_sym_method_declaration_class_token1, - ACTIONS(1298), 1, + ACTIONS(1321), 1, aux_sym_class_constructor_declaration_token1, - ACTIONS(1300), 1, + ACTIONS(1323), 1, aux_sym_chained_interface_declaration_token1, - ACTIONS(1302), 1, + ACTIONS(1325), 1, aux_sym_variable_declaration_token1, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1338), 3, + ACTIONS(1351), 2, aux_sym_class_declaration_token13, - aux_sym__create_addition_token2, aux_sym__create_addition_token3, - STATE(471), 9, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + STATE(485), 9, sym__class_components, sym_method_declaration_class, sym_constructor_declaration, @@ -29602,25 +30247,25 @@ static const uint16_t ts_small_parse_table[] = { sym_chained_interface_declaration, sym_variable_declaration, aux_sym_public_section_repeat1, - [16530] = 8, - ACTIONS(3), 1, - sym_eol_comment, - ACTIONS(5), 1, - sym_bol_comment, - ACTIONS(1222), 1, - anon_sym_STAR, - ACTIONS(1226), 1, + [17308] = 7, + ACTIONS(1263), 1, anon_sym_STAR_STAR, - ACTIONS(1340), 1, + ACTIONS(1265), 1, + anon_sym_STAR, + ACTIONS(1353), 1, sym_name, - ACTIONS(1344), 2, + ACTIONS(1357), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1224), 3, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + ACTIONS(1267), 3, anon_sym_SLASH, anon_sym_DIV, anon_sym_MOD, - ACTIONS(1342), 7, + ACTIONS(1355), 7, anon_sym_DOT, aux_sym__method_declaration_importing_token1, aux_sym__method_declaration_exporting_token1, @@ -29628,98 +30273,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, aux_sym__method_declaration_exceptions_token1, aux_sym__explicit_parameter_list_token1, - [16564] = 7, - ACTIONS(3), 1, - sym_eol_comment, - ACTIONS(5), 1, - sym_bol_comment, - ACTIONS(1346), 1, - anon_sym_DASH2, - ACTIONS(1348), 1, - anon_sym_EQ_GT, - STATE(481), 1, - aux_sym_structured_data_object_repeat1, - ACTIONS(379), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_STAR_STAR, - sym_name, - ACTIONS(381), 8, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DIV, - anon_sym_MOD, - sym_numeric_literal, - sym_character_literal, - sym_field_symbol_name, - [16596] = 7, - ACTIONS(1296), 1, + [17341] = 7, + ACTIONS(1319), 1, aux_sym_method_declaration_class_token1, - ACTIONS(1298), 1, + ACTIONS(1321), 1, aux_sym_class_constructor_declaration_token1, - ACTIONS(1300), 1, + ACTIONS(1323), 1, aux_sym_chained_interface_declaration_token1, - ACTIONS(1302), 1, + ACTIONS(1325), 1, aux_sym_variable_declaration_token1, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1350), 2, + ACTIONS(1359), 2, aux_sym_class_declaration_token13, aux_sym__create_addition_token3, - STATE(477), 9, - sym__class_components, - sym_method_declaration_class, - sym_constructor_declaration, - sym_class_constructor_declaration, - sym_method_redefinition, - sym_class_method_declaration_class, - sym_chained_interface_declaration, - sym_variable_declaration, - aux_sym_public_section_repeat1, - [16628] = 8, - ACTIONS(3), 1, - sym_eol_comment, - ACTIONS(5), 1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(383), 1, - anon_sym_DASH2, - ACTIONS(1188), 1, - anon_sym_EQ_GT, - ACTIONS(1352), 1, - aux_sym__data_object_typing_normal_token3, - STATE(40), 1, - aux_sym_structured_data_object_repeat1, - ACTIONS(379), 4, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_STAR_STAR, - ACTIONS(381), 7, - aux_sym_comparison_expression_token1, - anon_sym_LT_GT, - aux_sym_comparison_expression_token2, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DIV, - anon_sym_MOD, - [16662] = 7, - ACTIONS(1296), 1, - aux_sym_method_declaration_class_token1, - ACTIONS(1298), 1, - aux_sym_class_constructor_declaration_token1, - ACTIONS(1300), 1, - aux_sym_chained_interface_declaration_token1, - ACTIONS(1302), 1, - aux_sym_variable_declaration_token1, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(1354), 2, - aux_sym_class_declaration_token13, - aux_sym__create_addition_token3, - STATE(471), 9, + STATE(472), 9, sym__class_components, sym_method_declaration_class, sym_constructor_declaration, @@ -29729,44 +30299,22 @@ static const uint16_t ts_small_parse_table[] = { sym_chained_interface_declaration, sym_variable_declaration, aux_sym_public_section_repeat1, - [16694] = 6, - ACTIONS(3), 1, - sym_eol_comment, - ACTIONS(5), 1, - sym_bol_comment, - ACTIONS(1356), 1, - anon_sym_DASH2, - STATE(478), 1, - aux_sym_structured_data_object_repeat1, - ACTIONS(385), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_STAR_STAR, - sym_name, - ACTIONS(387), 8, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DIV, - anon_sym_MOD, - sym_numeric_literal, - sym_character_literal, - sym_field_symbol_name, - [16723] = 7, - ACTIONS(1296), 1, + [17374] = 7, + ACTIONS(1319), 1, aux_sym_method_declaration_class_token1, - ACTIONS(1298), 1, + ACTIONS(1321), 1, aux_sym_class_constructor_declaration_token1, - ACTIONS(1300), 1, + ACTIONS(1323), 1, aux_sym_chained_interface_declaration_token1, - ACTIONS(1302), 1, + ACTIONS(1325), 1, aux_sym_variable_declaration_token1, - ACTIONS(1359), 1, + ACTIONS(1361), 1, aux_sym_class_declaration_token13, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - STATE(488), 9, + sym_eol_comment, + STATE(492), 9, sym__class_components, sym_method_declaration_class, sym_constructor_declaration, @@ -29776,232 +30324,160 @@ static const uint16_t ts_small_parse_table[] = { sym_chained_interface_declaration, sym_variable_declaration, aux_sym_public_section_repeat1, - [16754] = 4, - ACTIONS(1361), 1, + [17406] = 7, + ACTIONS(1299), 1, + anon_sym_BANG, + ACTIONS(1363), 1, sym_name, - ACTIONS(1365), 1, - aux_sym_generic_type_token2, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1363), 12, - anon_sym_DOT, - aux_sym__method_declaration_exporting_token1, - aux_sym__method_declaration_changing_token1, - aux_sym__method_declaration_raising_token1, - aux_sym__method_declaration_exceptions_token1, + ACTIONS(1367), 2, aux_sym_method_parameters_token1, aux_sym_method_parameters_token2, - aux_sym_method_parameters_token3, - aux_sym_method_parameters_token4, - aux_sym_returning_parameter_token1, - anon_sym_COMMA, - anon_sym_BANG, - [16779] = 6, - ACTIONS(3), 1, - sym_eol_comment, - ACTIONS(5), 1, + STATE(488), 2, + sym_method_parameters, + aux_sym__method_declaration_importing_repeat1, + STATE(1069), 2, + sym__operand, + sym__escaped_operand, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1346), 1, - anon_sym_DASH2, - STATE(478), 1, - aux_sym_structured_data_object_repeat1, - ACTIONS(392), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_STAR_STAR, - sym_name, - ACTIONS(394), 8, + sym_eol_comment, + ACTIONS(1365), 6, anon_sym_DOT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DIV, - anon_sym_MOD, - sym_numeric_literal, - sym_character_literal, - sym_field_symbol_name, - [16808] = 15, - ACTIONS(1310), 1, - aux_sym__method_declaration_importing_token1, - ACTIONS(1312), 1, aux_sym__method_declaration_exporting_token1, - ACTIONS(1314), 1, aux_sym__method_declaration_changing_token1, - ACTIONS(1316), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(1320), 1, aux_sym_returning_parameter_token1, - ACTIONS(1367), 1, - anon_sym_DOT, + [17438] = 7, ACTIONS(1369), 1, - aux_sym_method_parameters_token4, - STATE(525), 1, - sym__method_declaration_importing, - STATE(582), 1, - sym__method_declaration_exporting, - STATE(903), 1, - sym__method_declaration_changing, - STATE(1025), 1, - sym_returning_parameter, - STATE(1907), 1, - sym__method_declaration_raising, - STATE(2350), 1, - sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - [16855] = 7, - ACTIONS(3), 1, - sym_eol_comment, - ACTIONS(5), 1, - sym_bol_comment, - ACTIONS(383), 1, - anon_sym_DASH2, - ACTIONS(1188), 1, - anon_sym_EQ_GT, - STATE(40), 1, - aux_sym_structured_data_object_repeat1, - ACTIONS(379), 4, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_STAR_STAR, - ACTIONS(381), 7, - aux_sym_comparison_expression_token1, - anon_sym_LT_GT, - aux_sym_comparison_expression_token2, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DIV, - anon_sym_MOD, - [16886] = 6, - ACTIONS(3), 1, - sym_eol_comment, - ACTIONS(5), 1, - sym_bol_comment, - ACTIONS(1346), 1, - anon_sym_DASH2, - STATE(481), 1, - aux_sym_structured_data_object_repeat1, - ACTIONS(379), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_STAR_STAR, sym_name, - ACTIONS(381), 8, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DIV, - anon_sym_MOD, - sym_numeric_literal, - sym_character_literal, - sym_field_symbol_name, - [16915] = 7, - ACTIONS(1290), 1, + ACTIONS(1377), 1, anon_sym_BANG, - ACTIONS(1371), 1, - sym_name, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1375), 2, + ACTIONS(1374), 2, aux_sym_method_parameters_token1, aux_sym_method_parameters_token2, - STATE(489), 2, + STATE(488), 2, sym_method_parameters, aux_sym__method_declaration_importing_repeat1, - STATE(1067), 2, + STATE(1069), 2, sym__operand, sym__escaped_operand, - ACTIONS(1373), 6, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + ACTIONS(1372), 6, anon_sym_DOT, aux_sym__method_declaration_exporting_token1, aux_sym__method_declaration_changing_token1, aux_sym__method_declaration_raising_token1, aux_sym__method_declaration_exceptions_token1, aux_sym_returning_parameter_token1, - [16946] = 15, - ACTIONS(1310), 1, + [17470] = 15, + ACTIONS(1335), 1, aux_sym__method_declaration_importing_token1, - ACTIONS(1312), 1, + ACTIONS(1337), 1, aux_sym__method_declaration_exporting_token1, - ACTIONS(1314), 1, + ACTIONS(1339), 1, aux_sym__method_declaration_changing_token1, - ACTIONS(1316), 1, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(1320), 1, + ACTIONS(1345), 1, aux_sym_returning_parameter_token1, - ACTIONS(1377), 1, + ACTIONS(1380), 1, anon_sym_DOT, - ACTIONS(1379), 1, + ACTIONS(1382), 1, aux_sym_method_parameters_token4, - STATE(531), 1, + STATE(528), 1, sym__method_declaration_importing, STATE(605), 1, sym__method_declaration_exporting, - STATE(935), 1, + STATE(941), 1, sym__method_declaration_changing, - STATE(1123), 1, + STATE(1138), 1, sym_returning_parameter, - STATE(1840), 1, + STATE(1897), 1, sym__method_declaration_raising, - STATE(2346), 1, + STATE(2347), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [16993] = 15, - ACTIONS(1310), 1, + sym_eol_comment, + [17518] = 15, + ACTIONS(1335), 1, aux_sym__method_declaration_importing_token1, - ACTIONS(1312), 1, + ACTIONS(1337), 1, aux_sym__method_declaration_exporting_token1, - ACTIONS(1314), 1, + ACTIONS(1339), 1, aux_sym__method_declaration_changing_token1, - ACTIONS(1316), 1, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(1320), 1, + ACTIONS(1345), 1, aux_sym_returning_parameter_token1, - ACTIONS(1381), 1, + ACTIONS(1384), 1, anon_sym_DOT, - ACTIONS(1383), 1, - aux_sym_method_redefinition_token1, - STATE(528), 1, + ACTIONS(1386), 1, + aux_sym_method_parameters_token4, + STATE(525), 1, sym__method_declaration_importing, - STATE(609), 1, + STATE(590), 1, sym__method_declaration_exporting, - STATE(664), 1, + STATE(925), 1, sym__method_declaration_changing, - STATE(1159), 1, + STATE(1024), 1, sym_returning_parameter, - STATE(1796), 1, + STATE(1801), 1, sym__method_declaration_raising, - STATE(3074), 1, + STATE(2351), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [17566] = 4, + ACTIONS(1388), 1, + sym_name, + ACTIONS(1392), 1, + aux_sym_generic_type_token2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [17040] = 7, - ACTIONS(1296), 1, + sym_eol_comment, + ACTIONS(1390), 12, + anon_sym_DOT, + aux_sym__method_declaration_exporting_token1, + aux_sym__method_declaration_changing_token1, + aux_sym__method_declaration_raising_token1, + aux_sym__method_declaration_exceptions_token1, + aux_sym_method_parameters_token1, + aux_sym_method_parameters_token2, + aux_sym_method_parameters_token3, + aux_sym_method_parameters_token4, + aux_sym_returning_parameter_token1, + anon_sym_COMMA, + anon_sym_BANG, + [17592] = 7, + ACTIONS(1319), 1, aux_sym_method_declaration_class_token1, - ACTIONS(1298), 1, + ACTIONS(1321), 1, aux_sym_class_constructor_declaration_token1, - ACTIONS(1300), 1, + ACTIONS(1323), 1, aux_sym_chained_interface_declaration_token1, - ACTIONS(1302), 1, + ACTIONS(1325), 1, aux_sym_variable_declaration_token1, - ACTIONS(1385), 1, + ACTIONS(1394), 1, aux_sym_class_declaration_token13, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - STATE(471), 9, + sym_eol_comment, + STATE(472), 9, sym__class_components, sym_method_declaration_class, sym_constructor_declaration, @@ -30011,175 +30487,163 @@ static const uint16_t ts_small_parse_table[] = { sym_chained_interface_declaration, sym_variable_declaration, aux_sym_public_section_repeat1, - [17071] = 7, - ACTIONS(1387), 1, - sym_name, - ACTIONS(1395), 1, - anon_sym_BANG, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1392), 2, - aux_sym_method_parameters_token1, - aux_sym_method_parameters_token2, - STATE(489), 2, - sym_method_parameters, - aux_sym__method_declaration_importing_repeat1, - STATE(1067), 2, - sym__operand, - sym__escaped_operand, - ACTIONS(1390), 6, - anon_sym_DOT, - aux_sym__method_declaration_exporting_token1, - aux_sym__method_declaration_changing_token1, - aux_sym__method_declaration_raising_token1, - aux_sym__method_declaration_exceptions_token1, - aux_sym_returning_parameter_token1, - [17102] = 14, - ACTIONS(1310), 1, + [17624] = 15, + ACTIONS(1335), 1, aux_sym__method_declaration_importing_token1, - ACTIONS(1312), 1, + ACTIONS(1337), 1, aux_sym__method_declaration_exporting_token1, - ACTIONS(1314), 1, + ACTIONS(1339), 1, aux_sym__method_declaration_changing_token1, - ACTIONS(1316), 1, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(1320), 1, + ACTIONS(1345), 1, aux_sym_returning_parameter_token1, - ACTIONS(1398), 1, + ACTIONS(1396), 1, anon_sym_DOT, - STATE(530), 1, + ACTIONS(1398), 1, + aux_sym_method_redefinition_token1, + STATE(532), 1, sym__method_declaration_importing, - STATE(585), 1, + STATE(592), 1, sym__method_declaration_exporting, - STATE(923), 1, + STATE(670), 1, sym__method_declaration_changing, - STATE(1027), 1, + STATE(1161), 1, sym_returning_parameter, - STATE(1618), 1, + STATE(1862), 1, sym__method_declaration_raising, - STATE(2768), 1, + STATE(2399), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [17146] = 14, - ACTIONS(1310), 1, + sym_eol_comment, + [17672] = 14, + ACTIONS(1335), 1, aux_sym__method_declaration_importing_token1, - ACTIONS(1312), 1, + ACTIONS(1337), 1, aux_sym__method_declaration_exporting_token1, - ACTIONS(1314), 1, + ACTIONS(1339), 1, aux_sym__method_declaration_changing_token1, - ACTIONS(1316), 1, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(1320), 1, + ACTIONS(1345), 1, aux_sym_returning_parameter_token1, - ACTIONS(1381), 1, + ACTIONS(1400), 1, anon_sym_DOT, - STATE(528), 1, + STATE(527), 1, sym__method_declaration_importing, - STATE(609), 1, + STATE(608), 1, sym__method_declaration_exporting, - STATE(664), 1, + STATE(935), 1, sym__method_declaration_changing, - STATE(1159), 1, + STATE(1025), 1, sym_returning_parameter, - STATE(1796), 1, + STATE(1625), 1, sym__method_declaration_raising, - STATE(3074), 1, + STATE(2995), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [17190] = 3, - ACTIONS(1400), 1, - sym_name, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(1402), 12, - anon_sym_DOT, - aux_sym__method_declaration_exporting_token1, - aux_sym__method_declaration_changing_token1, - aux_sym__method_declaration_raising_token1, - aux_sym__method_declaration_exceptions_token1, - aux_sym_method_parameters_token1, - aux_sym_method_parameters_token2, - aux_sym_method_parameters_token3, - aux_sym_method_parameters_token4, - aux_sym_returning_parameter_token1, - anon_sym_COMMA, - anon_sym_BANG, - [17212] = 14, - ACTIONS(1310), 1, + [17717] = 14, + ACTIONS(1335), 1, aux_sym__method_declaration_importing_token1, - ACTIONS(1312), 1, + ACTIONS(1337), 1, aux_sym__method_declaration_exporting_token1, - ACTIONS(1314), 1, + ACTIONS(1339), 1, aux_sym__method_declaration_changing_token1, - ACTIONS(1316), 1, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(1320), 1, + ACTIONS(1345), 1, aux_sym_returning_parameter_token1, - ACTIONS(1404), 1, + ACTIONS(1402), 1, anon_sym_DOT, - STATE(523), 1, + STATE(534), 1, sym__method_declaration_importing, - STATE(584), 1, + STATE(591), 1, sym__method_declaration_exporting, - STATE(649), 1, + STATE(678), 1, sym__method_declaration_changing, - STATE(1185), 1, + STATE(1150), 1, sym_returning_parameter, - STATE(1759), 1, + STATE(1544), 1, sym__method_declaration_raising, - STATE(2192), 1, + STATE(2142), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [17256] = 14, - ACTIONS(1310), 1, + sym_eol_comment, + [17762] = 14, + ACTIONS(1335), 1, aux_sym__method_declaration_importing_token1, - ACTIONS(1312), 1, + ACTIONS(1337), 1, aux_sym__method_declaration_exporting_token1, - ACTIONS(1314), 1, + ACTIONS(1339), 1, aux_sym__method_declaration_changing_token1, - ACTIONS(1316), 1, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(1320), 1, + ACTIONS(1345), 1, aux_sym_returning_parameter_token1, - ACTIONS(1406), 1, + ACTIONS(1404), 1, anon_sym_DOT, - STATE(529), 1, + STATE(522), 1, sym__method_declaration_importing, - STATE(583), 1, + STATE(603), 1, sym__method_declaration_exporting, - STATE(678), 1, + STATE(651), 1, sym__method_declaration_changing, - STATE(1142), 1, + STATE(1188), 1, sym_returning_parameter, - STATE(1693), 1, + STATE(1643), 1, sym__method_declaration_raising, - STATE(2137), 1, + STATE(2194), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [17807] = 7, + ACTIONS(1299), 1, + anon_sym_BANG, + ACTIONS(1363), 1, + sym_name, + ACTIONS(1367), 2, + aux_sym_method_parameters_token1, + aux_sym_method_parameters_token2, + STATE(488), 2, + sym_method_parameters, + aux_sym__method_declaration_importing_repeat1, + STATE(1069), 2, + sym__operand, + sym__escaped_operand, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [17300] = 3, + sym_eol_comment, + ACTIONS(1406), 5, + anon_sym_DOT, + aux_sym__method_declaration_changing_token1, + aux_sym__method_declaration_raising_token1, + aux_sym__method_declaration_exceptions_token1, + aux_sym_returning_parameter_token1, + [17838] = 3, ACTIONS(1408), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, ACTIONS(1410), 12, anon_sym_DOT, aux_sym__method_declaration_exporting_token1, @@ -30193,36 +30657,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_returning_parameter_token1, anon_sym_COMMA, anon_sym_BANG, - [17322] = 7, - ACTIONS(1290), 1, - anon_sym_BANG, - ACTIONS(1371), 1, + [17861] = 3, + ACTIONS(1412), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1375), 2, - aux_sym_method_parameters_token1, - aux_sym_method_parameters_token2, - STATE(489), 2, - sym_method_parameters, - aux_sym__method_declaration_importing_repeat1, - STATE(1067), 2, - sym__operand, - sym__escaped_operand, - ACTIONS(1412), 5, + sym_eol_comment, + ACTIONS(1414), 12, anon_sym_DOT, + aux_sym__method_declaration_exporting_token1, aux_sym__method_declaration_changing_token1, aux_sym__method_declaration_raising_token1, aux_sym__method_declaration_exceptions_token1, + aux_sym_method_parameters_token1, + aux_sym_method_parameters_token2, + aux_sym_method_parameters_token3, + aux_sym_method_parameters_token4, aux_sym_returning_parameter_token1, - [17352] = 3, - ACTIONS(1414), 1, + anon_sym_COMMA, + anon_sym_BANG, + [17884] = 3, + ACTIONS(1416), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1416), 12, + sym_eol_comment, + ACTIONS(1418), 12, anon_sym_DOT, aux_sym__method_declaration_exporting_token1, aux_sym__method_declaration_changing_token1, @@ -30235,33 +30697,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_returning_parameter_token1, anon_sym_COMMA, anon_sym_BANG, - [17374] = 4, - ACTIONS(3), 1, - sym_eol_comment, - ACTIONS(5), 1, - sym_bol_comment, - ACTIONS(556), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_STAR_STAR, - sym_name, - ACTIONS(558), 9, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_DIV, - anon_sym_MOD, - anon_sym_DASH2, - sym_numeric_literal, - sym_character_literal, - sym_field_symbol_name, - [17398] = 3, - ACTIONS(1418), 1, + [17907] = 3, + ACTIONS(1420), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1420), 12, + sym_eol_comment, + ACTIONS(1422), 12, anon_sym_DOT, aux_sym__method_declaration_exporting_token1, aux_sym__method_declaration_changing_token1, @@ -30274,84 +30717,121 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_returning_parameter_token1, anon_sym_COMMA, anon_sym_BANG, - [17420] = 7, - ACTIONS(1260), 1, - sym_name, - ACTIONS(1276), 1, - sym_field_symbol_name, - ACTIONS(1422), 1, + [17930] = 14, + ACTIONS(1335), 1, + aux_sym__method_declaration_importing_token1, + ACTIONS(1337), 1, + aux_sym__method_declaration_exporting_token1, + ACTIONS(1339), 1, + aux_sym__method_declaration_changing_token1, + ACTIONS(1341), 1, + aux_sym__method_declaration_raising_token1, + ACTIONS(1343), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(1345), 1, + aux_sym_returning_parameter_token1, + ACTIONS(1396), 1, anon_sym_DOT, - STATE(518), 1, - aux_sym_macro_include_repeat1, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1274), 2, - sym_numeric_literal, - sym_character_literal, - STATE(516), 6, - sym__general_expression_position, - sym__calculation_expression, - sym_arithmetic_expression, - sym__data_object, - sym_structured_data_object, - sym_attribute_access_static, - [17449] = 7, - ACTIONS(1238), 1, - sym_field_symbol_name, - ACTIONS(1424), 1, - sym_name, - STATE(1454), 1, - aux_sym__table_expression_free_key, - STATE(2044), 1, - sym_comp_spec, - ACTIONS(3), 2, - sym_eol_comment, + STATE(532), 1, + sym__method_declaration_importing, + STATE(592), 1, + sym__method_declaration_exporting, + STATE(670), 1, + sym__method_declaration_changing, + STATE(1161), 1, + sym_returning_parameter, + STATE(1862), 1, + sym__method_declaration_raising, + STATE(2399), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1426), 2, - sym_numeric_literal, - sym_character_literal, - STATE(634), 6, - sym__general_expression_position, - sym__calculation_expression, - sym_arithmetic_expression, - sym__data_object, - sym_structured_data_object, - sym_attribute_access_static, - [17478] = 8, - ACTIONS(3), 1, sym_eol_comment, - ACTIONS(5), 1, - sym_bol_comment, - ACTIONS(383), 1, + [17975] = 7, + ACTIONS(840), 1, anon_sym_DASH2, - ACTIONS(1188), 1, + ACTIONS(1225), 1, anon_sym_EQ_GT, - ACTIONS(1428), 1, + ACTIONS(1424), 1, anon_sym_EQ, - STATE(40), 1, + STATE(196), 1, aux_sym_structured_data_object_repeat1, - ACTIONS(379), 3, + ACTIONS(838), 2, anon_sym_DASH, anon_sym_STAR, - anon_sym_STAR_STAR, - ACTIONS(381), 5, - anon_sym_RPAREN, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + ACTIONS(836), 6, anon_sym_PLUS, anon_sym_SLASH, anon_sym_DIV, anon_sym_MOD, - [17509] = 5, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + [18005] = 13, + ACTIONS(1426), 1, + aux_sym_class_declaration_token3, + ACTIONS(1428), 1, + aux_sym_class_declaration_token4, ACTIONS(1430), 1, - sym_name, + aux_sym_class_declaration_token6, + ACTIONS(1432), 1, + aux_sym_class_declaration_token7, ACTIONS(1434), 1, - aux_sym_method_parameters_token3, + aux_sym_class_declaration_token8, ACTIONS(1436), 1, - aux_sym_method_parameters_token4, - ACTIONS(3), 2, + aux_sym_class_declaration_token11, + ACTIONS(1438), 1, + aux_sym_class_declaration_token12, + ACTIONS(1440), 1, + anon_sym_DOT, + ACTIONS(1442), 1, + aux_sym__create_addition_token1, + ACTIONS(1444), 1, + aux_sym_class_publication_token1, + ACTIONS(1446), 1, + aux_sym_class_local_friend_publication_token1, + STATE(1203), 1, + sym__create_addition, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + [18047] = 4, + ACTIONS(1448), 1, + anon_sym_STAR_STAR, + ACTIONS(625), 2, + anon_sym_STAR, + sym_name, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + ACTIONS(627), 9, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_DIV, + anon_sym_MOD, + sym_numeric_literal, + sym_character_literal, + sym_field_symbol_name, + [18071] = 5, + ACTIONS(1450), 1, + sym_name, + ACTIONS(1454), 1, + aux_sym_method_parameters_token3, + ACTIONS(1456), 1, + aux_sym_method_parameters_token4, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1432), 9, + sym_eol_comment, + ACTIONS(1452), 9, anon_sym_DOT, aux_sym__method_declaration_exporting_token1, aux_sym__method_declaration_changing_token1, @@ -30361,1038 +30841,1019 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_parameters_token2, aux_sym_returning_parameter_token1, anon_sym_BANG, - [17534] = 7, - ACTIONS(1238), 1, - sym_field_symbol_name, - ACTIONS(1438), 1, + [18097] = 6, + ACTIONS(625), 1, sym_name, - ACTIONS(1440), 1, - anon_sym_COLON, - ACTIONS(1442), 1, - anon_sym_SLASH, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(1448), 1, + anon_sym_STAR_STAR, + ACTIONS(1458), 1, + anon_sym_STAR, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1444), 2, + sym_eol_comment, + ACTIONS(1460), 3, + anon_sym_SLASH, + anon_sym_DIV, + anon_sym_MOD, + ACTIONS(627), 6, + anon_sym_DOT, + anon_sym_PLUS, + anon_sym_DASH, + sym_numeric_literal, + sym_character_literal, + sym_field_symbol_name, + [18125] = 7, + ACTIONS(53), 1, + sym_field_symbol_name, + ACTIONS(1462), 1, + sym_name, + STATE(1207), 1, + aux_sym__table_expression_free_key, + STATE(1971), 1, + sym_comp_spec, + ACTIONS(1464), 2, sym_numeric_literal, sym_character_literal, - STATE(610), 6, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + STATE(637), 6, sym__general_expression_position, sym__calculation_expression, sym_arithmetic_expression, sym__data_object, sym_structured_data_object, sym_attribute_access_static, - [17563] = 13, - ACTIONS(1446), 1, - aux_sym_class_declaration_token3, - ACTIONS(1448), 1, - aux_sym_class_declaration_token4, - ACTIONS(1450), 1, - aux_sym_class_declaration_token6, - ACTIONS(1452), 1, - aux_sym_class_declaration_token7, - ACTIONS(1454), 1, - aux_sym_class_declaration_token8, - ACTIONS(1456), 1, - aux_sym_class_declaration_token11, - ACTIONS(1458), 1, - aux_sym_class_declaration_token12, - ACTIONS(1460), 1, - anon_sym_DOT, - ACTIONS(1462), 1, - aux_sym__create_addition_token1, - ACTIONS(1464), 1, - aux_sym_class_publication_token1, - ACTIONS(1466), 1, - aux_sym_class_local_friend_publication_token1, - STATE(1406), 1, - sym__create_addition, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - [17604] = 4, - ACTIONS(3), 1, - sym_eol_comment, - ACTIONS(5), 1, - sym_bol_comment, - ACTIONS(648), 3, - anon_sym_STAR, + [18155] = 7, + ACTIONS(1263), 1, anon_sym_STAR_STAR, + ACTIONS(1265), 1, + anon_sym_STAR, + ACTIONS(1466), 1, sym_name, - ACTIONS(650), 9, - anon_sym_DOT, + ACTIONS(1357), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + ACTIONS(1267), 3, anon_sym_SLASH, anon_sym_DIV, anon_sym_MOD, + ACTIONS(1468), 4, + anon_sym_DOT, + aux_sym_loop_statement_token3, + aux_sym_line_spec_token3, + aux_sym__read_table_result_token1, + [18185] = 7, + ACTIONS(1269), 1, + sym_name, + ACTIONS(1285), 1, + sym_field_symbol_name, + ACTIONS(1470), 1, + anon_sym_DOT, + STATE(517), 1, + aux_sym_macro_include_repeat1, + ACTIONS(1283), 2, sym_numeric_literal, sym_character_literal, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + STATE(513), 6, + sym__general_expression_position, + sym__calculation_expression, + sym_arithmetic_expression, + sym__data_object, + sym_structured_data_object, + sym_attribute_access_static, + [18215] = 7, + ACTIONS(1269), 1, + sym_name, + ACTIONS(1285), 1, sym_field_symbol_name, - [17627] = 4, - ACTIONS(3), 1, + ACTIONS(1472), 1, + anon_sym_DOT, + STATE(517), 1, + aux_sym_macro_include_repeat1, + ACTIONS(1283), 2, + sym_numeric_literal, + sym_character_literal, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, - ACTIONS(5), 1, + STATE(513), 6, + sym__general_expression_position, + sym__calculation_expression, + sym_arithmetic_expression, + sym__data_object, + sym_structured_data_object, + sym_attribute_access_static, + [18245] = 5, + ACTIONS(1474), 1, + sym_name, + ACTIONS(1478), 1, + aux_sym_method_parameters_token3, + ACTIONS(1480), 1, + aux_sym_method_parameters_token4, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(652), 3, - anon_sym_STAR, + sym_eol_comment, + ACTIONS(1476), 9, + anon_sym_DOT, + aux_sym__method_declaration_exporting_token1, + aux_sym__method_declaration_changing_token1, + aux_sym__method_declaration_raising_token1, + aux_sym__method_declaration_exceptions_token1, + aux_sym_method_parameters_token1, + aux_sym_method_parameters_token2, + aux_sym_returning_parameter_token1, + anon_sym_BANG, + [18271] = 7, + ACTIONS(1448), 1, anon_sym_STAR_STAR, + ACTIONS(1458), 1, + anon_sym_STAR, + ACTIONS(1482), 1, sym_name, - ACTIONS(654), 9, - anon_sym_DOT, + ACTIONS(1486), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + ACTIONS(1460), 3, anon_sym_SLASH, anon_sym_DIV, anon_sym_MOD, + ACTIONS(1484), 4, + anon_sym_DOT, sym_numeric_literal, sym_character_literal, sym_field_symbol_name, - [17650] = 8, - ACTIONS(3), 1, - sym_eol_comment, - ACTIONS(5), 1, - sym_bol_comment, - ACTIONS(383), 1, - anon_sym_DASH2, - ACTIONS(1188), 1, - anon_sym_EQ_GT, - ACTIONS(1468), 1, - anon_sym_EQ, - STATE(40), 1, - aux_sym_structured_data_object_repeat1, - ACTIONS(379), 3, - anon_sym_DASH, + [18301] = 3, + ACTIONS(625), 2, anon_sym_STAR, - anon_sym_STAR_STAR, - ACTIONS(381), 5, + sym_name, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + ACTIONS(627), 10, + anon_sym_DOT, anon_sym_PLUS, + anon_sym_DASH, anon_sym_SLASH, anon_sym_DIV, anon_sym_MOD, - anon_sym_RBRACK, - [17681] = 7, - ACTIONS(3), 1, - sym_eol_comment, - ACTIONS(5), 1, - sym_bol_comment, - ACTIONS(648), 1, - sym_name, - ACTIONS(1470), 1, - anon_sym_STAR, - ACTIONS(1474), 1, anon_sym_STAR_STAR, - ACTIONS(1472), 3, - anon_sym_SLASH, - anon_sym_DIV, - anon_sym_MOD, - ACTIONS(650), 6, - anon_sym_DOT, - anon_sym_PLUS, - anon_sym_DASH, sym_numeric_literal, sym_character_literal, sym_field_symbol_name, - [17710] = 7, - ACTIONS(1290), 1, + [18323] = 7, + ACTIONS(1299), 1, anon_sym_BANG, - ACTIONS(1371), 1, + ACTIONS(1363), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1375), 2, + ACTIONS(1367), 2, aux_sym_method_parameters_token1, aux_sym_method_parameters_token2, - STATE(489), 2, + STATE(488), 2, sym_method_parameters, aux_sym__method_declaration_importing_repeat1, - STATE(1067), 2, + STATE(1069), 2, sym__operand, sym__escaped_operand, - ACTIONS(1476), 4, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + ACTIONS(1488), 4, anon_sym_DOT, aux_sym__method_declaration_raising_token1, aux_sym__method_declaration_exceptions_token1, aux_sym_returning_parameter_token1, - [17739] = 5, - ACTIONS(3), 1, - sym_eol_comment, - ACTIONS(5), 1, - sym_bol_comment, - ACTIONS(1474), 1, - anon_sym_STAR_STAR, - ACTIONS(648), 2, + [18353] = 7, + ACTIONS(840), 1, + anon_sym_DASH2, + ACTIONS(1225), 1, + anon_sym_EQ_GT, + ACTIONS(1490), 1, + anon_sym_EQ, + STATE(196), 1, + aux_sym_structured_data_object_repeat1, + ACTIONS(838), 2, + anon_sym_DASH, anon_sym_STAR, - sym_name, - ACTIONS(650), 9, - anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + ACTIONS(836), 6, + anon_sym_RPAREN, anon_sym_PLUS, - anon_sym_DASH, anon_sym_SLASH, anon_sym_DIV, anon_sym_MOD, - sym_numeric_literal, - sym_character_literal, - sym_field_symbol_name, - [17764] = 7, - ACTIONS(1238), 1, - sym_field_symbol_name, - ACTIONS(1438), 1, + anon_sym_STAR_STAR, + [18383] = 7, + ACTIONS(1492), 1, sym_name, - ACTIONS(1478), 1, - anon_sym_COLON, - ACTIONS(1480), 1, - anon_sym_SLASH, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1482), 2, + ACTIONS(1495), 1, + anon_sym_DOT, + ACTIONS(1500), 1, + sym_field_symbol_name, + STATE(517), 1, + aux_sym_macro_include_repeat1, + ACTIONS(1497), 2, sym_numeric_literal, sym_character_literal, - STATE(629), 6, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + STATE(513), 6, sym__general_expression_position, sym__calculation_expression, sym_arithmetic_expression, sym__data_object, sym_structured_data_object, sym_attribute_access_static, - [17793] = 8, - ACTIONS(3), 1, - sym_eol_comment, - ACTIONS(5), 1, - sym_bol_comment, - ACTIONS(1222), 1, - anon_sym_STAR, - ACTIONS(1226), 1, - anon_sym_STAR_STAR, - ACTIONS(1484), 1, - sym_name, - ACTIONS(1344), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1224), 3, - anon_sym_SLASH, - anon_sym_DIV, - anon_sym_MOD, - ACTIONS(1486), 4, - anon_sym_DOT, - aux_sym_loop_statement_token3, - aux_sym_line_spec_token3, - aux_sym__read_table_result_token1, - [17824] = 13, - ACTIONS(1462), 1, + [18413] = 13, + ACTIONS(1442), 1, aux_sym__create_addition_token1, - ACTIONS(1488), 1, + ACTIONS(1503), 1, aux_sym_class_declaration_token3, - ACTIONS(1490), 1, + ACTIONS(1505), 1, aux_sym_class_declaration_token4, - ACTIONS(1492), 1, + ACTIONS(1507), 1, aux_sym_class_declaration_token6, - ACTIONS(1494), 1, + ACTIONS(1509), 1, aux_sym_class_declaration_token7, - ACTIONS(1496), 1, + ACTIONS(1511), 1, aux_sym_class_declaration_token8, - ACTIONS(1498), 1, + ACTIONS(1513), 1, aux_sym_class_declaration_token11, - ACTIONS(1500), 1, + ACTIONS(1515), 1, aux_sym_class_declaration_token12, - ACTIONS(1502), 1, + ACTIONS(1517), 1, anon_sym_DOT, - ACTIONS(1504), 1, + ACTIONS(1519), 1, aux_sym_class_publication_token1, - ACTIONS(1506), 1, + ACTIONS(1521), 1, aux_sym_class_local_friend_publication_token1, - STATE(1432), 1, + STATE(1209), 1, sym__create_addition, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [17865] = 7, - ACTIONS(1260), 1, - sym_name, - ACTIONS(1276), 1, - sym_field_symbol_name, - ACTIONS(1508), 1, - anon_sym_DOT, - STATE(518), 1, - aux_sym_macro_include_repeat1, - ACTIONS(3), 2, sym_eol_comment, + [18455] = 6, + ACTIONS(1237), 1, + anon_sym_STAR_STAR, + ACTIONS(1259), 1, + anon_sym_STAR, + ACTIONS(1523), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1274), 2, + sym_eol_comment, + ACTIONS(1261), 3, + anon_sym_SLASH, + anon_sym_DIV, + anon_sym_MOD, + ACTIONS(1355), 5, + aux_sym__method_declaration_importing_token1, + aux_sym__method_declaration_exporting_token1, + aux_sym__method_declaration_changing_token1, + anon_sym_RPAREN, + aux_sym__explicit_parameter_list_token1, + [18483] = 7, + ACTIONS(53), 1, + sym_field_symbol_name, + ACTIONS(1525), 1, + sym_name, + ACTIONS(1527), 1, + anon_sym_COLON, + ACTIONS(1529), 1, + anon_sym_SLASH, + ACTIONS(1531), 2, sym_numeric_literal, sym_character_literal, - STATE(516), 6, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + STATE(646), 6, sym__general_expression_position, sym__calculation_expression, sym_arithmetic_expression, sym__data_object, sym_structured_data_object, sym_attribute_access_static, - [17894] = 8, - ACTIONS(3), 1, - sym_eol_comment, - ACTIONS(5), 1, - sym_bol_comment, - ACTIONS(1470), 1, - anon_sym_STAR, - ACTIONS(1474), 1, - anon_sym_STAR_STAR, - ACTIONS(1510), 1, + [18513] = 7, + ACTIONS(53), 1, + sym_field_symbol_name, + ACTIONS(1525), 1, sym_name, - ACTIONS(1514), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1472), 3, + ACTIONS(1533), 1, + anon_sym_COLON, + ACTIONS(1535), 1, anon_sym_SLASH, - anon_sym_DIV, - anon_sym_MOD, - ACTIONS(1512), 4, - anon_sym_DOT, + ACTIONS(1537), 2, sym_numeric_literal, sym_character_literal, - sym_field_symbol_name, - [17925] = 5, - ACTIONS(1516), 1, - sym_name, - ACTIONS(1520), 1, - aux_sym_method_parameters_token3, - ACTIONS(1522), 1, - aux_sym_method_parameters_token4, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1518), 9, - anon_sym_DOT, - aux_sym__method_declaration_exporting_token1, - aux_sym__method_declaration_changing_token1, - aux_sym__method_declaration_raising_token1, - aux_sym__method_declaration_exceptions_token1, - aux_sym_method_parameters_token1, - aux_sym_method_parameters_token2, - aux_sym_returning_parameter_token1, - anon_sym_BANG, - [17950] = 7, - ACTIONS(1524), 1, - sym_name, - ACTIONS(1527), 1, - anon_sym_DOT, - ACTIONS(1532), 1, - sym_field_symbol_name, - STATE(518), 1, - aux_sym_macro_include_repeat1, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(1529), 2, - sym_numeric_literal, - sym_character_literal, - STATE(516), 6, + STATE(625), 6, sym__general_expression_position, sym__calculation_expression, sym_arithmetic_expression, sym__data_object, sym_structured_data_object, sym_attribute_access_static, - [17979] = 12, - ACTIONS(1312), 1, + [18543] = 12, + ACTIONS(1337), 1, aux_sym__method_declaration_exporting_token1, - ACTIONS(1314), 1, + ACTIONS(1339), 1, aux_sym__method_declaration_changing_token1, - ACTIONS(1316), 1, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(1320), 1, + ACTIONS(1345), 1, aux_sym_returning_parameter_token1, - ACTIONS(1535), 1, + ACTIONS(1539), 1, anon_sym_DOT, - STATE(579), 1, + STATE(599), 1, sym__method_declaration_exporting, - STATE(672), 1, + STATE(810), 1, sym__method_declaration_changing, - STATE(1153), 1, + STATE(1063), 1, sym_returning_parameter, - STATE(1870), 1, + STATE(1869), 1, sym__method_declaration_raising, - STATE(3068), 1, + STATE(2332), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [18017] = 5, - ACTIONS(3), 1, sym_eol_comment, - ACTIONS(5), 1, - sym_bol_comment, - ACTIONS(648), 1, + [18582] = 6, + ACTIONS(1545), 1, anon_sym_STAR, - ACTIONS(1537), 1, + ACTIONS(1549), 1, anon_sym_STAR_STAR, - ACTIONS(650), 9, - anon_sym_EQ, - aux_sym_comparison_expression_token1, - anon_sym_LT_GT, - aux_sym_comparison_expression_token2, + ACTIONS(1543), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_DIV, - anon_sym_MOD, - [18041] = 6, - ACTIONS(3), 1, - sym_eol_comment, - ACTIONS(5), 1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1537), 1, - anon_sym_STAR_STAR, - ACTIONS(1539), 1, - anon_sym_STAR, - ACTIONS(1541), 3, + sym_eol_comment, + ACTIONS(1547), 3, anon_sym_SLASH, anon_sym_DIV, anon_sym_MOD, - ACTIONS(650), 6, + ACTIONS(1541), 4, anon_sym_EQ, aux_sym_comparison_expression_token1, anon_sym_LT_GT, aux_sym_comparison_expression_token2, - anon_sym_PLUS, - anon_sym_DASH, - [18067] = 8, - ACTIONS(55), 1, - sym_field_symbol_name, - ACTIONS(1543), 1, - sym_name, - ACTIONS(1545), 1, - aux_sym_complete_typing_token1, - ACTIONS(1547), 1, - aux_sym_generic_type_token2, + [18609] = 4, + ACTIONS(625), 1, + anon_sym_STAR, ACTIONS(1549), 1, - aux_sym__data_object_typing_normal_token1, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1551), 3, - aux_sym__data_object_typing_itabs_token1, - aux_sym__data_object_typing_itabs_token2, - aux_sym__data_object_typing_itabs_token3, - STATE(1429), 3, - sym__data_object, - sym_structured_data_object, - sym_attribute_access_static, - [18097] = 12, - ACTIONS(1312), 1, - aux_sym__method_declaration_exporting_token1, - ACTIONS(1314), 1, - aux_sym__method_declaration_changing_token1, - ACTIONS(1316), 1, - aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(1320), 1, - aux_sym_returning_parameter_token1, - ACTIONS(1553), 1, - anon_sym_DOT, - STATE(606), 1, - sym__method_declaration_exporting, - STATE(810), 1, - sym__method_declaration_changing, - STATE(1057), 1, - sym_returning_parameter, - STATE(1850), 1, - sym__method_declaration_raising, - STATE(2268), 1, - sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + anon_sym_STAR_STAR, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [18135] = 7, - ACTIONS(3), 1, sym_eol_comment, - ACTIONS(5), 1, - sym_bol_comment, - ACTIONS(1537), 1, - anon_sym_STAR_STAR, - ACTIONS(1539), 1, - anon_sym_STAR, - ACTIONS(1557), 2, + ACTIONS(627), 9, + anon_sym_EQ, + aux_sym_comparison_expression_token1, + anon_sym_LT_GT, + aux_sym_comparison_expression_token2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1541), 3, anon_sym_SLASH, anon_sym_DIV, anon_sym_MOD, - ACTIONS(1555), 4, - anon_sym_EQ, - aux_sym_comparison_expression_token1, - anon_sym_LT_GT, - aux_sym_comparison_expression_token2, - [18163] = 12, - ACTIONS(1312), 1, + [18632] = 12, + ACTIONS(1337), 1, aux_sym__method_declaration_exporting_token1, - ACTIONS(1314), 1, + ACTIONS(1339), 1, aux_sym__method_declaration_changing_token1, - ACTIONS(1316), 1, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(1320), 1, + ACTIONS(1345), 1, aux_sym_returning_parameter_token1, - ACTIONS(1559), 1, + ACTIONS(1551), 1, anon_sym_DOT, - STATE(607), 1, + STATE(597), 1, sym__method_declaration_exporting, - STATE(793), 1, + STATE(796), 1, sym__method_declaration_changing, - STATE(1070), 1, + STATE(1075), 1, sym_returning_parameter, - STATE(1894), 1, + STATE(1834), 1, sym__method_declaration_raising, - STATE(2288), 1, + STATE(2289), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [18201] = 6, - ACTIONS(1238), 1, - sym_field_symbol_name, - ACTIONS(1438), 1, - sym_name, - ACTIONS(1561), 1, - anon_sym_SLASH, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(1563), 2, - sym_numeric_literal, - sym_character_literal, - STATE(558), 6, - sym__general_expression_position, - sym__calculation_expression, - sym_arithmetic_expression, - sym__data_object, - sym_structured_data_object, - sym_attribute_access_static, - [18227] = 6, - ACTIONS(1238), 1, + [18671] = 6, + ACTIONS(53), 1, sym_field_symbol_name, - ACTIONS(1438), 1, + ACTIONS(1525), 1, sym_name, - ACTIONS(1565), 1, + ACTIONS(1553), 1, anon_sym_SLASH, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1567), 2, + ACTIONS(1555), 2, sym_numeric_literal, sym_character_literal, - STATE(568), 6, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + STATE(557), 6, sym__general_expression_position, sym__calculation_expression, sym_arithmetic_expression, sym__data_object, sym_structured_data_object, sym_attribute_access_static, - [18253] = 12, - ACTIONS(1312), 1, + [18698] = 12, + ACTIONS(1337), 1, aux_sym__method_declaration_exporting_token1, - ACTIONS(1314), 1, + ACTIONS(1339), 1, aux_sym__method_declaration_changing_token1, - ACTIONS(1316), 1, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(1320), 1, + ACTIONS(1345), 1, aux_sym_returning_parameter_token1, - ACTIONS(1569), 1, + ACTIONS(1557), 1, anon_sym_DOT, - STATE(589), 1, + STATE(614), 1, sym__method_declaration_exporting, - STATE(739), 1, + STATE(689), 1, sym__method_declaration_changing, - STATE(1088), 1, + STATE(1140), 1, sym_returning_parameter, - STATE(1576), 1, + STATE(1778), 1, sym__method_declaration_raising, - STATE(2918), 1, + STATE(2264), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [18291] = 12, - ACTIONS(1312), 1, + sym_eol_comment, + [18737] = 12, + ACTIONS(1337), 1, aux_sym__method_declaration_exporting_token1, - ACTIONS(1314), 1, + ACTIONS(1339), 1, aux_sym__method_declaration_changing_token1, - ACTIONS(1316), 1, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(1320), 1, + ACTIONS(1345), 1, aux_sym_returning_parameter_token1, - ACTIONS(1571), 1, + ACTIONS(1559), 1, anon_sym_DOT, - STATE(593), 1, + STATE(588), 1, sym__method_declaration_exporting, - STATE(867), 1, + STATE(740), 1, sym__method_declaration_changing, - STATE(1052), 1, + STATE(1094), 1, sym_returning_parameter, - STATE(1851), 1, + STATE(1800), 1, sym__method_declaration_raising, - STATE(2340), 1, + STATE(2274), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + [18776] = 8, + ACTIONS(53), 1, + sym_field_symbol_name, + ACTIONS(1561), 1, + sym_name, + ACTIONS(1563), 1, + aux_sym_complete_typing_token1, + ACTIONS(1565), 1, + aux_sym_generic_type_token2, + ACTIONS(1567), 1, + aux_sym__data_object_typing_normal_token1, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + ACTIONS(1569), 3, + aux_sym__data_object_typing_itabs_token1, + aux_sym__data_object_typing_itabs_token2, + aux_sym__data_object_typing_itabs_token3, + STATE(1212), 3, + sym__data_object, + sym_structured_data_object, + sym_attribute_access_static, + [18807] = 5, + ACTIONS(1545), 1, + anon_sym_STAR, + ACTIONS(1549), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [18329] = 12, - ACTIONS(1312), 1, + sym_eol_comment, + ACTIONS(1547), 3, + anon_sym_SLASH, + anon_sym_DIV, + anon_sym_MOD, + ACTIONS(627), 6, + anon_sym_EQ, + aux_sym_comparison_expression_token1, + anon_sym_LT_GT, + aux_sym_comparison_expression_token2, + anon_sym_PLUS, + anon_sym_DASH, + [18832] = 12, + ACTIONS(1337), 1, aux_sym__method_declaration_exporting_token1, - ACTIONS(1314), 1, + ACTIONS(1339), 1, aux_sym__method_declaration_changing_token1, - ACTIONS(1316), 1, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(1320), 1, + ACTIONS(1345), 1, aux_sym_returning_parameter_token1, - ACTIONS(1573), 1, + ACTIONS(1571), 1, anon_sym_DOT, - STATE(590), 1, + STATE(594), 1, sym__method_declaration_exporting, - STATE(685), 1, + STATE(675), 1, sym__method_declaration_changing, - STATE(1138), 1, + STATE(1155), 1, sym_returning_parameter, - STATE(1893), 1, + STATE(1900), 1, sym__method_declaration_raising, - STATE(3041), 1, + STATE(2344), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [18367] = 12, - ACTIONS(1312), 1, + sym_eol_comment, + [18871] = 12, + ACTIONS(1337), 1, aux_sym__method_declaration_exporting_token1, - ACTIONS(1314), 1, + ACTIONS(1339), 1, aux_sym__method_declaration_changing_token1, - ACTIONS(1316), 1, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(1320), 1, + ACTIONS(1345), 1, aux_sym_returning_parameter_token1, - ACTIONS(1575), 1, + ACTIONS(1573), 1, anon_sym_DOT, - STATE(586), 1, + STATE(595), 1, sym__method_declaration_exporting, - STATE(737), 1, + STATE(742), 1, sym__method_declaration_changing, - STATE(1092), 1, + STATE(1018), 1, sym_returning_parameter, - STATE(1905), 1, + STATE(1581), 1, sym__method_declaration_raising, - STATE(2273), 1, + STATE(3031), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [18405] = 5, - ACTIONS(1238), 1, + sym_eol_comment, + [18910] = 6, + ACTIONS(53), 1, sym_field_symbol_name, - ACTIONS(1438), 1, + ACTIONS(1525), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, + ACTIONS(1575), 1, + anon_sym_SLASH, ACTIONS(1577), 2, sym_numeric_literal, sym_character_literal, - STATE(548), 6, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + STATE(547), 6, sym__general_expression_position, sym__calculation_expression, sym_arithmetic_expression, sym__data_object, sym_structured_data_object, sym_attribute_access_static, - [18428] = 3, - ACTIONS(1579), 1, - sym_name, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1581), 9, - anon_sym_DOT, + [18937] = 12, + ACTIONS(1337), 1, aux_sym__method_declaration_exporting_token1, + ACTIONS(1339), 1, aux_sym__method_declaration_changing_token1, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - aux_sym_method_parameters_token1, - aux_sym_method_parameters_token2, + ACTIONS(1345), 1, aux_sym_returning_parameter_token1, - anon_sym_BANG, - [18447] = 5, - ACTIONS(1238), 1, + ACTIONS(1579), 1, + anon_sym_DOT, + STATE(601), 1, + sym__method_declaration_exporting, + STATE(867), 1, + sym__method_declaration_changing, + STATE(1056), 1, + sym_returning_parameter, + STATE(1856), 1, + sym__method_declaration_raising, + STATE(2630), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + [18976] = 5, + ACTIONS(53), 1, sym_field_symbol_name, - ACTIONS(1438), 1, + ACTIONS(1525), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1583), 2, + ACTIONS(1581), 2, sym_numeric_literal, sym_character_literal, - STATE(564), 6, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + STATE(607), 6, sym__general_expression_position, sym__calculation_expression, sym_arithmetic_expression, sym__data_object, sym_structured_data_object, sym_attribute_access_static, - [18470] = 5, - ACTIONS(1238), 1, - sym_field_symbol_name, - ACTIONS(1438), 1, - sym_name, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1585), 2, - sym_numeric_literal, - sym_character_literal, - STATE(540), 6, - sym__general_expression_position, - sym__calculation_expression, - sym_arithmetic_expression, - sym__data_object, - sym_structured_data_object, - sym_attribute_access_static, - [18493] = 9, - ACTIONS(3), 1, - sym_eol_comment, - ACTIONS(5), 1, - sym_bol_comment, - ACTIONS(1222), 1, - anon_sym_STAR, - ACTIONS(1226), 1, + [19000] = 8, + ACTIONS(1237), 1, anon_sym_STAR_STAR, - ACTIONS(1587), 1, + ACTIONS(1259), 1, + anon_sym_STAR, + ACTIONS(1583), 1, anon_sym_DOT, - ACTIONS(1589), 1, + ACTIONS(1585), 1, anon_sym_COMMA, - STATE(1810), 1, + STATE(1901), 1, aux_sym_chained_write_statement_repeat1, - ACTIONS(1344), 2, + ACTIONS(1523), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1224), 3, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + ACTIONS(1261), 3, anon_sym_SLASH, anon_sym_DIV, anon_sym_MOD, - [18524] = 5, - ACTIONS(1238), 1, + [19030] = 5, + ACTIONS(53), 1, sym_field_symbol_name, - ACTIONS(1438), 1, + ACTIONS(1525), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1591), 2, + ACTIONS(1587), 2, sym_numeric_literal, sym_character_literal, - STATE(608), 6, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + STATE(616), 6, sym__general_expression_position, sym__calculation_expression, sym_arithmetic_expression, sym__data_object, sym_structured_data_object, sym_attribute_access_static, - [18547] = 5, - ACTIONS(1238), 1, + [19054] = 5, + ACTIONS(53), 1, sym_field_symbol_name, - ACTIONS(1438), 1, + ACTIONS(1525), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1593), 2, + ACTIONS(1589), 2, sym_numeric_literal, sym_character_literal, - STATE(581), 6, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + STATE(620), 6, sym__general_expression_position, sym__calculation_expression, sym_arithmetic_expression, sym__data_object, sym_structured_data_object, sym_attribute_access_static, - [18570] = 3, - ACTIONS(1595), 1, + [19078] = 5, + ACTIONS(53), 1, + sym_field_symbol_name, + ACTIONS(1591), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(1593), 2, + sym_numeric_literal, + sym_character_literal, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1597), 9, - anon_sym_DOT, - aux_sym__method_declaration_exporting_token1, - aux_sym__method_declaration_changing_token1, - aux_sym__method_declaration_raising_token1, - aux_sym__method_declaration_exceptions_token1, - aux_sym_method_parameters_token1, - aux_sym_method_parameters_token2, - aux_sym_returning_parameter_token1, - anon_sym_BANG, - [18589] = 9, - ACTIONS(3), 1, sym_eol_comment, - ACTIONS(5), 1, - sym_bol_comment, - ACTIONS(1222), 1, - anon_sym_STAR, - ACTIONS(1226), 1, - anon_sym_STAR_STAR, - ACTIONS(1599), 1, - anon_sym_DOT, - ACTIONS(1601), 1, - aux_sym_complete_typing_token2, - ACTIONS(1603), 1, - aux_sym_loop_statement_token5, - ACTIONS(1344), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1224), 3, - anon_sym_SLASH, - anon_sym_DIV, - anon_sym_MOD, - [18620] = 5, - ACTIONS(1238), 1, + STATE(100), 6, + sym__general_expression_position, + sym__calculation_expression, + sym_arithmetic_expression, + sym__data_object, + sym_structured_data_object, + sym_attribute_access_static, + [19102] = 5, + ACTIONS(53), 1, sym_field_symbol_name, - ACTIONS(1438), 1, + ACTIONS(1525), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1605), 2, + ACTIONS(1595), 2, sym_numeric_literal, sym_character_literal, - STATE(617), 6, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + STATE(581), 6, sym__general_expression_position, sym__calculation_expression, sym_arithmetic_expression, sym__data_object, sym_structured_data_object, sym_attribute_access_static, - [18643] = 5, - ACTIONS(1238), 1, + [19126] = 5, + ACTIONS(53), 1, sym_field_symbol_name, - ACTIONS(1438), 1, + ACTIONS(1591), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1607), 2, + ACTIONS(1597), 2, sym_numeric_literal, sym_character_literal, - STATE(631), 6, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + STATE(530), 6, sym__general_expression_position, sym__calculation_expression, sym_arithmetic_expression, sym__data_object, sym_structured_data_object, sym_attribute_access_static, - [18666] = 5, - ACTIONS(1238), 1, + [19150] = 5, + ACTIONS(53), 1, sym_field_symbol_name, - ACTIONS(1438), 1, + ACTIONS(1591), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1609), 2, + ACTIONS(1599), 2, sym_numeric_literal, sym_character_literal, - STATE(625), 6, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + STATE(524), 6, sym__general_expression_position, sym__calculation_expression, sym_arithmetic_expression, sym__data_object, sym_structured_data_object, sym_attribute_access_static, - [18689] = 5, - ACTIONS(1238), 1, + [19174] = 5, + ACTIONS(53), 1, sym_field_symbol_name, - ACTIONS(1438), 1, + ACTIONS(1525), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1611), 2, + ACTIONS(1601), 2, sym_numeric_literal, sym_character_literal, - STATE(597), 6, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + STATE(556), 6, sym__general_expression_position, sym__calculation_expression, sym_arithmetic_expression, sym__data_object, sym_structured_data_object, sym_attribute_access_static, - [18712] = 5, - ACTIONS(1238), 1, + [19198] = 5, + ACTIONS(53), 1, sym_field_symbol_name, - ACTIONS(1438), 1, + ACTIONS(1525), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1613), 2, + ACTIONS(1603), 2, sym_numeric_literal, sym_character_literal, - STATE(264), 6, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + STATE(630), 6, sym__general_expression_position, sym__calculation_expression, sym_arithmetic_expression, sym__data_object, sym_structured_data_object, sym_attribute_access_static, - [18735] = 5, - ACTIONS(1238), 1, + [19222] = 5, + ACTIONS(53), 1, sym_field_symbol_name, - ACTIONS(1615), 1, + ACTIONS(1525), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1617), 2, + ACTIONS(1605), 2, sym_numeric_literal, sym_character_literal, - STATE(521), 6, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + STATE(628), 6, sym__general_expression_position, sym__calculation_expression, sym_arithmetic_expression, sym__data_object, sym_structured_data_object, sym_attribute_access_static, - [18758] = 5, - ACTIONS(1238), 1, + [19246] = 5, + ACTIONS(53), 1, sym_field_symbol_name, - ACTIONS(1615), 1, + ACTIONS(1525), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1619), 2, + ACTIONS(1607), 2, sym_numeric_literal, sym_character_literal, - STATE(520), 6, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + STATE(536), 6, sym__general_expression_position, sym__calculation_expression, sym_arithmetic_expression, sym__data_object, sym_structured_data_object, sym_attribute_access_static, - [18781] = 9, - ACTIONS(3), 1, - sym_eol_comment, - ACTIONS(5), 1, - sym_bol_comment, - ACTIONS(1222), 1, - anon_sym_STAR, - ACTIONS(1226), 1, + [19270] = 8, + ACTIONS(1237), 1, anon_sym_STAR_STAR, - ACTIONS(1589), 1, + ACTIONS(1259), 1, + anon_sym_STAR, + ACTIONS(1585), 1, anon_sym_COMMA, - ACTIONS(1621), 1, + ACTIONS(1609), 1, anon_sym_DOT, - STATE(1745), 1, + STATE(1827), 1, aux_sym_chained_write_statement_repeat1, - ACTIONS(1344), 2, + ACTIONS(1523), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1224), 3, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + ACTIONS(1261), 3, anon_sym_SLASH, anon_sym_DIV, anon_sym_MOD, - [18812] = 5, - ACTIONS(1238), 1, + [19300] = 5, + ACTIONS(53), 1, sym_field_symbol_name, - ACTIONS(1438), 1, + ACTIONS(1525), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1623), 2, + ACTIONS(1611), 2, sym_numeric_literal, sym_character_literal, - STATE(626), 6, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + STATE(618), 6, sym__general_expression_position, sym__calculation_expression, sym_arithmetic_expression, sym__data_object, sym_structured_data_object, sym_attribute_access_static, - [18835] = 5, - ACTIONS(1238), 1, + [19324] = 5, + ACTIONS(53), 1, sym_field_symbol_name, - ACTIONS(1438), 1, + ACTIONS(1525), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1625), 2, + ACTIONS(1613), 2, sym_numeric_literal, sym_character_literal, - STATE(632), 6, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + STATE(464), 6, sym__general_expression_position, sym__calculation_expression, sym_arithmetic_expression, sym__data_object, sym_structured_data_object, sym_attribute_access_static, - [18858] = 5, - ACTIONS(1238), 1, + [19348] = 5, + ACTIONS(53), 1, sym_field_symbol_name, - ACTIONS(1438), 1, + ACTIONS(1525), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1627), 2, + ACTIONS(1615), 2, sym_numeric_literal, sym_character_literal, - STATE(612), 6, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + STATE(458), 6, sym__general_expression_position, sym__calculation_expression, sym_arithmetic_expression, sym__data_object, sym_structured_data_object, sym_attribute_access_static, - [18881] = 5, - ACTIONS(1238), 1, + [19372] = 5, + ACTIONS(53), 1, sym_field_symbol_name, - ACTIONS(1615), 1, + ACTIONS(1525), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1629), 2, + ACTIONS(1593), 2, sym_numeric_literal, sym_character_literal, - STATE(104), 6, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + STATE(100), 6, sym__general_expression_position, sym__calculation_expression, sym_arithmetic_expression, sym__data_object, sym_structured_data_object, sym_attribute_access_static, - [18904] = 3, - ACTIONS(1631), 1, + [19396] = 5, + ACTIONS(53), 1, + sym_field_symbol_name, + ACTIONS(1525), 1, sym_name, - ACTIONS(3), 2, + ACTIONS(1617), 2, + sym_numeric_literal, + sym_character_literal, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + STATE(634), 6, + sym__general_expression_position, + sym__calculation_expression, + sym_arithmetic_expression, + sym__data_object, + sym_structured_data_object, + sym_attribute_access_static, + [19420] = 3, + ACTIONS(1619), 1, + sym_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1633), 9, + sym_eol_comment, + ACTIONS(1621), 9, anon_sym_DOT, aux_sym__method_declaration_exporting_token1, aux_sym__method_declaration_changing_token1, @@ -31402,457 +31863,516 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_parameters_token2, aux_sym_returning_parameter_token1, anon_sym_BANG, - [18923] = 9, - ACTIONS(3), 1, - sym_eol_comment, - ACTIONS(5), 1, - sym_bol_comment, - ACTIONS(1222), 1, - anon_sym_STAR, - ACTIONS(1226), 1, + [19440] = 8, + ACTIONS(1237), 1, anon_sym_STAR_STAR, - ACTIONS(1635), 1, + ACTIONS(1259), 1, + anon_sym_STAR, + ACTIONS(1623), 1, anon_sym_DOT, - ACTIONS(1637), 1, + ACTIONS(1625), 1, aux_sym_complete_typing_token2, - ACTIONS(1639), 1, + ACTIONS(1627), 1, aux_sym_loop_statement_token5, - ACTIONS(1344), 2, + ACTIONS(1523), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1224), 3, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + ACTIONS(1261), 3, anon_sym_SLASH, anon_sym_DIV, anon_sym_MOD, - [18954] = 5, - ACTIONS(1238), 1, + [19470] = 5, + ACTIONS(53), 1, sym_field_symbol_name, - ACTIONS(1438), 1, + ACTIONS(1525), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1641), 2, + ACTIONS(1629), 2, sym_numeric_literal, sym_character_literal, - STATE(592), 6, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + STATE(613), 6, sym__general_expression_position, sym__calculation_expression, sym_arithmetic_expression, sym__data_object, sym_structured_data_object, sym_attribute_access_static, - [18977] = 5, - ACTIONS(1238), 1, - sym_field_symbol_name, - ACTIONS(1438), 1, - sym_name, - ACTIONS(3), 2, + [19494] = 8, + ACTIONS(1237), 1, + anon_sym_STAR_STAR, + ACTIONS(1259), 1, + anon_sym_STAR, + ACTIONS(1585), 1, + anon_sym_COMMA, + ACTIONS(1631), 1, + anon_sym_DOT, + STATE(1864), 1, + aux_sym_chained_write_statement_repeat1, + ACTIONS(1523), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + ACTIONS(1261), 3, + anon_sym_SLASH, + anon_sym_DIV, + anon_sym_MOD, + [19524] = 8, + ACTIONS(1237), 1, + anon_sym_STAR_STAR, + ACTIONS(1259), 1, + anon_sym_STAR, + ACTIONS(1585), 1, + anon_sym_COMMA, + ACTIONS(1633), 1, + anon_sym_DOT, + STATE(1866), 1, + aux_sym_chained_write_statement_repeat1, + ACTIONS(1523), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1643), 2, + sym_eol_comment, + ACTIONS(1261), 3, + anon_sym_SLASH, + anon_sym_DIV, + anon_sym_MOD, + [19554] = 5, + ACTIONS(1269), 1, + sym_name, + ACTIONS(1285), 1, + sym_field_symbol_name, + ACTIONS(1593), 2, sym_numeric_literal, sym_character_literal, - STATE(641), 6, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + STATE(100), 6, sym__general_expression_position, sym__calculation_expression, sym_arithmetic_expression, sym__data_object, sym_structured_data_object, sym_attribute_access_static, - [19000] = 5, - ACTIONS(1238), 1, - sym_field_symbol_name, - ACTIONS(1438), 1, + [19578] = 5, + ACTIONS(1269), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1645), 2, + ACTIONS(1285), 1, + sym_field_symbol_name, + ACTIONS(1635), 2, sym_numeric_literal, sym_character_literal, - STATE(614), 6, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + STATE(465), 6, sym__general_expression_position, sym__calculation_expression, sym_arithmetic_expression, sym__data_object, sym_structured_data_object, sym_attribute_access_static, - [19023] = 9, - ACTIONS(3), 1, - sym_eol_comment, - ACTIONS(5), 1, + [19602] = 4, + ACTIONS(1637), 1, + sym_name, + STATE(571), 2, + sym_parameter_binding, + aux_sym_parameter_list_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1222), 1, - anon_sym_STAR, - ACTIONS(1226), 1, - anon_sym_STAR_STAR, - ACTIONS(1589), 1, - anon_sym_COMMA, - ACTIONS(1647), 1, + sym_eol_comment, + ACTIONS(1639), 7, anon_sym_DOT, - STATE(1752), 1, - aux_sym_chained_write_statement_repeat1, - ACTIONS(1344), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1224), 3, - anon_sym_SLASH, - anon_sym_DIV, - anon_sym_MOD, - [19054] = 5, - ACTIONS(1238), 1, - sym_field_symbol_name, - ACTIONS(1438), 1, + aux_sym__method_declaration_importing_token1, + aux_sym__method_declaration_exporting_token1, + aux_sym__method_declaration_changing_token1, + anon_sym_RPAREN, + aux_sym__method_declaration_exceptions_token1, + aux_sym__explicit_parameter_list_token1, + [19624] = 5, + ACTIONS(1269), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1649), 2, + ACTIONS(1285), 1, + sym_field_symbol_name, + ACTIONS(1641), 2, sym_numeric_literal, sym_character_literal, - STATE(627), 6, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + STATE(466), 6, sym__general_expression_position, sym__calculation_expression, sym_arithmetic_expression, sym__data_object, sym_structured_data_object, sym_attribute_access_static, - [19077] = 5, - ACTIONS(1238), 1, - sym_field_symbol_name, - ACTIONS(1438), 1, + [19648] = 5, + ACTIONS(1269), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1651), 2, + ACTIONS(1285), 1, + sym_field_symbol_name, + ACTIONS(1643), 2, sym_numeric_literal, sym_character_literal, - STATE(473), 6, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + STATE(514), 6, sym__general_expression_position, sym__calculation_expression, sym_arithmetic_expression, sym__data_object, sym_structured_data_object, sym_attribute_access_static, - [19100] = 5, - ACTIONS(1238), 1, + [19672] = 5, + ACTIONS(53), 1, sym_field_symbol_name, - ACTIONS(1438), 1, + ACTIONS(1525), 1, sym_name, - ACTIONS(3), 2, + ACTIONS(1645), 2, + sym_numeric_literal, + sym_character_literal, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + STATE(564), 6, + sym__general_expression_position, + sym__calculation_expression, + sym_arithmetic_expression, + sym__data_object, + sym_structured_data_object, + sym_attribute_access_static, + [19696] = 8, + ACTIONS(1237), 1, + anon_sym_STAR_STAR, + ACTIONS(1259), 1, + anon_sym_STAR, + ACTIONS(1647), 1, + anon_sym_DOT, + ACTIONS(1649), 1, + aux_sym_complete_typing_token2, + ACTIONS(1651), 1, + aux_sym_loop_statement_token5, + ACTIONS(1523), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, + ACTIONS(1261), 3, + anon_sym_SLASH, + anon_sym_DIV, + anon_sym_MOD, + [19726] = 5, + ACTIONS(53), 1, + sym_field_symbol_name, + ACTIONS(1525), 1, + sym_name, ACTIONS(1653), 2, sym_numeric_literal, sym_character_literal, - STATE(640), 6, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + STATE(596), 6, sym__general_expression_position, sym__calculation_expression, sym_arithmetic_expression, sym__data_object, sym_structured_data_object, sym_attribute_access_static, - [19123] = 4, + [19750] = 3, ACTIONS(1655), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - STATE(563), 2, - sym_parameter_binding, - aux_sym_parameter_list_repeat1, - ACTIONS(1657), 7, + sym_eol_comment, + ACTIONS(1657), 9, anon_sym_DOT, - aux_sym__method_declaration_importing_token1, aux_sym__method_declaration_exporting_token1, aux_sym__method_declaration_changing_token1, - anon_sym_RPAREN, + aux_sym__method_declaration_raising_token1, aux_sym__method_declaration_exceptions_token1, - aux_sym__explicit_parameter_list_token1, - [19144] = 4, - ACTIONS(1659), 1, + aux_sym_method_parameters_token1, + aux_sym_method_parameters_token2, + aux_sym_returning_parameter_token1, + anon_sym_BANG, + [19770] = 5, + ACTIONS(1269), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(1285), 1, + sym_field_symbol_name, + ACTIONS(1659), 2, + sym_numeric_literal, + sym_character_literal, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - STATE(563), 2, - sym_parameter_binding, - aux_sym_parameter_list_repeat1, - ACTIONS(1662), 7, - anon_sym_DOT, - aux_sym__method_declaration_importing_token1, - aux_sym__method_declaration_exporting_token1, - aux_sym__method_declaration_changing_token1, - anon_sym_RPAREN, - aux_sym__method_declaration_exceptions_token1, - aux_sym__explicit_parameter_list_token1, - [19165] = 7, - ACTIONS(3), 1, sym_eol_comment, - ACTIONS(5), 1, - sym_bol_comment, - ACTIONS(1222), 1, - anon_sym_STAR, - ACTIONS(1226), 1, - anon_sym_STAR_STAR, - ACTIONS(1344), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1224), 3, - anon_sym_SLASH, - anon_sym_DIV, - anon_sym_MOD, - ACTIONS(1664), 3, - anon_sym_DOT, - aux_sym__logical_expression_token2, - aux_sym__logical_expression_token3, - [19192] = 5, - ACTIONS(1238), 1, - sym_field_symbol_name, - ACTIONS(1438), 1, + STATE(505), 6, + sym__general_expression_position, + sym__calculation_expression, + sym_arithmetic_expression, + sym__data_object, + sym_structured_data_object, + sym_attribute_access_static, + [19794] = 5, + ACTIONS(1269), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1666), 2, + ACTIONS(1285), 1, + sym_field_symbol_name, + ACTIONS(1661), 2, sym_numeric_literal, sym_character_literal, - STATE(596), 6, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + STATE(507), 6, sym__general_expression_position, sym__calculation_expression, sym_arithmetic_expression, sym__data_object, sym_structured_data_object, sym_attribute_access_static, - [19215] = 5, - ACTIONS(1238), 1, - sym_field_symbol_name, - ACTIONS(1438), 1, + [19818] = 5, + ACTIONS(1269), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1668), 2, + ACTIONS(1285), 1, + sym_field_symbol_name, + ACTIONS(1663), 2, sym_numeric_literal, sym_character_literal, - STATE(536), 6, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + STATE(509), 6, sym__general_expression_position, sym__calculation_expression, sym_arithmetic_expression, sym__data_object, sym_structured_data_object, sym_attribute_access_static, - [19238] = 5, - ACTIONS(1238), 1, + [19842] = 5, + ACTIONS(53), 1, sym_field_symbol_name, - ACTIONS(1438), 1, + ACTIONS(1525), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1629), 2, + ACTIONS(1665), 2, sym_numeric_literal, sym_character_literal, - STATE(104), 6, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + STATE(626), 6, sym__general_expression_position, sym__calculation_expression, sym_arithmetic_expression, sym__data_object, sym_structured_data_object, sym_attribute_access_static, - [19261] = 9, - ACTIONS(3), 1, - sym_eol_comment, - ACTIONS(5), 1, + [19866] = 4, + ACTIONS(1667), 1, + sym_name, + STATE(571), 2, + sym_parameter_binding, + aux_sym_parameter_list_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1222), 1, - anon_sym_STAR, - ACTIONS(1226), 1, - anon_sym_STAR_STAR, - ACTIONS(1589), 1, - anon_sym_COMMA, - ACTIONS(1670), 1, + sym_eol_comment, + ACTIONS(1670), 7, anon_sym_DOT, - STATE(1680), 1, - aux_sym_chained_write_statement_repeat1, - ACTIONS(1344), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1224), 3, - anon_sym_SLASH, - anon_sym_DIV, - anon_sym_MOD, - [19292] = 5, - ACTIONS(1238), 1, + aux_sym__method_declaration_importing_token1, + aux_sym__method_declaration_exporting_token1, + aux_sym__method_declaration_changing_token1, + anon_sym_RPAREN, + aux_sym__method_declaration_exceptions_token1, + aux_sym__explicit_parameter_list_token1, + [19888] = 5, + ACTIONS(53), 1, sym_field_symbol_name, - ACTIONS(1438), 1, + ACTIONS(1525), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, ACTIONS(1672), 2, sym_numeric_literal, sym_character_literal, - STATE(513), 6, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + STATE(644), 6, sym__general_expression_position, sym__calculation_expression, sym_arithmetic_expression, sym__data_object, sym_structured_data_object, sym_attribute_access_static, - [19315] = 5, - ACTIONS(1238), 1, - sym_field_symbol_name, - ACTIONS(1438), 1, + [19912] = 5, + ACTIONS(1269), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, + ACTIONS(1285), 1, + sym_field_symbol_name, ACTIONS(1674), 2, sym_numeric_literal, sym_character_literal, - STATE(554), 6, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + STATE(484), 6, sym__general_expression_position, sym__calculation_expression, sym_arithmetic_expression, sym__data_object, sym_structured_data_object, sym_attribute_access_static, - [19338] = 5, - ACTIONS(1238), 1, - sym_field_symbol_name, - ACTIONS(1438), 1, + [19936] = 5, + ACTIONS(1269), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, + ACTIONS(1285), 1, + sym_field_symbol_name, ACTIONS(1676), 2, sym_numeric_literal, sym_character_literal, - STATE(599), 6, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + STATE(598), 6, sym__general_expression_position, sym__calculation_expression, sym_arithmetic_expression, sym__data_object, sym_structured_data_object, sym_attribute_access_static, - [19361] = 5, - ACTIONS(1260), 1, - sym_name, - ACTIONS(1276), 1, + [19960] = 5, + ACTIONS(53), 1, sym_field_symbol_name, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, + ACTIONS(1525), 1, + sym_name, ACTIONS(1678), 2, sym_numeric_literal, sym_character_literal, - STATE(509), 6, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + STATE(627), 6, sym__general_expression_position, sym__calculation_expression, sym_arithmetic_expression, sym__data_object, sym_structured_data_object, sym_attribute_access_static, - [19384] = 5, - ACTIONS(1260), 1, - sym_name, - ACTIONS(1276), 1, + [19984] = 5, + ACTIONS(53), 1, sym_field_symbol_name, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, + ACTIONS(1525), 1, + sym_name, ACTIONS(1680), 2, sym_numeric_literal, sym_character_literal, - STATE(511), 6, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + STATE(604), 6, sym__general_expression_position, sym__calculation_expression, sym_arithmetic_expression, sym__data_object, sym_structured_data_object, sym_attribute_access_static, - [19407] = 5, - ACTIONS(1260), 1, - sym_name, - ACTIONS(1276), 1, + [20008] = 5, + ACTIONS(53), 1, sym_field_symbol_name, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, + ACTIONS(1525), 1, + sym_name, ACTIONS(1682), 2, sym_numeric_literal, sym_character_literal, - STATE(506), 6, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + STATE(554), 6, sym__general_expression_position, sym__calculation_expression, sym_arithmetic_expression, sym__data_object, sym_structured_data_object, sym_attribute_access_static, - [19430] = 5, - ACTIONS(1238), 1, + [20032] = 5, + ACTIONS(53), 1, sym_field_symbol_name, - ACTIONS(1438), 1, + ACTIONS(1525), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, ACTIONS(1684), 2, sym_numeric_literal, sym_character_literal, - STATE(620), 6, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + STATE(631), 6, sym__general_expression_position, sym__calculation_expression, sym_arithmetic_expression, sym__data_object, sym_structured_data_object, sym_attribute_access_static, - [19453] = 5, - ACTIONS(1238), 1, + [20056] = 5, + ACTIONS(53), 1, sym_field_symbol_name, - ACTIONS(1438), 1, + ACTIONS(1525), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, ACTIONS(1686), 2, sym_numeric_literal, sym_character_literal, - STATE(265), 6, - sym__general_expression_position, - sym__calculation_expression, - sym_arithmetic_expression, - sym__data_object, - sym_structured_data_object, - sym_attribute_access_static, - [19476] = 5, - ACTIONS(1238), 1, - sym_field_symbol_name, - ACTIONS(1438), 1, - sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1688), 2, - sym_numeric_literal, - sym_character_literal, - STATE(638), 6, + sym_eol_comment, + STATE(519), 6, sym__general_expression_position, sym__calculation_expression, sym_arithmetic_expression, sym__data_object, sym_structured_data_object, sym_attribute_access_static, - [19499] = 3, - ACTIONS(1690), 1, + [20080] = 3, + ACTIONS(1688), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1692), 9, + sym_eol_comment, + ACTIONS(1690), 9, anon_sym_DOT, aux_sym__method_declaration_exporting_token1, aux_sym__method_declaration_changing_token1, @@ -31862,963 +32382,1028 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_method_parameters_token2, aux_sym_returning_parameter_token1, anon_sym_BANG, - [19518] = 10, - ACTIONS(1314), 1, - aux_sym__method_declaration_changing_token1, - ACTIONS(1316), 1, - aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(1320), 1, - aux_sym_returning_parameter_token1, - ACTIONS(1694), 1, - anon_sym_DOT, - STATE(784), 1, - sym__method_declaration_changing, - STATE(1076), 1, - sym_returning_parameter, - STATE(1559), 1, - sym__method_declaration_raising, - STATE(2902), 1, - sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - [19550] = 6, - ACTIONS(1302), 1, - aux_sym_variable_declaration_token1, - ACTIONS(1696), 1, - aux_sym_method_declaration_class_token1, - ACTIONS(1698), 1, - aux_sym_class_constructor_declaration_token1, - ACTIONS(1700), 1, - aux_sym_interface_declaration_token2, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - STATE(600), 5, - sym_class_method_declaration_interface, - sym__interface_components, - sym_method_declaration_interface, - sym_variable_declaration, - aux_sym_interface_declaration_repeat1, - [19574] = 8, - ACTIONS(3), 1, - sym_eol_comment, - ACTIONS(5), 1, - sym_bol_comment, - ACTIONS(1222), 1, - anon_sym_STAR, - ACTIONS(1226), 1, + [20100] = 6, + ACTIONS(1237), 1, anon_sym_STAR_STAR, - ACTIONS(1702), 1, - anon_sym_DOT, - ACTIONS(1704), 1, - aux_sym_loop_statement_token5, - ACTIONS(1344), 2, + ACTIONS(1259), 1, + anon_sym_STAR, + ACTIONS(1523), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1224), 3, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + ACTIONS(1261), 3, anon_sym_SLASH, anon_sym_DIV, anon_sym_MOD, - [19602] = 10, - ACTIONS(1314), 1, - aux_sym__method_declaration_changing_token1, - ACTIONS(1316), 1, - aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(1320), 1, - aux_sym_returning_parameter_token1, - ACTIONS(1706), 1, + ACTIONS(1692), 3, anon_sym_DOT, - STATE(785), 1, - sym__method_declaration_changing, - STATE(1078), 1, - sym_returning_parameter, - STATE(1899), 1, - sym__method_declaration_raising, - STATE(2285), 1, - sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + aux_sym__logical_expression_token2, + aux_sym__logical_expression_token3, + [20126] = 3, + ACTIONS(1694), 1, + sym_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [19634] = 10, - ACTIONS(1314), 1, + sym_eol_comment, + ACTIONS(1696), 9, + anon_sym_DOT, + aux_sym__method_declaration_exporting_token1, aux_sym__method_declaration_changing_token1, - ACTIONS(1316), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(1320), 1, + aux_sym_method_parameters_token1, + aux_sym_method_parameters_token2, aux_sym_returning_parameter_token1, - ACTIONS(1708), 1, - anon_sym_DOT, - STATE(872), 1, - sym__method_declaration_changing, - STATE(1050), 1, - sym_returning_parameter, - STATE(1847), 1, - sym__method_declaration_raising, - STATE(2345), 1, - sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - [19666] = 10, - ACTIONS(1314), 1, + anon_sym_BANG, + [20146] = 5, + ACTIONS(53), 1, + sym_field_symbol_name, + ACTIONS(1525), 1, + sym_name, + ACTIONS(1698), 2, + sym_numeric_literal, + sym_character_literal, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + STATE(633), 6, + sym__general_expression_position, + sym__calculation_expression, + sym_arithmetic_expression, + sym__data_object, + sym_structured_data_object, + sym_attribute_access_static, + [20170] = 5, + ACTIONS(53), 1, + sym_field_symbol_name, + ACTIONS(1525), 1, + sym_name, + ACTIONS(1700), 2, + sym_numeric_literal, + sym_character_literal, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + STATE(629), 6, + sym__general_expression_position, + sym__calculation_expression, + sym_arithmetic_expression, + sym__data_object, + sym_structured_data_object, + sym_attribute_access_static, + [20194] = 5, + ACTIONS(53), 1, + sym_field_symbol_name, + ACTIONS(1525), 1, + sym_name, + ACTIONS(1702), 2, + sym_numeric_literal, + sym_character_literal, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + STATE(641), 6, + sym__general_expression_position, + sym__calculation_expression, + sym_arithmetic_expression, + sym__data_object, + sym_structured_data_object, + sym_attribute_access_static, + [20218] = 10, + ACTIONS(1442), 1, + aux_sym__create_addition_token1, + ACTIONS(1704), 1, + aux_sym_class_declaration_token4, + ACTIONS(1706), 1, + aux_sym_class_declaration_token6, + ACTIONS(1708), 1, + aux_sym_class_declaration_token7, + ACTIONS(1710), 1, + aux_sym_class_declaration_token8, + ACTIONS(1712), 1, + aux_sym_class_declaration_token11, + ACTIONS(1714), 1, + aux_sym_class_declaration_token12, + ACTIONS(1716), 1, + anon_sym_DOT, + STATE(1223), 1, + sym__create_addition, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + [20251] = 6, + ACTIONS(1325), 1, + aux_sym_variable_declaration_token1, + ACTIONS(1718), 1, + aux_sym_method_declaration_class_token1, + ACTIONS(1720), 1, + aux_sym_class_constructor_declaration_token1, + ACTIONS(1722), 1, + aux_sym_interface_declaration_token2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + STATE(612), 5, + sym_class_method_declaration_interface, + sym__interface_components, + sym_method_declaration_interface, + sym_variable_declaration, + aux_sym_interface_declaration_repeat1, + [20276] = 10, + ACTIONS(1339), 1, aux_sym__method_declaration_changing_token1, - ACTIONS(1316), 1, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(1320), 1, + ACTIONS(1345), 1, aux_sym_returning_parameter_token1, - ACTIONS(1710), 1, + ACTIONS(1724), 1, anon_sym_DOT, - STATE(815), 1, + STATE(683), 1, sym__method_declaration_changing, - STATE(1056), 1, + STATE(1144), 1, sym_returning_parameter, - STATE(1884), 1, + STATE(1540), 1, sym__method_declaration_raising, - STATE(2271), 1, + STATE(2135), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [20309] = 6, + ACTIONS(1325), 1, + aux_sym_variable_declaration_token1, + ACTIONS(1718), 1, + aux_sym_method_declaration_class_token1, + ACTIONS(1720), 1, + aux_sym_class_constructor_declaration_token1, + ACTIONS(1726), 1, + aux_sym_interface_declaration_token2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [19698] = 10, - ACTIONS(1314), 1, + sym_eol_comment, + STATE(609), 5, + sym_class_method_declaration_interface, + sym__interface_components, + sym_method_declaration_interface, + sym_variable_declaration, + aux_sym_interface_declaration_repeat1, + [20334] = 10, + ACTIONS(1339), 1, aux_sym__method_declaration_changing_token1, - ACTIONS(1316), 1, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(1320), 1, + ACTIONS(1345), 1, aux_sym_returning_parameter_token1, - ACTIONS(1712), 1, + ACTIONS(1728), 1, anon_sym_DOT, - STATE(687), 1, + STATE(788), 1, sym__method_declaration_changing, - STATE(1135), 1, + STATE(1080), 1, sym_returning_parameter, - STATE(1889), 1, + STATE(1833), 1, sym__method_declaration_raising, - STATE(3039), 1, + STATE(2286), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [19730] = 10, - ACTIONS(1314), 1, + sym_eol_comment, + [20367] = 10, + ACTIONS(1339), 1, aux_sym__method_declaration_changing_token1, - ACTIONS(1316), 1, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(1320), 1, + ACTIONS(1345), 1, aux_sym_returning_parameter_token1, - ACTIONS(1714), 1, + ACTIONS(1730), 1, anon_sym_DOT, - STATE(683), 1, + STATE(872), 1, sym__method_declaration_changing, - STATE(1137), 1, + STATE(1053), 1, sym_returning_parameter, - STATE(1689), 1, + STATE(1850), 1, sym__method_declaration_raising, - STATE(2132), 1, + STATE(2643), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [19762] = 6, - ACTIONS(1302), 1, - aux_sym_variable_declaration_token1, - ACTIONS(1696), 1, - aux_sym_method_declaration_class_token1, - ACTIONS(1698), 1, - aux_sym_class_constructor_declaration_token1, - ACTIONS(1716), 1, - aux_sym_interface_declaration_token2, - ACTIONS(3), 2, sym_eol_comment, + [20400] = 10, + ACTIONS(1339), 1, + aux_sym__method_declaration_changing_token1, + ACTIONS(1341), 1, + aux_sym__method_declaration_raising_token1, + ACTIONS(1343), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(1345), 1, + aux_sym_returning_parameter_token1, + ACTIONS(1732), 1, + anon_sym_DOT, + STATE(747), 1, + sym__method_declaration_changing, + STATE(1087), 1, + sym_returning_parameter, + STATE(1575), 1, + sym__method_declaration_raising, + STATE(3035), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - STATE(598), 5, - sym_class_method_declaration_interface, - sym__interface_components, - sym_method_declaration_interface, - sym_variable_declaration, - aux_sym_interface_declaration_repeat1, - [19786] = 10, - ACTIONS(1462), 1, + sym_eol_comment, + [20433] = 10, + ACTIONS(1442), 1, aux_sym__create_addition_token1, - ACTIONS(1718), 1, + ACTIONS(1734), 1, aux_sym_class_declaration_token4, - ACTIONS(1720), 1, + ACTIONS(1736), 1, aux_sym_class_declaration_token6, - ACTIONS(1722), 1, + ACTIONS(1738), 1, aux_sym_class_declaration_token7, - ACTIONS(1724), 1, + ACTIONS(1740), 1, aux_sym_class_declaration_token8, - ACTIONS(1726), 1, + ACTIONS(1742), 1, aux_sym_class_declaration_token11, - ACTIONS(1728), 1, + ACTIONS(1744), 1, aux_sym_class_declaration_token12, - ACTIONS(1730), 1, + ACTIONS(1746), 1, anon_sym_DOT, - STATE(1414), 1, + STATE(1202), 1, sym__create_addition, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [19818] = 10, - ACTIONS(1314), 1, + sym_eol_comment, + [20466] = 10, + ACTIONS(1339), 1, aux_sym__method_declaration_changing_token1, - ACTIONS(1316), 1, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(1320), 1, + ACTIONS(1345), 1, aux_sym_returning_parameter_token1, - ACTIONS(1732), 1, + ACTIONS(1748), 1, anon_sym_DOT, - STATE(978), 1, + STATE(787), 1, sym__method_declaration_changing, - STATE(1170), 1, + STATE(1078), 1, sym_returning_parameter, - STATE(1660), 1, + STATE(1560), 1, sym__method_declaration_raising, - STATE(2702), 1, + STATE(3052), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [19850] = 10, - ACTIONS(1314), 1, + sym_eol_comment, + [20499] = 10, + ACTIONS(1339), 1, aux_sym__method_declaration_changing_token1, - ACTIONS(1316), 1, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(1320), 1, + ACTIONS(1345), 1, aux_sym_returning_parameter_token1, - ACTIONS(1734), 1, + ACTIONS(1750), 1, anon_sym_DOT, - STATE(806), 1, + STATE(980), 1, sym__method_declaration_changing, - STATE(1060), 1, + STATE(1181), 1, sym_returning_parameter, - STATE(1524), 1, + STATE(1660), 1, sym__method_declaration_raising, - STATE(2865), 1, + STATE(2940), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - [19882] = 10, - ACTIONS(1462), 1, - aux_sym__create_addition_token1, - ACTIONS(1736), 1, - aux_sym_class_declaration_token4, - ACTIONS(1738), 1, - aux_sym_class_declaration_token6, - ACTIONS(1740), 1, - aux_sym_class_declaration_token7, - ACTIONS(1742), 1, - aux_sym_class_declaration_token8, - ACTIONS(1744), 1, - aux_sym_class_declaration_token11, - ACTIONS(1746), 1, - aux_sym_class_declaration_token12, - ACTIONS(1748), 1, - anon_sym_DOT, - STATE(1403), 1, - sym__create_addition, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [19914] = 8, - ACTIONS(3), 1, sym_eol_comment, - ACTIONS(5), 1, - sym_bol_comment, - ACTIONS(1222), 1, - anon_sym_STAR, - ACTIONS(1226), 1, + [20532] = 7, + ACTIONS(1237), 1, anon_sym_STAR_STAR, - ACTIONS(1750), 1, - anon_sym_DOT, + ACTIONS(1259), 1, + anon_sym_STAR, ACTIONS(1752), 1, + anon_sym_DOT, + ACTIONS(1754), 1, aux_sym_loop_statement_token5, - ACTIONS(1344), 2, + ACTIONS(1523), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1224), 3, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + ACTIONS(1261), 3, anon_sym_SLASH, anon_sym_DIV, anon_sym_MOD, - [19942] = 10, - ACTIONS(1314), 1, + [20559] = 10, + ACTIONS(1339), 1, aux_sym__method_declaration_changing_token1, - ACTIONS(1316), 1, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(1320), 1, + ACTIONS(1345), 1, aux_sym_returning_parameter_token1, - ACTIONS(1754), 1, + ACTIONS(1756), 1, anon_sym_DOT, - STATE(744), 1, + STATE(652), 1, sym__method_declaration_changing, - STATE(1087), 1, + STATE(1028), 1, sym_returning_parameter, - STATE(1569), 1, + STATE(1533), 1, sym__method_declaration_raising, - STATE(2915), 1, + STATE(2190), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - [19974] = 6, - ACTIONS(1302), 1, - aux_sym_variable_declaration_token1, - ACTIONS(1696), 1, - aux_sym_method_declaration_class_token1, - ACTIONS(1698), 1, - aux_sym_class_constructor_declaration_token1, - ACTIONS(1756), 1, - aux_sym_interface_declaration_token2, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - STATE(602), 5, - sym_class_method_declaration_interface, - sym__interface_components, - sym_method_declaration_interface, - sym_variable_declaration, - aux_sym_interface_declaration_repeat1, - [19998] = 6, - ACTIONS(1302), 1, - aux_sym_variable_declaration_token1, - ACTIONS(1696), 1, - aux_sym_method_declaration_class_token1, - ACTIONS(1698), 1, - aux_sym_class_constructor_declaration_token1, - ACTIONS(1716), 1, - aux_sym_interface_declaration_token2, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - STATE(601), 5, - sym_class_method_declaration_interface, - sym__interface_components, - sym_method_declaration_interface, - sym_variable_declaration, - aux_sym_interface_declaration_repeat1, - [20022] = 8, - ACTIONS(3), 1, sym_eol_comment, - ACTIONS(5), 1, - sym_bol_comment, - ACTIONS(1222), 1, - anon_sym_STAR, - ACTIONS(1226), 1, + [20592] = 7, + ACTIONS(1263), 1, anon_sym_STAR_STAR, - ACTIONS(1599), 1, - anon_sym_DOT, - ACTIONS(1603), 1, - aux_sym_loop_statement_token5, - ACTIONS(1344), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1224), 3, - anon_sym_SLASH, - anon_sym_DIV, - anon_sym_MOD, - [20050] = 8, - ACTIONS(3), 1, - sym_eol_comment, - ACTIONS(5), 1, - sym_bol_comment, - ACTIONS(1222), 1, + ACTIONS(1265), 1, anon_sym_STAR, - ACTIONS(1226), 1, - anon_sym_STAR_STAR, ACTIONS(1758), 1, sym_name, ACTIONS(1760), 1, anon_sym_RBRACK, - ACTIONS(1344), 2, + ACTIONS(1357), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1224), 3, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + ACTIONS(1267), 3, anon_sym_SLASH, anon_sym_DIV, anon_sym_MOD, - [20078] = 6, + [20619] = 10, + ACTIONS(1339), 1, + aux_sym__method_declaration_changing_token1, + ACTIONS(1341), 1, + aux_sym__method_declaration_raising_token1, + ACTIONS(1343), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(1345), 1, + aux_sym_returning_parameter_token1, ACTIONS(1762), 1, - aux_sym_method_declaration_class_token1, - ACTIONS(1765), 1, - aux_sym_class_constructor_declaration_token1, - ACTIONS(1768), 1, - aux_sym_interface_declaration_token2, - ACTIONS(1770), 1, - aux_sym_variable_declaration_token1, - ACTIONS(3), 2, - sym_eol_comment, + anon_sym_DOT, + STATE(905), 1, + sym__method_declaration_changing, + STATE(1036), 1, + sym_returning_parameter, + STATE(1603), 1, + sym__method_declaration_raising, + STATE(3018), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - STATE(598), 5, - sym_class_method_declaration_interface, - sym__interface_components, - sym_method_declaration_interface, - sym_variable_declaration, - aux_sym_interface_declaration_repeat1, - [20102] = 8, - ACTIONS(3), 1, sym_eol_comment, - ACTIONS(5), 1, - sym_bol_comment, - ACTIONS(1222), 1, - anon_sym_STAR, - ACTIONS(1226), 1, - anon_sym_STAR_STAR, - ACTIONS(1635), 1, - anon_sym_DOT, - ACTIONS(1639), 1, - aux_sym_loop_statement_token5, - ACTIONS(1344), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1224), 3, - anon_sym_SLASH, - anon_sym_DIV, - anon_sym_MOD, - [20130] = 6, - ACTIONS(1302), 1, + [20652] = 6, + ACTIONS(1325), 1, aux_sym_variable_declaration_token1, - ACTIONS(1696), 1, + ACTIONS(1718), 1, aux_sym_method_declaration_class_token1, - ACTIONS(1698), 1, + ACTIONS(1720), 1, aux_sym_class_constructor_declaration_token1, - ACTIONS(1756), 1, + ACTIONS(1764), 1, aux_sym_interface_declaration_token2, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - STATE(598), 5, - sym_class_method_declaration_interface, - sym__interface_components, - sym_method_declaration_interface, - sym_variable_declaration, - aux_sym_interface_declaration_repeat1, - [20154] = 6, - ACTIONS(1302), 1, - aux_sym_variable_declaration_token1, - ACTIONS(1696), 1, - aux_sym_method_declaration_class_token1, - ACTIONS(1698), 1, - aux_sym_class_constructor_declaration_token1, - ACTIONS(1773), 1, - aux_sym_interface_declaration_token2, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - STATE(598), 5, + STATE(610), 5, sym_class_method_declaration_interface, sym__interface_components, sym_method_declaration_interface, sym_variable_declaration, aux_sym_interface_declaration_repeat1, - [20178] = 6, - ACTIONS(1302), 1, - aux_sym_variable_declaration_token1, - ACTIONS(1696), 1, - aux_sym_method_declaration_class_token1, - ACTIONS(1698), 1, - aux_sym_class_constructor_declaration_token1, - ACTIONS(1775), 1, - aux_sym_interface_declaration_token2, - ACTIONS(3), 2, - sym_eol_comment, + [20677] = 10, + ACTIONS(1339), 1, + aux_sym__method_declaration_changing_token1, + ACTIONS(1341), 1, + aux_sym__method_declaration_raising_token1, + ACTIONS(1343), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(1345), 1, + aux_sym_returning_parameter_token1, + ACTIONS(1766), 1, + anon_sym_DOT, + STATE(762), 1, + sym__method_declaration_changing, + STATE(1088), 1, + sym_returning_parameter, + STATE(1568), 1, + sym__method_declaration_raising, + STATE(3037), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - STATE(598), 5, - sym_class_method_declaration_interface, - sym__interface_components, - sym_method_declaration_interface, - sym_variable_declaration, - aux_sym_interface_declaration_repeat1, - [20202] = 6, - ACTIONS(1302), 1, + sym_eol_comment, + [20710] = 6, + ACTIONS(1325), 1, aux_sym_variable_declaration_token1, - ACTIONS(1696), 1, + ACTIONS(1718), 1, aux_sym_method_declaration_class_token1, - ACTIONS(1698), 1, + ACTIONS(1720), 1, aux_sym_class_constructor_declaration_token1, - ACTIONS(1777), 1, + ACTIONS(1768), 1, aux_sym_interface_declaration_token2, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - STATE(587), 5, + sym_eol_comment, + STATE(612), 5, sym_class_method_declaration_interface, sym__interface_components, sym_method_declaration_interface, sym_variable_declaration, aux_sym_interface_declaration_repeat1, - [20226] = 10, - ACTIONS(1314), 1, + [20735] = 10, + ACTIONS(1339), 1, aux_sym__method_declaration_changing_token1, - ACTIONS(1316), 1, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(1320), 1, + ACTIONS(1345), 1, aux_sym_returning_parameter_token1, - ACTIONS(1779), 1, + ACTIONS(1770), 1, anon_sym_DOT, - STATE(675), 1, + STATE(815), 1, sym__method_declaration_changing, - STATE(1149), 1, + STATE(1061), 1, sym_returning_parameter, - STATE(1900), 1, + STATE(1884), 1, sym__method_declaration_raising, - STATE(3059), 1, + STATE(2340), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [20768] = 7, + ACTIONS(1237), 1, + anon_sym_STAR_STAR, + ACTIONS(1259), 1, + anon_sym_STAR, + ACTIONS(1623), 1, + anon_sym_DOT, + ACTIONS(1627), 1, + aux_sym_loop_statement_token5, + ACTIONS(1523), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [20258] = 10, - ACTIONS(1314), 1, + sym_eol_comment, + ACTIONS(1261), 3, + anon_sym_SLASH, + anon_sym_DIV, + anon_sym_MOD, + [20795] = 10, + ACTIONS(1339), 1, aux_sym__method_declaration_changing_token1, - ACTIONS(1316), 1, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(1320), 1, + ACTIONS(1345), 1, aux_sym_returning_parameter_token1, - ACTIONS(1781), 1, + ACTIONS(1772), 1, anon_sym_DOT, - STATE(734), 1, + STATE(738), 1, sym__method_declaration_changing, - STATE(1093), 1, + STATE(1095), 1, sym_returning_parameter, - STATE(1898), 1, + STATE(1797), 1, sym__method_declaration_raising, - STATE(2270), 1, + STATE(2271), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [20290] = 10, - ACTIONS(1314), 1, + sym_eol_comment, + [20828] = 10, + ACTIONS(1339), 1, aux_sym__method_declaration_changing_token1, - ACTIONS(1316), 1, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(1320), 1, + ACTIONS(1345), 1, aux_sym_returning_parameter_token1, - ACTIONS(1783), 1, + ACTIONS(1774), 1, anon_sym_DOT, - STATE(901), 1, + STATE(679), 1, sym__method_declaration_changing, - STATE(1036), 1, + STATE(1152), 1, sym_returning_parameter, - STATE(1596), 1, + STATE(1878), 1, sym__method_declaration_raising, - STATE(2793), 1, + STATE(2316), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [20861] = 6, + ACTIONS(1237), 1, + anon_sym_STAR_STAR, + ACTIONS(1259), 1, + anon_sym_STAR, + ACTIONS(1523), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1776), 2, + anon_sym_DOT, + anon_sym_COMMA, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [20322] = 10, - ACTIONS(1314), 1, + sym_eol_comment, + ACTIONS(1261), 3, + anon_sym_SLASH, + anon_sym_DIV, + anon_sym_MOD, + [20886] = 10, + ACTIONS(1339), 1, aux_sym__method_declaration_changing_token1, - ACTIONS(1316), 1, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(1320), 1, + ACTIONS(1345), 1, aux_sym_returning_parameter_token1, - ACTIONS(1785), 1, + ACTIONS(1778), 1, anon_sym_DOT, - STATE(646), 1, + STATE(692), 1, sym__method_declaration_changing, - STATE(1186), 1, + STATE(1137), 1, sym_returning_parameter, - STATE(1644), 1, + STATE(1657), 1, sym__method_declaration_raising, - STATE(2188), 1, + STATE(2196), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [20919] = 6, + ACTIONS(1325), 1, + aux_sym_variable_declaration_token1, + ACTIONS(1718), 1, + aux_sym_method_declaration_class_token1, + ACTIONS(1720), 1, + aux_sym_class_constructor_declaration_token1, + ACTIONS(1780), 1, + aux_sym_interface_declaration_token2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [20354] = 7, - ACTIONS(3), 1, sym_eol_comment, - ACTIONS(5), 1, + STATE(612), 5, + sym_class_method_declaration_interface, + sym__interface_components, + sym_method_declaration_interface, + sym_variable_declaration, + aux_sym_interface_declaration_repeat1, + [20944] = 6, + ACTIONS(1325), 1, + aux_sym_variable_declaration_token1, + ACTIONS(1718), 1, + aux_sym_method_declaration_class_token1, + ACTIONS(1720), 1, + aux_sym_class_constructor_declaration_token1, + ACTIONS(1782), 1, + aux_sym_interface_declaration_token2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1222), 1, - anon_sym_STAR, - ACTIONS(1226), 1, + sym_eol_comment, + STATE(612), 5, + sym_class_method_declaration_interface, + sym__interface_components, + sym_method_declaration_interface, + sym_variable_declaration, + aux_sym_interface_declaration_repeat1, + [20969] = 6, + ACTIONS(1325), 1, + aux_sym_variable_declaration_token1, + ACTIONS(1718), 1, + aux_sym_method_declaration_class_token1, + ACTIONS(1720), 1, + aux_sym_class_constructor_declaration_token1, + ACTIONS(1780), 1, + aux_sym_interface_declaration_token2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + STATE(602), 5, + sym_class_method_declaration_interface, + sym__interface_components, + sym_method_declaration_interface, + sym_variable_declaration, + aux_sym_interface_declaration_repeat1, + [20994] = 6, + ACTIONS(1784), 1, + aux_sym_method_declaration_class_token1, + ACTIONS(1787), 1, + aux_sym_class_constructor_declaration_token1, + ACTIONS(1790), 1, + aux_sym_interface_declaration_token2, + ACTIONS(1792), 1, + aux_sym_variable_declaration_token1, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + STATE(612), 5, + sym_class_method_declaration_interface, + sym__interface_components, + sym_method_declaration_interface, + sym_variable_declaration, + aux_sym_interface_declaration_repeat1, + [21019] = 7, + ACTIONS(1237), 1, anon_sym_STAR_STAR, - ACTIONS(1344), 2, + ACTIONS(1259), 1, + anon_sym_STAR, + ACTIONS(1647), 1, + anon_sym_DOT, + ACTIONS(1651), 1, + aux_sym_loop_statement_token5, + ACTIONS(1523), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1787), 2, - anon_sym_DOT, - anon_sym_COMMA, - ACTIONS(1224), 3, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + ACTIONS(1261), 3, anon_sym_SLASH, anon_sym_DIV, anon_sym_MOD, - [20380] = 10, - ACTIONS(1314), 1, + [21046] = 10, + ACTIONS(1339), 1, aux_sym__method_declaration_changing_token1, - ACTIONS(1316), 1, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(1320), 1, + ACTIONS(1345), 1, aux_sym_returning_parameter_token1, - ACTIONS(1789), 1, + ACTIONS(1795), 1, anon_sym_DOT, - STATE(742), 1, + STATE(813), 1, sym__method_declaration_changing, - STATE(1083), 1, + STATE(1062), 1, sym_returning_parameter, - STATE(1571), 1, + STATE(1511), 1, sym__method_declaration_raising, - STATE(2912), 1, + STATE(3120), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [20412] = 7, - ACTIONS(3), 1, sym_eol_comment, - ACTIONS(5), 1, + [21079] = 6, + ACTIONS(1325), 1, + aux_sym_variable_declaration_token1, + ACTIONS(1718), 1, + aux_sym_method_declaration_class_token1, + ACTIONS(1720), 1, + aux_sym_class_constructor_declaration_token1, + ACTIONS(1782), 1, + aux_sym_interface_declaration_token2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1222), 1, - anon_sym_STAR, - ACTIONS(1226), 1, + sym_eol_comment, + STATE(587), 5, + sym_class_method_declaration_interface, + sym__interface_components, + sym_method_declaration_interface, + sym_variable_declaration, + aux_sym_interface_declaration_repeat1, + [21104] = 7, + ACTIONS(1237), 1, anon_sym_STAR_STAR, - ACTIONS(1791), 1, + ACTIONS(1259), 1, + anon_sym_STAR, + ACTIONS(1797), 1, anon_sym_DOT, - ACTIONS(1344), 2, + ACTIONS(1799), 1, + aux_sym_loop_statement_token5, + ACTIONS(1523), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1224), 3, - anon_sym_SLASH, - anon_sym_DIV, - anon_sym_MOD, - [20437] = 7, - ACTIONS(3), 1, - sym_eol_comment, - ACTIONS(5), 1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1222), 1, - anon_sym_STAR, - ACTIONS(1226), 1, - anon_sym_STAR_STAR, - ACTIONS(1793), 1, - anon_sym_RPAREN, - ACTIONS(1344), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1224), 3, + sym_eol_comment, + ACTIONS(1261), 3, anon_sym_SLASH, anon_sym_DIV, anon_sym_MOD, - [20462] = 7, - ACTIONS(3), 1, - sym_eol_comment, - ACTIONS(5), 1, + [21131] = 4, + ACTIONS(1801), 1, + sym_name, + STATE(619), 2, + sym_parameter_binding_exporting, + aux_sym_parameter_list_exporting_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1222), 1, - anon_sym_STAR, - ACTIONS(1226), 1, + sym_eol_comment, + ACTIONS(1803), 5, + anon_sym_DOT, + aux_sym__method_declaration_importing_token1, + aux_sym__method_declaration_exporting_token1, + aux_sym__method_declaration_changing_token1, + aux_sym__method_declaration_exceptions_token1, + [21151] = 6, + ACTIONS(1237), 1, anon_sym_STAR_STAR, - ACTIONS(1795), 1, + ACTIONS(1259), 1, + anon_sym_STAR, + ACTIONS(1805), 1, anon_sym_DOT, - ACTIONS(1344), 2, + ACTIONS(1523), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1224), 3, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + ACTIONS(1261), 3, anon_sym_SLASH, anon_sym_DIV, anon_sym_MOD, - [20487] = 4, - ACTIONS(1797), 1, + [21175] = 4, + ACTIONS(1807), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - STATE(624), 2, + STATE(619), 2, sym_parameter_binding_exporting, aux_sym_parameter_list_exporting_repeat1, - ACTIONS(1799), 5, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + ACTIONS(1810), 5, anon_sym_DOT, aux_sym__method_declaration_importing_token1, aux_sym__method_declaration_exporting_token1, aux_sym__method_declaration_changing_token1, aux_sym__method_declaration_exceptions_token1, - [20506] = 7, - ACTIONS(3), 1, - sym_eol_comment, - ACTIONS(5), 1, - sym_bol_comment, - ACTIONS(1222), 1, - anon_sym_STAR, - ACTIONS(1226), 1, + [21195] = 6, + ACTIONS(1237), 1, anon_sym_STAR_STAR, - ACTIONS(1801), 1, + ACTIONS(1259), 1, + anon_sym_STAR, + ACTIONS(1797), 1, anon_sym_DOT, - ACTIONS(1344), 2, + ACTIONS(1523), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1224), 3, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + ACTIONS(1261), 3, anon_sym_SLASH, anon_sym_DIV, anon_sym_MOD, - [20531] = 9, - ACTIONS(1462), 1, + [21219] = 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + ACTIONS(567), 8, + aux_sym_class_declaration_token13, + aux_sym__create_addition_token2, + aux_sym__create_addition_token3, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, + aux_sym_interface_declaration_token2, + aux_sym_variable_declaration_token1, + [21235] = 9, + ACTIONS(1442), 1, aux_sym__create_addition_token1, - ACTIONS(1803), 1, + ACTIONS(1812), 1, aux_sym_class_declaration_token6, - ACTIONS(1805), 1, + ACTIONS(1814), 1, aux_sym_class_declaration_token7, - ACTIONS(1807), 1, + ACTIONS(1816), 1, aux_sym_class_declaration_token8, - ACTIONS(1809), 1, + ACTIONS(1818), 1, aux_sym_class_declaration_token11, - ACTIONS(1811), 1, + ACTIONS(1820), 1, aux_sym_class_declaration_token12, - ACTIONS(1813), 1, + ACTIONS(1822), 1, anon_sym_DOT, - STATE(1380), 1, + STATE(1258), 1, sym__create_addition, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [20560] = 9, - ACTIONS(1462), 1, + sym_eol_comment, + [21265] = 9, + ACTIONS(1442), 1, aux_sym__create_addition_token1, - ACTIONS(1815), 1, + ACTIONS(1824), 1, aux_sym_class_declaration_token6, - ACTIONS(1817), 1, + ACTIONS(1826), 1, aux_sym_class_declaration_token7, - ACTIONS(1819), 1, + ACTIONS(1828), 1, aux_sym_class_declaration_token8, - ACTIONS(1821), 1, + ACTIONS(1830), 1, aux_sym_class_declaration_token11, - ACTIONS(1823), 1, + ACTIONS(1832), 1, aux_sym_class_declaration_token12, - ACTIONS(1825), 1, + ACTIONS(1834), 1, anon_sym_DOT, - STATE(1375), 1, + STATE(1198), 1, sym__create_addition, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [20589] = 7, - ACTIONS(3), 1, sym_eol_comment, - ACTIONS(5), 1, - sym_bol_comment, - ACTIONS(1222), 1, - anon_sym_STAR, - ACTIONS(1226), 1, + [21295] = 6, + ACTIONS(1237), 1, anon_sym_STAR_STAR, - ACTIONS(1827), 1, - anon_sym_DOT, - ACTIONS(1344), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1224), 3, - anon_sym_SLASH, - anon_sym_DIV, - anon_sym_MOD, - [20614] = 7, - ACTIONS(3), 1, - sym_eol_comment, - ACTIONS(5), 1, - sym_bol_comment, - ACTIONS(1222), 1, + ACTIONS(1259), 1, anon_sym_STAR, - ACTIONS(1226), 1, - anon_sym_STAR_STAR, - ACTIONS(1829), 1, + ACTIONS(1836), 1, anon_sym_RPAREN, - ACTIONS(1344), 2, + ACTIONS(1523), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1224), 3, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + ACTIONS(1261), 3, anon_sym_SLASH, anon_sym_DIV, anon_sym_MOD, - [20639] = 7, - ACTIONS(3), 1, - sym_eol_comment, - ACTIONS(5), 1, - sym_bol_comment, - ACTIONS(1222), 1, - anon_sym_STAR, - ACTIONS(1226), 1, + [21319] = 6, + ACTIONS(1237), 1, anon_sym_STAR_STAR, - ACTIONS(1831), 1, - anon_sym_RPAREN, - ACTIONS(1344), 2, + ACTIONS(1259), 1, + anon_sym_STAR, + ACTIONS(1838), 1, + anon_sym_DOT, + ACTIONS(1523), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1224), 3, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + ACTIONS(1261), 3, anon_sym_SLASH, anon_sym_DIV, anon_sym_MOD, - [20664] = 7, - ACTIONS(3), 1, - sym_eol_comment, - ACTIONS(5), 1, - sym_bol_comment, - ACTIONS(1222), 1, - anon_sym_STAR, - ACTIONS(1226), 1, + [21343] = 6, + ACTIONS(1237), 1, anon_sym_STAR_STAR, - ACTIONS(1635), 1, + ACTIONS(1259), 1, + anon_sym_STAR, + ACTIONS(1647), 1, anon_sym_DOT, - ACTIONS(1344), 2, + ACTIONS(1523), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1224), 3, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + ACTIONS(1261), 3, anon_sym_SLASH, anon_sym_DIV, anon_sym_MOD, - [20689] = 7, - ACTIONS(3), 1, - sym_eol_comment, - ACTIONS(5), 1, - sym_bol_comment, - ACTIONS(1222), 1, - anon_sym_STAR, - ACTIONS(1226), 1, + [21367] = 6, + ACTIONS(1237), 1, anon_sym_STAR_STAR, - ACTIONS(1833), 1, - anon_sym_RPAREN, - ACTIONS(1344), 2, + ACTIONS(1259), 1, + anon_sym_STAR, + ACTIONS(1623), 1, + anon_sym_DOT, + ACTIONS(1523), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1224), 3, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + ACTIONS(1261), 3, anon_sym_SLASH, anon_sym_DIV, anon_sym_MOD, - [20714] = 7, - ACTIONS(3), 1, - sym_eol_comment, - ACTIONS(5), 1, - sym_bol_comment, - ACTIONS(1222), 1, - anon_sym_STAR, - ACTIONS(1226), 1, + [21391] = 6, + ACTIONS(1237), 1, anon_sym_STAR_STAR, - ACTIONS(1835), 1, - anon_sym_RPAREN, - ACTIONS(1344), 2, + ACTIONS(1259), 1, + anon_sym_STAR, + ACTIONS(1840), 1, + anon_sym_DOT, + ACTIONS(1523), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1224), 3, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + ACTIONS(1261), 3, anon_sym_SLASH, anon_sym_DIV, anon_sym_MOD, - [20739] = 7, - ACTIONS(3), 1, - sym_eol_comment, - ACTIONS(5), 1, - sym_bol_comment, - ACTIONS(1222), 1, - anon_sym_STAR, - ACTIONS(1226), 1, + [21415] = 6, + ACTIONS(1237), 1, anon_sym_STAR_STAR, - ACTIONS(1837), 1, - anon_sym_RPAREN, - ACTIONS(1344), 2, + ACTIONS(1259), 1, + anon_sym_STAR, + ACTIONS(1842), 1, + aux_sym_select_statement_obsolete_token3, + ACTIONS(1523), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1224), 3, - anon_sym_SLASH, - anon_sym_DIV, - anon_sym_MOD, - [20764] = 4, - ACTIONS(1839), 1, - sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - STATE(624), 2, - sym_parameter_binding_exporting, - aux_sym_parameter_list_exporting_repeat1, - ACTIONS(1842), 5, - anon_sym_DOT, - aux_sym__method_declaration_importing_token1, - aux_sym__method_declaration_exporting_token1, - aux_sym__method_declaration_changing_token1, - aux_sym__method_declaration_exceptions_token1, - [20783] = 7, - ACTIONS(3), 1, sym_eol_comment, - ACTIONS(5), 1, - sym_bol_comment, - ACTIONS(1222), 1, - anon_sym_STAR, - ACTIONS(1226), 1, - anon_sym_STAR_STAR, - ACTIONS(1844), 1, - anon_sym_DOT, - ACTIONS(1344), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1224), 3, + ACTIONS(1261), 3, anon_sym_SLASH, anon_sym_DIV, anon_sym_MOD, - [20808] = 7, - ACTIONS(3), 1, - sym_eol_comment, - ACTIONS(5), 1, - sym_bol_comment, - ACTIONS(1222), 1, - anon_sym_STAR, - ACTIONS(1226), 1, + [21439] = 6, + ACTIONS(1237), 1, anon_sym_STAR_STAR, - ACTIONS(1599), 1, + ACTIONS(1259), 1, + anon_sym_STAR, + ACTIONS(1844), 1, anon_sym_DOT, - ACTIONS(1344), 2, + ACTIONS(1523), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1224), 3, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + ACTIONS(1261), 3, anon_sym_SLASH, anon_sym_DIV, anon_sym_MOD, - [20833] = 7, - ACTIONS(3), 1, - sym_eol_comment, - ACTIONS(5), 1, - sym_bol_comment, - ACTIONS(1222), 1, - anon_sym_STAR, - ACTIONS(1226), 1, + [21463] = 6, + ACTIONS(1237), 1, anon_sym_STAR_STAR, + ACTIONS(1259), 1, + anon_sym_STAR, ACTIONS(1846), 1, - aux_sym_select_statement_obsolete_token3, - ACTIONS(1344), 2, + anon_sym_DOT, + ACTIONS(1523), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1224), 3, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + ACTIONS(1261), 3, anon_sym_SLASH, anon_sym_DIV, anon_sym_MOD, - [20858] = 9, - ACTIONS(1462), 1, + [21487] = 9, + ACTIONS(1442), 1, aux_sym__create_addition_token1, ACTIONS(1848), 1, aux_sym_class_declaration_token6, @@ -32832,246 +33417,312 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_declaration_token12, ACTIONS(1858), 1, anon_sym_DOT, - STATE(1260), 1, + STATE(1197), 1, sym__create_addition, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [20887] = 7, - ACTIONS(3), 1, sym_eol_comment, - ACTIONS(5), 1, - sym_bol_comment, - ACTIONS(1222), 1, - anon_sym_STAR, - ACTIONS(1226), 1, + [21517] = 6, + ACTIONS(1237), 1, anon_sym_STAR_STAR, + ACTIONS(1259), 1, + anon_sym_STAR, ACTIONS(1860), 1, - anon_sym_DOT, - ACTIONS(1344), 2, + aux_sym_select_statement_obsolete_token3, + ACTIONS(1523), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1224), 3, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + ACTIONS(1261), 3, anon_sym_SLASH, anon_sym_DIV, anon_sym_MOD, - [20912] = 9, - ACTIONS(1462), 1, - aux_sym__create_addition_token1, + [21541] = 6, + ACTIONS(1237), 1, + anon_sym_STAR_STAR, + ACTIONS(1259), 1, + anon_sym_STAR, ACTIONS(1862), 1, - aux_sym_class_declaration_token6, - ACTIONS(1864), 1, - aux_sym_class_declaration_token7, - ACTIONS(1866), 1, - aux_sym_class_declaration_token8, - ACTIONS(1868), 1, - aux_sym_class_declaration_token11, - ACTIONS(1870), 1, - aux_sym_class_declaration_token12, - ACTIONS(1872), 1, anon_sym_DOT, - STATE(1227), 1, - sym__create_addition, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(1523), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [20941] = 7, - ACTIONS(3), 1, sym_eol_comment, - ACTIONS(5), 1, - sym_bol_comment, - ACTIONS(1222), 1, - anon_sym_STAR, - ACTIONS(1226), 1, + ACTIONS(1261), 3, + anon_sym_SLASH, + anon_sym_DIV, + anon_sym_MOD, + [21565] = 6, + ACTIONS(1237), 1, anon_sym_STAR_STAR, - ACTIONS(1874), 1, - anon_sym_DOT, - ACTIONS(1344), 2, + ACTIONS(1259), 1, + anon_sym_STAR, + ACTIONS(1864), 1, + anon_sym_RPAREN, + ACTIONS(1523), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1224), 3, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + ACTIONS(1261), 3, anon_sym_SLASH, anon_sym_DIV, anon_sym_MOD, - [20966] = 7, - ACTIONS(3), 1, - sym_eol_comment, - ACTIONS(5), 1, - sym_bol_comment, - ACTIONS(1222), 1, + [21589] = 6, + ACTIONS(1237), 1, + anon_sym_STAR_STAR, + ACTIONS(1259), 1, anon_sym_STAR, - ACTIONS(1226), 1, + ACTIONS(1866), 1, + anon_sym_RPAREN, + ACTIONS(1523), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + ACTIONS(1261), 3, + anon_sym_SLASH, + anon_sym_DIV, + anon_sym_MOD, + [21613] = 6, + ACTIONS(1237), 1, anon_sym_STAR_STAR, - ACTIONS(1750), 1, - anon_sym_DOT, - ACTIONS(1344), 2, + ACTIONS(1259), 1, + anon_sym_STAR, + ACTIONS(1868), 1, + anon_sym_RBRACK, + ACTIONS(1523), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1224), 3, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + ACTIONS(1261), 3, anon_sym_SLASH, anon_sym_DIV, anon_sym_MOD, - [20991] = 9, - ACTIONS(1310), 1, + [21637] = 9, + ACTIONS(1335), 1, aux_sym__method_declaration_importing_token1, - ACTIONS(1316), 1, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(1876), 1, + ACTIONS(1870), 1, aux_sym_class_declaration_token7, - ACTIONS(1878), 1, + ACTIONS(1872), 1, anon_sym_DOT, - STATE(1165), 1, + STATE(1176), 1, sym__method_declaration_importing, - STATE(1637), 1, + STATE(1644), 1, sym__method_declaration_raising, - STATE(2746), 1, + STATE(2979), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [21020] = 7, - ACTIONS(3), 1, sym_eol_comment, - ACTIONS(5), 1, + [21667] = 6, + ACTIONS(1237), 1, + anon_sym_STAR_STAR, + ACTIONS(1259), 1, + anon_sym_STAR, + ACTIONS(1874), 1, + anon_sym_RPAREN, + ACTIONS(1523), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1222), 1, + sym_eol_comment, + ACTIONS(1261), 3, + anon_sym_SLASH, + anon_sym_DIV, + anon_sym_MOD, + [21691] = 6, + ACTIONS(1237), 1, + anon_sym_STAR_STAR, + ACTIONS(1259), 1, anon_sym_STAR, - ACTIONS(1226), 1, + ACTIONS(1876), 1, + anon_sym_RPAREN, + ACTIONS(1523), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + ACTIONS(1261), 3, + anon_sym_SLASH, + anon_sym_DIV, + anon_sym_MOD, + [21715] = 6, + ACTIONS(1237), 1, anon_sym_STAR_STAR, - ACTIONS(1880), 1, - anon_sym_RBRACK, - ACTIONS(1344), 2, + ACTIONS(1259), 1, + anon_sym_STAR, + ACTIONS(1752), 1, + anon_sym_DOT, + ACTIONS(1523), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1224), 3, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + ACTIONS(1261), 3, anon_sym_SLASH, anon_sym_DIV, anon_sym_MOD, - [21045] = 6, - ACTIONS(1290), 1, + [21739] = 9, + ACTIONS(1442), 1, + aux_sym__create_addition_token1, + ACTIONS(1878), 1, + aux_sym_class_declaration_token6, + ACTIONS(1880), 1, + aux_sym_class_declaration_token7, + ACTIONS(1882), 1, + aux_sym_class_declaration_token8, + ACTIONS(1884), 1, + aux_sym_class_declaration_token11, + ACTIONS(1886), 1, + aux_sym_class_declaration_token12, + ACTIONS(1888), 1, + anon_sym_DOT, + STATE(1244), 1, + sym__create_addition, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + [21769] = 6, + ACTIONS(1299), 1, anon_sym_BANG, - ACTIONS(1371), 1, + ACTIONS(1363), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1375), 2, + ACTIONS(1367), 2, aux_sym_method_parameters_token1, aux_sym_method_parameters_token2, - STATE(485), 2, + STATE(487), 2, sym_method_parameters, aux_sym__method_declaration_importing_repeat1, - STATE(1067), 2, + STATE(1069), 2, sym__operand, sym__escaped_operand, - [21068] = 6, - ACTIONS(1290), 1, - anon_sym_BANG, - ACTIONS(1371), 1, - sym_name, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [21793] = 6, + ACTIONS(1237), 1, + anon_sym_STAR_STAR, + ACTIONS(1259), 1, + anon_sym_STAR, + ACTIONS(1890), 1, + anon_sym_DOT, + ACTIONS(1523), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1375), 2, - aux_sym_method_parameters_token1, - aux_sym_method_parameters_token2, - STATE(496), 2, - sym_method_parameters, - aux_sym__method_declaration_importing_repeat1, - STATE(1067), 2, - sym__operand, - sym__escaped_operand, - [21091] = 6, - ACTIONS(1290), 1, + sym_eol_comment, + ACTIONS(1261), 3, + anon_sym_SLASH, + anon_sym_DIV, + anon_sym_MOD, + [21817] = 6, + ACTIONS(1299), 1, anon_sym_BANG, - ACTIONS(1371), 1, + ACTIONS(1363), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1375), 2, + ACTIONS(1367), 2, aux_sym_method_parameters_token1, aux_sym_method_parameters_token2, - STATE(510), 2, + STATE(497), 2, sym_method_parameters, aux_sym__method_declaration_importing_repeat1, - STATE(1067), 2, + STATE(1069), 2, sym__operand, sym__escaped_operand, - [21114] = 7, - ACTIONS(3), 1, - sym_eol_comment, - ACTIONS(5), 1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1222), 1, - anon_sym_STAR, - ACTIONS(1226), 1, + sym_eol_comment, + [21841] = 6, + ACTIONS(1237), 1, anon_sym_STAR_STAR, - ACTIONS(1882), 1, + ACTIONS(1259), 1, + anon_sym_STAR, + ACTIONS(1892), 1, anon_sym_DOT, - ACTIONS(1344), 2, + ACTIONS(1523), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1224), 3, - anon_sym_SLASH, - anon_sym_DIV, - anon_sym_MOD, - [21139] = 2, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(614), 8, - aux_sym_class_declaration_token13, - aux_sym__create_addition_token2, - aux_sym__create_addition_token3, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_chained_interface_declaration_token1, - aux_sym_interface_declaration_token2, - aux_sym_variable_declaration_token1, - [21154] = 7, - ACTIONS(3), 1, sym_eol_comment, - ACTIONS(5), 1, - sym_bol_comment, - ACTIONS(1222), 1, - anon_sym_STAR, - ACTIONS(1226), 1, - anon_sym_STAR_STAR, - ACTIONS(1884), 1, - aux_sym_select_statement_obsolete_token3, - ACTIONS(1344), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1224), 3, + ACTIONS(1261), 3, anon_sym_SLASH, anon_sym_DIV, anon_sym_MOD, - [21179] = 7, - ACTIONS(3), 1, - sym_eol_comment, - ACTIONS(5), 1, + [21865] = 6, + ACTIONS(1299), 1, + anon_sym_BANG, + ACTIONS(1363), 1, + sym_name, + ACTIONS(1367), 2, + aux_sym_method_parameters_token1, + aux_sym_method_parameters_token2, + STATE(515), 2, + sym_method_parameters, + aux_sym__method_declaration_importing_repeat1, + STATE(1069), 2, + sym__operand, + sym__escaped_operand, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1222), 1, - anon_sym_STAR, - ACTIONS(1226), 1, + sym_eol_comment, + [21889] = 6, + ACTIONS(1237), 1, anon_sym_STAR_STAR, - ACTIONS(1702), 1, - anon_sym_DOT, - ACTIONS(1344), 2, + ACTIONS(1259), 1, + anon_sym_STAR, + ACTIONS(1894), 1, + anon_sym_RPAREN, + ACTIONS(1523), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1224), 3, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + ACTIONS(1261), 3, anon_sym_SLASH, anon_sym_DIV, anon_sym_MOD, - [21204] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [21913] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1886), 7, + sym_eol_comment, + ACTIONS(1896), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -33079,11 +33730,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [21218] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [21928] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1888), 7, + sym_eol_comment, + ACTIONS(1898), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -33091,176 +33743,145 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [21232] = 8, - ACTIONS(1890), 1, - aux_sym_class_declaration_token3, - ACTIONS(1892), 1, - aux_sym_class_declaration_token13, - ACTIONS(1894), 1, - aux_sym__create_addition_token2, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - STATE(1102), 1, - sym_public_section, - STATE(1579), 1, - sym_protected_section, - STATE(2956), 1, - sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - [21258] = 8, - ACTIONS(1462), 1, - aux_sym__create_addition_token1, - ACTIONS(1898), 1, - aux_sym_class_declaration_token7, - ACTIONS(1900), 1, - aux_sym_class_declaration_token8, - ACTIONS(1902), 1, - aux_sym_class_declaration_token11, - ACTIONS(1904), 1, - aux_sym_class_declaration_token12, - ACTIONS(1906), 1, - anon_sym_DOT, - STATE(1323), 1, - sym__create_addition, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - [21284] = 8, - ACTIONS(1316), 1, + [21943] = 8, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(1320), 1, + ACTIONS(1345), 1, aux_sym_returning_parameter_token1, - ACTIONS(1908), 1, + ACTIONS(1900), 1, anon_sym_DOT, - STATE(1053), 1, + STATE(1059), 1, sym_returning_parameter, - STATE(1903), 1, + STATE(1893), 1, sym__method_declaration_raising, - STATE(2284), 1, + STATE(2348), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - [21310] = 5, - ACTIONS(1910), 1, - anon_sym_DASH2, - ACTIONS(1912), 1, - anon_sym_EQ_GT, - STATE(702), 1, - aux_sym_structured_data_object_repeat1, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(381), 4, - anon_sym_DOT, - aux_sym_method_parameters_token1, - anon_sym_COMMA, - aux_sym__data_object_typing_normal_token5, - [21330] = 2, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(1914), 7, - aux_sym_class_declaration_token13, - aux_sym__create_addition_token2, - aux_sym__create_addition_token3, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_chained_interface_declaration_token1, - aux_sym_variable_declaration_token1, - [21344] = 8, - ACTIONS(1316), 1, + [21970] = 8, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(1320), 1, + ACTIONS(1345), 1, aux_sym_returning_parameter_token1, - ACTIONS(1916), 1, + ACTIONS(1902), 1, anon_sym_DOT, - STATE(1055), 1, + STATE(1058), 1, sym_returning_parameter, - STATE(1897), 1, + STATE(1907), 1, sym__method_declaration_raising, - STATE(2274), 1, + STATE(2371), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [21997] = 8, + ACTIONS(1904), 1, + aux_sym_class_declaration_token3, + ACTIONS(1906), 1, + aux_sym_class_declaration_token13, + ACTIONS(1908), 1, + aux_sym__create_addition_token2, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + STATE(1111), 1, + sym_public_section, + STATE(1777), 1, + sym_protected_section, + STATE(2763), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [21370] = 8, - ACTIONS(1890), 1, + sym_eol_comment, + [22024] = 8, + ACTIONS(1904), 1, aux_sym_class_declaration_token3, - ACTIONS(1894), 1, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(1918), 1, + ACTIONS(1912), 1, aux_sym_class_declaration_token13, - STATE(1103), 1, + STATE(1112), 1, sym_public_section, - STATE(1820), 1, + STATE(1842), 1, sym_protected_section, - STATE(2367), 1, + STATE(2666), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [21396] = 2, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(1920), 7, - aux_sym_class_declaration_token13, + [22051] = 8, + ACTIONS(1904), 1, + aux_sym_class_declaration_token3, + ACTIONS(1908), 1, aux_sym__create_addition_token2, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_chained_interface_declaration_token1, - aux_sym_variable_declaration_token1, - [21410] = 8, - ACTIONS(1890), 1, + ACTIONS(1914), 1, + aux_sym_class_declaration_token13, + STATE(1104), 1, + sym_public_section, + STATE(1758), 1, + sym_protected_section, + STATE(2782), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + [22078] = 8, + ACTIONS(1904), 1, aux_sym_class_declaration_token3, - ACTIONS(1894), 1, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(1922), 1, + ACTIONS(1916), 1, aux_sym_class_declaration_token13, - STATE(1179), 1, + STATE(1084), 1, sym_public_section, - STATE(1640), 1, + STATE(1686), 1, sym_protected_section, - STATE(2733), 1, + STATE(2223), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [21436] = 8, - ACTIONS(1462), 1, + sym_eol_comment, + [22105] = 8, + ACTIONS(1442), 1, aux_sym__create_addition_token1, - ACTIONS(1924), 1, + ACTIONS(1918), 1, aux_sym_class_declaration_token7, - ACTIONS(1926), 1, + ACTIONS(1920), 1, aux_sym_class_declaration_token8, - ACTIONS(1928), 1, + ACTIONS(1922), 1, aux_sym_class_declaration_token11, - ACTIONS(1930), 1, + ACTIONS(1924), 1, aux_sym_class_declaration_token12, - ACTIONS(1932), 1, + ACTIONS(1926), 1, anon_sym_DOT, - STATE(1358), 1, + STATE(1233), 1, sym__create_addition, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [21462] = 2, - ACTIONS(3), 2, sym_eol_comment, + [22132] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1934), 7, + sym_eol_comment, + ACTIONS(1928), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -33268,61 +33889,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [21476] = 4, - ACTIONS(1910), 1, - anon_sym_DASH2, - STATE(702), 1, - aux_sym_structured_data_object_repeat1, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(381), 5, - anon_sym_DOT, - aux_sym_method_parameters_token1, - anon_sym_COMMA, - aux_sym__data_object_typing_normal_token5, - anon_sym_EQ, - [21494] = 8, - ACTIONS(1890), 1, + [22147] = 8, + ACTIONS(1904), 1, aux_sym_class_declaration_token3, - ACTIONS(1894), 1, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(1936), 1, + ACTIONS(1930), 1, aux_sym_class_declaration_token13, - STATE(1104), 1, + STATE(1102), 1, sym_public_section, - STATE(1703), 1, + STATE(1906), 1, sym_protected_section, - STATE(2961), 1, + STATE(2368), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [21520] = 8, - ACTIONS(1462), 1, + sym_eol_comment, + [22174] = 8, + ACTIONS(1442), 1, aux_sym__create_addition_token1, - ACTIONS(1938), 1, + ACTIONS(1932), 1, aux_sym_class_declaration_token7, - ACTIONS(1940), 1, + ACTIONS(1934), 1, aux_sym_class_declaration_token8, - ACTIONS(1942), 1, + ACTIONS(1936), 1, aux_sym_class_declaration_token11, - ACTIONS(1944), 1, + ACTIONS(1938), 1, aux_sym_class_declaration_token12, - ACTIONS(1946), 1, + ACTIONS(1940), 1, anon_sym_DOT, - STATE(1366), 1, + STATE(1195), 1, sym__create_addition, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [21546] = 2, - ACTIONS(3), 2, sym_eol_comment, + [22201] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1948), 7, + sym_eol_comment, + ACTIONS(1942), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -33330,11 +33940,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [21560] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [22216] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1950), 7, + sym_eol_comment, + ACTIONS(1944), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -33342,131 +33953,171 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [21574] = 8, - ACTIONS(1890), 1, + [22231] = 8, + ACTIONS(1442), 1, + aux_sym__create_addition_token1, + ACTIONS(1946), 1, + aux_sym_class_declaration_token7, + ACTIONS(1948), 1, + aux_sym_class_declaration_token8, + ACTIONS(1950), 1, + aux_sym_class_declaration_token11, + ACTIONS(1952), 1, + aux_sym_class_declaration_token12, + ACTIONS(1954), 1, + anon_sym_DOT, + STATE(1196), 1, + sym__create_addition, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + [22258] = 8, + ACTIONS(1904), 1, aux_sym_class_declaration_token3, - ACTIONS(1894), 1, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(1952), 1, + ACTIONS(1956), 1, aux_sym_class_declaration_token13, - STATE(1116), 1, + STATE(1106), 1, sym_public_section, - STATE(1766), 1, + STATE(1768), 1, sym_protected_section, - STATE(2989), 1, + STATE(2776), 1, sym_private_section, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [22285] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [21600] = 8, - ACTIONS(1890), 1, - aux_sym_class_declaration_token3, - ACTIONS(1894), 1, + sym_eol_comment, + ACTIONS(1958), 7, + aux_sym_class_declaration_token13, aux_sym__create_addition_token2, - ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(1954), 1, - aux_sym_class_declaration_token13, - STATE(1118), 1, - sym_public_section, - STATE(1773), 1, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, + aux_sym_variable_declaration_token1, + [22300] = 8, + ACTIONS(1904), 1, + aux_sym_class_declaration_token3, + ACTIONS(1908), 1, + aux_sym__create_addition_token2, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(1960), 1, + aux_sym_class_declaration_token13, + STATE(1079), 1, + sym_public_section, + STATE(1774), 1, sym_protected_section, - STATE(2999), 1, + STATE(2270), 1, sym_private_section, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [22327] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [21626] = 8, - ACTIONS(1890), 1, + sym_eol_comment, + ACTIONS(1962), 7, + aux_sym_class_declaration_token13, + aux_sym__create_addition_token2, + aux_sym__create_addition_token3, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, + aux_sym_variable_declaration_token1, + [22342] = 8, + ACTIONS(1904), 1, aux_sym_class_declaration_token3, - ACTIONS(1894), 1, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(1956), 1, + ACTIONS(1964), 1, aux_sym_class_declaration_token13, - STATE(1109), 1, + STATE(1118), 1, sym_public_section, - STATE(1504), 1, + STATE(1867), 1, sym_protected_section, - STATE(2975), 1, + STATE(2446), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [21652] = 8, - ACTIONS(1890), 1, + sym_eol_comment, + [22369] = 8, + ACTIONS(1904), 1, aux_sym_class_declaration_token3, - ACTIONS(1894), 1, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(1958), 1, + ACTIONS(1966), 1, aux_sym_class_declaration_token13, - STATE(1073), 1, + STATE(1120), 1, sym_public_section, - STATE(1793), 1, + STATE(1886), 1, sym_protected_section, - STATE(2227), 1, + STATE(2422), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [21678] = 8, - ACTIONS(1316), 1, + sym_eol_comment, + [22396] = 8, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(1320), 1, + ACTIONS(1345), 1, aux_sym_returning_parameter_token1, - ACTIONS(1960), 1, + ACTIONS(1968), 1, anon_sym_DOT, - STATE(1082), 1, + STATE(1085), 1, sym_returning_parameter, - STATE(1568), 1, + STATE(1571), 1, sym__method_declaration_raising, - STATE(2911), 1, + STATE(3038), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [21704] = 8, - ACTIONS(1462), 1, + sym_eol_comment, + [22423] = 8, + ACTIONS(1442), 1, aux_sym__create_addition_token1, - ACTIONS(1962), 1, + ACTIONS(1970), 1, aux_sym_class_declaration_token7, - ACTIONS(1964), 1, + ACTIONS(1972), 1, aux_sym_class_declaration_token8, - ACTIONS(1966), 1, + ACTIONS(1974), 1, aux_sym_class_declaration_token11, - ACTIONS(1968), 1, + ACTIONS(1976), 1, aux_sym_class_declaration_token12, - ACTIONS(1970), 1, + ACTIONS(1978), 1, anon_sym_DOT, - STATE(1397), 1, + STATE(1200), 1, sym__create_addition, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [21730] = 2, - ACTIONS(3), 2, sym_eol_comment, + [22450] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1972), 7, - aux_sym_class_declaration_token13, - aux_sym__create_addition_token2, - aux_sym__create_addition_token3, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_chained_interface_declaration_token1, - aux_sym_variable_declaration_token1, - [21744] = 2, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(1974), 7, + ACTIONS(1980), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -33474,100 +34125,82 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [21758] = 7, - ACTIONS(1976), 1, - anon_sym_DOT, - ACTIONS(1980), 1, - aux_sym__method_declaration_exporting_token1, - ACTIONS(1982), 1, - aux_sym__method_declaration_exceptions_token1, - STATE(1006), 1, - aux_sym__function_parameter_list, - STATE(2460), 1, - sym_exception_list, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1978), 2, - aux_sym__method_declaration_importing_token1, - aux_sym__method_declaration_changing_token1, - [21782] = 8, - ACTIONS(1890), 1, + [22465] = 8, + ACTIONS(1904), 1, aux_sym_class_declaration_token3, - ACTIONS(1894), 1, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(1984), 1, + ACTIONS(1982), 1, aux_sym_class_declaration_token13, - STATE(1079), 1, + STATE(1083), 1, sym_public_section, - STATE(1736), 1, + STATE(1870), 1, sym_protected_section, - STATE(2184), 1, + STATE(2242), 1, sym_private_section, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [22492] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [21808] = 8, - ACTIONS(1890), 1, - aux_sym_class_declaration_token3, - ACTIONS(1894), 1, + sym_eol_comment, + ACTIONS(1984), 7, + aux_sym_class_declaration_token13, aux_sym__create_addition_token2, - ACTIONS(1896), 1, aux_sym__create_addition_token3, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, + aux_sym_variable_declaration_token1, + [22507] = 8, + ACTIONS(1341), 1, + aux_sym__method_declaration_raising_token1, + ACTIONS(1343), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(1345), 1, + aux_sym_returning_parameter_token1, ACTIONS(1986), 1, - aux_sym_class_declaration_token13, - STATE(1080), 1, - sym_public_section, - STATE(1729), 1, - sym_protected_section, - STATE(2176), 1, - sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + anon_sym_DOT, + STATE(1076), 1, + sym_returning_parameter, + STATE(1558), 1, + sym__method_declaration_raising, + STATE(3055), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [21834] = 8, - ACTIONS(1462), 1, + sym_eol_comment, + [22534] = 8, + ACTIONS(1442), 1, aux_sym__create_addition_token1, - ACTIONS(1740), 1, + ACTIONS(1738), 1, aux_sym_class_declaration_token7, - ACTIONS(1742), 1, + ACTIONS(1740), 1, aux_sym_class_declaration_token8, - ACTIONS(1744), 1, + ACTIONS(1742), 1, aux_sym_class_declaration_token11, - ACTIONS(1746), 1, + ACTIONS(1744), 1, aux_sym_class_declaration_token12, - ACTIONS(1748), 1, + ACTIONS(1746), 1, anon_sym_DOT, - STATE(1403), 1, + STATE(1202), 1, sym__create_addition, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [21860] = 8, - ACTIONS(1316), 1, - aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(1320), 1, - aux_sym_returning_parameter_token1, - ACTIONS(1988), 1, - anon_sym_DOT, - STATE(1074), 1, - sym_returning_parameter, - STATE(1871), 1, - sym__method_declaration_raising, - STATE(2897), 1, - sym__method_declaration_exceptions, - ACTIONS(3), 2, sym_eol_comment, + [22561] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [21886] = 2, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(1990), 7, + ACTIONS(1988), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -33575,46 +34208,68 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [21900] = 7, - ACTIONS(1980), 1, - aux_sym__method_declaration_exporting_token1, - ACTIONS(1982), 1, + [22576] = 8, + ACTIONS(1341), 1, + aux_sym__method_declaration_raising_token1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(1992), 1, + ACTIONS(1345), 1, + aux_sym_returning_parameter_token1, + ACTIONS(1990), 1, anon_sym_DOT, - STATE(668), 1, - aux_sym__function_parameter_list, - STATE(2444), 1, - sym_exception_list, - ACTIONS(3), 2, - sym_eol_comment, + STATE(1051), 1, + sym_returning_parameter, + STATE(1844), 1, + sym__method_declaration_raising, + STATE(2656), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1978), 2, - aux_sym__method_declaration_importing_token1, - aux_sym__method_declaration_changing_token1, - [21924] = 8, - ACTIONS(1316), 1, + sym_eol_comment, + [22603] = 8, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(1320), 1, + ACTIONS(1345), 1, aux_sym_returning_parameter_token1, - ACTIONS(1994), 1, + ACTIONS(1992), 1, anon_sym_DOT, - STATE(1069), 1, + STATE(1071), 1, sym_returning_parameter, - STATE(1511), 1, + STATE(1550), 1, sym__method_declaration_raising, - STATE(2888), 1, + STATE(3072), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [22630] = 7, + ACTIONS(1994), 1, + anon_sym_DOT, + ACTIONS(1998), 1, + aux_sym__method_declaration_exporting_token1, + ACTIONS(2000), 1, + aux_sym__method_declaration_exceptions_token1, + STATE(1010), 1, + aux_sym__function_parameter_list, + STATE(2461), 1, + sym_exception_list, + ACTIONS(1996), 2, + aux_sym__method_declaration_importing_token1, + aux_sym__method_declaration_changing_token1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [21950] = 2, - ACTIONS(3), 2, sym_eol_comment, + [22655] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1996), 7, + sym_eol_comment, + ACTIONS(2002), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -33622,65 +34277,68 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [21964] = 8, - ACTIONS(1890), 1, + [22670] = 8, + ACTIONS(1904), 1, aux_sym_class_declaration_token3, - ACTIONS(1894), 1, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(1998), 1, + ACTIONS(2004), 1, aux_sym_class_declaration_token13, - STATE(1150), 1, + STATE(1086), 1, sym_public_section, - STATE(1639), 1, + STATE(1652), 1, sym_protected_section, - STATE(2945), 1, + STATE(2213), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [21990] = 8, - ACTIONS(1316), 1, + sym_eol_comment, + [22697] = 8, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(1320), 1, + ACTIONS(1345), 1, aux_sym_returning_parameter_token1, - ACTIONS(2000), 1, + ACTIONS(2006), 1, anon_sym_DOT, STATE(1046), 1, sym_returning_parameter, - STATE(1842), 1, + STATE(1822), 1, sym__method_declaration_raising, - STATE(2348), 1, + STATE(2691), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [22016] = 8, - ACTIONS(1890), 1, - aux_sym_class_declaration_token3, - ACTIONS(1894), 1, - aux_sym__create_addition_token2, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(2002), 1, - aux_sym_class_declaration_token13, - STATE(1081), 1, - sym_public_section, - STATE(1720), 1, - sym_protected_section, - STATE(2168), 1, - sym_private_section, - ACTIONS(3), 2, sym_eol_comment, + [22724] = 7, + ACTIONS(1998), 1, + aux_sym__method_declaration_exporting_token1, + ACTIONS(2000), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(2008), 1, + anon_sym_DOT, + STATE(680), 1, + aux_sym__function_parameter_list, + STATE(2444), 1, + sym_exception_list, + ACTIONS(1996), 2, + aux_sym__method_declaration_importing_token1, + aux_sym__method_declaration_changing_token1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [22042] = 2, - ACTIONS(3), 2, sym_eol_comment, + [22749] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2004), 7, + sym_eol_comment, + ACTIONS(2010), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -33688,11 +34346,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [22056] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [22764] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2006), 7, + sym_eol_comment, + ACTIONS(2012), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -33700,47 +34359,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [22070] = 8, - ACTIONS(1462), 1, - aux_sym__create_addition_token1, - ACTIONS(2008), 1, - aux_sym_class_declaration_token7, - ACTIONS(2010), 1, - aux_sym_class_declaration_token8, - ACTIONS(2012), 1, - aux_sym_class_declaration_token11, + [22779] = 8, + ACTIONS(1904), 1, + aux_sym_class_declaration_token3, + ACTIONS(1908), 1, + aux_sym__create_addition_token2, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, ACTIONS(2014), 1, - aux_sym_class_declaration_token12, - ACTIONS(2016), 1, - anon_sym_DOT, - STATE(1210), 1, - sym__create_addition, - ACTIONS(3), 2, - sym_eol_comment, + aux_sym_class_declaration_token13, + STATE(1148), 1, + sym_public_section, + STATE(1656), 1, + sym_protected_section, + STATE(2945), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [22096] = 8, - ACTIONS(1316), 1, - aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(1320), 1, - aux_sym_returning_parameter_token1, - ACTIONS(2018), 1, - anon_sym_DOT, - STATE(1042), 1, - sym_returning_parameter, - STATE(1816), 1, - sym__method_declaration_raising, - STATE(2358), 1, - sym__method_declaration_exceptions, - ACTIONS(3), 2, sym_eol_comment, + [22806] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [22122] = 2, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(2020), 7, + ACTIONS(2016), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -33748,29 +34391,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [22136] = 8, - ACTIONS(1316), 1, + [22821] = 8, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(1320), 1, + ACTIONS(1345), 1, aux_sym_returning_parameter_token1, - ACTIONS(2022), 1, + ACTIONS(2018), 1, anon_sym_DOT, - STATE(1058), 1, + STATE(1060), 1, sym_returning_parameter, - STATE(1526), 1, + STATE(1514), 1, sym__method_declaration_raising, - STATE(2863), 1, + STATE(3105), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [22162] = 2, - ACTIONS(3), 2, sym_eol_comment, + [22848] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2024), 7, + sym_eol_comment, + ACTIONS(2020), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -33778,47 +34423,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [22176] = 8, - ACTIONS(1316), 1, + [22863] = 8, + ACTIONS(1442), 1, + aux_sym__create_addition_token1, + ACTIONS(2022), 1, + aux_sym_class_declaration_token7, + ACTIONS(2024), 1, + aux_sym_class_declaration_token8, + ACTIONS(2026), 1, + aux_sym_class_declaration_token11, + ACTIONS(2028), 1, + aux_sym_class_declaration_token12, + ACTIONS(2030), 1, + anon_sym_DOT, + STATE(1335), 1, + sym__create_addition, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + [22890] = 8, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(1320), 1, + ACTIONS(1345), 1, aux_sym_returning_parameter_token1, - ACTIONS(2026), 1, + ACTIONS(2032), 1, anon_sym_DOT, - STATE(1054), 1, + STATE(1055), 1, sym_returning_parameter, - STATE(1533), 1, + STATE(1521), 1, sym__method_declaration_raising, - STATE(2855), 1, + STATE(3100), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [22202] = 8, - ACTIONS(1890), 1, - aux_sym_class_declaration_token3, - ACTIONS(1894), 1, - aux_sym__create_addition_token2, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(2028), 1, - aux_sym_class_declaration_token13, - STATE(1146), 1, - sym_public_section, - STATE(1603), 1, - sym_protected_section, - STATE(2939), 1, - sym_private_section, - ACTIONS(3), 2, sym_eol_comment, + [22917] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [22228] = 2, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(2030), 7, + ACTIONS(2034), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -33826,11 +34474,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [22242] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [22932] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2032), 7, + sym_eol_comment, + ACTIONS(2036), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -33838,11 +34487,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [22256] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [22947] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2034), 7, + sym_eol_comment, + ACTIONS(2038), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -33850,11 +34500,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [22270] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [22962] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2036), 7, + sym_eol_comment, + ACTIONS(2040), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -33862,11 +34513,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [22284] = 2, - ACTIONS(3), 2, + [22977] = 8, + ACTIONS(1904), 1, + aux_sym_class_declaration_token3, + ACTIONS(1908), 1, + aux_sym__create_addition_token2, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(2042), 1, + aux_sym_class_declaration_token13, + STATE(1146), 1, + sym_public_section, + STATE(1661), 1, + sym_protected_section, + STATE(2939), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [23004] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2038), 7, + sym_eol_comment, + ACTIONS(2044), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -33874,11 +34545,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [22298] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [23019] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2040), 7, + sym_eol_comment, + ACTIONS(2046), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -33886,276 +34558,239 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [22312] = 8, - ACTIONS(1890), 1, - aux_sym_class_declaration_token3, - ACTIONS(1894), 1, - aux_sym__create_addition_token2, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(2042), 1, - aux_sym_class_declaration_token13, - STATE(1141), 1, - sym_public_section, - STATE(1582), 1, - sym_protected_section, - STATE(2927), 1, - sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - [22338] = 8, - ACTIONS(1890), 1, + [23034] = 8, + ACTIONS(1904), 1, aux_sym_class_declaration_token3, - ACTIONS(1894), 1, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2044), 1, + ACTIONS(2048), 1, aux_sym_class_declaration_token13, - STATE(1119), 1, + STATE(1117), 1, sym_public_section, - STATE(1686), 1, + STATE(1830), 1, sym_protected_section, STATE(2677), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [22364] = 8, - ACTIONS(1890), 1, + sym_eol_comment, + [23061] = 8, + ACTIONS(1904), 1, aux_sym_class_declaration_token3, - ACTIONS(1894), 1, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2046), 1, + ACTIONS(2050), 1, aux_sym_class_declaration_token13, - STATE(1131), 1, + STATE(1134), 1, sym_public_section, - STATE(1577), 1, + STATE(1667), 1, sym_protected_section, - STATE(2919), 1, + STATE(2927), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [22390] = 7, - ACTIONS(1980), 1, + sym_eol_comment, + [23088] = 7, + ACTIONS(1998), 1, aux_sym__method_declaration_exporting_token1, - ACTIONS(1982), 1, + ACTIONS(2000), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(2048), 1, + ACTIONS(2052), 1, anon_sym_DOT, - STATE(1006), 1, + STATE(1010), 1, aux_sym__function_parameter_list, - STATE(2383), 1, + STATE(2384), 1, sym_exception_list, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(1978), 2, + ACTIONS(1996), 2, aux_sym__method_declaration_importing_token1, aux_sym__method_declaration_changing_token1, - [22414] = 8, - ACTIONS(1890), 1, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + [23113] = 8, + ACTIONS(1904), 1, aux_sym_class_declaration_token3, - ACTIONS(1894), 1, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2050), 1, + ACTIONS(2054), 1, aux_sym_class_declaration_token13, - STATE(1108), 1, + STATE(1132), 1, sym_public_section, - STATE(1678), 1, + STATE(1670), 1, sym_protected_section, - STATE(2684), 1, + STATE(2919), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [22440] = 8, - ACTIONS(1890), 1, + sym_eol_comment, + [23140] = 8, + ACTIONS(1904), 1, aux_sym_class_declaration_token3, - ACTIONS(1894), 1, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2052), 1, + ACTIONS(2056), 1, aux_sym_class_declaration_token13, - STATE(1034), 1, + STATE(1037), 1, sym_public_section, STATE(1594), 1, sym_protected_section, - STATE(2791), 1, + STATE(2984), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [22466] = 8, - ACTIONS(1890), 1, + sym_eol_comment, + [23167] = 8, + ACTIONS(1904), 1, aux_sym_class_declaration_token3, - ACTIONS(1894), 1, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2054), 1, + ACTIONS(2058), 1, aux_sym_class_declaration_token13, - STATE(1032), 1, + STATE(1109), 1, sym_public_section, - STATE(1601), 1, + STATE(1824), 1, sym_protected_section, - STATE(2784), 1, + STATE(2684), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [22492] = 4, - ACTIONS(1910), 1, - anon_sym_DASH2, - STATE(881), 1, - aux_sym_structured_data_object_repeat1, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(394), 5, - anon_sym_DOT, - aux_sym_method_parameters_token1, - anon_sym_COMMA, - aux_sym__data_object_typing_normal_token5, - anon_sym_EQ, - [22510] = 8, - ACTIONS(1890), 1, + [23194] = 8, + ACTIONS(1904), 1, aux_sym_class_declaration_token3, - ACTIONS(1894), 1, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2056), 1, + ACTIONS(2060), 1, aux_sym_class_declaration_token13, - STATE(1130), 1, + STATE(1143), 1, sym_public_section, - STATE(1567), 1, + STATE(1534), 1, sym_protected_section, - STATE(2908), 1, + STATE(2130), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [22536] = 8, - ACTIONS(1890), 1, + sym_eol_comment, + [23221] = 8, + ACTIONS(1904), 1, aux_sym_class_declaration_token3, - ACTIONS(1894), 1, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2058), 1, + ACTIONS(2062), 1, aux_sym_class_declaration_token13, - STATE(1139), 1, + STATE(1034), 1, sym_public_section, - STATE(1682), 1, + STATE(1601), 1, sym_protected_section, - STATE(2130), 1, + STATE(3019), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [22562] = 8, - ACTIONS(1890), 1, + sym_eol_comment, + [23248] = 8, + ACTIONS(1904), 1, aux_sym_class_declaration_token3, - ACTIONS(1894), 1, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2060), 1, + ACTIONS(2064), 1, aux_sym_class_declaration_token13, - STATE(1099), 1, + STATE(1131), 1, sym_public_section, - STATE(1670), 1, + STATE(1678), 1, sym_protected_section, - STATE(2689), 1, + STATE(2908), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [22588] = 8, - ACTIONS(1890), 1, + sym_eol_comment, + [23275] = 8, + ACTIONS(1904), 1, aux_sym_class_declaration_token3, - ACTIONS(1894), 1, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2062), 1, + ACTIONS(2066), 1, aux_sym_class_declaration_token13, - STATE(1026), 1, + STATE(1027), 1, sym_public_section, STATE(1613), 1, sym_protected_section, - STATE(2769), 1, + STATE(3004), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [22614] = 8, - ACTIONS(1890), 1, + sym_eol_comment, + [23302] = 8, + ACTIONS(1904), 1, aux_sym_class_declaration_token3, - ACTIONS(1894), 1, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2064), 1, + ACTIONS(2068), 1, aux_sym_class_declaration_token13, - STATE(1125), 1, + STATE(1031), 1, sym_public_section, - STATE(1558), 1, + STATE(1819), 1, sym_protected_section, - STATE(2899), 1, + STATE(2689), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [22640] = 8, - ACTIONS(1890), 1, - aux_sym_class_declaration_token3, - ACTIONS(1894), 1, - aux_sym__create_addition_token2, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(2066), 1, - aux_sym_class_declaration_token13, - STATE(1049), 1, - sym_public_section, - STATE(1880), 1, - sym_protected_section, - STATE(2303), 1, - sym_private_section, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [22666] = 8, - ACTIONS(1890), 1, + [23329] = 8, + ACTIONS(1904), 1, aux_sym_class_declaration_token3, - ACTIONS(1894), 1, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2068), 1, + ACTIONS(2070), 1, aux_sym_class_declaration_token13, - STATE(1043), 1, + STATE(1052), 1, sym_public_section, - STATE(1666), 1, + STATE(1859), 1, sym_protected_section, - STATE(2694), 1, + STATE(2304), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [22692] = 2, - ACTIONS(3), 2, sym_eol_comment, + [23356] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2070), 7, + sym_eol_comment, + ACTIONS(2072), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -34163,11 +34798,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [22706] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [23371] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2072), 7, + sym_eol_comment, + ACTIONS(2074), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -34175,11 +34811,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [22720] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [23386] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2074), 7, + sym_eol_comment, + ACTIONS(2076), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -34187,11 +34824,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [22734] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [23401] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2076), 7, + sym_eol_comment, + ACTIONS(2078), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -34199,11 +34837,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [22748] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [23416] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2078), 7, + sym_eol_comment, + ACTIONS(2080), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -34211,11 +34850,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [22762] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [23431] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2080), 7, + sym_eol_comment, + ACTIONS(2082), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -34223,29 +34863,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [22776] = 8, - ACTIONS(1890), 1, + [23446] = 8, + ACTIONS(1904), 1, aux_sym_class_declaration_token3, - ACTIONS(1894), 1, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2082), 1, + ACTIONS(2084), 1, aux_sym_class_declaration_token13, - STATE(1122), 1, + STATE(1123), 1, sym_public_section, - STATE(1506), 1, + STATE(1685), 1, sym_protected_section, - STATE(2895), 1, + STATE(2899), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [22802] = 2, - ACTIONS(3), 2, sym_eol_comment, + [23473] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2084), 7, + sym_eol_comment, + ACTIONS(2086), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -34253,153 +34895,200 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [22816] = 6, - ACTIONS(2086), 1, - sym_name, - ACTIONS(2088), 1, - aux_sym_complete_typing_token1, - ACTIONS(2090), 1, - aux_sym_generic_type_token2, - ACTIONS(2092), 1, - aux_sym__data_object_typing_normal_token1, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(2094), 3, - aux_sym__data_object_typing_itabs_token1, - aux_sym__data_object_typing_itabs_token2, - aux_sym__data_object_typing_itabs_token3, - [22838] = 8, - ACTIONS(1890), 1, + [23488] = 8, + ACTIONS(1904), 1, aux_sym_class_declaration_token3, - ACTIONS(1894), 1, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2096), 1, + ACTIONS(2088), 1, aux_sym_class_declaration_token13, - STATE(1129), 1, + STATE(1043), 1, sym_public_section, - STATE(1619), 1, + STATE(1816), 1, sym_protected_section, - STATE(2113), 1, + STATE(2694), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [22864] = 8, - ACTIONS(1890), 1, + sym_eol_comment, + [23515] = 8, + ACTIONS(1904), 1, aux_sym_class_declaration_token3, - ACTIONS(1894), 1, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2098), 1, + ACTIONS(2090), 1, aux_sym_class_declaration_token13, - STATE(1039), 1, + STATE(1133), 1, sym_public_section, - STATE(1663), 1, + STATE(1787), 1, sym_protected_section, - STATE(2699), 1, + STATE(2116), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [22890] = 8, - ACTIONS(1890), 1, + sym_eol_comment, + [23542] = 8, + ACTIONS(1904), 1, aux_sym_class_declaration_token3, - ACTIONS(1894), 1, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2100), 1, + ACTIONS(2092), 1, aux_sym_class_declaration_token13, - STATE(1121), 1, + STATE(1122), 1, sym_public_section, - STATE(1510), 1, + STATE(1688), 1, sym_protected_section, - STATE(2889), 1, + STATE(2895), 1, sym_private_section, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [23569] = 6, + ACTIONS(2094), 1, + sym_name, + ACTIONS(2096), 1, + aux_sym_complete_typing_token1, + ACTIONS(2098), 1, + aux_sym_generic_type_token2, + ACTIONS(2100), 1, + aux_sym__data_object_typing_normal_token1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [22916] = 8, - ACTIONS(1890), 1, + sym_eol_comment, + ACTIONS(2102), 3, + aux_sym__data_object_typing_itabs_token1, + aux_sym__data_object_typing_itabs_token2, + aux_sym__data_object_typing_itabs_token3, + [23592] = 8, + ACTIONS(1904), 1, aux_sym_class_declaration_token3, - ACTIONS(1894), 1, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2102), 1, + ACTIONS(2104), 1, aux_sym_class_declaration_token13, - STATE(1161), 1, + STATE(1156), 1, sym_public_section, STATE(1634), 1, sym_protected_section, - STATE(2743), 1, + STATE(2985), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [22942] = 8, - ACTIONS(1890), 1, + sym_eol_comment, + [23619] = 8, + ACTIONS(1904), 1, aux_sym_class_declaration_token3, - ACTIONS(1894), 1, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2104), 1, + ACTIONS(2106), 1, aux_sym_class_declaration_token13, - STATE(1117), 1, + STATE(1121), 1, sym_public_section, - STATE(1513), 1, + STATE(1693), 1, sym_protected_section, - STATE(2882), 1, + STATE(2889), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [22968] = 8, - ACTIONS(1890), 1, + sym_eol_comment, + [23646] = 8, + ACTIONS(1904), 1, aux_sym_class_declaration_token3, - ACTIONS(1894), 1, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2106), 1, + ACTIONS(2108), 1, aux_sym_class_declaration_token13, - STATE(1173), 1, + STATE(1170), 1, sym_public_section, STATE(1638), 1, sym_protected_section, - STATE(2738), 1, + STATE(2981), 1, sym_private_section, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [23673] = 8, + ACTIONS(1904), 1, + aux_sym_class_declaration_token3, + ACTIONS(1908), 1, + aux_sym__create_addition_token2, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(2110), 1, + aux_sym_class_declaration_token13, + STATE(1041), 1, + sym_public_section, + STATE(1814), 1, + sym_protected_section, + STATE(2699), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [22994] = 8, - ACTIONS(1890), 1, + sym_eol_comment, + [23700] = 8, + ACTIONS(1904), 1, aux_sym_class_declaration_token3, - ACTIONS(1894), 1, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2108), 1, + ACTIONS(2112), 1, aux_sym_class_declaration_token13, - STATE(1023), 1, + STATE(1032), 1, sym_public_section, - STATE(1657), 1, + STATE(1811), 1, sym_protected_section, STATE(2703), 1, sym_private_section, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [23727] = 8, + ACTIONS(1904), 1, + aux_sym_class_declaration_token3, + ACTIONS(1908), 1, + aux_sym__create_addition_token2, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(2114), 1, + aux_sym_class_declaration_token13, + STATE(1119), 1, + sym_public_section, + STATE(1697), 1, + sym_protected_section, + STATE(2882), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [23020] = 2, - ACTIONS(3), 2, sym_eol_comment, + [23754] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2110), 7, + sym_eol_comment, + ACTIONS(2116), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -34407,11 +35096,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [23034] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [23769] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2112), 7, + sym_eol_comment, + ACTIONS(2118), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -34419,59 +35109,63 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [23048] = 8, - ACTIONS(1890), 1, + [23784] = 8, + ACTIONS(1904), 1, aux_sym_class_declaration_token3, - ACTIONS(1894), 1, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2114), 1, + ACTIONS(2120), 1, aux_sym_class_declaration_token13, - STATE(1115), 1, + STATE(1116), 1, sym_public_section, - STATE(1517), 1, + STATE(1700), 1, sym_protected_section, STATE(2879), 1, sym_private_section, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [23811] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [23074] = 8, - ACTIONS(1890), 1, + sym_eol_comment, + ACTIONS(2122), 7, + aux_sym_class_declaration_token13, + aux_sym__create_addition_token2, + aux_sym__create_addition_token3, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, + aux_sym_variable_declaration_token1, + [23826] = 8, + ACTIONS(1904), 1, aux_sym_class_declaration_token3, - ACTIONS(1894), 1, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2116), 1, + ACTIONS(2124), 1, aux_sym_class_declaration_token13, - STATE(1114), 1, + STATE(1115), 1, sym_public_section, - STATE(1519), 1, + STATE(1704), 1, sym_protected_section, STATE(2872), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [23100] = 2, - ACTIONS(3), 2, sym_eol_comment, + [23853] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2118), 7, - aux_sym_class_declaration_token13, - aux_sym__create_addition_token2, - aux_sym__create_addition_token3, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_chained_interface_declaration_token1, - aux_sym_variable_declaration_token1, - [23114] = 2, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(2120), 7, + ACTIONS(2126), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -34479,11 +35173,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [23128] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [23868] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2122), 7, + sym_eol_comment, + ACTIONS(2128), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -34491,11 +35186,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [23142] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [23883] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2124), 7, + sym_eol_comment, + ACTIONS(2130), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -34503,29 +35199,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [23156] = 8, - ACTIONS(1316), 1, + [23898] = 8, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(1320), 1, + ACTIONS(1345), 1, aux_sym_returning_parameter_token1, - ACTIONS(2126), 1, + ACTIONS(2132), 1, anon_sym_DOT, - STATE(1120), 1, + STATE(1126), 1, sym_returning_parameter, - STATE(1607), 1, + STATE(1523), 1, sym__method_declaration_raising, - STATE(2101), 1, + STATE(2113), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [23182] = 2, - ACTIONS(3), 2, sym_eol_comment, + [23925] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2128), 7, + sym_eol_comment, + ACTIONS(2134), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -34533,101 +35231,107 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [23196] = 8, - ACTIONS(1890), 1, - aux_sym_class_declaration_token3, - ACTIONS(1894), 1, - aux_sym__create_addition_token2, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(2130), 1, - aux_sym_class_declaration_token13, - STATE(1124), 1, - sym_public_section, - STATE(1697), 1, - sym_protected_section, - STATE(2665), 1, - sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - [23222] = 8, - ACTIONS(1316), 1, + [23940] = 8, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(1320), 1, + ACTIONS(1345), 1, aux_sym_returning_parameter_token1, - ACTIONS(2132), 1, + ACTIONS(2136), 1, anon_sym_DOT, - STATE(1132), 1, + STATE(1139), 1, sym_returning_parameter, - STATE(1672), 1, + STATE(1538), 1, sym__method_declaration_raising, - STATE(2180), 1, + STATE(2128), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [23248] = 8, - ACTIONS(1890), 1, + sym_eol_comment, + [23967] = 8, + ACTIONS(1904), 1, aux_sym_class_declaration_token3, - ACTIONS(1894), 1, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2134), 1, + ACTIONS(2138), 1, aux_sym_class_declaration_token13, - STATE(1107), 1, + STATE(1125), 1, sym_public_section, - STATE(1525), 1, + STATE(1837), 1, sym_protected_section, - STATE(2864), 1, + STATE(2665), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [23274] = 8, - ACTIONS(1316), 1, + sym_eol_comment, + [23994] = 8, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(1320), 1, + ACTIONS(1345), 1, aux_sym_returning_parameter_token1, - ACTIONS(2136), 1, + ACTIONS(2140), 1, anon_sym_DOT, - STATE(1157), 1, + STATE(1171), 1, sym_returning_parameter, STATE(1664), 1, sym__method_declaration_raising, - STATE(2698), 1, + STATE(2938), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [23300] = 8, - ACTIONS(1890), 1, + sym_eol_comment, + [24021] = 8, + ACTIONS(1904), 1, aux_sym_class_declaration_token3, - ACTIONS(1894), 1, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2138), 1, + ACTIONS(2142), 1, aux_sym_class_declaration_token13, - STATE(1111), 1, + STATE(1113), 1, sym_public_section, - STATE(1547), 1, + STATE(1515), 1, sym_protected_section, - STATE(2082), 1, + STATE(2091), 1, sym_private_section, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [24048] = 8, + ACTIONS(1904), 1, + aux_sym_class_declaration_token3, + ACTIONS(1908), 1, + aux_sym__create_addition_token2, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(2144), 1, + aux_sym_class_declaration_token13, + STATE(1108), 1, + sym_public_section, + STATE(1708), 1, + sym_protected_section, + STATE(2864), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [23326] = 2, - ACTIONS(3), 2, sym_eol_comment, + [24075] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2140), 7, + sym_eol_comment, + ACTIONS(2146), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -34635,29 +35339,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [23340] = 8, - ACTIONS(1316), 1, - aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(1320), 1, - aux_sym_returning_parameter_token1, - ACTIONS(2142), 1, - anon_sym_DOT, - STATE(1143), 1, - sym_returning_parameter, - STATE(1674), 1, - sym__method_declaration_raising, - STATE(2687), 1, - sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + [24090] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [23366] = 2, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(2144), 7, + ACTIONS(2148), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -34665,52 +35352,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [23380] = 8, - ACTIONS(1316), 1, + [24105] = 8, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(1320), 1, + ACTIONS(1345), 1, aux_sym_returning_parameter_token1, - ACTIONS(2146), 1, + ACTIONS(2150), 1, anon_sym_DOT, - STATE(1126), 1, + STATE(1141), 1, sym_returning_parameter, - STATE(1812), 1, + STATE(1674), 1, sym__method_declaration_raising, - STATE(2922), 1, + STATE(2915), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - [23406] = 2, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2148), 7, - aux_sym_class_declaration_token13, - aux_sym__create_addition_token2, - aux_sym__create_addition_token3, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_chained_interface_declaration_token1, - aux_sym_variable_declaration_token1, - [23420] = 2, - ACTIONS(3), 2, sym_eol_comment, + [24132] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2150), 7, - aux_sym_class_declaration_token13, - aux_sym__create_addition_token2, - aux_sym__create_addition_token3, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_chained_interface_declaration_token1, - aux_sym_variable_declaration_token1, - [23434] = 2, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, ACTIONS(2152), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, @@ -34719,10 +35384,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [23448] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [24147] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, ACTIONS(2154), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, @@ -34731,23 +35397,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [23462] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [24162] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2156), 7, - aux_sym_class_declaration_token13, - aux_sym__create_addition_token2, - aux_sym__create_addition_token3, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_chained_interface_declaration_token1, - aux_sym_variable_declaration_token1, - [23476] = 2, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(2158), 7, + ACTIONS(2156), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -34755,28 +35410,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [23490] = 8, - ACTIONS(1890), 1, + [24177] = 8, + ACTIONS(1904), 1, aux_sym_class_declaration_token3, - ACTIONS(1894), 1, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2160), 1, + ACTIONS(2158), 1, aux_sym_class_declaration_token13, - STATE(1101), 1, + STATE(1103), 1, sym_public_section, - STATE(1696), 1, + STATE(1699), 1, sym_protected_section, - STATE(2669), 1, + STATE(2883), 1, sym_private_section, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [24204] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [23516] = 2, - ACTIONS(3), 2, sym_eol_comment, + ACTIONS(2160), 7, + aux_sym_class_declaration_token13, + aux_sym__create_addition_token2, + aux_sym__create_addition_token3, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, + aux_sym_variable_declaration_token1, + [24219] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, ACTIONS(2162), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, @@ -34785,10 +35455,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [23530] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [24234] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, ACTIONS(2164), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, @@ -34797,10 +35468,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [23544] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [24249] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, ACTIONS(2166), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, @@ -34809,10 +35481,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [23558] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [24264] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, ACTIONS(2168), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, @@ -34821,10 +35494,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [23572] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [24279] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, ACTIONS(2170), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, @@ -34833,10 +35507,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [23586] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [24294] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, ACTIONS(2172), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, @@ -34845,10 +35520,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [23600] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [24309] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, ACTIONS(2174), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, @@ -34857,23 +35533,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [23614] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [24324] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2176), 7, - aux_sym_class_declaration_token13, - aux_sym__create_addition_token2, - aux_sym__create_addition_token3, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_chained_interface_declaration_token1, - aux_sym_variable_declaration_token1, - [23628] = 2, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(2178), 7, + ACTIONS(2176), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -34881,47 +35546,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [23642] = 8, - ACTIONS(1890), 1, + [24339] = 8, + ACTIONS(1904), 1, aux_sym_class_declaration_token3, - ACTIONS(1894), 1, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2180), 1, + ACTIONS(2178), 1, aux_sym_class_declaration_token13, STATE(1136), 1, sym_public_section, - STATE(1685), 1, + STATE(1689), 1, sym_protected_section, - STATE(2680), 1, + STATE(2898), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [23668] = 8, - ACTIONS(1890), 1, - aux_sym_class_declaration_token3, - ACTIONS(1894), 1, - aux_sym__create_addition_token2, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(2182), 1, - aux_sym_class_declaration_token13, - STATE(1100), 1, - sym_public_section, - STATE(1532), 1, - sym_protected_section, - STATE(2856), 1, - sym_private_section, - ACTIONS(3), 2, sym_eol_comment, + [24366] = 8, + ACTIONS(1341), 1, + aux_sym__method_declaration_raising_token1, + ACTIONS(1343), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(1345), 1, + aux_sym_returning_parameter_token1, + ACTIONS(2180), 1, + anon_sym_DOT, + STATE(1128), 1, + sym_returning_parameter, + STATE(1508), 1, + sym__method_declaration_raising, + STATE(2094), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [23694] = 2, - ACTIONS(3), 2, sym_eol_comment, + [24393] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2184), 7, + sym_eol_comment, + ACTIONS(2182), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -34929,11 +35597,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [23708] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [24408] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2186), 7, + sym_eol_comment, + ACTIONS(2184), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -34941,11 +35610,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [23722] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [24423] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2188), 7, + sym_eol_comment, + ACTIONS(2186), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -34953,11 +35623,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [23736] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [24438] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2190), 7, + sym_eol_comment, + ACTIONS(2188), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -34965,11 +35636,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [23750] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [24453] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2192), 7, + sym_eol_comment, + ACTIONS(2190), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -34977,11 +35649,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [23764] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [24468] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2194), 7, + sym_eol_comment, + ACTIONS(2192), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -34989,11 +35662,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [23778] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [24483] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2196), 7, + sym_eol_comment, + ACTIONS(2194), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -35001,28 +35675,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [23792] = 8, - ACTIONS(1890), 1, + [24498] = 8, + ACTIONS(1904), 1, aux_sym_class_declaration_token3, - ACTIONS(1894), 1, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2198), 1, + ACTIONS(2196), 1, aux_sym_class_declaration_token13, - STATE(1155), 1, + STATE(1151), 1, sym_public_section, - STATE(1673), 1, + STATE(1677), 1, sym_protected_section, - STATE(2683), 1, + STATE(2905), 1, sym_private_section, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [24525] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [23818] = 2, - ACTIONS(3), 2, sym_eol_comment, + ACTIONS(2198), 7, + aux_sym_class_declaration_token13, + aux_sym__create_addition_token2, + aux_sym__create_addition_token3, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, + aux_sym_variable_declaration_token1, + [24540] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, ACTIONS(2200), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, @@ -35031,10 +35720,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [23832] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [24555] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, ACTIONS(2202), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, @@ -35043,10 +35733,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [23846] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [24570] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, ACTIONS(2204), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, @@ -35055,10 +35746,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [23860] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [24585] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, ACTIONS(2206), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, @@ -35067,10 +35759,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [23874] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [24600] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, ACTIONS(2208), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, @@ -35079,10 +35772,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [23888] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [24615] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, ACTIONS(2210), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, @@ -35091,10 +35785,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [23902] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [24630] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, ACTIONS(2212), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, @@ -35103,10 +35798,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [23916] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [24645] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, ACTIONS(2214), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, @@ -35115,10 +35811,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [23930] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [24660] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, ACTIONS(2216), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, @@ -35127,29 +35824,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [23944] = 8, - ACTIONS(1890), 1, + [24675] = 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + ACTIONS(2218), 7, + aux_sym_class_declaration_token13, + aux_sym__create_addition_token2, + aux_sym__create_addition_token3, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, + aux_sym_variable_declaration_token1, + [24690] = 8, + ACTIONS(1904), 1, aux_sym_class_declaration_token3, - ACTIONS(1894), 1, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2218), 1, + ACTIONS(2220), 1, aux_sym_class_declaration_token13, - STATE(1090), 1, + STATE(1185), 1, sym_public_section, - STATE(1548), 1, + STATE(1658), 1, sym_protected_section, - STATE(2833), 1, + STATE(2944), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [23970] = 2, - ACTIONS(3), 2, sym_eol_comment, + [24717] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2220), 7, + sym_eol_comment, + ACTIONS(2222), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -35157,94 +35869,101 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [23984] = 8, - ACTIONS(1890), 1, + [24732] = 8, + ACTIONS(1904), 1, aux_sym_class_declaration_token3, - ACTIONS(1894), 1, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2222), 1, + ACTIONS(2224), 1, aux_sym_class_declaration_token13, - STATE(1180), 1, + STATE(1100), 1, sym_public_section, - STATE(1656), 1, + STATE(1713), 1, sym_protected_section, - STATE(2706), 1, + STATE(2856), 1, sym_private_section, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [24759] = 8, + ACTIONS(1904), 1, + aux_sym_class_declaration_token3, + ACTIONS(1908), 1, + aux_sym__create_addition_token2, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(2226), 1, + aux_sym_class_declaration_token13, + STATE(1099), 1, + sym_public_section, + STATE(1714), 1, + sym_protected_section, + STATE(2853), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [24010] = 7, - ACTIONS(1980), 1, - aux_sym__method_declaration_exporting_token1, - ACTIONS(1982), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(2224), 1, - anon_sym_DOT, - STATE(698), 1, - aux_sym__function_parameter_list, - STATE(2674), 1, - sym_exception_list, - ACTIONS(3), 2, sym_eol_comment, + [24786] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1978), 2, - aux_sym__method_declaration_importing_token1, - aux_sym__method_declaration_changing_token1, - [24034] = 8, - ACTIONS(1316), 1, + sym_eol_comment, + ACTIONS(2228), 7, + aux_sym_class_declaration_token13, + aux_sym__create_addition_token2, + aux_sym__create_addition_token3, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, + aux_sym_variable_declaration_token1, + [24801] = 8, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(1320), 1, + ACTIONS(1345), 1, aux_sym_returning_parameter_token1, - ACTIONS(2226), 1, + ACTIONS(2230), 1, anon_sym_DOT, - STATE(1020), 1, + STATE(1114), 1, sym_returning_parameter, STATE(1694), 1, sym__method_declaration_raising, - STATE(2667), 1, + STATE(2888), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [24060] = 8, - ACTIONS(1316), 1, + sym_eol_comment, + [24828] = 8, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(1320), 1, + ACTIONS(1345), 1, aux_sym_returning_parameter_token1, - ACTIONS(2228), 1, + ACTIONS(2232), 1, anon_sym_DOT, - STATE(1171), 1, + STATE(1182), 1, sym_returning_parameter, - STATE(1731), 1, + STATE(1607), 1, sym__method_declaration_raising, - STATE(2175), 1, + STATE(2178), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [24086] = 2, - ACTIONS(3), 2, sym_eol_comment, + [24855] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2230), 7, - aux_sym_class_declaration_token13, - aux_sym__create_addition_token2, - aux_sym__create_addition_token3, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_chained_interface_declaration_token1, - aux_sym_variable_declaration_token1, - [24100] = 2, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(2232), 7, + ACTIONS(2234), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -35252,29 +35971,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [24114] = 8, - ACTIONS(1890), 1, + [24870] = 8, + ACTIONS(1904), 1, aux_sym_class_declaration_token3, - ACTIONS(1894), 1, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2234), 1, + ACTIONS(2236), 1, aux_sym_class_declaration_token13, - STATE(1105), 1, + STATE(1107), 1, sym_public_section, - STATE(1593), 1, + STATE(1531), 1, sym_protected_section, - STATE(2095), 1, + STATE(2071), 1, sym_private_section, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [24897] = 8, + ACTIONS(1904), 1, + aux_sym_class_declaration_token3, + ACTIONS(1908), 1, + aux_sym__create_addition_token2, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(2238), 1, + aux_sym_class_declaration_token13, + STATE(1090), 1, + sym_public_section, + STATE(1648), 1, + sym_protected_section, + STATE(2963), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [24140] = 2, - ACTIONS(3), 2, sym_eol_comment, + [24924] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2236), 7, + sym_eol_comment, + ACTIONS(2240), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -35282,11 +36022,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [24154] = 2, - ACTIONS(3), 2, + [24939] = 7, + ACTIONS(1998), 1, + aux_sym__method_declaration_exporting_token1, + ACTIONS(2000), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(2242), 1, + anon_sym_DOT, + STATE(702), 1, + aux_sym__function_parameter_list, + STATE(2674), 1, + sym_exception_list, + ACTIONS(1996), 2, + aux_sym__method_declaration_importing_token1, + aux_sym__method_declaration_changing_token1, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [24964] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2238), 7, + sym_eol_comment, + ACTIONS(2244), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -35294,29 +36053,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [24168] = 8, - ACTIONS(1890), 1, - aux_sym_class_declaration_token3, - ACTIONS(1894), 1, - aux_sym__create_addition_token2, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(2240), 1, - aux_sym_class_declaration_token13, - STATE(1112), 1, - sym_public_section, - STATE(1646), 1, - sym_protected_section, - STATE(2723), 1, - sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + [24979] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [24194] = 2, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(2242), 7, + ACTIONS(2246), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -35324,47 +36066,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [24208] = 8, - ACTIONS(1316), 1, + [24994] = 8, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(1320), 1, + ACTIONS(1345), 1, aux_sym_returning_parameter_token1, - ACTIONS(2244), 1, + ACTIONS(2248), 1, anon_sym_DOT, - STATE(1182), 1, + STATE(1187), 1, sym_returning_parameter, - STATE(1740), 1, + STATE(1620), 1, sym__method_declaration_raising, - STATE(2185), 1, + STATE(2187), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [24234] = 8, - ACTIONS(1890), 1, - aux_sym_class_declaration_token3, - ACTIONS(1894), 1, - aux_sym__create_addition_token2, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(2246), 1, - aux_sym_class_declaration_token13, - STATE(1096), 1, - sym_public_section, - STATE(1541), 1, - sym_protected_section, - STATE(2844), 1, - sym_private_section, - ACTIONS(3), 2, sym_eol_comment, + [25021] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [24260] = 2, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(2248), 7, + ACTIONS(2250), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -35372,28 +36098,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [24274] = 8, - ACTIONS(1890), 1, - aux_sym_class_declaration_token3, - ACTIONS(1894), 1, - aux_sym__create_addition_token2, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(2250), 1, - aux_sym_class_declaration_token13, - STATE(1095), 1, - sym_public_section, - STATE(1543), 1, - sym_protected_section, - STATE(2841), 1, - sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + [25036] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [24300] = 2, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, ACTIONS(2252), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, @@ -35402,10 +36111,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [24314] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [25051] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, ACTIONS(2254), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, @@ -35414,52 +36124,68 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [24328] = 8, - ACTIONS(1890), 1, + [25066] = 8, + ACTIONS(1904), 1, aux_sym_class_declaration_token3, - ACTIONS(1894), 1, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, ACTIONS(2256), 1, aux_sym_class_declaration_token13, STATE(1097), 1, sym_public_section, - STATE(1534), 1, + STATE(1725), 1, sym_protected_section, - STATE(2853), 1, + STATE(2844), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [24354] = 2, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(2258), 7, - aux_sym_class_declaration_token13, + [25093] = 8, + ACTIONS(1904), 1, + aux_sym_class_declaration_token3, + ACTIONS(1908), 1, aux_sym__create_addition_token2, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_chained_interface_declaration_token1, - aux_sym_variable_declaration_token1, - [24368] = 2, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(2260), 7, + ACTIONS(2258), 1, aux_sym_class_declaration_token13, + STATE(1096), 1, + sym_public_section, + STATE(1729), 1, + sym_protected_section, + STATE(2841), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + [25120] = 8, + ACTIONS(1904), 1, + aux_sym_class_declaration_token3, + ACTIONS(1908), 1, aux_sym__create_addition_token2, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_chained_interface_declaration_token1, - aux_sym_variable_declaration_token1, - [24382] = 2, - ACTIONS(3), 2, + ACTIONS(2260), 1, + aux_sym_class_declaration_token13, + STATE(1064), 1, + sym_public_section, + STATE(1754), 1, + sym_protected_section, + STATE(2794), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [25147] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, ACTIONS(2262), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, @@ -35468,41 +36194,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [24396] = 8, - ACTIONS(1890), 1, + [25162] = 8, + ACTIONS(1904), 1, aux_sym_class_declaration_token3, - ACTIONS(1894), 1, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, ACTIONS(2264), 1, aux_sym_class_declaration_token13, - STATE(1163), 1, + STATE(1173), 1, sym_public_section, - STATE(1771), 1, + STATE(1649), 1, sym_protected_section, - STATE(2205), 1, + STATE(2207), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [24422] = 2, - ACTIONS(3), 2, sym_eol_comment, + [25189] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2266), 7, - aux_sym_class_declaration_token13, - aux_sym__create_addition_token2, - aux_sym__create_addition_token3, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_chained_interface_declaration_token1, - aux_sym_variable_declaration_token1, - [24436] = 2, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(2268), 7, + ACTIONS(2266), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -35510,47 +36226,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [24450] = 8, - ACTIONS(1316), 1, - aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(1320), 1, - aux_sym_returning_parameter_token1, - ACTIONS(2270), 1, - anon_sym_DOT, - STATE(1024), 1, - sym_returning_parameter, - STATE(1728), 1, - sym__method_declaration_raising, - STATE(2630), 1, - sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - [24476] = 8, - ACTIONS(1890), 1, + [25204] = 8, + ACTIONS(1904), 1, aux_sym_class_declaration_token3, - ACTIONS(1894), 1, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2272), 1, + ACTIONS(2268), 1, aux_sym_class_declaration_token13, - STATE(1086), 1, + STATE(1092), 1, sym_public_section, - STATE(1552), 1, + STATE(1736), 1, sym_protected_section, - STATE(2824), 1, + STATE(2833), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [24502] = 2, - ACTIONS(3), 2, sym_eol_comment, + [25231] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2274), 7, + sym_eol_comment, + ACTIONS(2270), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -35558,11 +36258,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [24516] = 2, - ACTIONS(3), 2, + [25246] = 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + ACTIONS(2272), 7, + aux_sym_class_declaration_token13, + aux_sym__create_addition_token2, + aux_sym__create_addition_token3, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, + aux_sym_variable_declaration_token1, + [25261] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2276), 7, + sym_eol_comment, + ACTIONS(2274), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -35570,26 +36284,40 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [24530] = 8, - ACTIONS(1316), 1, + [25276] = 8, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(1320), 1, + ACTIONS(1345), 1, aux_sym_returning_parameter_token1, - ACTIONS(2278), 1, + ACTIONS(2276), 1, anon_sym_DOT, STATE(1040), 1, sym_returning_parameter, - STATE(1590), 1, + STATE(1593), 1, sym__method_declaration_raising, - STATE(2798), 1, + STATE(3023), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [25303] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [24556] = 8, - ACTIONS(1462), 1, + sym_eol_comment, + ACTIONS(2278), 7, + aux_sym_class_declaration_token13, + aux_sym__create_addition_token2, + aux_sym__create_addition_token3, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, + aux_sym_variable_declaration_token1, + [25318] = 8, + ACTIONS(1442), 1, aux_sym__create_addition_token1, ACTIONS(2280), 1, aux_sym_class_declaration_token7, @@ -35601,93 +36329,112 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_declaration_token12, ACTIONS(2288), 1, anon_sym_DOT, - STATE(1226), 1, + STATE(1259), 1, sym__create_addition, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [24582] = 8, - ACTIONS(1890), 1, - aux_sym_class_declaration_token3, - ACTIONS(1894), 1, - aux_sym__create_addition_token2, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(2290), 1, - aux_sym_class_declaration_token13, - STATE(1016), 1, - sym_public_section, - STATE(1695), 1, - sym_protected_section, - STATE(2144), 1, - sym_private_section, - ACTIONS(3), 2, sym_eol_comment, + [25345] = 8, + ACTIONS(1341), 1, + aux_sym__method_declaration_raising_token1, + ACTIONS(1343), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(1345), 1, + aux_sym_returning_parameter_token1, + ACTIONS(2290), 1, + anon_sym_DOT, + STATE(1026), 1, + sym_returning_parameter, + STATE(1728), 1, + sym__method_declaration_raising, + STATE(2843), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [24608] = 2, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(2292), 7, - aux_sym_class_declaration_token13, - aux_sym__create_addition_token2, - aux_sym__create_addition_token3, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_chained_interface_declaration_token1, - aux_sym_variable_declaration_token1, - [24622] = 8, - ACTIONS(1890), 1, + [25372] = 8, + ACTIONS(1904), 1, aux_sym_class_declaration_token3, - ACTIONS(1894), 1, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2294), 1, + ACTIONS(2292), 1, aux_sym_class_declaration_token13, - STATE(1156), 1, + STATE(1160), 1, sym_public_section, - STATE(1783), 1, + STATE(1682), 1, sym_protected_section, - STATE(2215), 1, + STATE(2216), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [24648] = 8, - ACTIONS(1316), 1, + sym_eol_comment, + [25399] = 8, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(1320), 1, + ACTIONS(1345), 1, aux_sym_returning_parameter_token1, - ACTIONS(2296), 1, + ACTIONS(2294), 1, anon_sym_DOT, STATE(1048), 1, sym_returning_parameter, - STATE(1545), 1, + STATE(1536), 1, sym__method_declaration_raising, - STATE(2840), 1, + STATE(3088), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [24674] = 2, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(2298), 7, + [25426] = 8, + ACTIONS(1904), 1, + aux_sym_class_declaration_token3, + ACTIONS(1908), 1, + aux_sym__create_addition_token2, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(2296), 1, aux_sym_class_declaration_token13, + STATE(1093), 1, + sym_public_section, + STATE(1621), 1, + sym_protected_section, + STATE(2192), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + [25453] = 8, + ACTIONS(1904), 1, + aux_sym_class_declaration_token3, + ACTIONS(1908), 1, aux_sym__create_addition_token2, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_chained_interface_declaration_token1, - aux_sym_variable_declaration_token1, - [24688] = 2, - ACTIONS(3), 2, + ACTIONS(2298), 1, + aux_sym_class_declaration_token13, + STATE(1089), 1, + sym_public_section, + STATE(1738), 1, + sym_protected_section, + STATE(2824), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [25480] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, ACTIONS(2300), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, @@ -35696,10 +36443,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [24702] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [25495] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, ACTIONS(2302), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, @@ -35708,10 +36456,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [24716] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [25510] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, ACTIONS(2304), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, @@ -35720,10 +36469,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [24730] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [25525] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, ACTIONS(2306), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, @@ -35732,10 +36482,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [24744] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [25540] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, ACTIONS(2308), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, @@ -35744,10 +36495,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [24758] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [25555] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, ACTIONS(2310), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, @@ -35756,10 +36508,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [24772] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [25570] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, ACTIONS(2312), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, @@ -35768,10 +36521,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [24786] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [25585] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, ACTIONS(2314), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, @@ -35780,10 +36534,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [24800] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [25600] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, ACTIONS(2316), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, @@ -35792,10 +36547,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [24814] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [25615] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, ACTIONS(2318), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, @@ -35804,10 +36560,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [24828] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [25630] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, ACTIONS(2320), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, @@ -35816,10 +36573,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [24842] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [25645] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, ACTIONS(2322), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, @@ -35828,10 +36586,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [24856] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [25660] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, ACTIONS(2324), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, @@ -35840,10 +36599,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [24870] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [25675] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, ACTIONS(2326), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, @@ -35852,10 +36612,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [24884] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [25690] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, ACTIONS(2328), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, @@ -35864,10 +36625,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [24898] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [25705] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, ACTIONS(2330), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, @@ -35876,10 +36638,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [24912] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [25720] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, ACTIONS(2332), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, @@ -35888,10 +36651,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [24926] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [25735] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, ACTIONS(2334), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, @@ -35900,10 +36664,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [24940] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [25750] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, ACTIONS(2336), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, @@ -35912,10 +36677,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [24954] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [25765] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, ACTIONS(2338), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, @@ -35924,10 +36690,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [24968] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [25780] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, ACTIONS(2340), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, @@ -35936,10 +36703,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [24982] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [25795] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, ACTIONS(2342), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, @@ -35948,10 +36716,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [24996] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [25810] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, ACTIONS(2344), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, @@ -35960,10 +36729,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [25010] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [25825] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, ACTIONS(2346), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, @@ -35972,10 +36742,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [25024] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [25840] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, ACTIONS(2348), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, @@ -35984,10 +36755,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [25038] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [25855] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, ACTIONS(2350), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, @@ -35996,10 +36768,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [25052] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [25870] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, ACTIONS(2352), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, @@ -36008,10 +36781,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [25066] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [25885] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, ACTIONS(2354), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, @@ -36020,10 +36794,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [25080] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [25900] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, ACTIONS(2356), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, @@ -36032,10 +36807,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [25094] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [25915] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, ACTIONS(2358), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, @@ -36044,10 +36820,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [25108] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [25930] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, ACTIONS(2360), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, @@ -36056,10 +36833,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [25122] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [25945] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, ACTIONS(2362), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, @@ -36068,10 +36846,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [25136] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [25960] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, ACTIONS(2364), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, @@ -36080,10 +36859,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [25150] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [25975] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, ACTIONS(2366), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, @@ -36092,10 +36872,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [25164] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [25990] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, ACTIONS(2368), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, @@ -36104,10 +36885,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [25178] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [26005] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, ACTIONS(2370), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, @@ -36116,10 +36898,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [25192] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [26020] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, ACTIONS(2372), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, @@ -36128,10 +36911,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [25206] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [26035] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, ACTIONS(2374), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, @@ -36140,10 +36924,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [25220] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [26050] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, ACTIONS(2376), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, @@ -36152,10 +36937,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [25234] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [26065] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, ACTIONS(2378), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, @@ -36164,10 +36950,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [25248] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [26080] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, ACTIONS(2380), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, @@ -36176,10 +36963,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [25262] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [26095] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, ACTIONS(2382), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, @@ -36188,10 +36976,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [25276] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [26110] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, ACTIONS(2384), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, @@ -36200,10 +36989,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [25290] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [26125] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, ACTIONS(2386), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, @@ -36212,10 +37002,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [25304] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [26140] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, ACTIONS(2388), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, @@ -36224,10 +37015,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [25318] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [26155] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, ACTIONS(2390), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, @@ -36236,10 +37028,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [25332] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [26170] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, ACTIONS(2392), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, @@ -36248,10 +37041,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [25346] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [26185] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, ACTIONS(2394), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, @@ -36260,10 +37054,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [25360] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [26200] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, ACTIONS(2396), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, @@ -36272,47 +37067,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [25374] = 8, - ACTIONS(1890), 1, - aux_sym_class_declaration_token3, - ACTIONS(1894), 1, - aux_sym__create_addition_token2, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(2398), 1, - aux_sym_class_declaration_token13, - STATE(1084), 1, - sym_public_section, - STATE(1554), 1, - sym_protected_section, - STATE(2823), 1, - sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - [25400] = 8, - ACTIONS(1316), 1, + [26215] = 8, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(1320), 1, + ACTIONS(1345), 1, aux_sym_returning_parameter_token1, - ACTIONS(2400), 1, + ACTIONS(2398), 1, anon_sym_DOT, STATE(1091), 1, sym_returning_parameter, - STATE(1574), 1, + STATE(1577), 1, sym__method_declaration_raising, - STATE(2920), 1, + STATE(3032), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [25426] = 2, - ACTIONS(3), 2, sym_eol_comment, + [26242] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2402), 7, + sym_eol_comment, + ACTIONS(2400), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -36320,11 +37099,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [25440] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [26257] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2404), 7, + sym_eol_comment, + ACTIONS(2402), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -36332,11 +37112,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [25454] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [26272] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2406), 7, + sym_eol_comment, + ACTIONS(2404), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -36344,11 +37125,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [25468] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [26287] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2408), 7, + sym_eol_comment, + ACTIONS(2406), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -36356,28 +37138,43 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [25482] = 8, - ACTIONS(1316), 1, + [26302] = 8, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(1320), 1, + ACTIONS(1345), 1, aux_sym_returning_parameter_token1, - ACTIONS(2410), 1, + ACTIONS(2408), 1, anon_sym_DOT, - STATE(1017), 1, + STATE(1101), 1, sym_returning_parameter, - STATE(1591), 1, + STATE(1596), 1, sym__method_declaration_raising, - STATE(2944), 1, + STATE(3008), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [26329] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [25508] = 2, - ACTIONS(3), 2, sym_eol_comment, + ACTIONS(2410), 7, + aux_sym_class_declaration_token13, + aux_sym__create_addition_token2, + aux_sym__create_addition_token3, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, + aux_sym_variable_declaration_token1, + [26344] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, ACTIONS(2412), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, @@ -36386,10 +37183,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [25522] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [26359] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, ACTIONS(2414), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, @@ -36398,10 +37196,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [25536] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [26374] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, ACTIONS(2416), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, @@ -36410,10 +37209,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [25550] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [26389] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, ACTIONS(2418), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, @@ -36422,10 +37222,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [25564] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [26404] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, ACTIONS(2420), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, @@ -36434,10 +37235,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [25578] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [26419] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, ACTIONS(2422), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, @@ -36446,11 +37248,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [25592] = 2, - ACTIONS(3), 2, + [26434] = 8, + ACTIONS(1904), 1, + aux_sym_class_declaration_token3, + ACTIONS(1908), 1, + aux_sym__create_addition_token2, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(2424), 1, + aux_sym_class_declaration_token13, + STATE(1082), 1, + sym_public_section, + STATE(1742), 1, + sym_protected_section, + STATE(2823), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [26461] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2424), 7, + sym_eol_comment, + ACTIONS(2426), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -36458,11 +37280,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [25606] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [26476] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2426), 7, + sym_eol_comment, + ACTIONS(2428), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -36470,43 +37293,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [25620] = 4, - ACTIONS(2428), 1, - anon_sym_DASH2, - STATE(881), 1, - aux_sym_structured_data_object_repeat1, - ACTIONS(3), 2, - sym_eol_comment, + [26491] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(387), 5, - anon_sym_DOT, - aux_sym_method_parameters_token1, - anon_sym_COMMA, - aux_sym__data_object_typing_normal_token5, - anon_sym_EQ, - [25638] = 8, - ACTIONS(1890), 1, + sym_eol_comment, + ACTIONS(2430), 7, + aux_sym_class_declaration_token13, + aux_sym__create_addition_token2, + aux_sym__create_addition_token3, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, + aux_sym_variable_declaration_token1, + [26506] = 8, + ACTIONS(1904), 1, aux_sym_class_declaration_token3, - ACTIONS(1894), 1, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2431), 1, + ACTIONS(2432), 1, aux_sym_class_declaration_token13, STATE(1154), 1, sym_public_section, - STATE(1786), 1, + STATE(1692), 1, sym_protected_section, - STATE(2221), 1, + STATE(2222), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [25664] = 2, - ACTIONS(3), 2, sym_eol_comment, + [26533] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2433), 7, + sym_eol_comment, + ACTIONS(2434), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -36514,371 +37338,380 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [25678] = 8, - ACTIONS(1890), 1, + [26548] = 8, + ACTIONS(1904), 1, aux_sym_class_declaration_token3, - ACTIONS(1894), 1, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2435), 1, + ACTIONS(2436), 1, aux_sym_class_declaration_token13, - STATE(1075), 1, + STATE(1077), 1, sym_public_section, - STATE(1791), 1, + STATE(1782), 1, sym_protected_section, - STATE(2224), 1, + STATE(2272), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [25704] = 8, - ACTIONS(1462), 1, + sym_eol_comment, + [26575] = 8, + ACTIONS(1442), 1, aux_sym__create_addition_token1, - ACTIONS(1722), 1, + ACTIONS(1708), 1, aux_sym_class_declaration_token7, - ACTIONS(1724), 1, + ACTIONS(1710), 1, aux_sym_class_declaration_token8, - ACTIONS(1726), 1, + ACTIONS(1712), 1, aux_sym_class_declaration_token11, - ACTIONS(1728), 1, + ACTIONS(1714), 1, aux_sym_class_declaration_token12, - ACTIONS(1730), 1, + ACTIONS(1716), 1, anon_sym_DOT, - STATE(1414), 1, + STATE(1223), 1, sym__create_addition, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [25730] = 8, - ACTIONS(1890), 1, + sym_eol_comment, + [26602] = 8, + ACTIONS(1904), 1, aux_sym_class_declaration_token3, - ACTIONS(1894), 1, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2437), 1, + ACTIONS(2438), 1, aux_sym_class_declaration_token13, - STATE(1071), 1, + STATE(1073), 1, sym_public_section, - STATE(1803), 1, + STATE(1826), 1, sym_protected_section, - STATE(2236), 1, + STATE(2284), 1, sym_private_section, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [26629] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [25756] = 8, - ACTIONS(1890), 1, - aux_sym_class_declaration_token3, - ACTIONS(1894), 1, + sym_eol_comment, + ACTIONS(2440), 7, + aux_sym_class_declaration_token13, aux_sym__create_addition_token2, - ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2439), 1, - aux_sym_class_declaration_token13, - STATE(1029), 1, - sym_public_section, - STATE(1652), 1, - sym_protected_section, - STATE(2711), 1, - sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, + aux_sym_variable_declaration_token1, + [26644] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [25782] = 8, - ACTIONS(1890), 1, + sym_eol_comment, + ACTIONS(2442), 7, + aux_sym_class_declaration_token13, + aux_sym__create_addition_token2, + aux_sym__create_addition_token3, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, + aux_sym_variable_declaration_token1, + [26659] = 8, + ACTIONS(1904), 1, aux_sym_class_declaration_token3, - ACTIONS(1894), 1, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2441), 1, + ACTIONS(2444), 1, aux_sym_class_declaration_token13, - STATE(1110), 1, + STATE(1074), 1, sym_public_section, - STATE(1750), 1, + STATE(1744), 1, sym_protected_section, - STATE(2984), 1, + STATE(2812), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [25808] = 8, - ACTIONS(1890), 1, + sym_eol_comment, + [26686] = 8, + ACTIONS(1904), 1, aux_sym_class_declaration_token3, - ACTIONS(1894), 1, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2443), 1, + ACTIONS(2446), 1, aux_sym_class_declaration_token13, - STATE(1018), 1, + STATE(1177), 1, sym_public_section, - STATE(1651), 1, + STATE(1804), 1, sym_protected_section, - STATE(2714), 1, + STATE(2711), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [25834] = 8, - ACTIONS(1890), 1, + sym_eol_comment, + [26713] = 8, + ACTIONS(1904), 1, aux_sym_class_declaration_token3, - ACTIONS(1894), 1, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2445), 1, + ACTIONS(2448), 1, aux_sym_class_declaration_token13, - STATE(1077), 1, + STATE(1072), 1, sym_public_section, - STATE(1562), 1, + STATE(1745), 1, sym_protected_section, - STATE(2812), 1, + STATE(2811), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [25860] = 8, - ACTIONS(1890), 1, + sym_eol_comment, + [26740] = 8, + ACTIONS(1904), 1, aux_sym_class_declaration_token3, - ACTIONS(1894), 1, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2447), 1, + ACTIONS(2450), 1, aux_sym_class_declaration_token13, - STATE(1134), 1, + STATE(1081), 1, sym_public_section, - STATE(1647), 1, + STATE(1847), 1, sym_protected_section, - STATE(2719), 1, + STATE(2296), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [25886] = 8, - ACTIONS(1890), 1, + sym_eol_comment, + [26767] = 8, + ACTIONS(1904), 1, aux_sym_class_declaration_token3, - ACTIONS(1894), 1, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2449), 1, + ACTIONS(2452), 1, aux_sym_class_declaration_token13, - STATE(1147), 1, + STATE(1175), 1, sym_public_section, - STATE(1641), 1, + STATE(1853), 1, sym_protected_section, - STATE(2725), 1, + STATE(2629), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [25912] = 8, - ACTIONS(1890), 1, + sym_eol_comment, + [26794] = 8, + ACTIONS(1904), 1, aux_sym_class_declaration_token3, - ACTIONS(1894), 1, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2451), 1, + ACTIONS(2454), 1, aux_sym_class_declaration_token13, - STATE(1072), 1, + STATE(1068), 1, sym_public_section, - STATE(1566), 1, + STATE(1746), 1, sym_protected_section, - STATE(2811), 1, + STATE(2806), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [25938] = 8, - ACTIONS(1890), 1, + sym_eol_comment, + [26821] = 8, + ACTIONS(1904), 1, aux_sym_class_declaration_token3, - ACTIONS(1894), 1, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2453), 1, + ACTIONS(2456), 1, aux_sym_class_declaration_token13, - STATE(1175), 1, + STATE(1066), 1, sym_public_section, - STATE(1725), 1, + STATE(1865), 1, sym_protected_section, - STATE(2629), 1, + STATE(2310), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [25964] = 8, - ACTIONS(1890), 1, + sym_eol_comment, + [26848] = 8, + ACTIONS(1904), 1, aux_sym_class_declaration_token3, - ACTIONS(1894), 1, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2455), 1, + ACTIONS(2458), 1, aux_sym_class_declaration_token13, - STATE(1063), 1, + STATE(1065), 1, sym_public_section, - STATE(1834), 1, + STATE(1882), 1, sym_protected_section, - STATE(2240), 1, + STATE(2337), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [25990] = 8, - ACTIONS(1890), 1, + sym_eol_comment, + [26875] = 8, + ACTIONS(1904), 1, aux_sym_class_declaration_token3, - ACTIONS(1894), 1, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2457), 1, + ACTIONS(2460), 1, aux_sym_class_declaration_token13, - STATE(1061), 1, + STATE(1030), 1, sym_public_section, - STATE(1866), 1, + STATE(1749), 1, sym_protected_section, - STATE(2264), 1, + STATE(2799), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [26016] = 8, - ACTIONS(1890), 1, + sym_eol_comment, + [26902] = 8, + ACTIONS(1904), 1, aux_sym_class_declaration_token3, - ACTIONS(1894), 1, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2459), 1, + ACTIONS(2462), 1, aux_sym_class_declaration_token13, - STATE(1066), 1, + STATE(1021), 1, sym_public_section, - STATE(1573), 1, + STATE(1803), 1, sym_protected_section, - STATE(2806), 1, + STATE(2714), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [26042] = 8, - ACTIONS(1890), 1, + sym_eol_comment, + [26929] = 8, + ACTIONS(1904), 1, aux_sym_class_declaration_token3, - ACTIONS(1894), 1, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2461), 1, + ACTIONS(2464), 1, aux_sym_class_declaration_token13, - STATE(1031), 1, + STATE(1145), 1, sym_public_section, - STATE(1585), 1, + STATE(1799), 1, sym_protected_section, - STATE(2799), 1, + STATE(2719), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [26068] = 8, - ACTIONS(1890), 1, + sym_eol_comment, + [26956] = 8, + ACTIONS(1904), 1, aux_sym_class_declaration_token3, - ACTIONS(1894), 1, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2463), 1, + ACTIONS(2466), 1, aux_sym_class_declaration_token13, - STATE(1035), 1, + STATE(1039), 1, sym_public_section, STATE(1784), 1, sym_protected_section, - STATE(2421), 1, + STATE(2750), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [26094] = 8, - ACTIONS(1890), 1, + sym_eol_comment, + [26983] = 8, + ACTIONS(1904), 1, aux_sym_class_declaration_token3, - ACTIONS(1894), 1, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2465), 1, + ACTIONS(2468), 1, aux_sym_class_declaration_token13, - STATE(1037), 1, + STATE(1042), 1, sym_public_section, STATE(1788), 1, sym_protected_section, - STATE(2418), 1, + STATE(2746), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [26120] = 8, - ACTIONS(1316), 1, - aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(1320), 1, - aux_sym_returning_parameter_token1, - ACTIONS(2467), 1, - anon_sym_DOT, - STATE(1127), 1, - sym_returning_parameter, - STATE(1864), 1, - sym__method_declaration_raising, - STATE(3033), 1, - sym__method_declaration_exceptions, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [26146] = 8, - ACTIONS(1890), 1, + [27010] = 8, + ACTIONS(1904), 1, aux_sym_class_declaration_token3, - ACTIONS(1894), 1, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2469), 1, + ACTIONS(2470), 1, aux_sym_class_declaration_token13, - STATE(1065), 1, + STATE(1165), 1, sym_public_section, - STATE(1887), 1, + STATE(1796), 1, sym_protected_section, - STATE(2295), 1, + STATE(2725), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [26172] = 8, - ACTIONS(1316), 1, + sym_eol_comment, + [27037] = 8, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(1320), 1, + ACTIONS(1345), 1, aux_sym_returning_parameter_token1, - ACTIONS(2471), 1, + ACTIONS(2472), 1, anon_sym_DOT, - STATE(1151), 1, + STATE(1129), 1, sym_returning_parameter, - STATE(1902), 1, + STATE(1589), 1, sym__method_declaration_raising, - STATE(2282), 1, + STATE(2166), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [26198] = 2, - ACTIONS(3), 2, sym_eol_comment, + [27064] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2473), 7, + sym_eol_comment, + ACTIONS(2474), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -36886,11 +37719,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [26212] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [27079] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2475), 7, + sym_eol_comment, + ACTIONS(2476), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -36898,11 +37732,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [26226] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [27094] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2477), 7, + sym_eol_comment, + ACTIONS(2478), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -36910,11 +37745,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [26240] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [27109] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2479), 7, + sym_eol_comment, + ACTIONS(2480), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -36922,11 +37758,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [26254] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [27124] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2481), 7, + sym_eol_comment, + ACTIONS(2482), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -36934,11 +37771,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [26268] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [27139] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2483), 7, + sym_eol_comment, + ACTIONS(2484), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -36946,11 +37784,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [26282] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [27154] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2485), 7, + sym_eol_comment, + ACTIONS(2486), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -36958,11 +37797,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [26296] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [27169] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2487), 7, + sym_eol_comment, + ACTIONS(2488), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -36970,11 +37810,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [26310] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [27184] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2489), 7, + sym_eol_comment, + ACTIONS(2490), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -36982,11 +37823,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [26324] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [27199] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2491), 7, + sym_eol_comment, + ACTIONS(2492), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -36994,11 +37836,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [26338] = 2, - ACTIONS(3), 2, + [27214] = 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + ACTIONS(2494), 7, + aux_sym_class_declaration_token13, + aux_sym__create_addition_token2, + aux_sym__create_addition_token3, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, + aux_sym_variable_declaration_token1, + [27229] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2493), 7, + sym_eol_comment, + ACTIONS(2496), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -37006,41 +37862,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [26352] = 8, - ACTIONS(1890), 1, + [27244] = 8, + ACTIONS(1904), 1, aux_sym_class_declaration_token3, - ACTIONS(1894), 1, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2495), 1, + ACTIONS(2498), 1, aux_sym_class_declaration_token13, - STATE(1038), 1, + STATE(1044), 1, sym_public_section, STATE(1805), 1, sym_protected_section, - STATE(2395), 1, + STATE(2710), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [26378] = 2, - ACTIONS(3), 2, sym_eol_comment, + [27271] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2497), 7, - aux_sym_class_declaration_token13, - aux_sym__create_addition_token2, - aux_sym__create_addition_token3, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_chained_interface_declaration_token1, - aux_sym_variable_declaration_token1, - [26392] = 2, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(2499), 7, + ACTIONS(2500), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -37048,11 +37894,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [26406] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [27286] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2501), 7, + sym_eol_comment, + ACTIONS(2502), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -37060,11 +37907,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [26420] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [27301] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2503), 7, + sym_eol_comment, + ACTIONS(2504), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -37072,11 +37920,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [26434] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [27316] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2505), 7, + sym_eol_comment, + ACTIONS(2506), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -37084,11 +37933,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [26448] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [27331] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2507), 7, + sym_eol_comment, + ACTIONS(2508), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -37096,11 +37946,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [26462] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [27346] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2509), 7, + sym_eol_comment, + ACTIONS(2510), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -37108,41 +37959,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [26476] = 8, - ACTIONS(1316), 1, + [27361] = 8, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(1320), 1, + ACTIONS(1345), 1, aux_sym_returning_parameter_token1, - ACTIONS(2511), 1, + ACTIONS(2512), 1, anon_sym_DOT, - STATE(1133), 1, + STATE(1159), 1, sym_returning_parameter, - STATE(1882), 1, + STATE(1828), 1, sym__method_declaration_raising, - STATE(3037), 1, + STATE(2283), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [26502] = 2, - ACTIONS(3), 2, sym_eol_comment, + [27388] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2513), 7, - aux_sym_class_declaration_token13, - aux_sym__create_addition_token2, - aux_sym__create_addition_token3, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_chained_interface_declaration_token1, - aux_sym_variable_declaration_token1, - [26516] = 2, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(2515), 7, + ACTIONS(2514), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -37150,23 +37991,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [26530] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [27403] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2517), 7, - aux_sym_class_declaration_token13, - aux_sym__create_addition_token2, - aux_sym__create_addition_token3, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_chained_interface_declaration_token1, - aux_sym_variable_declaration_token1, - [26544] = 2, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(2519), 7, + ACTIONS(2516), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -37174,11 +38004,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [26558] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [27418] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2521), 7, + sym_eol_comment, + ACTIONS(2518), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -37186,11 +38017,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [26572] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [27433] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2523), 7, + sym_eol_comment, + ACTIONS(2520), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -37198,11 +38030,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [26586] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [27448] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2525), 7, + sym_eol_comment, + ACTIONS(2522), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -37210,11 +38043,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [26600] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [27463] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2527), 7, + sym_eol_comment, + ACTIONS(2524), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -37222,95 +38056,88 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [26614] = 8, - ACTIONS(1890), 1, + [27478] = 8, + ACTIONS(1904), 1, aux_sym_class_declaration_token3, - ACTIONS(1894), 1, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2529), 1, + ACTIONS(2526), 1, aux_sym_class_declaration_token13, - STATE(1089), 1, + STATE(1186), 1, sym_public_section, - STATE(1636), 1, + STATE(1795), 1, sym_protected_section, - STATE(2739), 1, + STATE(2733), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [26640] = 8, - ACTIONS(1890), 1, + sym_eol_comment, + [27505] = 8, + ACTIONS(1904), 1, aux_sym_class_declaration_token3, - ACTIONS(1894), 1, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2531), 1, + ACTIONS(2528), 1, aux_sym_class_declaration_token13, - STATE(1062), 1, + STATE(1057), 1, sym_public_section, - STATE(1592), 1, + STATE(1756), 1, sym_protected_section, - STATE(2794), 1, + STATE(2789), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [26666] = 8, - ACTIONS(1890), 1, + sym_eol_comment, + [27532] = 8, + ACTIONS(1904), 1, aux_sym_class_declaration_token3, - ACTIONS(1894), 1, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2533), 1, + ACTIONS(2530), 1, aux_sym_class_declaration_token13, - STATE(1059), 1, + STATE(1110), 1, sym_public_section, - STATE(1595), 1, + STATE(1791), 1, sym_protected_section, - STATE(2789), 1, + STATE(2739), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [26692] = 8, - ACTIONS(1316), 1, + sym_eol_comment, + [27559] = 8, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(1320), 1, + ACTIONS(1345), 1, aux_sym_returning_parameter_token1, - ACTIONS(2535), 1, + ACTIONS(2532), 1, anon_sym_DOT, - STATE(1094), 1, + STATE(1135), 1, sym_returning_parameter, - STATE(1872), 1, + STATE(1630), 1, sym__method_declaration_raising, - STATE(2267), 1, + STATE(2189), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [26718] = 2, - ACTIONS(3), 2, sym_eol_comment, + [27586] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2537), 7, - aux_sym_class_declaration_token13, - aux_sym__create_addition_token2, - aux_sym__create_addition_token3, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_chained_interface_declaration_token1, - aux_sym_variable_declaration_token1, - [26732] = 2, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(2539), 7, + ACTIONS(2534), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -37318,11 +38145,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [26746] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [27601] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2541), 7, + sym_eol_comment, + ACTIONS(2536), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -37330,11 +38158,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [26760] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [27616] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2543), 7, + sym_eol_comment, + ACTIONS(2538), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -37342,11 +38171,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [26774] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [27631] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2545), 7, + sym_eol_comment, + ACTIONS(2540), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -37354,11 +38184,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [26788] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [27646] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2547), 7, + sym_eol_comment, + ACTIONS(2542), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -37366,11 +38197,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [26802] = 2, - ACTIONS(3), 2, + [27661] = 8, + ACTIONS(1341), 1, + aux_sym__method_declaration_raising_token1, + ACTIONS(1343), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(1345), 1, + aux_sym_returning_parameter_token1, + ACTIONS(2544), 1, + anon_sym_DOT, + STATE(1098), 1, + sym_returning_parameter, + STATE(1780), 1, + sym__method_declaration_raising, + STATE(2268), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [27688] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2549), 7, + sym_eol_comment, + ACTIONS(2546), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -37378,11 +38229,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [26816] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [27703] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2551), 7, + sym_eol_comment, + ACTIONS(2548), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -37390,11 +38242,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [26830] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [27718] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2553), 7, + sym_eol_comment, + ACTIONS(2550), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -37402,29 +38255,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [26844] = 8, - ACTIONS(1890), 1, + [27733] = 8, + ACTIONS(1904), 1, aux_sym_class_declaration_token3, - ACTIONS(1894), 1, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2555), 1, + ACTIONS(2552), 1, aux_sym_class_declaration_token13, STATE(1158), 1, sym_public_section, - STATE(1859), 1, + STATE(1911), 1, sym_protected_section, - STATE(3072), 1, + STATE(2373), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [26870] = 2, - ACTIONS(3), 2, sym_eol_comment, + [27760] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2557), 7, + sym_eol_comment, + ACTIONS(2554), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -37432,11 +38287,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [26884] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [27775] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2559), 7, + sym_eol_comment, + ACTIONS(2556), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -37444,11 +38300,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [26898] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [27790] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2561), 7, + sym_eol_comment, + ACTIONS(2558), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -37456,11 +38313,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [26912] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [27805] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2563), 7, + sym_eol_comment, + ACTIONS(2560), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -37468,29 +38326,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [26926] = 8, - ACTIONS(1890), 1, - aux_sym_class_declaration_token3, - ACTIONS(1894), 1, + [27820] = 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + ACTIONS(2562), 7, + aux_sym_class_declaration_token13, aux_sym__create_addition_token2, - ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2565), 1, - aux_sym_class_declaration_token13, - STATE(1181), 1, - sym_public_section, - STATE(1635), 1, - sym_protected_section, - STATE(2740), 1, - sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, + aux_sym_variable_declaration_token1, + [27835] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [26952] = 2, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(2567), 7, + ACTIONS(2564), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -37498,11 +38352,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [26966] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [27850] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2569), 7, + sym_eol_comment, + ACTIONS(2566), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -37510,11 +38365,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [26980] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [27865] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2571), 7, + sym_eol_comment, + ACTIONS(2568), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -37522,47 +38378,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [26994] = 8, - ACTIONS(1890), 1, + [27880] = 8, + ACTIONS(1904), 1, aux_sym_class_declaration_token3, - ACTIONS(1894), 1, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2573), 1, + ACTIONS(2570), 1, aux_sym_class_declaration_token13, STATE(1168), 1, sym_public_section, - STATE(1527), 1, + STATE(1547), 1, sym_protected_section, - STATE(3120), 1, + STATE(3068), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [27020] = 8, - ACTIONS(1316), 1, - aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(1320), 1, - aux_sym_returning_parameter_token1, - ACTIONS(2575), 1, - anon_sym_DOT, - STATE(1144), 1, - sym_returning_parameter, - STATE(1908), 1, - sym__method_declaration_raising, - STATE(3052), 1, - sym__method_declaration_exceptions, - ACTIONS(3), 2, sym_eol_comment, + [27907] = 8, + ACTIONS(1904), 1, + aux_sym_class_declaration_token3, + ACTIONS(1908), 1, + aux_sym__create_addition_token2, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(2572), 1, + aux_sym_class_declaration_token13, + STATE(1047), 1, + sym_public_section, + STATE(1761), 1, + sym_protected_section, + STATE(2783), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [27046] = 2, - ACTIONS(3), 2, sym_eol_comment, + [27934] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2577), 7, + sym_eol_comment, + ACTIONS(2574), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -37570,11 +38429,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [27060] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [27949] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2579), 7, + sym_eol_comment, + ACTIONS(2576), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -37582,47 +38442,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [27074] = 8, - ACTIONS(1890), 1, + [27964] = 8, + ACTIONS(1904), 1, aux_sym_class_declaration_token3, - ACTIONS(1894), 1, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2581), 1, + ACTIONS(2578), 1, aux_sym_class_declaration_token13, STATE(1174), 1, sym_public_section, - STATE(1564), 1, + STATE(1614), 1, sym_protected_section, - STATE(3105), 1, + STATE(2999), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [27100] = 8, - ACTIONS(1890), 1, + sym_eol_comment, + [27991] = 8, + ACTIONS(1904), 1, aux_sym_class_declaration_token3, - ACTIONS(1894), 1, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2583), 1, + ACTIONS(2580), 1, aux_sym_class_declaration_token13, STATE(1178), 1, sym_public_section, - STATE(1602), 1, + STATE(1628), 1, sym_protected_section, - STATE(3102), 1, + STATE(2982), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [27126] = 2, - ACTIONS(3), 2, sym_eol_comment, + [28018] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2585), 7, + sym_eol_comment, + ACTIONS(2582), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -37630,29 +38493,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [27140] = 8, - ACTIONS(1890), 1, + [28033] = 8, + ACTIONS(1904), 1, aux_sym_class_declaration_token3, - ACTIONS(1894), 1, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2587), 1, + ACTIONS(2584), 1, aux_sym_class_declaration_token13, STATE(1169), 1, sym_public_section, - STATE(1629), 1, + STATE(1790), 1, sym_protected_section, - STATE(2748), 1, + STATE(2740), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [27166] = 2, - ACTIONS(3), 2, sym_eol_comment, + [28060] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2589), 7, + sym_eol_comment, + ACTIONS(2586), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -37660,11 +38525,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [27180] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [28075] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2591), 7, + sym_eol_comment, + ACTIONS(2588), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -37672,41 +38538,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [27194] = 8, - ACTIONS(1890), 1, + [28090] = 8, + ACTIONS(1904), 1, aux_sym_class_declaration_token3, - ACTIONS(1894), 1, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2593), 1, + ACTIONS(2590), 1, aux_sym_class_declaration_token13, - STATE(1044), 1, + STATE(1045), 1, sym_public_section, - STATE(1598), 1, + STATE(1764), 1, sym_protected_section, - STATE(2783), 1, + STATE(2778), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [27220] = 2, - ACTIONS(3), 2, sym_eol_comment, + [28117] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2595), 7, - aux_sym_class_declaration_token13, - aux_sym__create_addition_token2, - aux_sym__create_addition_token3, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_chained_interface_declaration_token1, - aux_sym_variable_declaration_token1, - [27234] = 2, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(2597), 7, + ACTIONS(2592), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -37714,11 +38570,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [27248] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [28132] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2599), 7, + sym_eol_comment, + ACTIONS(2594), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -37726,11 +38583,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [27262] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [28147] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2601), 7, + sym_eol_comment, + ACTIONS(2596), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -37738,11 +38596,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [27276] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [28162] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2603), 7, + sym_eol_comment, + ACTIONS(2598), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -37750,47 +38609,63 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [27290] = 8, - ACTIONS(1890), 1, + [28177] = 8, + ACTIONS(1341), 1, + aux_sym__method_declaration_raising_token1, + ACTIONS(1343), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(1345), 1, + aux_sym_returning_parameter_token1, + ACTIONS(2600), 1, + anon_sym_DOT, + STATE(1149), 1, + sym_returning_parameter, + STATE(1836), 1, + sym__method_declaration_raising, + STATE(2288), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + [28204] = 8, + ACTIONS(1904), 1, aux_sym_class_declaration_token3, - ACTIONS(1894), 1, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2605), 1, + ACTIONS(2602), 1, aux_sym_class_declaration_token13, - STATE(1113), 1, + STATE(1162), 1, sym_public_section, - STATE(1622), 1, + STATE(1786), 1, sym_protected_section, - STATE(2753), 1, + STATE(2748), 1, sym_private_section, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [28231] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [27316] = 8, - ACTIONS(1890), 1, - aux_sym_class_declaration_token3, - ACTIONS(1894), 1, + sym_eol_comment, + ACTIONS(2604), 7, + aux_sym_class_declaration_token13, aux_sym__create_addition_token2, - ACTIONS(1896), 1, aux_sym__create_addition_token3, - ACTIONS(2607), 1, - aux_sym_class_declaration_token13, - STATE(1041), 1, - sym_public_section, - STATE(1606), 1, - sym_protected_section, - STATE(2778), 1, - sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, + aux_sym_variable_declaration_token1, + [28246] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [27342] = 2, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(2609), 7, + ACTIONS(2606), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -37798,11 +38673,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [27356] = 2, - ACTIONS(3), 2, + [28261] = 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + ACTIONS(2608), 7, + aux_sym_class_declaration_token13, + aux_sym__create_addition_token2, + aux_sym__create_addition_token3, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, + aux_sym_variable_declaration_token1, + [28276] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2611), 7, + sym_eol_comment, + ACTIONS(2610), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -37810,29 +38699,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [27370] = 8, - ACTIONS(1890), 1, + [28291] = 8, + ACTIONS(1904), 1, aux_sym_class_declaration_token3, - ACTIONS(1894), 1, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2613), 1, + ACTIONS(2612), 1, aux_sym_class_declaration_token13, STATE(1022), 1, sym_public_section, - STATE(1620), 1, + STATE(1779), 1, sym_protected_section, - STATE(2759), 1, + STATE(2753), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [27396] = 2, - ACTIONS(3), 2, sym_eol_comment, + [28318] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2615), 7, + sym_eol_comment, + ACTIONS(2614), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -37840,11 +38731,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [27410] = 2, - ACTIONS(3), 2, + [28333] = 8, + ACTIONS(1904), 1, + aux_sym_class_declaration_token3, + ACTIONS(1908), 1, + aux_sym__create_addition_token2, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(2616), 1, + aux_sym_class_declaration_token13, + STATE(1023), 1, + sym_public_section, + STATE(1776), 1, + sym_protected_section, + STATE(2759), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [28360] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2617), 7, + sym_eol_comment, + ACTIONS(2618), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -37852,47 +38763,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [27424] = 8, - ACTIONS(1310), 1, - aux_sym__method_declaration_importing_token1, - ACTIONS(1316), 1, - aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(2619), 1, - anon_sym_DOT, - STATE(1184), 1, - sym__method_declaration_importing, - STATE(1758), 1, - sym__method_declaration_raising, - STATE(3081), 1, - sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + [28375] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [27450] = 8, - ACTIONS(1316), 1, + sym_eol_comment, + ACTIONS(2620), 7, + aux_sym_class_declaration_token13, + aux_sym__create_addition_token2, + aux_sym__create_addition_token3, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_chained_interface_declaration_token1, + aux_sym_variable_declaration_token1, + [28390] = 8, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(1320), 1, + ACTIONS(1345), 1, aux_sym_returning_parameter_token1, - ACTIONS(2621), 1, + ACTIONS(2622), 1, anon_sym_DOT, - STATE(1051), 1, + STATE(1054), 1, sym_returning_parameter, STATE(1845), 1, sym__method_declaration_raising, - STATE(2343), 1, + STATE(2655), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [27476] = 2, - ACTIONS(3), 2, sym_eol_comment, + [28417] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2623), 7, + sym_eol_comment, + ACTIONS(2624), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -37900,11 +38808,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [27490] = 2, - ACTIONS(3), 2, + [28432] = 8, + ACTIONS(1335), 1, + aux_sym__method_declaration_importing_token1, + ACTIONS(1341), 1, + aux_sym__method_declaration_raising_token1, + ACTIONS(1343), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(2626), 1, + anon_sym_DOT, + STATE(1184), 1, + sym__method_declaration_importing, + STATE(1846), 1, + sym__method_declaration_raising, + STATE(2642), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [28459] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2625), 7, + sym_eol_comment, + ACTIONS(2628), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -37912,11 +38840,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [27504] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [28474] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2627), 7, + sym_eol_comment, + ACTIONS(2630), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -37924,29 +38853,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [27518] = 8, - ACTIONS(1890), 1, - aux_sym_class_declaration_token3, - ACTIONS(1894), 1, - aux_sym__create_addition_token2, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(2629), 1, - aux_sym_class_declaration_token13, - STATE(1064), 1, - sym_public_section, - STATE(1617), 1, - sym_protected_section, - STATE(2764), 1, - sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + [28489] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [27544] = 2, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(2631), 7, + ACTIONS(2632), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -37954,11 +38866,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [27558] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [28504] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2633), 7, + sym_eol_comment, + ACTIONS(2634), 7, aux_sym_class_declaration_token13, aux_sym__create_addition_token2, aux_sym__create_addition_token3, @@ -37966,23968 +38879,26132 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_class_constructor_declaration_token1, aux_sym_chained_interface_declaration_token1, aux_sym_variable_declaration_token1, - [27572] = 8, - ACTIONS(1890), 1, + [28519] = 8, + ACTIONS(1904), 1, aux_sym_class_declaration_token3, - ACTIONS(1894), 1, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2635), 1, + ACTIONS(2636), 1, aux_sym_class_declaration_token13, - STATE(1028), 1, + STATE(1183), 1, sym_public_section, - STATE(1615), 1, + STATE(1793), 1, sym_protected_section, - STATE(2767), 1, + STATE(2627), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [27598] = 8, - ACTIONS(1890), 1, + sym_eol_comment, + [28546] = 8, + ACTIONS(1904), 1, aux_sym_class_declaration_token3, - ACTIONS(1894), 1, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2637), 1, + ACTIONS(2638), 1, aux_sym_class_declaration_token13, - STATE(1045), 1, + STATE(1033), 1, sym_public_section, - STATE(1825), 1, + STATE(1775), 1, sym_protected_section, - STATE(2365), 1, + STATE(2764), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [27624] = 8, - ACTIONS(1890), 1, + sym_eol_comment, + [28573] = 8, + ACTIONS(1904), 1, aux_sym_class_declaration_token3, - ACTIONS(1894), 1, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2639), 1, + ACTIONS(2640), 1, aux_sym_class_declaration_token13, - STATE(1183), 1, + STATE(1167), 1, sym_public_section, - STATE(1712), 1, + STATE(1835), 1, sym_protected_section, - STATE(3093), 1, + STATE(2667), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [27650] = 8, - ACTIONS(1890), 1, + sym_eol_comment, + [28600] = 8, + ACTIONS(1904), 1, aux_sym_class_declaration_token3, - ACTIONS(1894), 1, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2641), 1, + ACTIONS(2642), 1, aux_sym_class_declaration_token13, - STATE(1047), 1, + STATE(1038), 1, sym_public_section, - STATE(1838), 1, + STATE(1770), 1, sym_protected_section, - STATE(2349), 1, + STATE(2770), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [27676] = 8, - ACTIONS(1890), 1, + sym_eol_comment, + [28627] = 8, + ACTIONS(1904), 1, aux_sym_class_declaration_token3, - ACTIONS(1894), 1, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2643), 1, + ACTIONS(2644), 1, aux_sym_class_declaration_token13, - STATE(1167), 1, + STATE(1035), 1, sym_public_section, - STATE(1733), 1, + STATE(1772), 1, sym_protected_section, - STATE(3087), 1, + STATE(2767), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [27702] = 8, - ACTIONS(1890), 1, + sym_eol_comment, + [28654] = 8, + ACTIONS(1904), 1, aux_sym_class_declaration_token3, - ACTIONS(1894), 1, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2645), 1, + ACTIONS(2646), 1, aux_sym_class_declaration_token13, - STATE(1033), 1, + STATE(1049), 1, sym_public_section, - STATE(1612), 1, + STATE(1825), 1, sym_protected_section, - STATE(2770), 1, + STATE(2683), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [27728] = 5, - ACTIONS(1234), 1, - aux_sym__explicit_parameter_list_token1, - ACTIONS(2647), 1, - anon_sym_RPAREN, - STATE(1002), 1, - aux_sym__explicit_parameter_list_repeat1, - ACTIONS(3), 2, sym_eol_comment, + [28681] = 8, + ACTIONS(1904), 1, + aux_sym_class_declaration_token3, + ACTIONS(1908), 1, + aux_sym__create_addition_token2, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(2648), 1, + aux_sym_class_declaration_token13, + STATE(1050), 1, + sym_public_section, + STATE(1838), 1, + sym_protected_section, + STATE(2664), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(1230), 3, - aux_sym__method_declaration_importing_token1, - aux_sym__method_declaration_exporting_token1, - aux_sym__method_declaration_changing_token1, - [27747] = 7, - ACTIONS(1462), 1, + sym_eol_comment, + [28708] = 7, + ACTIONS(1442), 1, aux_sym__create_addition_token1, - ACTIONS(1900), 1, + ACTIONS(2282), 1, aux_sym_class_declaration_token8, - ACTIONS(1902), 1, + ACTIONS(2284), 1, aux_sym_class_declaration_token11, - ACTIONS(1904), 1, + ACTIONS(2286), 1, aux_sym_class_declaration_token12, - ACTIONS(1906), 1, + ACTIONS(2288), 1, anon_sym_DOT, - STATE(1323), 1, + STATE(1259), 1, sym__create_addition, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [27770] = 5, - ACTIONS(2649), 1, - aux_sym_generic_typing_token1, - ACTIONS(2651), 1, - aux_sym_generic_typing_token2, - STATE(2616), 1, - sym__data_object_typing, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - STATE(2064), 3, - sym__data_object_typing_normal, - sym__data_object_typing_reference, - sym__data_object_typing_itabs, - [27789] = 7, - ACTIONS(1462), 1, + [28732] = 7, + ACTIONS(1442), 1, aux_sym__create_addition_token1, - ACTIONS(1926), 1, + ACTIONS(2650), 1, aux_sym_class_declaration_token8, - ACTIONS(1928), 1, + ACTIONS(2652), 1, aux_sym_class_declaration_token11, - ACTIONS(1930), 1, + ACTIONS(2654), 1, aux_sym_class_declaration_token12, - ACTIONS(1932), 1, + ACTIONS(2656), 1, anon_sym_DOT, - STATE(1358), 1, + STATE(1193), 1, sym__create_addition, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [27812] = 7, - ACTIONS(1462), 1, + sym_eol_comment, + [28756] = 7, + ACTIONS(1442), 1, aux_sym__create_addition_token1, - ACTIONS(1940), 1, + ACTIONS(1934), 1, aux_sym_class_declaration_token8, - ACTIONS(1942), 1, + ACTIONS(1936), 1, aux_sym_class_declaration_token11, - ACTIONS(1944), 1, + ACTIONS(1938), 1, aux_sym_class_declaration_token12, - ACTIONS(1946), 1, + ACTIONS(1940), 1, anon_sym_DOT, - STATE(1366), 1, + STATE(1195), 1, sym__create_addition, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [28780] = 7, + ACTIONS(1442), 1, + aux_sym__create_addition_token1, + ACTIONS(1920), 1, + aux_sym_class_declaration_token8, + ACTIONS(1922), 1, + aux_sym_class_declaration_token11, + ACTIONS(1924), 1, + aux_sym_class_declaration_token12, + ACTIONS(1926), 1, + anon_sym_DOT, + STATE(1233), 1, + sym__create_addition, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [27835] = 7, - ACTIONS(1462), 1, + sym_eol_comment, + [28804] = 7, + ACTIONS(1442), 1, aux_sym__create_addition_token1, - ACTIONS(2653), 1, + ACTIONS(1948), 1, aux_sym_class_declaration_token8, - ACTIONS(2655), 1, + ACTIONS(1950), 1, aux_sym_class_declaration_token11, - ACTIONS(2657), 1, + ACTIONS(1952), 1, aux_sym_class_declaration_token12, - ACTIONS(2659), 1, + ACTIONS(1954), 1, anon_sym_DOT, - STATE(1387), 1, + STATE(1196), 1, sym__create_addition, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [28828] = 7, + ACTIONS(1442), 1, + aux_sym__create_addition_token1, + ACTIONS(2658), 1, + aux_sym_class_declaration_token8, + ACTIONS(2660), 1, + aux_sym_class_declaration_token11, + ACTIONS(2662), 1, + aux_sym_class_declaration_token12, + ACTIONS(2664), 1, + anon_sym_DOT, + STATE(1199), 1, + sym__create_addition, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [27858] = 5, - ACTIONS(2649), 1, + sym_eol_comment, + [28852] = 5, + ACTIONS(2666), 1, aux_sym_generic_typing_token1, - ACTIONS(2651), 1, + ACTIONS(2668), 1, aux_sym_generic_typing_token2, - STATE(2424), 1, + STATE(2867), 1, sym__data_object_typing, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - STATE(2064), 3, + sym_eol_comment, + STATE(1994), 3, sym__data_object_typing_normal, sym__data_object_typing_reference, sym__data_object_typing_itabs, - [27877] = 5, - ACTIONS(2649), 1, + [28872] = 5, + ACTIONS(2666), 1, aux_sym_generic_typing_token1, - ACTIONS(2651), 1, + ACTIONS(2668), 1, aux_sym_generic_typing_token2, - STATE(2867), 1, + STATE(2424), 1, sym__data_object_typing, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - STATE(2064), 3, + sym_eol_comment, + STATE(1994), 3, sym__data_object_typing_normal, sym__data_object_typing_reference, sym__data_object_typing_itabs, - [27896] = 7, - ACTIONS(1462), 1, + [28892] = 7, + ACTIONS(1442), 1, aux_sym__create_addition_token1, - ACTIONS(1964), 1, + ACTIONS(1972), 1, aux_sym_class_declaration_token8, - ACTIONS(1966), 1, + ACTIONS(1974), 1, aux_sym_class_declaration_token11, - ACTIONS(1968), 1, + ACTIONS(1976), 1, aux_sym_class_declaration_token12, - ACTIONS(1970), 1, + ACTIONS(1978), 1, anon_sym_DOT, - STATE(1397), 1, + STATE(1200), 1, sym__create_addition, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [27919] = 7, - ACTIONS(1462), 1, + sym_eol_comment, + [28916] = 7, + ACTIONS(1442), 1, aux_sym__create_addition_token1, - ACTIONS(2661), 1, + ACTIONS(2670), 1, aux_sym_class_declaration_token8, - ACTIONS(2663), 1, + ACTIONS(2672), 1, aux_sym_class_declaration_token11, - ACTIONS(2665), 1, + ACTIONS(2674), 1, aux_sym_class_declaration_token12, - ACTIONS(2667), 1, + ACTIONS(2676), 1, anon_sym_DOT, - STATE(1224), 1, + STATE(1336), 1, sym__create_addition, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [27942] = 7, - ACTIONS(1462), 1, + sym_eol_comment, + [28940] = 7, + ACTIONS(1442), 1, aux_sym__create_addition_token1, - ACTIONS(1742), 1, + ACTIONS(1740), 1, aux_sym_class_declaration_token8, - ACTIONS(1744), 1, + ACTIONS(1742), 1, aux_sym_class_declaration_token11, - ACTIONS(1746), 1, + ACTIONS(1744), 1, aux_sym_class_declaration_token12, - ACTIONS(1748), 1, + ACTIONS(1746), 1, anon_sym_DOT, - STATE(1403), 1, + STATE(1202), 1, sym__create_addition, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [28964] = 5, + ACTIONS(2666), 1, + aux_sym_generic_typing_token1, + ACTIONS(2668), 1, + aux_sym_generic_typing_token2, + STATE(2617), 1, + sym__data_object_typing, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [27965] = 5, - ACTIONS(2672), 1, + sym_eol_comment, + STATE(1994), 3, + sym__data_object_typing_normal, + sym__data_object_typing_reference, + sym__data_object_typing_itabs, + [28984] = 5, + ACTIONS(2681), 1, anon_sym_RPAREN, - ACTIONS(2674), 1, + ACTIONS(2683), 1, aux_sym__explicit_parameter_list_token1, - STATE(1002), 1, + STATE(1006), 1, aux_sym__explicit_parameter_list_repeat1, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2669), 3, + sym_eol_comment, + ACTIONS(2678), 3, aux_sym__method_declaration_importing_token1, aux_sym__method_declaration_exporting_token1, aux_sym__method_declaration_changing_token1, - [27984] = 7, - ACTIONS(1462), 1, + [29004] = 7, + ACTIONS(1442), 1, aux_sym__create_addition_token1, - ACTIONS(2010), 1, + ACTIONS(2024), 1, aux_sym_class_declaration_token8, - ACTIONS(2012), 1, + ACTIONS(2026), 1, aux_sym_class_declaration_token11, - ACTIONS(2014), 1, + ACTIONS(2028), 1, aux_sym_class_declaration_token12, - ACTIONS(2016), 1, + ACTIONS(2030), 1, anon_sym_DOT, - STATE(1210), 1, + STATE(1335), 1, sym__create_addition, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [28007] = 3, - ACTIONS(2677), 1, - sym_name, - ACTIONS(3), 2, sym_eol_comment, + [29028] = 3, + ACTIONS(2686), 1, + sym_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2679), 5, + sym_eol_comment, + ACTIONS(2688), 5, anon_sym_DOT, aux_sym__method_declaration_importing_token1, aux_sym__method_declaration_exporting_token1, aux_sym__method_declaration_changing_token1, aux_sym__method_declaration_exceptions_token1, - [28022] = 4, - ACTIONS(2681), 1, + [29044] = 4, + ACTIONS(2690), 1, sym_name, - STATE(1005), 1, + STATE(1009), 1, aux_sym_line_spec_repeat1, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2684), 4, + sym_eol_comment, + ACTIONS(2693), 4, anon_sym_DOT, aux_sym_loop_statement_token3, aux_sym_line_spec_token3, aux_sym__read_table_result_token1, - [28039] = 5, - ACTIONS(2691), 1, + [29062] = 5, + ACTIONS(2700), 1, aux_sym__method_declaration_exporting_token1, - STATE(1006), 1, + STATE(1010), 1, aux_sym__function_parameter_list, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(2686), 2, + ACTIONS(2695), 2, anon_sym_DOT, aux_sym__method_declaration_exceptions_token1, - ACTIONS(2688), 2, + ACTIONS(2697), 2, aux_sym__method_declaration_importing_token1, aux_sym__method_declaration_changing_token1, - [28058] = 7, - ACTIONS(1462), 1, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + [29082] = 7, + ACTIONS(1442), 1, aux_sym__create_addition_token1, - ACTIONS(2694), 1, + ACTIONS(2703), 1, aux_sym_class_declaration_token8, - ACTIONS(2696), 1, + ACTIONS(2705), 1, aux_sym_class_declaration_token11, - ACTIONS(2698), 1, + ACTIONS(2707), 1, aux_sym_class_declaration_token12, - ACTIONS(2700), 1, + ACTIONS(2709), 1, anon_sym_DOT, - STATE(1268), 1, + STATE(1243), 1, sym__create_addition, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [28081] = 5, - ACTIONS(2649), 1, + sym_eol_comment, + [29106] = 5, + ACTIONS(2666), 1, aux_sym_generic_typing_token1, - ACTIONS(2651), 1, + ACTIONS(2668), 1, aux_sym_generic_typing_token2, - STATE(2040), 1, + STATE(1966), 1, sym__data_object_typing, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - STATE(2064), 3, + sym_eol_comment, + STATE(1994), 3, sym__data_object_typing_normal, sym__data_object_typing_reference, sym__data_object_typing_itabs, - [28100] = 7, - ACTIONS(1462), 1, - aux_sym__create_addition_token1, - ACTIONS(1724), 1, - aux_sym_class_declaration_token8, - ACTIONS(1726), 1, - aux_sym_class_declaration_token11, - ACTIONS(1728), 1, - aux_sym_class_declaration_token12, - ACTIONS(1730), 1, - anon_sym_DOT, - STATE(1414), 1, - sym__create_addition, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - [28123] = 5, - ACTIONS(2702), 1, + [29126] = 5, + ACTIONS(2711), 1, sym_name, - ACTIONS(2706), 1, + ACTIONS(2715), 1, aux_sym_line_spec_token3, - STATE(1005), 1, + STATE(1009), 1, aux_sym_line_spec_repeat1, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2704), 3, + sym_eol_comment, + ACTIONS(2713), 3, anon_sym_DOT, aux_sym_loop_statement_token3, aux_sym__read_table_result_token1, - [28142] = 2, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(558), 6, - anon_sym_DOT, - aux_sym_method_parameters_token1, - anon_sym_COMMA, - aux_sym__data_object_typing_normal_token5, - anon_sym_EQ, - anon_sym_DASH2, - [28155] = 7, - ACTIONS(1462), 1, + [29146] = 7, + ACTIONS(1442), 1, aux_sym__create_addition_token1, - ACTIONS(2708), 1, + ACTIONS(2717), 1, aux_sym_class_declaration_token8, - ACTIONS(2710), 1, + ACTIONS(2719), 1, aux_sym_class_declaration_token11, - ACTIONS(2712), 1, + ACTIONS(2721), 1, aux_sym_class_declaration_token12, - ACTIONS(2714), 1, + ACTIONS(2723), 1, anon_sym_DOT, - STATE(1332), 1, + STATE(1194), 1, sym__create_addition, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [28178] = 7, - ACTIONS(1462), 1, - aux_sym__create_addition_token1, - ACTIONS(2716), 1, - aux_sym_class_declaration_token8, - ACTIONS(2718), 1, - aux_sym_class_declaration_token11, - ACTIONS(2720), 1, - aux_sym_class_declaration_token12, - ACTIONS(2722), 1, - anon_sym_DOT, - STATE(1342), 1, - sym__create_addition, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [28201] = 7, - ACTIONS(1462), 1, + [29170] = 7, + ACTIONS(1442), 1, aux_sym__create_addition_token1, - ACTIONS(2282), 1, + ACTIONS(2725), 1, aux_sym_class_declaration_token8, - ACTIONS(2284), 1, + ACTIONS(2727), 1, aux_sym_class_declaration_token11, - ACTIONS(2286), 1, + ACTIONS(2729), 1, aux_sym_class_declaration_token12, - ACTIONS(2288), 1, + ACTIONS(2731), 1, anon_sym_DOT, - STATE(1226), 1, + STATE(1436), 1, sym__create_addition, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [29194] = 5, + ACTIONS(1233), 1, + aux_sym__explicit_parameter_list_token1, + ACTIONS(2733), 1, + anon_sym_RPAREN, + STATE(1006), 1, + aux_sym__explicit_parameter_list_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [28224] = 7, - ACTIONS(1462), 1, + sym_eol_comment, + ACTIONS(1229), 3, + aux_sym__method_declaration_importing_token1, + aux_sym__method_declaration_exporting_token1, + aux_sym__method_declaration_changing_token1, + [29214] = 7, + ACTIONS(1442), 1, aux_sym__create_addition_token1, - ACTIONS(2724), 1, + ACTIONS(1710), 1, aux_sym_class_declaration_token8, - ACTIONS(2726), 1, + ACTIONS(1712), 1, aux_sym_class_declaration_token11, - ACTIONS(2728), 1, + ACTIONS(1714), 1, aux_sym_class_declaration_token12, - ACTIONS(2730), 1, + ACTIONS(1716), 1, anon_sym_DOT, - STATE(1417), 1, + STATE(1223), 1, sym__create_addition, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [28247] = 6, - ACTIONS(1894), 1, - aux_sym__create_addition_token2, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(2732), 1, - aux_sym_class_declaration_token13, - STATE(1507), 1, - sym_protected_section, - STATE(2084), 1, - sym_private_section, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [28267] = 6, - ACTIONS(1316), 1, + [29238] = 6, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(2734), 1, + ACTIONS(2735), 1, anon_sym_DOT, - STATE(1802), 1, + STATE(1671), 1, sym__method_declaration_raising, - STATE(3011), 1, + STATE(2918), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [29259] = 4, + ACTIONS(2737), 1, + aux_sym_generic_typing_token1, + ACTIONS(2739), 1, + aux_sym_generic_typing_token2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [28287] = 6, - ACTIONS(1894), 1, - aux_sym__create_addition_token2, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(2565), 1, - aux_sym_class_declaration_token13, - STATE(1635), 1, - sym_protected_section, - STATE(2740), 1, - sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - [28307] = 6, - ACTIONS(1316), 1, - aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(1381), 1, - anon_sym_DOT, - STATE(1796), 1, - sym__method_declaration_raising, - STATE(3074), 1, - sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - [28327] = 6, - ACTIONS(1316), 1, - aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(2736), 1, - anon_sym_DOT, - STATE(1883), 1, - sym__method_declaration_raising, - STATE(2302), 1, - sym__method_declaration_exceptions, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [28347] = 6, - ACTIONS(2738), 1, + STATE(1964), 3, + sym__typing, + sym_generic_typing, + sym_complete_typing, + [29276] = 6, + ACTIONS(2741), 1, anon_sym_DOT, - ACTIONS(2740), 1, + ACTIONS(2743), 1, aux_sym_for_all_entries_token1, - ACTIONS(2742), 1, + ACTIONS(2745), 1, aux_sym__where_clause_token1, - STATE(1919), 1, + STATE(1948), 1, sym_for_all_entries, - STATE(3065), 1, + STATE(2180), 1, sym__where_clause, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [28367] = 6, - ACTIONS(1894), 1, + sym_eol_comment, + [29297] = 6, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2533), 1, + ACTIONS(2584), 1, aux_sym_class_declaration_token13, - STATE(1595), 1, + STATE(1790), 1, sym_protected_section, - STATE(2789), 1, + STATE(2740), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [28387] = 6, - ACTIONS(1894), 1, + sym_eol_comment, + [29318] = 6, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2449), 1, + ACTIONS(2747), 1, aux_sym_class_declaration_token13, - STATE(1641), 1, + STATE(1759), 1, sym_protected_section, - STATE(2725), 1, + STATE(2785), 1, sym_private_section, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [29339] = 6, + ACTIONS(1908), 1, + aux_sym__create_addition_token2, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(2528), 1, + aux_sym_class_declaration_token13, + STATE(1756), 1, + sym_protected_section, + STATE(2789), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [28407] = 6, - ACTIONS(1316), 1, + sym_eol_comment, + [29360] = 6, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(2744), 1, + ACTIONS(2749), 1, anon_sym_DOT, - STATE(1904), 1, + STATE(1818), 1, sym__method_declaration_raising, - STATE(2283), 1, + STATE(2277), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [28427] = 6, - ACTIONS(1316), 1, + sym_eol_comment, + [29381] = 6, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(2746), 1, + ACTIONS(2751), 1, anon_sym_DOT, - STATE(1909), 1, + STATE(1619), 1, sym__method_declaration_raising, - STATE(2276), 1, + STATE(2096), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [28447] = 6, - ACTIONS(1894), 1, - aux_sym__create_addition_token2, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(2748), 1, - aux_sym_class_declaration_token13, - STATE(1809), 1, - sym_protected_section, - STATE(2393), 1, - sym_private_section, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [28467] = 6, - ACTIONS(1316), 1, + [29402] = 6, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(2750), 1, + ACTIONS(2753), 1, anon_sym_DOT, - STATE(1876), 1, + STATE(1904), 1, sym__method_declaration_raising, - STATE(3035), 1, + STATE(2374), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [28487] = 6, - ACTIONS(1894), 1, - aux_sym__create_addition_token2, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(2461), 1, - aux_sym_class_declaration_token13, - STATE(1585), 1, - sym_protected_section, - STATE(2799), 1, - sym_private_section, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [28507] = 6, - ACTIONS(1894), 1, + [29423] = 6, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(1922), 1, + ACTIONS(2755), 1, aux_sym_class_declaration_token13, - STATE(1640), 1, + STATE(1809), 1, sym_protected_section, - STATE(2733), 1, + STATE(2706), 1, sym_private_section, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [29444] = 6, + ACTIONS(1341), 1, + aux_sym__method_declaration_raising_token1, + ACTIONS(1343), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(2757), 1, + anon_sym_DOT, + STATE(1898), 1, + sym__method_declaration_raising, + STATE(2396), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [28527] = 4, - ACTIONS(2752), 1, + sym_eol_comment, + [29465] = 4, + ACTIONS(2737), 1, aux_sym_generic_typing_token1, - ACTIONS(2754), 1, + ACTIONS(2739), 1, aux_sym_generic_typing_token2, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - STATE(517), 3, + sym_eol_comment, + STATE(506), 3, sym__typing, sym_generic_typing, sym_complete_typing, - [28543] = 6, - ACTIONS(1894), 1, + [29482] = 6, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2756), 1, + ACTIONS(2759), 1, aux_sym_class_declaration_token13, - STATE(1546), 1, + STATE(1734), 1, sym_protected_section, STATE(2834), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [28563] = 6, - ACTIONS(1894), 1, + sym_eol_comment, + [29503] = 6, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2463), 1, + ACTIONS(2761), 1, aux_sym_class_declaration_token13, - STATE(1784), 1, + STATE(1810), 1, sym_protected_section, - STATE(2421), 1, + STATE(2705), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [28583] = 6, - ACTIONS(1894), 1, + sym_eol_comment, + [29524] = 6, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2758), 1, + ACTIONS(2470), 1, aux_sym_class_declaration_token13, - STATE(1584), 1, + STATE(1796), 1, sym_protected_section, - STATE(2801), 1, + STATE(2725), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [28603] = 6, - ACTIONS(1894), 1, + sym_eol_comment, + [29545] = 6, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2760), 1, + ACTIONS(2763), 1, aux_sym_class_declaration_token13, - STATE(1792), 1, + STATE(1752), 1, sym_protected_section, - STATE(2411), 1, + STATE(2796), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [28623] = 6, - ACTIONS(1894), 1, + sym_eol_comment, + [29566] = 6, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2457), 1, + ACTIONS(2466), 1, aux_sym_class_declaration_token13, - STATE(1866), 1, + STATE(1784), 1, sym_protected_section, - STATE(2264), 1, + STATE(2750), 1, sym_private_section, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [29587] = 6, + ACTIONS(1908), 1, + aux_sym__create_addition_token2, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(2460), 1, + aux_sym_class_declaration_token13, + STATE(1749), 1, + sym_protected_section, + STATE(2799), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [28643] = 6, - ACTIONS(1316), 1, + sym_eol_comment, + [29608] = 6, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(2762), 1, + ACTIONS(2765), 1, anon_sym_DOT, - STATE(1860), 1, + STATE(1551), 1, sym__method_declaration_raising, - STATE(3031), 1, + STATE(2153), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [28663] = 6, - ACTIONS(1894), 1, + sym_eol_comment, + [29629] = 6, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2764), 1, + ACTIONS(2767), 1, aux_sym_class_declaration_token13, - STATE(1839), 1, + STATE(1792), 1, sym_protected_section, - STATE(2262), 1, + STATE(2738), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [28683] = 6, - ACTIONS(1894), 1, + sym_eol_comment, + [29650] = 6, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2766), 1, + ACTIONS(2769), 1, aux_sym_class_declaration_token13, - STATE(1831), 1, + STATE(1748), 1, sym_protected_section, - STATE(2247), 1, + STATE(2801), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [28703] = 6, - ACTIONS(1894), 1, + sym_eol_comment, + [29671] = 6, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2768), 1, + ACTIONS(2458), 1, aux_sym_class_declaration_token13, - STATE(1645), 1, + STATE(1882), 1, sym_protected_section, - STATE(2721), 1, + STATE(2337), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [28723] = 6, - ACTIONS(1316), 1, + sym_eol_comment, + [29692] = 6, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(2770), 1, + ACTIONS(2771), 1, anon_sym_DOT, - STATE(1855), 1, + STATE(1546), 1, sym__method_declaration_raising, - STATE(3028), 1, + STATE(2140), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [28743] = 6, - ACTIONS(1894), 1, + sym_eol_comment, + [29713] = 6, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2445), 1, + ACTIONS(2773), 1, aux_sym_class_declaration_token13, - STATE(1562), 1, + STATE(1798), 1, sym_protected_section, - STATE(2812), 1, + STATE(2721), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [28763] = 6, - ACTIONS(1316), 1, - aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(2772), 1, - anon_sym_DOT, - STATE(1776), 1, - sym__method_declaration_raising, - STATE(3003), 1, - sym__method_declaration_exceptions, - ACTIONS(3), 2, sym_eol_comment, + [29734] = 6, + ACTIONS(1908), 1, + aux_sym__create_addition_token2, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(2775), 1, + aux_sym_class_declaration_token13, + STATE(1877), 1, + sym_protected_section, + STATE(2335), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [28783] = 6, - ACTIONS(1894), 1, + sym_eol_comment, + [29755] = 6, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2443), 1, + ACTIONS(2462), 1, aux_sym_class_declaration_token13, - STATE(1651), 1, + STATE(1803), 1, sym_protected_section, STATE(2714), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [28803] = 6, - ACTIONS(1894), 1, + sym_eol_comment, + [29776] = 6, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2774), 1, + ACTIONS(2777), 1, aux_sym_class_declaration_token13, - STATE(1556), 1, + STATE(1851), 1, sym_protected_section, - STATE(2816), 1, + STATE(2299), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [28823] = 6, - ACTIONS(1894), 1, + sym_eol_comment, + [29797] = 6, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2776), 1, + ACTIONS(2444), 1, aux_sym_class_declaration_token13, - STATE(1769), 1, + STATE(1744), 1, sym_protected_section, - STATE(2216), 1, + STATE(2812), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [28843] = 6, - ACTIONS(1316), 1, + sym_eol_comment, + [29818] = 6, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(2778), 1, + ACTIONS(2779), 1, anon_sym_DOT, - STATE(1744), 1, + STATE(1892), 1, sym__method_declaration_raising, - STATE(2983), 1, + STATE(2388), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [28863] = 6, - ACTIONS(1894), 1, + sym_eol_comment, + [29839] = 6, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2780), 1, + ACTIONS(2781), 1, aux_sym_class_declaration_token13, - STATE(1762), 1, + STATE(1743), 1, sym_protected_section, - STATE(2203), 1, + STATE(2816), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [28883] = 6, - ACTIONS(1316), 1, + sym_eol_comment, + [29860] = 6, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(2782), 1, + ACTIONS(2783), 1, anon_sym_DOT, - STATE(1844), 1, + STATE(1529), 1, sym__method_declaration_raising, - STATE(3025), 1, + STATE(2120), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [28903] = 6, - ACTIONS(1894), 1, + sym_eol_comment, + [29881] = 6, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2431), 1, + ACTIONS(2785), 1, aux_sym_class_declaration_token13, - STATE(1786), 1, + STATE(1755), 1, sym_protected_section, - STATE(2221), 1, + STATE(2267), 1, sym_private_section, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [29902] = 6, + ACTIONS(1908), 1, + aux_sym__create_addition_token2, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(2787), 1, + aux_sym_class_declaration_token13, + STATE(1739), 1, + sym_protected_section, + STATE(2257), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [28923] = 6, - ACTIONS(1316), 1, + sym_eol_comment, + [29923] = 6, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(2784), 1, + ACTIONS(2789), 1, anon_sym_DOT, - STATE(1709), 1, + STATE(1783), 1, sym__method_declaration_raising, - STATE(2963), 1, + STATE(2870), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [29944] = 6, + ACTIONS(1908), 1, + aux_sym__create_addition_token2, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(2432), 1, + aux_sym_class_declaration_token13, + STATE(1692), 1, + sym_protected_section, + STATE(2222), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [28943] = 6, - ACTIONS(1316), 1, + sym_eol_comment, + [29965] = 6, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(2786), 1, + ACTIONS(2791), 1, anon_sym_DOT, - STATE(1748), 1, + STATE(1766), 1, sym__method_declaration_raising, - STATE(2190), 1, + STATE(2774), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [28963] = 6, - ACTIONS(1316), 1, + sym_eol_comment, + [29986] = 6, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(2788), 1, + ACTIONS(2793), 1, anon_sym_DOT, - STATE(1581), 1, + STATE(1727), 1, sym__method_declaration_raising, - STATE(2928), 1, + STATE(2248), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [28983] = 6, - ACTIONS(1316), 1, + sym_eol_comment, + [30007] = 6, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(2790), 1, + ACTIONS(2795), 1, anon_sym_DOT, - STATE(1515), 1, + STATE(1751), 1, sym__method_declaration_raising, - STATE(2883), 1, + STATE(2797), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [29003] = 6, - ACTIONS(1316), 1, + sym_eol_comment, + [30028] = 6, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(2792), 1, + ACTIONS(2797), 1, anon_sym_DOT, - STATE(1751), 1, + STATE(1584), 1, sym__method_declaration_raising, - STATE(2446), 1, + STATE(3027), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [30049] = 6, + ACTIONS(1908), 1, + aux_sym__create_addition_token2, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(2298), 1, + aux_sym_class_declaration_token13, + STATE(1738), 1, + sym_protected_section, + STATE(2824), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [29023] = 6, - ACTIONS(1316), 1, + sym_eol_comment, + [30070] = 6, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(2794), 1, + ACTIONS(2799), 1, anon_sym_DOT, - STATE(1529), 1, + STATE(1541), 1, sym__method_declaration_raising, - STATE(2862), 1, + STATE(3077), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [29043] = 6, - ACTIONS(1316), 1, + sym_eol_comment, + [30091] = 6, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(2796), 1, + ACTIONS(2801), 1, anon_sym_DOT, - STATE(1537), 1, + STATE(1518), 1, sym__method_declaration_raising, - STATE(2852), 1, + STATE(3102), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [29063] = 6, - ACTIONS(1316), 1, + sym_eol_comment, + [30112] = 6, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(2798), 1, + ACTIONS(2803), 1, anon_sym_DOT, - STATE(1550), 1, + STATE(1741), 1, sym__method_declaration_raising, - STATE(2836), 1, + STATE(2825), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [29083] = 6, - ACTIONS(1316), 1, + sym_eol_comment, + [30133] = 6, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(2800), 1, + ACTIONS(2805), 1, anon_sym_DOT, - STATE(1741), 1, + STATE(1528), 1, sym__method_declaration_raising, - STATE(2381), 1, + STATE(3097), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [29103] = 6, - ACTIONS(1894), 1, - aux_sym__create_addition_token2, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(2272), 1, - aux_sym_class_declaration_token13, - STATE(1552), 1, - sym_protected_section, - STATE(2824), 1, - sym_private_section, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [29123] = 6, - ACTIONS(1316), 1, + [30154] = 6, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(2802), 1, + ACTIONS(2807), 1, anon_sym_DOT, STATE(1735), 1, sym__method_declaration_raising, - STATE(2624), 1, + STATE(2836), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [29143] = 6, - ACTIONS(1894), 1, - aux_sym__create_addition_token2, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(2804), 1, - aux_sym_class_declaration_token13, - STATE(1659), 1, - sym_protected_section, - STATE(2140), 1, - sym_private_section, - ACTIONS(3), 2, sym_eol_comment, + [30175] = 6, + ACTIONS(1341), 1, + aux_sym__method_declaration_raising_token1, + ACTIONS(1343), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(2809), 1, + anon_sym_DOT, + STATE(1583), 1, + sym__method_declaration_raising, + STATE(3034), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [29163] = 6, - ACTIONS(1894), 1, + sym_eol_comment, + [30196] = 6, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2806), 1, + ACTIONS(2811), 1, aux_sym_class_declaration_token13, - STATE(1551), 1, + STATE(1737), 1, sym_protected_section, STATE(2828), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [29183] = 6, - ACTIONS(1894), 1, - aux_sym__create_addition_token2, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(2808), 1, - aux_sym_class_declaration_token13, - STATE(1630), 1, - sym_protected_section, - STATE(2087), 1, - sym_private_section, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [29203] = 6, - ACTIONS(1894), 1, + [30217] = 6, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2810), 1, + ACTIONS(2813), 1, aux_sym_class_declaration_token13, - STATE(1588), 1, + STATE(1557), 1, sym_protected_section, - STATE(2796), 1, + STATE(2183), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [29223] = 6, - ACTIONS(1894), 1, + sym_eol_comment, + [30238] = 6, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2812), 1, + ACTIONS(2815), 1, aux_sym_class_declaration_token13, - STATE(1763), 1, + STATE(1554), 1, sym_protected_section, - STATE(2202), 1, + STATE(2169), 1, sym_private_section, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [30259] = 6, + ACTIONS(2817), 1, + aux_sym_loop_statement_token3, + ACTIONS(2819), 1, + aux_sym_line_spec_token1, + ACTIONS(2821), 1, + aux_sym__read_table_result_token1, + STATE(1817), 1, + sym_line_spec, + STATE(1960), 1, + sym__read_table_result, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [29243] = 6, - ACTIONS(1894), 1, + sym_eol_comment, + [30280] = 6, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2814), 1, + ACTIONS(2823), 1, aux_sym_class_declaration_token13, - STATE(1544), 1, + STATE(1732), 1, sym_protected_section, STATE(2838), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [29263] = 4, - ACTIONS(2752), 1, + sym_eol_comment, + [30301] = 4, + ACTIONS(2737), 1, aux_sym_generic_typing_token1, - ACTIONS(2754), 1, + ACTIONS(2739), 1, aux_sym_generic_typing_token2, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - STATE(503), 3, + sym_eol_comment, + STATE(512), 3, sym__typing, sym_generic_typing, sym_complete_typing, - [29279] = 5, - ACTIONS(2816), 1, + [30318] = 5, + ACTIONS(2825), 1, sym_name, - ACTIONS(2820), 1, + ACTIONS(2829), 1, aux_sym__method_declaration_raising_token2, - STATE(1177), 1, + STATE(1180), 1, aux_sym__method_declaration_raising_repeat1, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(2818), 2, + ACTIONS(2827), 2, anon_sym_DOT, aux_sym__method_declaration_exceptions_token1, - [29297] = 6, - ACTIONS(1316), 1, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + [30337] = 6, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(2822), 1, + ACTIONS(2831), 1, anon_sym_DOT, STATE(1717), 1, sym__method_declaration_raising, - STATE(2640), 1, + STATE(2850), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [29317] = 6, - ACTIONS(1316), 1, - aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(2824), 1, - anon_sym_DOT, - STATE(1734), 1, - sym__method_declaration_raising, - STATE(2179), 1, - sym__method_declaration_exceptions, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [29337] = 6, - ACTIONS(1894), 1, + [30358] = 6, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2826), 1, + ACTIONS(2833), 1, aux_sym_class_declaration_token13, - STATE(1609), 1, + STATE(1722), 1, sym_protected_section, - STATE(2108), 1, + STATE(2846), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [29357] = 6, - ACTIONS(1894), 1, + sym_eol_comment, + [30379] = 6, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2828), 1, + ACTIONS(2835), 1, aux_sym_class_declaration_token13, - STATE(1540), 1, + STATE(1539), 1, sym_protected_section, - STATE(2846), 1, + STATE(2137), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [29377] = 6, - ACTIONS(1894), 1, + sym_eol_comment, + [30400] = 6, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2222), 1, + ACTIONS(2258), 1, aux_sym_class_declaration_token13, - STATE(1656), 1, + STATE(1729), 1, sym_protected_section, - STATE(2706), 1, + STATE(2841), 1, sym_private_section, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [30421] = 6, + ACTIONS(1341), 1, + aux_sym__method_declaration_raising_token1, + ACTIONS(1343), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(2837), 1, + anon_sym_DOT, + STATE(1618), 1, + sym__method_declaration_raising, + STATE(2181), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [29397] = 6, - ACTIONS(1316), 1, + sym_eol_comment, + [30442] = 6, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(2830), 1, + ACTIONS(2839), 1, anon_sym_DOT, STATE(1707), 1, sym__method_declaration_raising, - STATE(2655), 1, + STATE(2865), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [29417] = 6, - ACTIONS(1894), 1, + sym_eol_comment, + [30463] = 6, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2832), 1, + ACTIONS(2841), 1, aux_sym_class_declaration_token13, - STATE(1578), 1, + STATE(1525), 1, sym_protected_section, - STATE(2090), 1, + STATE(2073), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [29437] = 6, - ACTIONS(1316), 1, + sym_eol_comment, + [30484] = 6, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(2834), 1, + ACTIONS(2843), 1, anon_sym_DOT, STATE(1701), 1, sym__method_declaration_raising, - STATE(2637), 1, + STATE(2878), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [29457] = 6, - ACTIONS(1894), 1, + sym_eol_comment, + [30505] = 6, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2250), 1, + ACTIONS(2220), 1, aux_sym_class_declaration_token13, - STATE(1543), 1, + STATE(1658), 1, sym_protected_section, - STATE(2841), 1, + STATE(2944), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [29477] = 6, - ACTIONS(1316), 1, + sym_eol_comment, + [30526] = 6, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(2836), 1, + ACTIONS(2845), 1, anon_sym_DOT, - STATE(1721), 1, + STATE(1555), 1, sym__method_declaration_raising, - STATE(2163), 1, + STATE(2168), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [29497] = 6, - ACTIONS(1894), 1, + sym_eol_comment, + [30547] = 6, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2838), 1, + ACTIONS(2847), 1, aux_sym_class_declaration_token13, - STATE(1669), 1, + STATE(1647), 1, sym_protected_section, - STATE(2693), 1, + STATE(2204), 1, sym_private_section, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [30568] = 6, + ACTIONS(1908), 1, + aux_sym__create_addition_token2, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(2849), 1, + aux_sym_class_declaration_token13, + STATE(1712), 1, + sym_protected_section, + STATE(2858), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [29517] = 6, - ACTIONS(1894), 1, + sym_eol_comment, + [30589] = 6, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2198), 1, + ACTIONS(2851), 1, aux_sym_class_declaration_token13, STATE(1673), 1, sym_protected_section, - STATE(2683), 1, + STATE(2920), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [29537] = 6, - ACTIONS(1894), 1, + sym_eol_comment, + [30610] = 6, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2160), 1, + ACTIONS(2196), 1, aux_sym_class_declaration_token13, - STATE(1696), 1, + STATE(1677), 1, sym_protected_section, - STATE(2669), 1, + STATE(2905), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [29557] = 6, - ACTIONS(1316), 1, + sym_eol_comment, + [30631] = 6, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(2840), 1, + ACTIONS(2853), 1, anon_sym_DOT, STATE(1687), 1, sym__method_declaration_raising, - STATE(2676), 1, + STATE(2897), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [30652] = 6, + ACTIONS(1908), 1, + aux_sym__create_addition_token2, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(2158), 1, + aux_sym_class_declaration_token13, + STATE(1699), 1, + sym_protected_section, + STATE(2883), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [29577] = 6, - ACTIONS(1316), 1, + sym_eol_comment, + [30673] = 6, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(2842), 1, + ACTIONS(2855), 1, anon_sym_DOT, - STATE(1681), 1, + STATE(1505), 1, sym__method_declaration_raising, - STATE(2681), 1, + STATE(2907), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [30694] = 6, + ACTIONS(1341), 1, + aux_sym__method_declaration_raising_token1, + ACTIONS(1343), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(2857), 1, + anon_sym_DOT, + STATE(1522), 1, + sym__method_declaration_raising, + STATE(2086), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [29597] = 6, - ACTIONS(1894), 1, + sym_eol_comment, + [30715] = 6, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2844), 1, + ACTIONS(2226), 1, aux_sym_class_declaration_token13, - STATE(1531), 1, + STATE(1714), 1, sym_protected_section, - STATE(2858), 1, + STATE(2853), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [29617] = 6, - ACTIONS(2846), 1, - aux_sym_loop_statement_token3, - ACTIONS(2848), 1, - aux_sym_line_spec_token1, - ACTIONS(2850), 1, - aux_sym__read_table_result_token1, - STATE(1667), 1, - sym_line_spec, - STATE(2032), 1, - sym__read_table_result, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [29637] = 6, - ACTIONS(1894), 1, + [30736] = 6, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2256), 1, + ACTIONS(2859), 1, aux_sym_class_declaration_token13, - STATE(1534), 1, + STATE(1839), 1, sym_protected_section, - STATE(2853), 1, + STATE(2651), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [29657] = 6, - ACTIONS(1316), 1, - aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(2852), 1, - anon_sym_DOT, - STATE(1814), 1, - sym__method_declaration_raising, - STATE(3019), 1, - sym__method_declaration_exceptions, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [29677] = 6, - ACTIONS(1316), 1, + [30757] = 6, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(2854), 1, + ACTIONS(2861), 1, anon_sym_DOT, - STATE(1671), 1, + STATE(1889), 1, sym__method_declaration_raising, - STATE(2688), 1, + STATE(2205), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [29697] = 6, - ACTIONS(1894), 1, + sym_eol_comment, + [30778] = 6, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2856), 1, + ACTIONS(2863), 1, aux_sym_class_declaration_token13, - STATE(1611), 1, + STATE(1706), 1, sym_protected_section, - STATE(2772), 1, + STATE(2866), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [29717] = 6, - ACTIONS(1894), 1, + sym_eol_comment, + [30799] = 6, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2858), 1, + ACTIONS(2865), 1, aux_sym_class_declaration_token13, - STATE(1523), 1, + STATE(1532), 1, sym_protected_section, - STATE(2866), 1, + STATE(2093), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [29737] = 6, - ACTIONS(1316), 1, - aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(2860), 1, - anon_sym_DOT, - STATE(1683), 1, - sym__method_declaration_raising, - STATE(3017), 1, - sym__method_declaration_exceptions, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [29757] = 6, - ACTIONS(1316), 1, + [30820] = 6, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(2862), 1, + ACTIONS(2867), 1, anon_sym_DOT, - STATE(1616), 1, + STATE(1516), 1, sym__method_declaration_raising, - STATE(2109), 1, + STATE(2118), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [29777] = 6, - ACTIONS(1316), 1, - aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(2864), 1, - anon_sym_DOT, - STATE(1580), 1, - sym__method_declaration_raising, - STATE(2089), 1, - sym__method_declaration_exceptions, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [29797] = 6, - ACTIONS(1316), 1, + [30841] = 6, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(2866), 1, + ACTIONS(2869), 1, anon_sym_DOT, - STATE(1739), 1, + STATE(1524), 1, sym__method_declaration_raising, - STATE(2080), 1, + STATE(2101), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [29817] = 6, - ACTIONS(1894), 1, + sym_eol_comment, + [30862] = 6, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2116), 1, + ACTIONS(2124), 1, aux_sym_class_declaration_token13, - STATE(1519), 1, + STATE(1704), 1, sym_protected_section, STATE(2872), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [29837] = 6, - ACTIONS(1894), 1, + sym_eol_comment, + [30883] = 6, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2868), 1, + ACTIONS(2871), 1, aux_sym_class_declaration_token13, - STATE(1518), 1, + STATE(1702), 1, sym_protected_section, STATE(2874), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [29857] = 6, - ACTIONS(1894), 1, - aux_sym__create_addition_token2, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(2104), 1, - aux_sym_class_declaration_token13, - STATE(1513), 1, - sym_protected_section, - STATE(2882), 1, - sym_private_section, - ACTIONS(3), 2, sym_eol_comment, + [30904] = 6, + ACTIONS(1341), 1, + aux_sym__method_declaration_raising_token1, + ACTIONS(1343), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(2873), 1, + anon_sym_DOT, + STATE(1510), 1, + sym__method_declaration_raising, + STATE(2090), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [29877] = 4, - ACTIONS(2752), 1, - aux_sym_generic_typing_token1, - ACTIONS(2754), 1, - aux_sym_generic_typing_token2, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - STATE(2077), 3, - sym__typing, - sym_generic_typing, - sym_complete_typing, - [29893] = 6, - ACTIONS(1894), 1, + [30925] = 6, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2870), 1, + ACTIONS(2114), 1, aux_sym_class_declaration_token13, - STATE(1655), 1, + STATE(1697), 1, sym_protected_section, - STATE(2705), 1, + STATE(2882), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [29913] = 6, - ACTIONS(1894), 1, + sym_eol_comment, + [30946] = 6, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2872), 1, + ACTIONS(2875), 1, aux_sym_class_declaration_token13, - STATE(1512), 1, + STATE(1695), 1, sym_protected_section, STATE(2884), 1, sym_private_section, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [30967] = 6, + ACTIONS(1341), 1, + aux_sym__method_declaration_raising_token1, + ACTIONS(1343), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(2877), 1, + anon_sym_DOT, + STATE(1881), 1, + sym__method_declaration_raising, + STATE(2732), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [29933] = 6, - ACTIONS(1894), 1, + sym_eol_comment, + [30988] = 6, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2555), 1, + ACTIONS(2070), 1, aux_sym_class_declaration_token13, STATE(1859), 1, sym_protected_section, - STATE(3072), 1, + STATE(2304), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [29953] = 6, - ACTIONS(1894), 1, + sym_eol_comment, + [31009] = 6, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2102), 1, + ACTIONS(2552), 1, aux_sym_class_declaration_token13, - STATE(1634), 1, + STATE(1911), 1, sym_protected_section, - STATE(2743), 1, + STATE(2373), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [29973] = 6, - ACTIONS(1894), 1, + sym_eol_comment, + [31030] = 6, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2066), 1, + ACTIONS(2104), 1, aux_sym_class_declaration_token13, - STATE(1880), 1, + STATE(1634), 1, sym_protected_section, - STATE(2303), 1, + STATE(2985), 1, sym_private_section, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [31051] = 4, + ACTIONS(2737), 1, + aux_sym_generic_typing_token1, + ACTIONS(2739), 1, + aux_sym_generic_typing_token2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [29993] = 6, - ACTIONS(1894), 1, + sym_eol_comment, + STATE(2085), 3, + sym__typing, + sym_generic_typing, + sym_complete_typing, + [31068] = 6, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2874), 1, + ACTIONS(2879), 1, aux_sym_class_declaration_token13, STATE(1642), 1, sym_protected_section, - STATE(2724), 1, + STATE(2972), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [30013] = 6, - ACTIONS(1894), 1, + sym_eol_comment, + [31089] = 6, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2876), 1, + ACTIONS(2881), 1, aux_sym_class_declaration_token13, - STATE(1604), 1, + STATE(1527), 1, sym_protected_section, - STATE(2104), 1, + STATE(2109), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [30033] = 4, - ACTIONS(2752), 1, - aux_sym_generic_typing_token1, - ACTIONS(2754), 1, - aux_sym_generic_typing_token2, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - STATE(2035), 3, - sym__typing, - sym_generic_typing, - sym_complete_typing, - [30049] = 6, - ACTIONS(1894), 1, + [31110] = 6, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2878), 1, + ACTIONS(2883), 1, aux_sym_class_declaration_token13, - STATE(1508), 1, + STATE(1691), 1, sym_protected_section, STATE(2891), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [30069] = 6, - ACTIONS(1894), 1, + sym_eol_comment, + [31131] = 6, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2068), 1, + ACTIONS(2088), 1, aux_sym_class_declaration_token13, - STATE(1666), 1, + STATE(1816), 1, sym_protected_section, STATE(2694), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [30089] = 6, - ACTIONS(1894), 1, + sym_eol_comment, + [31152] = 6, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2880), 1, + ACTIONS(2885), 1, aux_sym_class_declaration_token13, - STATE(1627), 1, + STATE(1769), 1, sym_protected_section, - STATE(2750), 1, + STATE(2772), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [30109] = 6, - ACTIONS(1894), 1, + sym_eol_comment, + [31173] = 6, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2882), 1, + ACTIONS(2887), 1, aux_sym_class_declaration_token13, - STATE(1624), 1, + STATE(1627), 1, sym_protected_section, - STATE(2658), 1, + STATE(2988), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [30129] = 6, - ACTIONS(1894), 1, + sym_eol_comment, + [31194] = 6, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2884), 1, + ACTIONS(2889), 1, aux_sym_class_declaration_token13, - STATE(1628), 1, + STATE(1624), 1, sym_protected_section, - STATE(2121), 1, + STATE(3001), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [30149] = 6, - ACTIONS(1894), 1, + sym_eol_comment, + [31215] = 6, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2886), 1, + ACTIONS(2891), 1, aux_sym_class_declaration_token13, - STATE(1738), 1, + STATE(1513), 1, sym_protected_section, - STATE(3083), 1, + STATE(2122), 1, sym_private_section, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [31236] = 6, + ACTIONS(1341), 1, + aux_sym__method_declaration_raising_token1, + ACTIONS(1343), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(2893), 1, + anon_sym_DOT, + STATE(1883), 1, + sym__method_declaration_raising, + STATE(2419), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [30169] = 6, - ACTIONS(1894), 1, + sym_eol_comment, + [31257] = 6, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2888), 1, + ACTIONS(2895), 1, aux_sym_class_declaration_token13, - STATE(1597), 1, + STATE(1684), 1, sym_protected_section, - STATE(2785), 1, + STATE(2900), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [30189] = 6, - ACTIONS(1894), 1, + sym_eol_comment, + [31278] = 6, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2890), 1, + ACTIONS(2897), 1, aux_sym_class_declaration_token13, - STATE(1560), 1, + STATE(1683), 1, sym_protected_section, - STATE(2900), 1, + STATE(2904), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [30209] = 6, - ACTIONS(1894), 1, + sym_eol_comment, + [31299] = 6, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2892), 1, + ACTIONS(2058), 1, aux_sym_class_declaration_token13, - STATE(1563), 1, + STATE(1824), 1, sym_protected_section, - STATE(2904), 1, + STATE(2684), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [30229] = 6, - ACTIONS(1894), 1, + sym_eol_comment, + [31320] = 6, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2894), 1, + ACTIONS(2899), 1, aux_sym_class_declaration_token13, STATE(1605), 1, sym_protected_section, - STATE(2779), 1, + STATE(3013), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [30249] = 6, - ACTIONS(1894), 1, + sym_eol_comment, + [31341] = 6, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2896), 1, + ACTIONS(2901), 1, aux_sym_class_declaration_token13, - STATE(1570), 1, + STATE(1676), 1, sym_protected_section, STATE(2909), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [30269] = 6, - ACTIONS(1894), 1, + sym_eol_comment, + [31362] = 6, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2054), 1, + ACTIONS(2062), 1, aux_sym_class_declaration_token13, STATE(1601), 1, sym_protected_section, - STATE(2784), 1, + STATE(3019), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [30289] = 6, - ACTIONS(1894), 1, + sym_eol_comment, + [31383] = 6, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2050), 1, + ACTIONS(2903), 1, aux_sym_class_declaration_token13, - STATE(1678), 1, + STATE(1675), 1, sym_protected_section, - STATE(2684), 1, + STATE(2913), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [30309] = 6, - ACTIONS(1316), 1, - aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(2898), 1, - anon_sym_DOT, - STATE(1754), 1, - sym__method_declaration_raising, - STATE(2442), 1, - sym__method_declaration_exceptions, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [30329] = 6, - ACTIONS(1894), 1, + [31404] = 6, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2900), 1, + ACTIONS(2905), 1, aux_sym_class_declaration_token13, - STATE(1572), 1, + STATE(1672), 1, sym_protected_section, - STATE(2913), 1, + STATE(2916), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [30349] = 6, - ACTIONS(1894), 1, + sym_eol_comment, + [31425] = 6, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2902), 1, + ACTIONS(2907), 1, aux_sym_class_declaration_token13, - STATE(1575), 1, + STATE(1669), 1, sym_protected_section, - STATE(2916), 1, + STATE(2921), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [30369] = 6, - ACTIONS(1316), 1, + sym_eol_comment, + [31446] = 6, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(2904), 1, + ACTIONS(1396), 1, anon_sym_DOT, - STATE(1846), 1, + STATE(1862), 1, sym__method_declaration_raising, - STATE(2261), 1, + STATE(2399), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [30389] = 6, - ACTIONS(1894), 1, + sym_eol_comment, + [31467] = 6, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2044), 1, + ACTIONS(2048), 1, aux_sym_class_declaration_token13, - STATE(1686), 1, + STATE(1830), 1, sym_protected_section, STATE(2677), 1, sym_private_section, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [31488] = 6, + ACTIONS(1341), 1, + aux_sym__method_declaration_raising_token1, + ACTIONS(1343), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(2909), 1, + anon_sym_DOT, + STATE(1757), 1, + sym__method_declaration_raising, + STATE(2791), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [30409] = 6, - ACTIONS(1894), 1, - aux_sym__create_addition_token2, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(2906), 1, - aux_sym_class_declaration_token13, - STATE(1555), 1, - sym_protected_section, - STATE(2921), 1, - sym_private_section, - ACTIONS(3), 2, sym_eol_comment, + [31509] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [30429] = 6, - ACTIONS(1316), 1, + sym_eol_comment, + ACTIONS(2695), 5, + anon_sym_DOT, + aux_sym__method_declaration_importing_token1, + aux_sym__method_declaration_exporting_token1, + aux_sym__method_declaration_changing_token1, + aux_sym__method_declaration_exceptions_token1, + [31522] = 6, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(2908), 1, + ACTIONS(2911), 1, anon_sym_DOT, STATE(1565), 1, sym__method_declaration_raising, - STATE(2813), 1, + STATE(3041), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [30449] = 6, - ACTIONS(1316), 1, + sym_eol_comment, + [31543] = 6, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(2910), 1, + ACTIONS(2913), 1, anon_sym_DOT, - STATE(1553), 1, + STATE(1543), 1, sym__method_declaration_raising, - STATE(2825), 1, + STATE(3080), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [30469] = 2, - ACTIONS(3), 2, sym_eol_comment, + [31564] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2686), 5, - anon_sym_DOT, + sym_eol_comment, + ACTIONS(2681), 5, aux_sym__method_declaration_importing_token1, aux_sym__method_declaration_exporting_token1, aux_sym__method_declaration_changing_token1, - aux_sym__method_declaration_exceptions_token1, - [30481] = 6, - ACTIONS(1894), 1, + anon_sym_RPAREN, + aux_sym__explicit_parameter_list_token1, + [31577] = 6, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2912), 1, + ACTIONS(2915), 1, aux_sym_class_declaration_token13, - STATE(1698), 1, + STATE(1666), 1, sym_protected_section, - STATE(2145), 1, + STATE(2929), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [30501] = 6, - ACTIONS(1894), 1, + sym_eol_comment, + [31598] = 6, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2914), 1, + ACTIONS(2917), 1, aux_sym_class_declaration_token13, - STATE(1583), 1, + STATE(1665), 1, sym_protected_section, - STATE(2929), 1, + STATE(2935), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [30521] = 6, - ACTIONS(1894), 1, + sym_eol_comment, + [31619] = 6, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2916), 1, + ACTIONS(2919), 1, aux_sym_class_declaration_token13, - STATE(1586), 1, + STATE(1542), 1, sym_protected_section, - STATE(2935), 1, + STATE(2145), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - [30541] = 6, - ACTIONS(1316), 1, - aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(2918), 1, - anon_sym_DOT, - STATE(1787), 1, - sym__method_declaration_raising, - STATE(2422), 1, - sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [30561] = 6, - ACTIONS(1316), 1, - aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(2920), 1, - anon_sym_DOT, - STATE(1542), 1, - sym__method_declaration_raising, - STATE(2843), 1, - sym__method_declaration_exceptions, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [30581] = 6, - ACTIONS(1894), 1, + [31640] = 6, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2922), 1, + ACTIONS(2921), 1, aux_sym_class_declaration_token13, - STATE(1633), 1, + STATE(1659), 1, sym_protected_section, - STATE(2744), 1, + STATE(2941), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [30601] = 6, - ACTIONS(1316), 1, + sym_eol_comment, + [31661] = 6, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(2924), 1, + ACTIONS(2923), 1, anon_sym_DOT, - STATE(1538), 1, + STATE(1530), 1, sym__method_declaration_raising, - STATE(2848), 1, + STATE(3093), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [30621] = 6, - ACTIONS(1894), 1, + sym_eol_comment, + [31682] = 6, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2926), 1, + ACTIONS(2925), 1, aux_sym_class_declaration_token13, - STATE(1626), 1, + STATE(1640), 1, sym_protected_section, - STATE(3100), 1, + STATE(2819), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [30641] = 6, - ACTIONS(1316), 1, + sym_eol_comment, + [31703] = 6, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(2928), 1, + ACTIONS(2927), 1, anon_sym_DOT, - STATE(1801), 1, + STATE(1526), 1, sym__method_declaration_raising, - STATE(2402), 1, + STATE(3096), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [30661] = 6, - ACTIONS(1316), 1, + sym_eol_comment, + [31724] = 6, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(2930), 1, + ACTIONS(2929), 1, anon_sym_DOT, - STATE(1530), 1, + STATE(1773), 1, sym__method_declaration_raising, - STATE(2859), 1, + STATE(2262), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - [30681] = 6, - ACTIONS(1894), 1, - aux_sym__create_addition_token2, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(2932), 1, - aux_sym_class_declaration_token13, - STATE(1710), 1, - sym_protected_section, - STATE(2156), 1, - sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - [30701] = 2, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2672), 5, - aux_sym__method_declaration_importing_token1, - aux_sym__method_declaration_exporting_token1, - aux_sym__method_declaration_changing_token1, - anon_sym_RPAREN, - aux_sym__explicit_parameter_list_token1, - [30713] = 6, - ACTIONS(1894), 1, - aux_sym__create_addition_token2, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(2934), 1, - aux_sym_class_declaration_token13, - STATE(1614), 1, - sym_protected_section, - STATE(2941), 1, - sym_private_section, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [30733] = 6, - ACTIONS(1316), 1, + [31745] = 6, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(2936), 1, + ACTIONS(2931), 1, anon_sym_DOT, - STATE(1823), 1, + STATE(1794), 1, sym__method_declaration_raising, - STATE(2368), 1, + STATE(2743), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [30753] = 6, - ACTIONS(1316), 1, + sym_eol_comment, + [31766] = 6, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(2938), 1, + ACTIONS(2933), 1, anon_sym_DOT, - STATE(1868), 1, + STATE(1519), 1, sym__method_declaration_raising, - STATE(2324), 1, + STATE(3101), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [30773] = 6, - ACTIONS(1316), 1, + sym_eol_comment, + [31787] = 6, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(2940), 1, + ACTIONS(2935), 1, anon_sym_DOT, - STATE(1520), 1, + STATE(1868), 1, sym__method_declaration_raising, - STATE(2871), 1, + STATE(2442), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [30793] = 6, - ACTIONS(2740), 1, + sym_eol_comment, + [31808] = 6, + ACTIONS(2743), 1, aux_sym_for_all_entries_token1, - ACTIONS(2742), 1, + ACTIONS(2745), 1, aux_sym__where_clause_token1, - ACTIONS(2942), 1, + ACTIONS(2937), 1, anon_sym_DOT, - STATE(1929), 1, + STATE(1936), 1, sym_for_all_entries, - STATE(2323), 1, + STATE(2324), 1, sym__where_clause, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [30813] = 6, - ACTIONS(1894), 1, + sym_eol_comment, + [31829] = 6, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2944), 1, + ACTIONS(2939), 1, aux_sym_class_declaration_token13, - STATE(1675), 1, + STATE(1548), 1, sym_protected_section, - STATE(2948), 1, + STATE(2156), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [30833] = 6, - ACTIONS(1894), 1, + sym_eol_comment, + [31850] = 6, + ACTIONS(1341), 1, + aux_sym__method_declaration_raising_token1, + ACTIONS(1343), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(2941), 1, + anon_sym_DOT, + STATE(1807), 1, + sym__method_declaration_raising, + STATE(2713), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + [31871] = 6, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2587), 1, + ACTIONS(2943), 1, aux_sym_class_declaration_token13, - STATE(1629), 1, + STATE(1789), 1, sym_protected_section, - STATE(2748), 1, + STATE(2744), 1, sym_private_section, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [31892] = 6, + ACTIONS(1908), 1, + aux_sym__create_addition_token2, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(2945), 1, + aux_sym_class_declaration_token13, + STATE(1655), 1, + sym_protected_section, + STATE(2948), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [30853] = 4, - ACTIONS(55), 1, + sym_eol_comment, + [31913] = 4, + ACTIONS(53), 1, sym_field_symbol_name, - ACTIONS(2946), 1, + ACTIONS(1591), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - STATE(1282), 3, + sym_eol_comment, + STATE(1240), 3, sym__data_object, sym_structured_data_object, sym_attribute_access_static, - [30869] = 6, - ACTIONS(1316), 1, + [31930] = 6, + ACTIONS(1908), 1, + aux_sym__create_addition_token2, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(2947), 1, + aux_sym_class_declaration_token13, + STATE(1654), 1, + sym_protected_section, + STATE(2951), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + [31951] = 6, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(2948), 1, + ACTIONS(2949), 1, anon_sym_DOT, - STATE(1516), 1, + STATE(1507), 1, sym__method_declaration_raising, - STATE(2880), 1, + STATE(3021), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [31972] = 6, + ACTIONS(1341), 1, + aux_sym__method_declaration_raising_token1, + ACTIONS(1343), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(2951), 1, + anon_sym_DOT, + STATE(1831), 1, + sym__method_declaration_raising, + STATE(2682), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [30889] = 6, - ACTIONS(1894), 1, + sym_eol_comment, + [31993] = 6, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2950), 1, + ACTIONS(2578), 1, aux_sym_class_declaration_token13, - STATE(1679), 1, + STATE(1614), 1, sym_protected_section, - STATE(2951), 1, + STATE(2999), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [30909] = 6, - ACTIONS(1316), 1, + sym_eol_comment, + [32014] = 6, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(2952), 1, + ACTIONS(2953), 1, anon_sym_DOT, - STATE(1711), 1, + STATE(1545), 1, sym__method_declaration_raising, - STATE(2153), 1, + STATE(3081), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [30929] = 6, - ACTIONS(2846), 1, + sym_eol_comment, + [32035] = 6, + ACTIONS(2817), 1, aux_sym_loop_statement_token3, - ACTIONS(2848), 1, + ACTIONS(2819), 1, aux_sym_line_spec_token1, - ACTIONS(2850), 1, + ACTIONS(2821), 1, aux_sym__read_table_result_token1, - STATE(1704), 1, + STATE(1841), 1, sym_line_spec, - STATE(2018), 1, + STATE(1951), 1, sym__read_table_result, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [30949] = 6, - ACTIONS(1316), 1, - aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(2954), 1, - anon_sym_DOT, - STATE(1509), 1, - sym__method_declaration_raising, - STATE(2890), 1, - sym__method_declaration_exceptions, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [30969] = 6, - ACTIONS(1894), 1, + [32056] = 6, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(1986), 1, + ACTIONS(1916), 1, aux_sym_class_declaration_token13, - STATE(1729), 1, + STATE(1686), 1, sym_protected_section, - STATE(2176), 1, + STATE(2223), 1, sym_private_section, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [32077] = 6, + ACTIONS(1341), 1, + aux_sym__method_declaration_raising_token1, + ACTIONS(1343), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(2955), 1, + anon_sym_DOT, + STATE(1553), 1, + sym__method_declaration_raising, + STATE(3069), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [30989] = 6, - ACTIONS(1894), 1, + sym_eol_comment, + [32098] = 6, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2581), 1, + ACTIONS(2646), 1, aux_sym_class_declaration_token13, - STATE(1564), 1, + STATE(1825), 1, sym_protected_section, - STATE(3105), 1, + STATE(2683), 1, sym_private_section, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [32119] = 6, + ACTIONS(2743), 1, + aux_sym_for_all_entries_token1, + ACTIONS(2745), 1, + aux_sym__where_clause_token1, + ACTIONS(2957), 1, + anon_sym_DOT, + STATE(1957), 1, + sym_for_all_entries, + STATE(2470), 1, + sym__where_clause, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [31009] = 6, - ACTIONS(1894), 1, + sym_eol_comment, + [32140] = 6, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2956), 1, + ACTIONS(1966), 1, aux_sym_class_declaration_token13, - STATE(1747), 1, + STATE(1886), 1, sym_protected_section, - STATE(2193), 1, + STATE(2422), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [31029] = 6, - ACTIONS(1316), 1, + sym_eol_comment, + [32161] = 6, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(2958), 1, + ACTIONS(2959), 1, anon_sym_DOT, - STATE(1858), 1, + STATE(1552), 1, sym__method_declaration_raising, - STATE(2336), 1, + STATE(2158), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [31049] = 6, - ACTIONS(1894), 1, + sym_eol_comment, + [32182] = 6, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(1954), 1, + ACTIONS(2961), 1, aux_sym_class_declaration_token13, - STATE(1773), 1, + STATE(1720), 1, sym_protected_section, - STATE(2999), 1, + STATE(2246), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [31069] = 6, - ACTIONS(1316), 1, + sym_eol_comment, + [32203] = 6, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(2960), 1, + ACTIONS(2963), 1, anon_sym_DOT, - STATE(1561), 1, + STATE(1564), 1, sym__method_declaration_raising, - STATE(2903), 1, + STATE(3042), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [31089] = 4, - ACTIONS(2752), 1, - aux_sym_generic_typing_token1, - ACTIONS(2754), 1, - aux_sym_generic_typing_token2, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - STATE(2851), 3, - sym__typing, - sym_generic_typing, - sym_complete_typing, - [31105] = 6, - ACTIONS(1894), 1, + [32224] = 6, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2637), 1, + ACTIONS(2590), 1, aux_sym_class_declaration_token13, - STATE(1825), 1, + STATE(1764), 1, sym_protected_section, - STATE(2365), 1, + STATE(2778), 1, sym_private_section, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [32245] = 4, + ACTIONS(2737), 1, + aux_sym_generic_typing_token1, + ACTIONS(2739), 1, + aux_sym_generic_typing_token2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [31125] = 6, - ACTIONS(2740), 1, + sym_eol_comment, + STATE(2851), 3, + sym__typing, + sym_generic_typing, + sym_complete_typing, + [32262] = 6, + ACTIONS(2743), 1, aux_sym_for_all_entries_token1, - ACTIONS(2742), 1, + ACTIONS(2745), 1, aux_sym__where_clause_token1, - ACTIONS(2962), 1, + ACTIONS(2965), 1, anon_sym_DOT, - STATE(2029), 1, + STATE(1970), 1, sym_for_all_entries, - STATE(2468), 1, + STATE(2501), 1, sym__where_clause, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [31145] = 6, - ACTIONS(1894), 1, + sym_eol_comment, + [32283] = 6, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(1958), 1, + ACTIONS(2602), 1, aux_sym_class_declaration_token13, - STATE(1793), 1, + STATE(1786), 1, sym_protected_section, - STATE(2227), 1, + STATE(2748), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - [31165] = 6, - ACTIONS(2740), 1, - aux_sym_for_all_entries_token1, - ACTIONS(2742), 1, - aux_sym__where_clause_token1, - ACTIONS(2964), 1, - anon_sym_DOT, - STATE(2042), 1, - sym_for_all_entries, - STATE(2499), 1, - sym__where_clause, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [31185] = 6, - ACTIONS(1316), 1, - aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(2966), 1, - anon_sym_DOT, - STATE(1768), 1, - sym__method_declaration_raising, - STATE(3080), 1, - sym__method_declaration_exceptions, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [31205] = 4, - ACTIONS(55), 1, + [32304] = 4, + ACTIONS(53), 1, sym_field_symbol_name, - ACTIONS(2946), 1, + ACTIONS(1525), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, STATE(2417), 3, sym__data_object, sym_structured_data_object, sym_attribute_access_static, - [31221] = 6, - ACTIONS(1894), 1, + [32321] = 6, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2968), 1, + ACTIONS(2967), 1, aux_sym_class_declaration_token13, - STATE(1643), 1, + STATE(1753), 1, sym_protected_section, - STATE(2947), 1, + STATE(2800), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [31241] = 6, - ACTIONS(1894), 1, + sym_eol_comment, + [32342] = 6, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2970), 1, + ACTIONS(2969), 1, aux_sym_class_declaration_token13, - STATE(1761), 1, + STATE(1861), 1, sym_protected_section, - STATE(2986), 1, + STATE(2624), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [31261] = 6, - ACTIONS(1894), 1, + sym_eol_comment, + [32363] = 6, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2607), 1, + ACTIONS(2644), 1, aux_sym_class_declaration_token13, - STATE(1606), 1, + STATE(1772), 1, sym_protected_section, - STATE(2778), 1, + STATE(2767), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [31281] = 6, - ACTIONS(1316), 1, - aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(2972), 1, - anon_sym_DOT, - STATE(1852), 1, - sym__method_declaration_raising, - STATE(2339), 1, - sym__method_declaration_exceptions, - ACTIONS(3), 2, sym_eol_comment, + [32384] = 6, + ACTIONS(1908), 1, + aux_sym__create_addition_token2, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(2971), 1, + aux_sym_class_declaration_token13, + STATE(1829), 1, + sym_protected_section, + STATE(2680), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [31301] = 6, - ACTIONS(1316), 1, + sym_eol_comment, + [32405] = 6, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(2974), 1, + ACTIONS(2973), 1, anon_sym_DOT, - STATE(1873), 1, + STATE(1858), 1, sym__method_declaration_raising, - STATE(2319), 1, + STATE(2626), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [31321] = 4, - ACTIONS(2752), 1, + sym_eol_comment, + [32426] = 4, + ACTIONS(2737), 1, aux_sym_generic_typing_token1, - ACTIONS(2754), 1, + ACTIONS(2739), 1, aux_sym_generic_typing_token2, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, STATE(2426), 3, sym__typing, sym_generic_typing, sym_complete_typing, - [31337] = 6, - ACTIONS(1894), 1, + [32443] = 6, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2976), 1, + ACTIONS(1960), 1, aux_sym_class_declaration_token13, - STATE(1829), 1, + STATE(1774), 1, sym_protected_section, - STATE(2253), 1, + STATE(2270), 1, sym_private_section, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [32464] = 6, + ACTIONS(1908), 1, + aux_sym__create_addition_token2, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(1912), 1, + aux_sym_class_declaration_token13, + STATE(1842), 1, + sym_protected_section, + STATE(2666), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [31357] = 6, - ACTIONS(1894), 1, + sym_eol_comment, + [32485] = 6, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2441), 1, + ACTIONS(1930), 1, aux_sym_class_declaration_token13, - STATE(1750), 1, + STATE(1906), 1, sym_protected_section, - STATE(2984), 1, + STATE(2368), 1, sym_private_section, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [32506] = 6, + ACTIONS(1341), 1, + aux_sym__method_declaration_raising_token1, + ACTIONS(1343), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(2975), 1, + anon_sym_DOT, + STATE(1848), 1, + sym__method_declaration_raising, + STATE(2640), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [31377] = 6, - ACTIONS(1894), 1, + sym_eol_comment, + [32527] = 6, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(1918), 1, + ACTIONS(2526), 1, aux_sym_class_declaration_token13, - STATE(1820), 1, + STATE(1795), 1, sym_protected_section, - STATE(2367), 1, + STATE(2733), 1, sym_private_section, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [32548] = 6, + ACTIONS(1908), 1, + aux_sym__create_addition_token2, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(2977), 1, + aux_sym_class_declaration_token13, + STATE(1823), 1, + sym_protected_section, + STATE(2697), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [31397] = 4, - ACTIONS(55), 1, + sym_eol_comment, + [32569] = 4, + ACTIONS(53), 1, sym_field_symbol_name, - ACTIONS(2946), 1, + ACTIONS(1525), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, STATE(2906), 3, sym__data_object, sym_structured_data_object, sym_attribute_access_static, - [31413] = 5, - ACTIONS(2978), 1, + [32586] = 5, + ACTIONS(2979), 1, sym_name, - ACTIONS(2983), 1, + ACTIONS(2984), 1, aux_sym__method_declaration_raising_token2, - STATE(1177), 1, + STATE(1180), 1, aux_sym__method_declaration_raising_repeat1, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(2981), 2, + ACTIONS(2982), 2, anon_sym_DOT, aux_sym__method_declaration_exceptions_token1, - [31431] = 6, - ACTIONS(1894), 1, - aux_sym__create_addition_token2, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(2986), 1, - aux_sym_class_declaration_token13, - STATE(1746), 1, - sym_protected_section, - STATE(2981), 1, - sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [31451] = 6, - ACTIONS(1894), 1, - aux_sym__create_addition_token2, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(2613), 1, - aux_sym_class_declaration_token13, - STATE(1620), 1, - sym_protected_section, - STATE(2759), 1, - sym_private_section, - ACTIONS(3), 2, sym_eol_comment, + [32605] = 6, + ACTIONS(1341), 1, + aux_sym__method_declaration_raising_token1, + ACTIONS(1343), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(2987), 1, + anon_sym_DOT, + STATE(1852), 1, + sym__method_declaration_raising, + STATE(2634), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [31471] = 6, - ACTIONS(1894), 1, - aux_sym__create_addition_token2, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(2639), 1, - aux_sym_class_declaration_token13, - STATE(1712), 1, - sym_protected_section, - STATE(3093), 1, - sym_private_section, - ACTIONS(3), 2, sym_eol_comment, + [32626] = 6, + ACTIONS(1341), 1, + aux_sym__method_declaration_raising_token1, + ACTIONS(1343), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(2989), 1, + anon_sym_DOT, + STATE(1875), 1, + sym__method_declaration_raising, + STATE(2435), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [31491] = 6, - ACTIONS(1894), 1, + sym_eol_comment, + [32647] = 6, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2635), 1, + ACTIONS(1914), 1, aux_sym_class_declaration_token13, - STATE(1615), 1, + STATE(1758), 1, sym_protected_section, - STATE(2767), 1, + STATE(2782), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [31511] = 6, - ACTIONS(1316), 1, + sym_eol_comment, + [32668] = 6, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(2988), 1, + ACTIONS(2991), 1, anon_sym_DOT, - STATE(1888), 1, + STATE(1740), 1, sym__method_declaration_raising, - STATE(2299), 1, + STATE(3030), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [31531] = 6, - ACTIONS(1892), 1, - aux_sym_class_declaration_token13, - ACTIONS(1894), 1, + sym_eol_comment, + [32689] = 6, + ACTIONS(1908), 1, aux_sym__create_addition_token2, - ACTIONS(1896), 1, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - STATE(1579), 1, + ACTIONS(2636), 1, + aux_sym_class_declaration_token13, + STATE(1793), 1, sym_protected_section, - STATE(2956), 1, + STATE(2627), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [31551] = 6, - ACTIONS(1316), 1, - aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(2990), 1, - anon_sym_DOT, - STATE(1587), 1, - sym__method_declaration_raising, - STATE(2938), 1, - sym__method_declaration_exceptions, - ACTIONS(3), 2, sym_eol_comment, + [32710] = 6, + ACTIONS(1908), 1, + aux_sym__create_addition_token2, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(2616), 1, + aux_sym_class_declaration_token13, + STATE(1776), 1, + sym_protected_section, + STATE(2759), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [31571] = 6, - ACTIONS(1316), 1, + sym_eol_comment, + [32731] = 6, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(2992), 1, + ACTIONS(2993), 1, anon_sym_DOT, - STATE(1910), 1, + STATE(1890), 1, sym__method_declaration_raising, - STATE(2278), 1, + STATE(2411), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [31591] = 6, - ACTIONS(1316), 1, + sym_eol_comment, + [32752] = 6, + ACTIONS(1341), 1, aux_sym__method_declaration_raising_token1, - ACTIONS(1318), 1, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(2994), 1, + ACTIONS(2995), 1, anon_sym_DOT, - STATE(1895), 1, + STATE(1903), 1, sym__method_declaration_raising, - STATE(2290), 1, + STATE(2362), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [31611] = 2, - ACTIONS(3), 2, sym_eol_comment, + [32773] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(2996), 4, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_interface_declaration_token2, - aux_sym_variable_declaration_token1, - [31622] = 2, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(2998), 4, + ACTIONS(2997), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [31633] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [32785] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3000), 4, + sym_eol_comment, + ACTIONS(2999), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [31644] = 5, - ACTIONS(3002), 1, + [32797] = 5, + ACTIONS(3001), 1, sym_name, - ACTIONS(3005), 1, + ACTIONS(3003), 1, aux_sym_chained_structure_declaration_token2, - STATE(1190), 1, + STATE(1330), 1, aux_sym_chained_structure_declaration_repeat1, - STATE(1934), 1, + STATE(1973), 1, sym_structure_component, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [31661] = 2, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(3007), 4, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_interface_declaration_token2, - aux_sym_variable_declaration_token1, - [31672] = 5, - ACTIONS(3009), 1, + [32815] = 5, + ACTIONS(3001), 1, sym_name, - ACTIONS(3011), 1, + ACTIONS(3005), 1, aux_sym_chained_structure_declaration_token2, - STATE(1190), 1, + STATE(1330), 1, aux_sym_chained_structure_declaration_repeat1, - STATE(1934), 1, + STATE(1973), 1, sym_structure_component, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [31689] = 2, - ACTIONS(3), 2, sym_eol_comment, + [32833] = 5, + ACTIONS(3007), 1, + aux_sym_class_declaration_token8, + ACTIONS(3009), 1, + aux_sym_class_declaration_token11, + ACTIONS(3011), 1, + aux_sym_class_declaration_token12, + ACTIONS(3013), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3013), 4, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_interface_declaration_token2, - aux_sym_variable_declaration_token1, - [31700] = 2, - ACTIONS(3), 2, sym_eol_comment, + [32851] = 5, + ACTIONS(3015), 1, + aux_sym_class_declaration_token8, + ACTIONS(3017), 1, + aux_sym_class_declaration_token11, + ACTIONS(3019), 1, + aux_sym_class_declaration_token12, + ACTIONS(3021), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3015), 4, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_interface_declaration_token2, - aux_sym_variable_declaration_token1, - [31711] = 2, - ACTIONS(3), 2, sym_eol_comment, + [32869] = 5, + ACTIONS(2650), 1, + aux_sym_class_declaration_token8, + ACTIONS(2652), 1, + aux_sym_class_declaration_token11, + ACTIONS(2654), 1, + aux_sym_class_declaration_token12, + ACTIONS(2656), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3017), 4, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_interface_declaration_token2, - aux_sym_variable_declaration_token1, - [31722] = 2, - ACTIONS(3), 2, sym_eol_comment, + [32887] = 5, + ACTIONS(2717), 1, + aux_sym_class_declaration_token8, + ACTIONS(2719), 1, + aux_sym_class_declaration_token11, + ACTIONS(2721), 1, + aux_sym_class_declaration_token12, + ACTIONS(2723), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3019), 4, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_interface_declaration_token2, - aux_sym_variable_declaration_token1, - [31733] = 2, - ACTIONS(3), 2, sym_eol_comment, + [32905] = 5, + ACTIONS(1934), 1, + aux_sym_class_declaration_token8, + ACTIONS(1936), 1, + aux_sym_class_declaration_token11, + ACTIONS(1938), 1, + aux_sym_class_declaration_token12, + ACTIONS(1940), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3021), 4, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_interface_declaration_token2, - aux_sym_variable_declaration_token1, - [31744] = 2, - ACTIONS(3), 2, sym_eol_comment, + [32923] = 5, + ACTIONS(1948), 1, + aux_sym_class_declaration_token8, + ACTIONS(1950), 1, + aux_sym_class_declaration_token11, + ACTIONS(1952), 1, + aux_sym_class_declaration_token12, + ACTIONS(1954), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3023), 4, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_interface_declaration_token2, - aux_sym_variable_declaration_token1, - [31755] = 2, - ACTIONS(3), 2, sym_eol_comment, + [32941] = 5, + ACTIONS(3023), 1, + aux_sym_class_declaration_token8, + ACTIONS(3025), 1, + aux_sym_class_declaration_token11, + ACTIONS(3027), 1, + aux_sym_class_declaration_token12, + ACTIONS(3029), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3025), 4, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_interface_declaration_token2, - aux_sym_variable_declaration_token1, - [31766] = 2, - ACTIONS(3), 2, sym_eol_comment, + [32959] = 5, + ACTIONS(2658), 1, + aux_sym_class_declaration_token8, + ACTIONS(2660), 1, + aux_sym_class_declaration_token11, + ACTIONS(2662), 1, + aux_sym_class_declaration_token12, + ACTIONS(2664), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3027), 4, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_interface_declaration_token2, - aux_sym_variable_declaration_token1, - [31777] = 2, - ACTIONS(3), 2, sym_eol_comment, + [32977] = 5, + ACTIONS(3031), 1, + aux_sym_class_declaration_token5, + ACTIONS(3033), 1, + anon_sym_DOT, + ACTIONS(3035), 1, + aux_sym_complete_typing_token2, + ACTIONS(3037), 1, + aux_sym_loop_statement_token5, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3029), 4, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_interface_declaration_token2, - aux_sym_variable_declaration_token1, - [31788] = 2, - ACTIONS(3), 2, sym_eol_comment, + [32995] = 5, + ACTIONS(1972), 1, + aux_sym_class_declaration_token8, + ACTIONS(1974), 1, + aux_sym_class_declaration_token11, + ACTIONS(1976), 1, + aux_sym_class_declaration_token12, + ACTIONS(1978), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3031), 4, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_interface_declaration_token2, - aux_sym_variable_declaration_token1, - [31799] = 2, - ACTIONS(3), 2, sym_eol_comment, + [33013] = 5, + ACTIONS(1740), 1, + aux_sym_class_declaration_token8, + ACTIONS(1742), 1, + aux_sym_class_declaration_token11, + ACTIONS(1744), 1, + aux_sym_class_declaration_token12, + ACTIONS(1746), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3033), 4, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_interface_declaration_token2, - aux_sym_variable_declaration_token1, - [31810] = 2, - ACTIONS(3), 2, sym_eol_comment, + [33031] = 5, + ACTIONS(3039), 1, + sym_name, + ACTIONS(3041), 1, + aux_sym_complete_typing_token1, + ACTIONS(3043), 1, + aux_sym_generic_type_token1, + STATE(500), 1, + sym_generic_type, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3035), 4, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_interface_declaration_token2, - aux_sym_variable_declaration_token1, - [31821] = 2, - ACTIONS(3), 2, sym_eol_comment, + [33049] = 4, + ACTIONS(89), 1, + aux_sym_catch_statement_token1, + ACTIONS(3045), 1, + aux_sym_try_catch_statement_token2, + STATE(1213), 2, + sym_catch_statement, + aux_sym_try_catch_statement_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3037), 4, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_interface_declaration_token2, - aux_sym_variable_declaration_token1, - [31832] = 2, - ACTIONS(3), 2, sym_eol_comment, + [33065] = 4, + ACTIONS(89), 1, + aux_sym_catch_statement_token1, + ACTIONS(3045), 1, + aux_sym_try_catch_statement_token2, + STATE(1214), 2, + sym_catch_statement, + aux_sym_try_catch_statement_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3039), 4, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_interface_declaration_token2, - aux_sym_variable_declaration_token1, - [31843] = 2, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(3041), 4, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_interface_declaration_token2, - aux_sym_variable_declaration_token1, - [31854] = 2, - ACTIONS(3), 2, sym_eol_comment, + [33081] = 5, + ACTIONS(3047), 1, + sym_name, + ACTIONS(3049), 1, + anon_sym_RBRACK, + STATE(1219), 1, + aux_sym__table_expression_free_key, + STATE(1971), 1, + sym_comp_spec, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3043), 4, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_interface_declaration_token2, - aux_sym_variable_declaration_token1, - [31865] = 2, - ACTIONS(3), 2, sym_eol_comment, + [33099] = 4, + ACTIONS(3051), 1, + sym_name, + STATE(1130), 1, + sym_parameter_list, + STATE(560), 2, + sym_parameter_binding, + aux_sym_parameter_list_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3045), 4, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_interface_declaration_token2, - aux_sym_variable_declaration_token1, - [31876] = 5, - ACTIONS(2724), 1, + sym_eol_comment, + [33115] = 5, + ACTIONS(1710), 1, aux_sym_class_declaration_token8, - ACTIONS(2726), 1, + ACTIONS(1712), 1, aux_sym_class_declaration_token11, - ACTIONS(2728), 1, + ACTIONS(1714), 1, aux_sym_class_declaration_token12, - ACTIONS(2730), 1, + ACTIONS(1716), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [31893] = 2, - ACTIONS(3), 2, sym_eol_comment, + [33133] = 4, + ACTIONS(3051), 1, + sym_name, + STATE(2457), 1, + sym_parameter_list, + STATE(560), 2, + sym_parameter_binding, + aux_sym_parameter_list_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3047), 4, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_interface_declaration_token2, - aux_sym_variable_declaration_token1, - [31904] = 2, - ACTIONS(3), 2, sym_eol_comment, + [33149] = 4, + ACTIONS(3055), 1, + aux_sym_method_parameters_token1, + ACTIONS(3057), 1, + aux_sym__data_object_typing_normal_token5, + ACTIONS(3053), 2, + anon_sym_DOT, + anon_sym_COMMA, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3049), 4, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_interface_declaration_token2, - aux_sym_variable_declaration_token1, - [31915] = 2, - ACTIONS(3), 2, sym_eol_comment, + [33165] = 4, + ACTIONS(3061), 1, + aux_sym_method_parameters_token1, + ACTIONS(3063), 1, + aux_sym__data_object_typing_normal_token5, + ACTIONS(3059), 2, + anon_sym_DOT, + anon_sym_COMMA, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3051), 4, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_interface_declaration_token2, - aux_sym_variable_declaration_token1, - [31926] = 2, - ACTIONS(3), 2, sym_eol_comment, + [33181] = 4, + ACTIONS(89), 1, + aux_sym_catch_statement_token1, + ACTIONS(3065), 1, + aux_sym_try_catch_statement_token2, + STATE(1214), 2, + sym_catch_statement, + aux_sym_try_catch_statement_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3053), 4, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_interface_declaration_token2, - aux_sym_variable_declaration_token1, - [31937] = 2, - ACTIONS(3), 2, sym_eol_comment, + [33197] = 4, + ACTIONS(3067), 1, + aux_sym_try_catch_statement_token2, + ACTIONS(3069), 1, + aux_sym_catch_statement_token1, + STATE(1214), 2, + sym_catch_statement, + aux_sym_try_catch_statement_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3055), 4, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_interface_declaration_token2, - aux_sym_variable_declaration_token1, - [31948] = 2, - ACTIONS(3), 2, sym_eol_comment, + [33213] = 4, + ACTIONS(3051), 1, + sym_name, + STATE(1127), 1, + sym_parameter_list, + STATE(560), 2, + sym_parameter_binding, + aux_sym_parameter_list_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3057), 4, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_interface_declaration_token2, - aux_sym_variable_declaration_token1, - [31959] = 2, - ACTIONS(3), 2, sym_eol_comment, + [33229] = 4, + ACTIONS(3072), 1, + sym_name, + STATE(1127), 1, + sym_parameter_list_exporting, + STATE(617), 2, + sym_parameter_binding_exporting, + aux_sym_parameter_list_exporting_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3059), 4, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_interface_declaration_token2, - aux_sym_variable_declaration_token1, - [31970] = 2, - ACTIONS(3), 2, sym_eol_comment, + [33245] = 4, + ACTIONS(3051), 1, + sym_name, + STATE(2471), 1, + sym_parameter_list, + STATE(560), 2, + sym_parameter_binding, + aux_sym_parameter_list_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3061), 4, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_interface_declaration_token2, - aux_sym_variable_declaration_token1, - [31981] = 2, - ACTIONS(3), 2, sym_eol_comment, + [33261] = 4, + ACTIONS(3074), 1, + aux_sym_class_declaration_token13, + ACTIONS(3076), 1, + aux_sym_method_implementation_token1, + STATE(1234), 2, + sym_method_implementation, + aux_sym_class_implementation_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3063), 4, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_interface_declaration_token2, - aux_sym_variable_declaration_token1, - [31992] = 2, - ACTIONS(3), 2, sym_eol_comment, + [33277] = 5, + ACTIONS(3078), 1, + sym_name, + ACTIONS(3081), 1, + anon_sym_RBRACK, + STATE(1219), 1, + aux_sym__table_expression_free_key, + STATE(1971), 1, + sym_comp_spec, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3065), 4, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_interface_declaration_token2, - aux_sym_variable_declaration_token1, - [32003] = 2, - ACTIONS(3), 2, sym_eol_comment, + [33295] = 4, + ACTIONS(89), 1, + aux_sym_catch_statement_token1, + ACTIONS(3083), 1, + aux_sym_try_catch_statement_token2, + STATE(1214), 2, + sym_catch_statement, + aux_sym_try_catch_statement_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3067), 4, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_interface_declaration_token2, - aux_sym_variable_declaration_token1, - [32014] = 2, - ACTIONS(3), 2, sym_eol_comment, + [33311] = 4, + ACTIONS(3051), 1, + sym_name, + STATE(2454), 1, + sym_parameter_list, + STATE(560), 2, + sym_parameter_binding, + aux_sym_parameter_list_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3069), 4, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_interface_declaration_token2, - aux_sym_variable_declaration_token1, - [32025] = 2, - ACTIONS(3), 2, sym_eol_comment, + [33327] = 4, + ACTIONS(3076), 1, + aux_sym_method_implementation_token1, + ACTIONS(3085), 1, + aux_sym_class_declaration_token13, + STATE(1218), 2, + sym_method_implementation, + aux_sym_class_implementation_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3071), 4, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_interface_declaration_token2, - aux_sym_variable_declaration_token1, - [32036] = 5, - ACTIONS(3073), 1, + sym_eol_comment, + [33343] = 5, + ACTIONS(1920), 1, aux_sym_class_declaration_token8, - ACTIONS(3075), 1, + ACTIONS(1922), 1, aux_sym_class_declaration_token11, - ACTIONS(3077), 1, + ACTIONS(1924), 1, aux_sym_class_declaration_token12, - ACTIONS(3079), 1, + ACTIONS(1926), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + [33361] = 4, + ACTIONS(89), 1, + aux_sym_catch_statement_token1, + ACTIONS(3087), 1, + aux_sym_try_catch_statement_token2, + STATE(1214), 2, + sym_catch_statement, + aux_sym_try_catch_statement_repeat1, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [33377] = 4, + ACTIONS(89), 1, + aux_sym_catch_statement_token1, + ACTIONS(3087), 1, + aux_sym_try_catch_statement_token2, + STATE(1220), 2, + sym_catch_statement, + aux_sym_try_catch_statement_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [32053] = 2, - ACTIONS(3), 2, sym_eol_comment, + [33393] = 4, + ACTIONS(3076), 1, + aux_sym_method_implementation_token1, + ACTIONS(3089), 1, + aux_sym_class_declaration_token13, + STATE(1228), 2, + sym_method_implementation, + aux_sym_class_implementation_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(654), 4, - anon_sym_DOT, - aux_sym_method_parameters_token1, - anon_sym_COMMA, - aux_sym__data_object_typing_normal_token5, - [32064] = 5, - ACTIONS(2661), 1, + sym_eol_comment, + [33409] = 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + ACTIONS(3091), 4, aux_sym_class_declaration_token8, - ACTIONS(2663), 1, aux_sym_class_declaration_token11, - ACTIONS(2665), 1, aux_sym_class_declaration_token12, - ACTIONS(2667), 1, anon_sym_DOT, - ACTIONS(3), 2, + [33421] = 4, + ACTIONS(3076), 1, + aux_sym_method_implementation_token1, + ACTIONS(3093), 1, + aux_sym_class_declaration_token13, + STATE(1234), 2, + sym_method_implementation, + aux_sym_class_implementation_repeat1, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + [33437] = 5, + ACTIONS(3095), 1, + aux_sym_class_declaration_token5, + ACTIONS(3097), 1, + anon_sym_DOT, + ACTIONS(3099), 1, + aux_sym_complete_typing_token2, + ACTIONS(3101), 1, + aux_sym_loop_statement_token5, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + [33455] = 5, + ACTIONS(3103), 1, + sym_name, + ACTIONS(3105), 1, + anon_sym_LPAREN, + ACTIONS(3107), 1, + aux_sym_generic_type_token2, + ACTIONS(3109), 1, + aux_sym__select_target_token1, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + [33473] = 4, + ACTIONS(3111), 1, + sym_name, + ACTIONS(3113), 1, + anon_sym_DOT, + STATE(1242), 2, + sym_return_code_binding, + aux_sym_exception_list_repeat1, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [33489] = 4, + ACTIONS(3051), 1, + sym_name, + STATE(2315), 1, + sym_parameter_list, + STATE(560), 2, + sym_parameter_binding, + aux_sym_parameter_list_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [32081] = 5, - ACTIONS(2010), 1, + sym_eol_comment, + [33505] = 5, + ACTIONS(2703), 1, aux_sym_class_declaration_token8, - ACTIONS(2012), 1, + ACTIONS(2705), 1, aux_sym_class_declaration_token11, - ACTIONS(2014), 1, + ACTIONS(2707), 1, aux_sym_class_declaration_token12, - ACTIONS(2016), 1, + ACTIONS(2709), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [32098] = 5, - ACTIONS(3009), 1, - sym_name, - ACTIONS(3081), 1, - aux_sym_chained_structure_declaration_token2, - STATE(1190), 1, - aux_sym_chained_structure_declaration_repeat1, - STATE(1934), 1, - sym_structure_component, - ACTIONS(3), 2, sym_eol_comment, + [33523] = 4, + ACTIONS(3115), 1, + aux_sym_class_declaration_token13, + ACTIONS(3117), 1, + aux_sym_method_implementation_token1, + STATE(1234), 2, + sym_method_implementation, + aux_sym_class_implementation_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [32115] = 2, - ACTIONS(3), 2, sym_eol_comment, + [33539] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3083), 4, + sym_eol_comment, + ACTIONS(3120), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [32126] = 5, - ACTIONS(3009), 1, - sym_name, - ACTIONS(3085), 1, - aux_sym_chained_structure_declaration_token2, - STATE(1190), 1, - aux_sym_chained_structure_declaration_repeat1, - STATE(1934), 1, - sym_structure_component, - ACTIONS(3), 2, - sym_eol_comment, + [33551] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [32143] = 2, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(3087), 4, + ACTIONS(3122), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [32154] = 2, - ACTIONS(3), 2, + [33563] = 4, + ACTIONS(3126), 1, + aux_sym_method_parameters_token1, + ACTIONS(3128), 1, + aux_sym__data_object_typing_normal_token5, + ACTIONS(3124), 2, + anon_sym_DOT, + anon_sym_COMMA, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + [33579] = 4, + ACTIONS(3132), 1, + aux_sym_method_parameters_token1, + ACTIONS(3134), 1, + aux_sym__data_object_typing_normal_token5, + ACTIONS(3130), 2, + anon_sym_DOT, + anon_sym_COMMA, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [33595] = 4, + ACTIONS(3138), 1, + aux_sym_method_parameters_token1, + ACTIONS(3140), 1, + aux_sym__data_object_typing_normal_token5, + ACTIONS(3136), 2, + anon_sym_DOT, + anon_sym_COMMA, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + [33611] = 4, + ACTIONS(3144), 1, + aux_sym_method_parameters_token1, + ACTIONS(3146), 1, + aux_sym__data_object_typing_normal_token5, + ACTIONS(3142), 2, + anon_sym_DOT, + anon_sym_COMMA, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3089), 4, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_interface_declaration_token2, - aux_sym_variable_declaration_token1, - [32165] = 2, - ACTIONS(3), 2, sym_eol_comment, + [33627] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3091), 4, + sym_eol_comment, + ACTIONS(3148), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [32176] = 5, - ACTIONS(3009), 1, + [33639] = 4, + ACTIONS(3150), 1, sym_name, - ACTIONS(3093), 1, - aux_sym_chained_structure_declaration_token2, - STATE(1190), 1, - aux_sym_chained_structure_declaration_repeat1, - STATE(1934), 1, - sym_structure_component, - ACTIONS(3), 2, + ACTIONS(3153), 1, + anon_sym_DOT, + STATE(1242), 2, + sym_return_code_binding, + aux_sym_exception_list_repeat1, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + [33655] = 5, + ACTIONS(3155), 1, + aux_sym_class_declaration_token8, + ACTIONS(3157), 1, + aux_sym_class_declaration_token11, + ACTIONS(3159), 1, + aux_sym_class_declaration_token12, + ACTIONS(3161), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [33673] = 5, + ACTIONS(2282), 1, + aux_sym_class_declaration_token8, + ACTIONS(2284), 1, + aux_sym_class_declaration_token11, + ACTIONS(2286), 1, + aux_sym_class_declaration_token12, + ACTIONS(2288), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [32193] = 2, - ACTIONS(3), 2, sym_eol_comment, + [33691] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3095), 4, + sym_eol_comment, + ACTIONS(3163), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [32204] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [33703] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3097), 4, + sym_eol_comment, + ACTIONS(3165), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [32215] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [33715] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3099), 4, + sym_eol_comment, + ACTIONS(3167), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [32226] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [33727] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3101), 4, + sym_eol_comment, + ACTIONS(3169), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [32237] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [33739] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3103), 4, + sym_eol_comment, + ACTIONS(3171), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [32248] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [33751] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3105), 4, + sym_eol_comment, + ACTIONS(3173), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [32259] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [33763] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3107), 4, + sym_eol_comment, + ACTIONS(3175), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [32270] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [33775] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3109), 4, + sym_eol_comment, + ACTIONS(3177), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [32281] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [33787] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3111), 4, + sym_eol_comment, + ACTIONS(3179), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [32292] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [33799] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3113), 4, + sym_eol_comment, + ACTIONS(3181), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [32303] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [33811] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3115), 4, + sym_eol_comment, + ACTIONS(3183), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [32314] = 2, - ACTIONS(3), 2, + [33823] = 5, + ACTIONS(3001), 1, + sym_name, + ACTIONS(3185), 1, + aux_sym_chained_structure_declaration_token2, + STATE(1330), 1, + aux_sym_chained_structure_declaration_repeat1, + STATE(1973), 1, + sym_structure_component, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [33841] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3117), 4, + sym_eol_comment, + ACTIONS(3187), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [32325] = 2, - ACTIONS(3), 2, + [33853] = 5, + ACTIONS(2024), 1, + aux_sym_class_declaration_token8, + ACTIONS(2026), 1, + aux_sym_class_declaration_token11, + ACTIONS(2028), 1, + aux_sym_class_declaration_token12, + ACTIONS(2030), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + [33871] = 5, + ACTIONS(2670), 1, + aux_sym_class_declaration_token8, + ACTIONS(2672), 1, + aux_sym_class_declaration_token11, + ACTIONS(2674), 1, + aux_sym_class_declaration_token12, + ACTIONS(2676), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [33889] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3119), 4, + sym_eol_comment, + ACTIONS(3189), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [32336] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [33901] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3121), 4, + sym_eol_comment, + ACTIONS(3191), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [32347] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [33913] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3123), 4, + sym_eol_comment, + ACTIONS(3193), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [32358] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [33925] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3125), 4, + sym_eol_comment, + ACTIONS(3195), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [32369] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [33937] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3127), 4, + sym_eol_comment, + ACTIONS(3197), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [32380] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [33949] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3129), 4, + sym_eol_comment, + ACTIONS(3199), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [32391] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [33961] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3131), 4, + sym_eol_comment, + ACTIONS(3201), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [32402] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [33973] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3133), 4, + sym_eol_comment, + ACTIONS(3203), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [32413] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [33985] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3135), 4, + sym_eol_comment, + ACTIONS(3205), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [32424] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [33997] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3137), 4, + sym_eol_comment, + ACTIONS(3207), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [32435] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [34009] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3139), 4, + sym_eol_comment, + ACTIONS(3209), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [32446] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [34021] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3141), 4, + sym_eol_comment, + ACTIONS(3211), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [32457] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [34033] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3143), 4, + sym_eol_comment, + ACTIONS(3213), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [32468] = 5, - ACTIONS(2282), 1, - aux_sym_class_declaration_token8, - ACTIONS(2284), 1, - aux_sym_class_declaration_token11, - ACTIONS(2286), 1, - aux_sym_class_declaration_token12, - ACTIONS(2288), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + [34045] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [32485] = 2, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(3145), 4, + ACTIONS(3215), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [32496] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [34057] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3147), 4, + sym_eol_comment, + ACTIONS(3217), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [32507] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [34069] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3149), 4, + sym_eol_comment, + ACTIONS(3219), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [32518] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [34081] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3151), 4, + sym_eol_comment, + ACTIONS(3221), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [32529] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [34093] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3153), 4, + sym_eol_comment, + ACTIONS(3223), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [32540] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [34105] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3155), 4, + sym_eol_comment, + ACTIONS(3225), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [32551] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [34117] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3157), 4, + sym_eol_comment, + ACTIONS(3227), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [32562] = 5, - ACTIONS(3159), 1, - aux_sym_class_declaration_token8, - ACTIONS(3161), 1, - aux_sym_class_declaration_token11, - ACTIONS(3163), 1, - aux_sym_class_declaration_token12, - ACTIONS(3165), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + [34129] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [32579] = 2, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(3167), 4, + ACTIONS(3229), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [32590] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [34141] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3169), 4, + sym_eol_comment, + ACTIONS(3231), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [32601] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [34153] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3171), 4, + sym_eol_comment, + ACTIONS(3233), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [32612] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [34165] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3173), 4, + sym_eol_comment, + ACTIONS(3235), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [32623] = 4, - ACTIONS(3175), 1, - sym_name, - ACTIONS(3178), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + [34177] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - STATE(1273), 2, - sym_return_code_binding, - aux_sym_exception_list_repeat1, - [32638] = 2, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(3180), 4, + ACTIONS(3237), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [32649] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [34189] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3182), 4, + sym_eol_comment, + ACTIONS(3239), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [32660] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [34201] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3184), 4, + sym_eol_comment, + ACTIONS(3241), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [32671] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [34213] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3186), 4, + sym_eol_comment, + ACTIONS(3243), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [32682] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [34225] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3188), 4, + sym_eol_comment, + ACTIONS(3245), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [32693] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [34237] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3190), 4, + sym_eol_comment, + ACTIONS(3247), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [32704] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [34249] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3192), 4, + sym_eol_comment, + ACTIONS(3249), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [32715] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [34261] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3194), 4, + sym_eol_comment, + ACTIONS(3251), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [32726] = 4, - ACTIONS(3198), 1, - aux_sym_method_parameters_token1, - ACTIONS(3200), 1, - aux_sym__data_object_typing_normal_token5, - ACTIONS(3), 2, - sym_eol_comment, + [34273] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3196), 2, - anon_sym_DOT, - anon_sym_COMMA, - [32741] = 2, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(3202), 4, + ACTIONS(3253), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [32752] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [34285] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3204), 4, + sym_eol_comment, + ACTIONS(3255), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [32763] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [34297] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3206), 4, + sym_eol_comment, + ACTIONS(3257), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [32774] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [34309] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3208), 4, + sym_eol_comment, + ACTIONS(3259), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [32785] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [34321] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3210), 4, + sym_eol_comment, + ACTIONS(3261), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [32796] = 4, - ACTIONS(3214), 1, - aux_sym_method_parameters_token1, - ACTIONS(3216), 1, - aux_sym__data_object_typing_normal_token5, - ACTIONS(3), 2, - sym_eol_comment, + [34333] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3212), 2, - anon_sym_DOT, - anon_sym_COMMA, - [32811] = 2, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(3218), 4, + ACTIONS(3263), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [32822] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [34345] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3220), 4, + sym_eol_comment, + ACTIONS(3265), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [32833] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [34357] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3222), 4, + sym_eol_comment, + ACTIONS(3267), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [32844] = 4, - ACTIONS(3226), 1, - aux_sym_method_parameters_token1, - ACTIONS(3228), 1, - aux_sym__data_object_typing_normal_token5, - ACTIONS(3), 2, - sym_eol_comment, + [34369] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3224), 2, - anon_sym_DOT, - anon_sym_COMMA, - [32859] = 2, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(3230), 4, + ACTIONS(3269), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [32870] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [34381] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3232), 4, + sym_eol_comment, + ACTIONS(3271), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [32881] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [34393] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3234), 4, + sym_eol_comment, + ACTIONS(3273), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [32892] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [34405] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3236), 4, + sym_eol_comment, + ACTIONS(3275), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [32903] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [34417] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3238), 4, + sym_eol_comment, + ACTIONS(3277), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [32914] = 4, - ACTIONS(3242), 1, - aux_sym_method_parameters_token1, - ACTIONS(3244), 1, - aux_sym__data_object_typing_normal_token5, - ACTIONS(3), 2, - sym_eol_comment, + [34429] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3240), 2, - anon_sym_DOT, - anon_sym_COMMA, - [32929] = 2, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(3246), 4, + ACTIONS(3279), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [32940] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [34441] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3248), 4, + sym_eol_comment, + ACTIONS(3281), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [32951] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [34453] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3250), 4, + sym_eol_comment, + ACTIONS(3283), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [32962] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [34465] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3252), 4, + sym_eol_comment, + ACTIONS(3285), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [32973] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [34477] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3254), 4, + sym_eol_comment, + ACTIONS(3287), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [32984] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [34489] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3256), 4, + sym_eol_comment, + ACTIONS(3289), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [32995] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [34501] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3258), 4, + sym_eol_comment, + ACTIONS(3291), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [33006] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [34513] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3260), 4, + sym_eol_comment, + ACTIONS(3293), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [33017] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [34525] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3262), 4, + sym_eol_comment, + ACTIONS(3295), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [33028] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [34537] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3264), 4, + sym_eol_comment, + ACTIONS(3297), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [33039] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [34549] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3266), 4, + sym_eol_comment, + ACTIONS(3299), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [33050] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [34561] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3268), 4, + sym_eol_comment, + ACTIONS(3301), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [33061] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [34573] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3270), 4, + sym_eol_comment, + ACTIONS(3303), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [33072] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [34585] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3272), 4, + sym_eol_comment, + ACTIONS(3305), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [33083] = 4, - ACTIONS(3274), 1, - aux_sym_class_declaration_token13, - ACTIONS(3276), 1, - aux_sym_method_implementation_token1, - ACTIONS(3), 2, - sym_eol_comment, + [34597] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - STATE(1313), 2, - sym_method_implementation, - aux_sym_class_implementation_repeat1, - [33098] = 2, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(3279), 4, + ACTIONS(3307), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [33109] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [34609] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3281), 4, + sym_eol_comment, + ACTIONS(3309), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [33120] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [34621] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3283), 4, + sym_eol_comment, + ACTIONS(3311), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [33131] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [34633] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3285), 4, + sym_eol_comment, + ACTIONS(3313), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [33142] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [34645] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3287), 4, + sym_eol_comment, + ACTIONS(3315), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [33153] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [34657] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3289), 4, + sym_eol_comment, + ACTIONS(3317), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [33164] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [34669] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3291), 4, + sym_eol_comment, + ACTIONS(3319), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [33175] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [34681] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3293), 4, + sym_eol_comment, + ACTIONS(3321), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [33186] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [34693] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3295), 4, + sym_eol_comment, + ACTIONS(3323), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [33197] = 5, - ACTIONS(2694), 1, - aux_sym_class_declaration_token8, - ACTIONS(2696), 1, - aux_sym_class_declaration_token11, - ACTIONS(2698), 1, - aux_sym_class_declaration_token12, - ACTIONS(2700), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + [34705] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [33214] = 2, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(3297), 4, + ACTIONS(3325), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [33225] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [34717] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3299), 4, + sym_eol_comment, + ACTIONS(3327), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [33236] = 4, - ACTIONS(3301), 1, + [34729] = 5, + ACTIONS(3329), 1, sym_name, - STATE(2314), 1, - sym_parameter_list, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3332), 1, + aux_sym_chained_structure_declaration_token2, + STATE(1330), 1, + aux_sym_chained_structure_declaration_repeat1, + STATE(1973), 1, + sym_structure_component, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - STATE(562), 2, - sym_parameter_binding, - aux_sym_parameter_list_repeat1, - [33251] = 2, - ACTIONS(3), 2, sym_eol_comment, + [34747] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3303), 4, - aux_sym_method_declaration_class_token1, - aux_sym_class_constructor_declaration_token1, - aux_sym_interface_declaration_token2, - aux_sym_variable_declaration_token1, - [33262] = 2, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(3305), 4, + ACTIONS(3334), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [33273] = 2, - ACTIONS(3), 2, + [34759] = 5, + ACTIONS(3001), 1, + sym_name, + ACTIONS(3336), 1, + aux_sym_chained_structure_declaration_token2, + STATE(1330), 1, + aux_sym_chained_structure_declaration_repeat1, + STATE(1973), 1, + sym_structure_component, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [34777] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3307), 4, + sym_eol_comment, + ACTIONS(3338), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [33284] = 4, - ACTIONS(3309), 1, - sym_name, - ACTIONS(3311), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + [34789] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - STATE(1273), 2, - sym_return_code_binding, - aux_sym_exception_list_repeat1, - [33299] = 2, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(3313), 4, + ACTIONS(3340), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [33310] = 5, - ACTIONS(3315), 1, + [34801] = 5, + ACTIONS(2725), 1, aux_sym_class_declaration_token8, - ACTIONS(3317), 1, + ACTIONS(2727), 1, aux_sym_class_declaration_token11, - ACTIONS(3319), 1, + ACTIONS(2729), 1, aux_sym_class_declaration_token12, - ACTIONS(3321), 1, + ACTIONS(2731), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [34819] = 5, + ACTIONS(3342), 1, + aux_sym_class_declaration_token8, + ACTIONS(3344), 1, + aux_sym_class_declaration_token11, + ACTIONS(3346), 1, + aux_sym_class_declaration_token12, + ACTIONS(3348), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [33327] = 2, - ACTIONS(3), 2, sym_eol_comment, + [34837] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3323), 4, + sym_eol_comment, + ACTIONS(3350), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [33338] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [34849] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3325), 4, + sym_eol_comment, + ACTIONS(3352), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [33349] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [34861] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3327), 4, + sym_eol_comment, + ACTIONS(3354), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [33360] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [34873] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3329), 4, + sym_eol_comment, + ACTIONS(3356), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [33371] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [34885] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3331), 4, + sym_eol_comment, + ACTIONS(3358), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [33382] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [34897] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3333), 4, + sym_eol_comment, + ACTIONS(3360), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [33393] = 5, - ACTIONS(3335), 1, - sym_name, - ACTIONS(3337), 1, - anon_sym_LPAREN, - ACTIONS(3339), 1, - aux_sym_generic_type_token2, - ACTIONS(3341), 1, - aux_sym__select_target_token1, - ACTIONS(3), 2, - sym_eol_comment, + [34909] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [33410] = 2, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(3343), 4, + ACTIONS(3362), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [33421] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [34921] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3345), 4, + sym_eol_comment, + ACTIONS(3364), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [33432] = 5, - ACTIONS(3347), 1, - aux_sym_class_declaration_token8, - ACTIONS(3349), 1, - aux_sym_class_declaration_token11, - ACTIONS(3351), 1, - aux_sym_class_declaration_token12, - ACTIONS(3353), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + [34933] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [33449] = 2, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(3355), 4, + ACTIONS(3366), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [33460] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [34945] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3357), 4, + sym_eol_comment, + ACTIONS(3368), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [33471] = 5, - ACTIONS(3359), 1, - aux_sym_class_declaration_token5, - ACTIONS(3361), 1, - anon_sym_DOT, - ACTIONS(3363), 1, - aux_sym_complete_typing_token2, - ACTIONS(3365), 1, - aux_sym_loop_statement_token5, - ACTIONS(3), 2, - sym_eol_comment, + [34957] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [33488] = 2, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(3367), 4, + ACTIONS(3370), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [33499] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [34969] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3369), 4, + sym_eol_comment, + ACTIONS(3372), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [33510] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [34981] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3371), 4, + sym_eol_comment, + ACTIONS(3374), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [33521] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [34993] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3373), 4, + sym_eol_comment, + ACTIONS(3376), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [33532] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [35005] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3375), 4, + sym_eol_comment, + ACTIONS(3378), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [33543] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [35017] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3377), 4, + sym_eol_comment, + ACTIONS(3380), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [33554] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [35029] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3379), 4, + sym_eol_comment, + ACTIONS(3382), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [33565] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [35041] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3381), 4, + sym_eol_comment, + ACTIONS(3384), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [33576] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [35053] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3383), 4, + sym_eol_comment, + ACTIONS(3386), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [33587] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [35065] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3385), 4, + sym_eol_comment, + ACTIONS(3388), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [33598] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [35077] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3387), 4, + sym_eol_comment, + ACTIONS(3390), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [33609] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [35089] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3389), 4, + sym_eol_comment, + ACTIONS(3392), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [33620] = 5, - ACTIONS(2708), 1, - aux_sym_class_declaration_token8, - ACTIONS(2710), 1, - aux_sym_class_declaration_token11, - ACTIONS(2712), 1, - aux_sym_class_declaration_token12, - ACTIONS(2714), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + [35101] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [33637] = 2, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(3391), 4, + ACTIONS(3394), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [33648] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [35113] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3393), 4, + sym_eol_comment, + ACTIONS(3396), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [33659] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [35125] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3395), 4, + sym_eol_comment, + ACTIONS(3398), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [33670] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [35137] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3397), 4, + sym_eol_comment, + ACTIONS(3400), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [33681] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [35149] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3399), 4, + sym_eol_comment, + ACTIONS(3402), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [33692] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [35161] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3401), 4, + sym_eol_comment, + ACTIONS(3404), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [33703] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [35173] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3403), 4, + sym_eol_comment, + ACTIONS(3406), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [33714] = 5, - ACTIONS(2716), 1, - aux_sym_class_declaration_token8, - ACTIONS(2718), 1, - aux_sym_class_declaration_token11, - ACTIONS(2720), 1, - aux_sym_class_declaration_token12, - ACTIONS(2722), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + [35185] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [33731] = 2, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(3405), 4, + ACTIONS(3408), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [33742] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [35197] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3407), 4, + sym_eol_comment, + ACTIONS(3410), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [33753] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [35209] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3409), 4, + sym_eol_comment, + ACTIONS(3412), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [33764] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [35221] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3411), 4, + sym_eol_comment, + ACTIONS(3414), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [33775] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [35233] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3413), 4, + sym_eol_comment, + ACTIONS(3416), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [33786] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [35245] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3415), 4, + sym_eol_comment, + ACTIONS(3418), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [33797] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [35257] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3417), 4, + sym_eol_comment, + ACTIONS(3420), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [33808] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [35269] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3419), 4, + sym_eol_comment, + ACTIONS(3422), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [33819] = 5, - ACTIONS(1926), 1, - aux_sym_class_declaration_token8, - ACTIONS(1928), 1, - aux_sym_class_declaration_token11, - ACTIONS(1930), 1, - aux_sym_class_declaration_token12, - ACTIONS(1932), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + [35281] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [33836] = 2, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(3421), 4, + ACTIONS(3424), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [33847] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [35293] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3423), 4, + sym_eol_comment, + ACTIONS(3426), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [33858] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [35305] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3425), 4, + sym_eol_comment, + ACTIONS(3428), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [33869] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [35317] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3427), 4, + sym_eol_comment, + ACTIONS(3430), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [33880] = 5, - ACTIONS(1940), 1, - aux_sym_class_declaration_token8, - ACTIONS(1942), 1, - aux_sym_class_declaration_token11, - ACTIONS(1944), 1, - aux_sym_class_declaration_token12, - ACTIONS(1946), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + [35329] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [33897] = 2, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(3429), 4, + ACTIONS(3432), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [33908] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [35341] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3431), 4, + sym_eol_comment, + ACTIONS(3434), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [33919] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [35353] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3433), 4, + sym_eol_comment, + ACTIONS(3436), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [33930] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [35365] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3435), 4, + sym_eol_comment, + ACTIONS(3438), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [33941] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [35377] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3437), 4, + sym_eol_comment, + ACTIONS(3440), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [33952] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [35389] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3439), 4, + sym_eol_comment, + ACTIONS(3442), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [33963] = 5, - ACTIONS(3441), 1, - aux_sym_class_declaration_token8, - ACTIONS(3443), 1, - aux_sym_class_declaration_token11, - ACTIONS(3445), 1, - aux_sym_class_declaration_token12, - ACTIONS(3447), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + [35401] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [33980] = 2, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(3449), 4, + ACTIONS(3444), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [33991] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [35413] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3451), 4, + sym_eol_comment, + ACTIONS(3446), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [34002] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [35425] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3453), 4, + sym_eol_comment, + ACTIONS(3448), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [34013] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [35437] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3455), 4, + sym_eol_comment, + ACTIONS(3450), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [34024] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [35449] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3457), 4, + sym_eol_comment, + ACTIONS(3452), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [34035] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [35461] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3459), 4, + sym_eol_comment, + ACTIONS(3454), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [34046] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [35473] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3461), 4, + sym_eol_comment, + ACTIONS(3456), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [34057] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [35485] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3463), 4, + sym_eol_comment, + ACTIONS(3458), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [34068] = 4, - ACTIONS(3465), 1, - aux_sym_class_declaration_token13, - ACTIONS(3467), 1, - aux_sym_method_implementation_token1, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - STATE(1313), 2, - sym_method_implementation, - aux_sym_class_implementation_repeat1, - [34083] = 5, - ACTIONS(2653), 1, - aux_sym_class_declaration_token8, - ACTIONS(2655), 1, - aux_sym_class_declaration_token11, - ACTIONS(2657), 1, - aux_sym_class_declaration_token12, - ACTIONS(2659), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + [35497] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [34100] = 2, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(3469), 4, + ACTIONS(3460), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [34111] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [35509] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3471), 4, + sym_eol_comment, + ACTIONS(3462), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [34122] = 5, - ACTIONS(3473), 1, - aux_sym_class_declaration_token5, - ACTIONS(3475), 1, - anon_sym_DOT, - ACTIONS(3477), 1, - aux_sym_complete_typing_token2, - ACTIONS(3479), 1, - aux_sym_loop_statement_token5, - ACTIONS(3), 2, - sym_eol_comment, + [35521] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [34139] = 2, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(3481), 4, + ACTIONS(3464), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [34150] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [35533] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3483), 4, + sym_eol_comment, + ACTIONS(3466), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [34161] = 5, - ACTIONS(1964), 1, - aux_sym_class_declaration_token8, - ACTIONS(1966), 1, - aux_sym_class_declaration_token11, - ACTIONS(1968), 1, - aux_sym_class_declaration_token12, - ACTIONS(1970), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + [35545] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [34178] = 2, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(3485), 4, + ACTIONS(3468), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [34189] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [35557] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3487), 4, + sym_eol_comment, + ACTIONS(3470), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [34200] = 5, - ACTIONS(1742), 1, - aux_sym_class_declaration_token8, - ACTIONS(1744), 1, - aux_sym_class_declaration_token11, - ACTIONS(1746), 1, - aux_sym_class_declaration_token12, - ACTIONS(1748), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + [35569] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [34217] = 2, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(3489), 4, + ACTIONS(3472), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [34228] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [35581] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3491), 4, + sym_eol_comment, + ACTIONS(3474), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [34239] = 2, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(3493), 4, - aux_sym_class_declaration_token8, - aux_sym_class_declaration_token11, - aux_sym_class_declaration_token12, - anon_sym_DOT, - [34250] = 4, - ACTIONS(3467), 1, - aux_sym_method_implementation_token1, - ACTIONS(3495), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - STATE(1396), 2, - sym_method_implementation, - aux_sym_class_implementation_repeat1, - [34265] = 4, - ACTIONS(91), 1, - aux_sym_catch_statement_token1, - ACTIONS(3497), 1, - aux_sym_try_catch_statement_token2, - ACTIONS(3), 2, - sym_eol_comment, + [35593] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - STATE(1419), 2, - sym_catch_statement, - aux_sym_try_catch_statement_repeat1, - [34280] = 2, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(3499), 4, + ACTIONS(3476), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [34291] = 4, - ACTIONS(91), 1, - aux_sym_catch_statement_token1, - ACTIONS(3497), 1, - aux_sym_try_catch_statement_token2, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - STATE(1426), 2, - sym_catch_statement, - aux_sym_try_catch_statement_repeat1, - [34306] = 5, - ACTIONS(1900), 1, - aux_sym_class_declaration_token8, - ACTIONS(1902), 1, - aux_sym_class_declaration_token11, - ACTIONS(1904), 1, - aux_sym_class_declaration_token12, - ACTIONS(1906), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - [34323] = 4, - ACTIONS(3467), 1, - aux_sym_method_implementation_token1, - ACTIONS(3501), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - STATE(1422), 2, - sym_method_implementation, - aux_sym_class_implementation_repeat1, - [34338] = 4, - ACTIONS(3301), 1, - sym_name, - STATE(2453), 1, - sym_parameter_list, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - STATE(562), 2, - sym_parameter_binding, - aux_sym_parameter_list_repeat1, - [34353] = 5, - ACTIONS(3503), 1, - aux_sym_class_declaration_token8, - ACTIONS(3505), 1, - aux_sym_class_declaration_token11, - ACTIONS(3507), 1, - aux_sym_class_declaration_token12, - ACTIONS(3509), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + [35605] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [34370] = 2, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(3511), 4, + ACTIONS(3478), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [34381] = 4, - ACTIONS(91), 1, - aux_sym_catch_statement_token1, - ACTIONS(3513), 1, - aux_sym_try_catch_statement_token2, - ACTIONS(3), 2, - sym_eol_comment, + [35617] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - STATE(1426), 2, - sym_catch_statement, - aux_sym_try_catch_statement_repeat1, - [34396] = 5, - ACTIONS(3515), 1, - sym_name, - ACTIONS(3518), 1, - anon_sym_RBRACK, - STATE(1420), 1, - aux_sym__table_expression_free_key, - STATE(2044), 1, - sym_comp_spec, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - [34413] = 2, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(3520), 4, + ACTIONS(3480), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [34424] = 4, - ACTIONS(3467), 1, - aux_sym_method_implementation_token1, - ACTIONS(3522), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - STATE(1313), 2, - sym_method_implementation, - aux_sym_class_implementation_repeat1, - [34439] = 4, - ACTIONS(3301), 1, - sym_name, - STATE(2469), 1, - sym_parameter_list, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - STATE(562), 2, - sym_parameter_binding, - aux_sym_parameter_list_repeat1, - [34454] = 4, - ACTIONS(3524), 1, - sym_name, - STATE(1128), 1, - sym_parameter_list_exporting, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - STATE(613), 2, - sym_parameter_binding_exporting, - aux_sym_parameter_list_exporting_repeat1, - [34469] = 4, - ACTIONS(3301), 1, - sym_name, - STATE(1128), 1, - sym_parameter_list, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - STATE(562), 2, - sym_parameter_binding, - aux_sym_parameter_list_repeat1, - [34484] = 4, - ACTIONS(3526), 1, - aux_sym_try_catch_statement_token2, - ACTIONS(3528), 1, - aux_sym_catch_statement_token1, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - STATE(1426), 2, - sym_catch_statement, - aux_sym_try_catch_statement_repeat1, - [34499] = 4, - ACTIONS(91), 1, - aux_sym_catch_statement_token1, - ACTIONS(3531), 1, - aux_sym_try_catch_statement_token2, - ACTIONS(3), 2, - sym_eol_comment, + [35629] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - STATE(1426), 2, - sym_catch_statement, - aux_sym_try_catch_statement_repeat1, - [34514] = 2, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(3533), 4, + ACTIONS(3482), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [34525] = 4, - ACTIONS(3537), 1, - aux_sym_method_parameters_token1, - ACTIONS(3539), 1, - aux_sym__data_object_typing_normal_token5, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(3535), 2, - anon_sym_DOT, - anon_sym_COMMA, - [34540] = 4, - ACTIONS(3543), 1, - aux_sym_method_parameters_token1, - ACTIONS(3545), 1, - aux_sym__data_object_typing_normal_token5, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(3541), 2, - anon_sym_DOT, - anon_sym_COMMA, - [34555] = 4, - ACTIONS(3301), 1, - sym_name, - STATE(2443), 1, - sym_parameter_list, - ACTIONS(3), 2, - sym_eol_comment, + [35641] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - STATE(562), 2, - sym_parameter_binding, - aux_sym_parameter_list_repeat1, - [34570] = 5, - ACTIONS(1724), 1, - aux_sym_class_declaration_token8, - ACTIONS(1726), 1, - aux_sym_class_declaration_token11, - ACTIONS(1728), 1, - aux_sym_class_declaration_token12, - ACTIONS(1730), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - [34587] = 3, - ACTIONS(3547), 1, - sym_name, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(3549), 3, - anon_sym_DOT, - aux_sym__method_declaration_raising_token2, - aux_sym__method_declaration_exceptions_token1, - [34600] = 2, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(3551), 4, + ACTIONS(3484), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [34611] = 4, - ACTIONS(3301), 1, - sym_name, - STATE(1140), 1, - sym_parameter_list, - ACTIONS(3), 2, - sym_eol_comment, + [35653] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - STATE(562), 2, - sym_parameter_binding, - aux_sym_parameter_list_repeat1, - [34626] = 2, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(3553), 4, + ACTIONS(3486), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [34637] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [35665] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3555), 4, + sym_eol_comment, + ACTIONS(3488), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [34648] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [35677] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3557), 4, + sym_eol_comment, + ACTIONS(3490), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [34659] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [35689] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3559), 4, + sym_eol_comment, + ACTIONS(3492), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [34670] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [35701] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3561), 4, + sym_eol_comment, + ACTIONS(3494), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [34681] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [35713] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3563), 4, + sym_eol_comment, + ACTIONS(3496), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [34692] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [35725] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3565), 4, + sym_eol_comment, + ACTIONS(3498), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [34703] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [35737] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3567), 4, + sym_eol_comment, + ACTIONS(3500), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [34714] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [35749] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3569), 4, + sym_eol_comment, + ACTIONS(3502), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [34725] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [35761] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3571), 4, + sym_eol_comment, + ACTIONS(3504), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [34736] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [35773] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3573), 4, + sym_eol_comment, + ACTIONS(3506), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [34747] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [35785] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3575), 4, + sym_eol_comment, + ACTIONS(3508), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [34758] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [35797] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3577), 4, + sym_eol_comment, + ACTIONS(3510), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [34769] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [35809] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3579), 4, + sym_eol_comment, + ACTIONS(3512), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [34780] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [35821] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3581), 4, + sym_eol_comment, + ACTIONS(3514), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [34791] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [35833] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3583), 4, + sym_eol_comment, + ACTIONS(3516), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [34802] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [35845] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3585), 4, + sym_eol_comment, + ACTIONS(3518), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [34813] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [35857] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3587), 4, + sym_eol_comment, + ACTIONS(3520), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [34824] = 5, - ACTIONS(3589), 1, - sym_name, - ACTIONS(3591), 1, - anon_sym_RBRACK, - STATE(1420), 1, - aux_sym__table_expression_free_key, - STATE(2044), 1, - sym_comp_spec, - ACTIONS(3), 2, - sym_eol_comment, + [35869] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [34841] = 2, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(3593), 4, + ACTIONS(3522), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [34852] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [35881] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3595), 4, + sym_eol_comment, + ACTIONS(3524), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [34863] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [35893] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3597), 4, + sym_eol_comment, + ACTIONS(3526), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [34874] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [35905] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3599), 4, + sym_eol_comment, + ACTIONS(3528), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [34885] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [35917] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3601), 4, + sym_eol_comment, + ACTIONS(3530), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [34896] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [35929] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3603), 4, + sym_eol_comment, + ACTIONS(3532), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [34907] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [35941] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3605), 4, + sym_eol_comment, + ACTIONS(3534), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [34918] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [35953] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3607), 4, + sym_eol_comment, + ACTIONS(3536), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [34929] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [35965] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3609), 4, + sym_eol_comment, + ACTIONS(3538), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [34940] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [35977] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3611), 4, + sym_eol_comment, + ACTIONS(3540), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [34951] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [35989] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3613), 4, + sym_eol_comment, + ACTIONS(3542), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [34962] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [36001] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3615), 4, + sym_eol_comment, + ACTIONS(3544), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [34973] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [36013] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3617), 4, + sym_eol_comment, + ACTIONS(3546), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [34984] = 2, - ACTIONS(3), 2, + [36025] = 5, + ACTIONS(3548), 1, + aux_sym_class_declaration_token8, + ACTIONS(3550), 1, + aux_sym_class_declaration_token11, + ACTIONS(3552), 1, + aux_sym_class_declaration_token12, + ACTIONS(3554), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [36043] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3619), 4, + sym_eol_comment, + ACTIONS(3556), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [34995] = 2, - ACTIONS(3), 2, + [36055] = 3, + ACTIONS(3558), 1, + sym_name, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + ACTIONS(3560), 3, + anon_sym_DOT, + aux_sym__method_declaration_raising_token2, + aux_sym__method_declaration_exceptions_token1, + [36069] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3621), 4, + sym_eol_comment, + ACTIONS(3562), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [35006] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [36081] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3623), 4, + sym_eol_comment, + ACTIONS(3564), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [35017] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [36093] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3625), 4, + sym_eol_comment, + ACTIONS(3566), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [35028] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [36105] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3627), 4, + sym_eol_comment, + ACTIONS(3568), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [35039] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [36117] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3629), 4, + sym_eol_comment, + ACTIONS(3570), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [35050] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [36129] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3631), 4, + sym_eol_comment, + ACTIONS(3572), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [35061] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [36141] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3633), 4, + sym_eol_comment, + ACTIONS(3574), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [35072] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [36153] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3635), 4, + sym_eol_comment, + ACTIONS(3576), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [35083] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [36165] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3637), 4, + sym_eol_comment, + ACTIONS(3578), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [35094] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [36177] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3639), 4, + sym_eol_comment, + ACTIONS(3580), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [35105] = 2, - ACTIONS(3), 2, - sym_eol_comment, + [36189] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3641), 4, + sym_eol_comment, + ACTIONS(3582), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [35116] = 5, - ACTIONS(3643), 1, - sym_name, - ACTIONS(3645), 1, - aux_sym_complete_typing_token1, - ACTIONS(3647), 1, - aux_sym_generic_type_token1, - STATE(495), 1, - sym_generic_type, - ACTIONS(3), 2, - sym_eol_comment, + [36201] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [35133] = 2, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(3649), 4, + ACTIONS(3584), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [35144] = 2, - ACTIONS(3), 2, + [36213] = 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + ACTIONS(3586), 4, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_interface_declaration_token2, + aux_sym_variable_declaration_token1, + [36225] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3651), 4, + sym_eol_comment, + ACTIONS(3588), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [35155] = 2, - ACTIONS(3), 2, + [36237] = 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + ACTIONS(3590), 4, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_interface_declaration_token2, + aux_sym_variable_declaration_token1, + [36249] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3653), 4, + sym_eol_comment, + ACTIONS(3592), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [35166] = 2, - ACTIONS(3), 2, + [36261] = 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + ACTIONS(3594), 4, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_interface_declaration_token2, + aux_sym_variable_declaration_token1, + [36273] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3655), 4, + sym_eol_comment, + ACTIONS(3596), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [35177] = 2, - ACTIONS(3), 2, + [36285] = 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + ACTIONS(3598), 4, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_interface_declaration_token2, + aux_sym_variable_declaration_token1, + [36297] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3657), 4, + sym_eol_comment, + ACTIONS(3600), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [35188] = 2, - ACTIONS(3), 2, + [36309] = 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + ACTIONS(3602), 4, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_interface_declaration_token2, + aux_sym_variable_declaration_token1, + [36321] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3659), 4, + sym_eol_comment, + ACTIONS(3604), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [35199] = 2, - ACTIONS(3), 2, + [36333] = 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + ACTIONS(3606), 4, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_interface_declaration_token2, + aux_sym_variable_declaration_token1, + [36345] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3661), 4, + sym_eol_comment, + ACTIONS(3608), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [35210] = 2, - ACTIONS(3), 2, + [36357] = 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + ACTIONS(3610), 4, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_interface_declaration_token2, + aux_sym_variable_declaration_token1, + [36369] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3663), 4, + sym_eol_comment, + ACTIONS(3612), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [35221] = 2, - ACTIONS(3), 2, + [36381] = 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + ACTIONS(3614), 4, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_interface_declaration_token2, + aux_sym_variable_declaration_token1, + [36393] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3665), 4, + sym_eol_comment, + ACTIONS(3616), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [35232] = 4, - ACTIONS(91), 1, - aux_sym_catch_statement_token1, - ACTIONS(3667), 1, - aux_sym_try_catch_statement_token2, - ACTIONS(3), 2, + [36405] = 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + ACTIONS(3618), 4, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_interface_declaration_token2, + aux_sym_variable_declaration_token1, + [36417] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - STATE(1427), 2, - sym_catch_statement, - aux_sym_try_catch_statement_repeat1, - [35247] = 2, - ACTIONS(3), 2, sym_eol_comment, + ACTIONS(3620), 4, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_interface_declaration_token2, + aux_sym_variable_declaration_token1, + [36429] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3669), 4, + sym_eol_comment, + ACTIONS(3622), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [35258] = 2, - ACTIONS(3), 2, + [36441] = 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + ACTIONS(3624), 4, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_interface_declaration_token2, + aux_sym_variable_declaration_token1, + [36453] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3671), 4, + sym_eol_comment, + ACTIONS(3626), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [35269] = 2, - ACTIONS(3), 2, + [36465] = 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + ACTIONS(3628), 4, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_interface_declaration_token2, + aux_sym_variable_declaration_token1, + [36477] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3673), 4, + sym_eol_comment, + ACTIONS(3630), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [35280] = 2, - ACTIONS(3), 2, + [36489] = 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + ACTIONS(3632), 4, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_interface_declaration_token2, + aux_sym_variable_declaration_token1, + [36501] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3675), 4, + sym_eol_comment, + ACTIONS(3634), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [35291] = 2, - ACTIONS(3), 2, + [36513] = 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + ACTIONS(3636), 4, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_interface_declaration_token2, + aux_sym_variable_declaration_token1, + [36525] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3677), 4, + sym_eol_comment, + ACTIONS(3638), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [35302] = 2, - ACTIONS(3), 2, + [36537] = 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + ACTIONS(3640), 4, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_interface_declaration_token2, + aux_sym_variable_declaration_token1, + [36549] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3679), 4, + sym_eol_comment, + ACTIONS(3642), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [35313] = 2, - ACTIONS(3), 2, + [36561] = 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + ACTIONS(3644), 4, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_interface_declaration_token2, + aux_sym_variable_declaration_token1, + [36573] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3681), 4, + sym_eol_comment, + ACTIONS(3646), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [35324] = 4, - ACTIONS(91), 1, - aux_sym_catch_statement_token1, - ACTIONS(3667), 1, - aux_sym_try_catch_statement_token2, - ACTIONS(3), 2, + [36585] = 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + ACTIONS(3648), 4, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_interface_declaration_token2, + aux_sym_variable_declaration_token1, + [36597] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - STATE(1426), 2, - sym_catch_statement, - aux_sym_try_catch_statement_repeat1, - [35339] = 2, - ACTIONS(3), 2, sym_eol_comment, + ACTIONS(3650), 4, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_interface_declaration_token2, + aux_sym_variable_declaration_token1, + [36609] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3683), 4, + sym_eol_comment, + ACTIONS(3652), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [35350] = 2, - ACTIONS(3), 2, + [36621] = 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + ACTIONS(3654), 4, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_interface_declaration_token2, + aux_sym_variable_declaration_token1, + [36633] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3685), 4, + sym_eol_comment, + ACTIONS(3656), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [35361] = 2, - ACTIONS(3), 2, + [36645] = 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + ACTIONS(3658), 4, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_interface_declaration_token2, + aux_sym_variable_declaration_token1, + [36657] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3687), 4, + sym_eol_comment, + ACTIONS(3660), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [35372] = 2, - ACTIONS(3), 2, + [36669] = 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + ACTIONS(3662), 4, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_interface_declaration_token2, + aux_sym_variable_declaration_token1, + [36681] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3689), 4, + sym_eol_comment, + ACTIONS(3664), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [35383] = 2, - ACTIONS(3), 2, + [36693] = 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + ACTIONS(3666), 4, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_interface_declaration_token2, + aux_sym_variable_declaration_token1, + [36705] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3691), 4, + sym_eol_comment, + ACTIONS(3668), 4, aux_sym_method_declaration_class_token1, aux_sym_class_constructor_declaration_token1, aux_sym_interface_declaration_token2, aux_sym_variable_declaration_token1, - [35394] = 4, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(2880), 1, - aux_sym_class_declaration_token13, - STATE(2750), 1, - sym_private_section, - ACTIONS(3), 2, + [36717] = 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + ACTIONS(3670), 4, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_interface_declaration_token2, + aux_sym_variable_declaration_token1, + [36729] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [35408] = 4, - ACTIONS(3693), 1, - sym_name, - ACTIONS(3695), 1, - anon_sym_DOT, - STATE(1824), 1, - aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, sym_eol_comment, + ACTIONS(3672), 4, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_interface_declaration_token2, + aux_sym_variable_declaration_token1, + [36741] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [35422] = 4, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(2902), 1, - aux_sym_class_declaration_token13, - STATE(2916), 1, - sym_private_section, - ACTIONS(3), 2, sym_eol_comment, + ACTIONS(3674), 4, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_interface_declaration_token2, + aux_sym_variable_declaration_token1, + [36753] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [35436] = 4, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(3697), 1, - aux_sym_class_declaration_token13, - STATE(2124), 1, - sym_private_section, - ACTIONS(3), 2, sym_eol_comment, + ACTIONS(3676), 4, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_interface_declaration_token2, + aux_sym_variable_declaration_token1, + [36765] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [35450] = 4, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(3699), 1, - aux_sym_class_declaration_token13, - STATE(2914), 1, - sym_private_section, - ACTIONS(3), 2, sym_eol_comment, + ACTIONS(3678), 4, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_interface_declaration_token2, + aux_sym_variable_declaration_token1, + [36777] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [35464] = 4, - ACTIONS(1318), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(3701), 1, - anon_sym_DOT, - STATE(2643), 1, - sym__method_declaration_exceptions, - ACTIONS(3), 2, sym_eol_comment, + ACTIONS(3680), 4, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_interface_declaration_token2, + aux_sym_variable_declaration_token1, + [36789] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [35478] = 4, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(2900), 1, - aux_sym_class_declaration_token13, - STATE(2913), 1, - sym_private_section, - ACTIONS(3), 2, sym_eol_comment, + ACTIONS(3682), 4, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_interface_declaration_token2, + aux_sym_variable_declaration_token1, + [36801] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [35492] = 4, - ACTIONS(1318), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(3703), 1, - anon_sym_DOT, - STATE(2641), 1, - sym__method_declaration_exceptions, - ACTIONS(3), 2, sym_eol_comment, + ACTIONS(3684), 4, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_interface_declaration_token2, + aux_sym_variable_declaration_token1, + [36813] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [35506] = 4, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(3705), 1, - aux_sym_class_declaration_token13, - STATE(2910), 1, - sym_private_section, - ACTIONS(3), 2, sym_eol_comment, + ACTIONS(3686), 4, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_interface_declaration_token2, + aux_sym_variable_declaration_token1, + [36825] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [35520] = 4, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(2896), 1, - aux_sym_class_declaration_token13, - STATE(2909), 1, - sym_private_section, - ACTIONS(3), 2, sym_eol_comment, + ACTIONS(3688), 4, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_interface_declaration_token2, + aux_sym_variable_declaration_token1, + [36837] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [35534] = 4, - ACTIONS(3707), 1, - aux_sym_class_declaration_token11, - ACTIONS(3709), 1, - aux_sym_class_declaration_token12, - ACTIONS(3711), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + ACTIONS(3690), 4, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_interface_declaration_token2, + aux_sym_variable_declaration_token1, + [36849] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [35548] = 4, - ACTIONS(1318), 1, + sym_eol_comment, + ACTIONS(3692), 4, + aux_sym_method_declaration_class_token1, + aux_sym_class_constructor_declaration_token1, + aux_sym_interface_declaration_token2, + aux_sym_variable_declaration_token1, + [36861] = 4, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(3713), 1, + ACTIONS(3694), 1, anon_sym_DOT, - STATE(3022), 1, + STATE(2438), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [36876] = 4, + ACTIONS(3696), 1, + anon_sym_DOT, + ACTIONS(3698), 1, + anon_sym_COMMA, + STATE(1876), 1, + aux_sym_chained_variable_declaration_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [35562] = 4, - ACTIONS(1318), 1, + sym_eol_comment, + [36891] = 4, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(3715), 1, + ACTIONS(3700), 1, anon_sym_DOT, - STATE(2636), 1, + STATE(2845), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [35576] = 4, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(2892), 1, - aux_sym_class_declaration_token13, - STATE(2904), 1, - sym_private_section, - ACTIONS(3), 2, sym_eol_comment, + [36906] = 4, + ACTIONS(1343), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(3702), 1, + anon_sym_DOT, + STATE(3043), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [35590] = 4, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(3717), 1, - aux_sym_class_declaration_token13, - STATE(2901), 1, - sym_private_section, - ACTIONS(3), 2, sym_eol_comment, + [36921] = 4, + ACTIONS(3704), 1, + sym_name, + STATE(1191), 1, + aux_sym_chained_structure_declaration_repeat1, + STATE(1973), 1, + sym_structure_component, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [35604] = 4, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(2890), 1, - aux_sym_class_declaration_token13, - STATE(2900), 1, - sym_private_section, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [35618] = 4, - ACTIONS(1318), 1, + [36936] = 4, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(3719), 1, + ACTIONS(3706), 1, anon_sym_DOT, - STATE(2634), 1, + STATE(2815), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [35632] = 4, - ACTIONS(3721), 1, - anon_sym_DOT, - ACTIONS(3723), 1, - anon_sym_COMMA, - STATE(1632), 1, - aux_sym_chained_variable_declaration_repeat1, - ACTIONS(3), 2, sym_eol_comment, + [36951] = 4, + ACTIONS(1343), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(3708), 1, + anon_sym_DOT, + STATE(2840), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [35646] = 4, - ACTIONS(3725), 1, + sym_eol_comment, + [36966] = 4, + ACTIONS(3704), 1, sym_name, - STATE(1228), 1, + STATE(1192), 1, aux_sym_chained_structure_declaration_repeat1, - STATE(1934), 1, + STATE(1973), 1, sym_structure_component, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [35660] = 4, - ACTIONS(1896), 1, + sym_eol_comment, + [36981] = 4, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(3727), 1, + ACTIONS(3710), 1, aux_sym_class_declaration_token13, - STATE(2892), 1, + STATE(2150), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [35674] = 4, - ACTIONS(1318), 1, + sym_eol_comment, + [36996] = 4, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(3729), 1, + ACTIONS(3712), 1, anon_sym_DOT, - STATE(2627), 1, + STATE(2827), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [35688] = 4, - ACTIONS(1896), 1, + sym_eol_comment, + [37011] = 4, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2878), 1, + ACTIONS(2891), 1, aux_sym_class_declaration_token13, - STATE(2891), 1, + STATE(2122), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [35702] = 4, - ACTIONS(1318), 1, + sym_eol_comment, + [37026] = 4, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(3731), 1, + ACTIONS(3714), 1, anon_sym_DOT, - STATE(2621), 1, + STATE(2756), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [35716] = 4, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(2970), 1, - aux_sym_class_declaration_token13, - STATE(2986), 1, - sym_private_section, - ACTIONS(3), 2, sym_eol_comment, + [37041] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [35730] = 4, - ACTIONS(3733), 1, - anon_sym_DOT, - ACTIONS(3735), 1, - anon_sym_COMMA, - STATE(1650), 1, - aux_sym_chained_field_symbol_declaration_repeat1, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [35744] = 4, - ACTIONS(1318), 1, + ACTIONS(3716), 3, + anon_sym_DOT, + aux_sym__method_declaration_raising_token1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(3737), 1, + [37052] = 4, + ACTIONS(1343), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(3718), 1, anon_sym_DOT, - STATE(3023), 1, + STATE(2110), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [35758] = 4, - ACTIONS(1318), 1, + sym_eol_comment, + [37067] = 4, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(3739), 1, + ACTIONS(3720), 1, anon_sym_DOT, - STATE(2465), 1, + STATE(2813), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [35772] = 4, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(3741), 1, - aux_sym_class_declaration_token13, - STATE(2885), 1, - sym_private_section, - ACTIONS(3), 2, sym_eol_comment, + [37082] = 3, + ACTIONS(3724), 1, + aux_sym__data_object_typing_normal_token5, + ACTIONS(3722), 2, + anon_sym_DOT, + anon_sym_COMMA, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [35786] = 4, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(2872), 1, - aux_sym_class_declaration_token13, - STATE(2884), 1, - sym_private_section, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [35800] = 4, - ACTIONS(1318), 1, + [37095] = 4, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(3743), 1, + ACTIONS(3726), 1, anon_sym_DOT, - STATE(2456), 1, + STATE(2803), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [35814] = 4, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(2104), 1, - aux_sym_class_declaration_token13, - STATE(2882), 1, - sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - [35828] = 4, - ACTIONS(3725), 1, - sym_name, - STATE(1234), 1, - aux_sym_chained_structure_declaration_repeat1, - STATE(1934), 1, - sym_structure_component, - ACTIONS(3), 2, sym_eol_comment, + [37110] = 4, + ACTIONS(1343), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(3728), 1, + anon_sym_DOT, + STATE(3039), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [35842] = 2, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(3745), 3, - anon_sym_DOT, - aux_sym__logical_expression_token2, - aux_sym__logical_expression_token3, - [35852] = 4, - ACTIONS(1318), 1, + [37125] = 4, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(3747), 1, + ACTIONS(3730), 1, anon_sym_DOT, - STATE(3024), 1, + STATE(2784), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [35866] = 4, - ACTIONS(1318), 1, + sym_eol_comment, + [37140] = 4, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(3749), 1, + ACTIONS(3732), 1, anon_sym_DOT, - STATE(2438), 1, + STATE(2798), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [35880] = 2, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(3751), 3, - aux_sym_generic_typing_token1, - aux_sym_generic_typing_token2, - aux_sym__data_object_typing_normal_token3, - [35890] = 4, - ACTIONS(1896), 1, + [37155] = 4, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(3753), 1, + ACTIONS(3734), 1, aux_sym_class_declaration_token13, - STATE(2875), 1, + STATE(2112), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [35904] = 4, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(2868), 1, - aux_sym_class_declaration_token13, - STATE(2874), 1, - sym_private_section, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [35918] = 4, - ACTIONS(1318), 1, + [37170] = 4, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(3755), 1, + ACTIONS(3736), 1, anon_sym_DOT, - STATE(2435), 1, + STATE(2793), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [35932] = 4, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(2116), 1, - aux_sym_class_declaration_token13, - STATE(2872), 1, - sym_private_section, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [35946] = 4, - ACTIONS(1896), 1, + [37185] = 4, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(3757), 1, + ACTIONS(3738), 1, aux_sym_class_declaration_token13, - STATE(2869), 1, + STATE(2139), 1, sym_private_section, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [37200] = 4, + ACTIONS(1343), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(3740), 1, + anon_sym_DOT, + STATE(2115), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [35960] = 4, - ACTIONS(1318), 1, + sym_eol_comment, + [37215] = 4, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(3759), 1, + ACTIONS(3742), 1, anon_sym_DOT, - STATE(3026), 1, + STATE(3059), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [37230] = 4, + ACTIONS(1343), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(3744), 1, + anon_sym_DOT, + STATE(2788), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [35974] = 4, - ACTIONS(1896), 1, + sym_eol_comment, + [37245] = 4, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(3761), 1, + ACTIONS(2881), 1, aux_sym_class_declaration_token13, - STATE(2868), 1, + STATE(2109), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [35988] = 4, - ACTIONS(1896), 1, + sym_eol_comment, + [37260] = 4, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2884), 1, + ACTIONS(3746), 1, aux_sym_class_declaration_token13, - STATE(2121), 1, + STATE(2124), 1, sym_private_section, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [37275] = 4, + ACTIONS(1343), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(3748), 1, + anon_sym_DOT, + STATE(2389), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [36002] = 4, - ACTIONS(1896), 1, + sym_eol_comment, + [37290] = 4, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2858), 1, + ACTIONS(2939), 1, aux_sym_class_declaration_token13, - STATE(2866), 1, + STATE(2156), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [36016] = 4, - ACTIONS(3763), 1, + sym_eol_comment, + [37305] = 3, + ACTIONS(3752), 1, + aux_sym__data_object_typing_normal_token5, + ACTIONS(3750), 2, anon_sym_DOT, - ACTIONS(3765), 1, anon_sym_COMMA, - STATE(1549), 1, - aux_sym_chained_interface_declaration_repeat1, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [36030] = 4, - ACTIONS(1318), 1, + sym_eol_comment, + [37318] = 4, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(3768), 1, + ACTIONS(3754), 1, anon_sym_DOT, - STATE(3027), 1, + STATE(2126), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [36044] = 4, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(3770), 1, - aux_sym_class_declaration_token13, - STATE(2861), 1, - sym_private_section, - ACTIONS(3), 2, sym_eol_comment, + [37333] = 4, + ACTIONS(3756), 1, + anon_sym_DOT, + ACTIONS(3758), 1, + anon_sym_COMMA, + STATE(1537), 1, + aux_sym_chained_interface_declaration_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [36058] = 4, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(2256), 1, - aux_sym_class_declaration_token13, - STATE(2853), 1, - sym_private_section, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [36072] = 4, - ACTIONS(1318), 1, + [37348] = 4, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(3772), 1, + ACTIONS(3761), 1, anon_sym_DOT, - STATE(2431), 1, + STATE(2722), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [36086] = 4, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(2844), 1, - aux_sym_class_declaration_token13, - STATE(2858), 1, - sym_private_section, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [36100] = 4, - ACTIONS(1896), 1, + [37363] = 4, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(3774), 1, + ACTIONS(3763), 1, aux_sym_class_declaration_token13, - STATE(2936), 1, + STATE(2106), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [36114] = 4, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(3776), 1, - aux_sym_class_declaration_token13, - STATE(2849), 1, - sym_private_section, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [36128] = 4, - ACTIONS(3693), 1, - sym_name, - ACTIONS(3778), 1, + [37378] = 4, + ACTIONS(1343), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(3765), 1, anon_sym_DOT, - STATE(1824), 1, - aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, - sym_eol_comment, + STATE(2698), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [36142] = 4, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(2906), 1, - aux_sym_class_declaration_token13, - STATE(2921), 1, - sym_private_section, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [36156] = 4, - ACTIONS(1318), 1, + [37393] = 4, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(3780), 1, + ACTIONS(3767), 1, anon_sym_DOT, - STATE(2664), 1, + STATE(2099), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [36170] = 4, - ACTIONS(1896), 1, + sym_eol_comment, + [37408] = 4, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(3782), 1, + ACTIONS(3769), 1, aux_sym_class_declaration_token13, - STATE(2923), 1, + STATE(2165), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [36184] = 4, - ACTIONS(1318), 1, + sym_eol_comment, + [37423] = 4, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(3784), 1, + ACTIONS(3771), 1, anon_sym_DOT, - STATE(2670), 1, + STATE(2777), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [36198] = 4, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(2250), 1, - aux_sym_class_declaration_token13, - STATE(2841), 1, - sym_private_section, - ACTIONS(3), 2, sym_eol_comment, + [37438] = 4, + ACTIONS(1343), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(3773), 1, + anon_sym_DOT, + STATE(2658), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [36212] = 4, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(3786), 1, - aux_sym_class_declaration_token13, - STATE(2924), 1, - sym_private_section, - ACTIONS(3), 2, sym_eol_comment, + [37453] = 4, + ACTIONS(1343), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(3775), 1, + anon_sym_DOT, + STATE(2848), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [36226] = 4, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(2441), 1, - aux_sym_class_declaration_token13, - STATE(2984), 1, - sym_private_section, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [36240] = 4, - ACTIONS(1318), 1, + [37468] = 4, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(3788), 1, + ACTIONS(3777), 1, anon_sym_DOT, - STATE(2430), 1, + STATE(3071), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [36254] = 4, - ACTIONS(1896), 1, + sym_eol_comment, + [37483] = 4, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2828), 1, + ACTIONS(2969), 1, aux_sym_class_declaration_token13, - STATE(2846), 1, + STATE(2624), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [36268] = 4, - ACTIONS(1896), 1, + sym_eol_comment, + [37498] = 4, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2914), 1, + ACTIONS(3779), 1, aux_sym_class_declaration_token13, - STATE(2929), 1, + STATE(2171), 1, sym_private_section, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [37513] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [36282] = 4, - ACTIONS(1318), 1, + sym_eol_comment, + ACTIONS(3781), 3, + anon_sym_DOT, + aux_sym_for_all_entries_token1, + aux_sym__where_clause_token1, + [37524] = 4, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(3790), 1, + ACTIONS(3783), 1, anon_sym_DOT, - STATE(2679), 1, + STATE(2855), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [36296] = 4, - ACTIONS(1318), 1, + sym_eol_comment, + [37539] = 4, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(3792), 1, + ACTIONS(3785), 1, anon_sym_DOT, - STATE(3020), 1, + STATE(3076), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [36310] = 4, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(3794), 1, - aux_sym_class_declaration_token13, - STATE(2931), 1, - sym_private_section, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [36324] = 4, - ACTIONS(1318), 1, + [37554] = 4, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(3796), 1, + ACTIONS(3787), 1, anon_sym_DOT, - STATE(2685), 1, + STATE(2403), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [36338] = 4, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(3798), 1, - aux_sym_class_declaration_token13, - STATE(2932), 1, - sym_private_section, - ACTIONS(3), 2, sym_eol_comment, + [37569] = 4, + ACTIONS(1343), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(3789), 1, + anon_sym_DOT, + STATE(2862), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [36352] = 4, - ACTIONS(1896), 1, + sym_eol_comment, + [37584] = 4, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2814), 1, + ACTIONS(3791), 1, aux_sym_class_declaration_token13, - STATE(2838), 1, + STATE(2103), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [36366] = 4, - ACTIONS(1318), 1, + sym_eol_comment, + [37599] = 4, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(3800), 1, + ACTIONS(3793), 1, anon_sym_DOT, - STATE(3018), 1, + STATE(2724), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [37614] = 4, + ACTIONS(3795), 1, + anon_sym_RPAREN, + ACTIONS(3797), 1, + anon_sym_COMMA, + STATE(1716), 1, + aux_sym__select_target_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [36380] = 4, - ACTIONS(1896), 1, + sym_eol_comment, + [37629] = 4, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(3802), 1, + ACTIONS(3799), 1, aux_sym_class_declaration_token13, - STATE(2933), 1, + STATE(2100), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [36394] = 4, - ACTIONS(1318), 1, + sym_eol_comment, + [37644] = 4, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(3804), 1, + ACTIONS(3801), 1, anon_sym_DOT, - STATE(2691), 1, + STATE(2873), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [37659] = 4, + ACTIONS(3803), 1, + sym_name, + ACTIONS(3805), 1, + anon_sym_DOT, + STATE(1909), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [36408] = 4, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(2916), 1, - aux_sym_class_declaration_token13, - STATE(2935), 1, - sym_private_section, - ACTIONS(3), 2, sym_eol_comment, + [37674] = 4, + ACTIONS(1343), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(3807), 1, + anon_sym_DOT, + STATE(2881), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [36422] = 4, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(3806), 1, - aux_sym_class_declaration_token13, - STATE(2107), 1, - sym_private_section, - ACTIONS(3), 2, sym_eol_comment, + [37689] = 4, + ACTIONS(3803), 1, + sym_name, + ACTIONS(3809), 1, + anon_sym_DOT, + STATE(1909), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + [37704] = 4, + ACTIONS(3803), 1, + sym_name, + ACTIONS(3811), 1, + anon_sym_DOT, + STATE(1909), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [36436] = 4, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(2102), 1, - aux_sym_class_declaration_token13, - STATE(2743), 1, - sym_private_section, - ACTIONS(3), 2, sym_eol_comment, + [37719] = 4, + ACTIONS(3803), 1, + sym_name, + ACTIONS(3813), 1, + anon_sym_DOT, + STATE(1909), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [36450] = 4, - ACTIONS(1318), 1, + sym_eol_comment, + [37734] = 4, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(3808), 1, + ACTIONS(3815), 1, anon_sym_DOT, - STATE(2459), 1, + STATE(2779), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [36464] = 4, - ACTIONS(1318), 1, + sym_eol_comment, + [37749] = 4, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(3810), 1, + ACTIONS(3817), 1, anon_sym_DOT, - STATE(3013), 1, + STATE(2768), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [36478] = 4, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(2934), 1, - aux_sym_class_declaration_token13, - STATE(2941), 1, - sym_private_section, - ACTIONS(3), 2, sym_eol_comment, + [37764] = 4, + ACTIONS(3803), 1, + sym_name, + ACTIONS(3819), 1, + anon_sym_DOT, + STATE(1909), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [36492] = 4, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(3812), 1, - aux_sym_class_declaration_token13, - STATE(2942), 1, - sym_private_section, - ACTIONS(3), 2, sym_eol_comment, + [37779] = 4, + ACTIONS(3803), 1, + sym_name, + ACTIONS(3821), 1, + anon_sym_DOT, + STATE(1909), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [36506] = 4, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(3814), 1, - aux_sym_class_declaration_token13, - STATE(2835), 1, - sym_private_section, - ACTIONS(3), 2, sym_eol_comment, + [37794] = 4, + ACTIONS(1343), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(3823), 1, + anon_sym_DOT, + STATE(2088), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [36520] = 4, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(2756), 1, - aux_sym_class_declaration_token13, - STATE(2834), 1, - sym_private_section, - ACTIONS(3), 2, sym_eol_comment, + [37809] = 4, + ACTIONS(3803), 1, + sym_name, + ACTIONS(3825), 1, + anon_sym_DOT, + STATE(1909), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [36534] = 4, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(3816), 1, - aux_sym_class_declaration_token13, - STATE(2946), 1, - sym_private_section, - ACTIONS(3), 2, sym_eol_comment, + [37824] = 4, + ACTIONS(3803), 1, + sym_name, + ACTIONS(3827), 1, + anon_sym_DOT, + STATE(1909), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [36548] = 4, - ACTIONS(1318), 1, + sym_eol_comment, + [37839] = 4, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(3818), 1, + ACTIONS(3829), 1, anon_sym_DOT, - STATE(2707), 1, + STATE(2903), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [36562] = 4, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(3820), 1, - aux_sym_class_declaration_token13, - STATE(2829), 1, - sym_private_section, - ACTIONS(3), 2, sym_eol_comment, + [37854] = 4, + ACTIONS(3803), 1, + sym_name, + ACTIONS(3831), 1, + anon_sym_DOT, + STATE(1909), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [36576] = 3, - ACTIONS(3824), 1, - aux_sym__data_object_typing_normal_token5, - ACTIONS(3), 2, sym_eol_comment, + [37869] = 4, + ACTIONS(3833), 1, + aux_sym_class_declaration_token11, + ACTIONS(3835), 1, + aux_sym_class_declaration_token12, + ACTIONS(3837), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3822), 2, + sym_eol_comment, + [37884] = 4, + ACTIONS(3803), 1, + sym_name, + ACTIONS(3839), 1, anon_sym_DOT, - anon_sym_COMMA, - [36588] = 4, - ACTIONS(1318), 1, + STATE(1909), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + [37899] = 4, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(3826), 1, + ACTIONS(3841), 1, anon_sym_DOT, - STATE(3030), 1, + STATE(2911), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [37914] = 4, + ACTIONS(3843), 1, + aux_sym_class_declaration_token11, + ACTIONS(3845), 1, + aux_sym_class_declaration_token12, + ACTIONS(3847), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [36602] = 4, - ACTIONS(1318), 1, + sym_eol_comment, + [37929] = 4, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(3828), 1, + ACTIONS(3849), 1, anon_sym_DOT, - STATE(3012), 1, + STATE(2082), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [36616] = 4, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(2806), 1, - aux_sym_class_declaration_token13, - STATE(2828), 1, - sym_private_section, - ACTIONS(3), 2, sym_eol_comment, + [37944] = 4, + ACTIONS(3803), 1, + sym_name, + ACTIONS(3851), 1, + anon_sym_DOT, + STATE(1909), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [36630] = 4, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(2876), 1, - aux_sym_class_declaration_token13, - STATE(2104), 1, - sym_private_section, - ACTIONS(3), 2, sym_eol_comment, + [37959] = 4, + ACTIONS(3803), 1, + sym_name, + ACTIONS(3853), 1, + anon_sym_DOT, + STATE(1909), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [36644] = 4, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(2760), 1, - aux_sym_class_declaration_token13, - STATE(2411), 1, - sym_private_section, - ACTIONS(3), 2, sym_eol_comment, + [37974] = 4, + ACTIONS(3855), 1, + aux_sym_class_declaration_token11, + ACTIONS(3857), 1, + aux_sym_class_declaration_token12, + ACTIONS(3859), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [36658] = 4, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(2272), 1, - aux_sym_class_declaration_token13, - STATE(2824), 1, - sym_private_section, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [36672] = 4, - ACTIONS(1318), 1, + [37989] = 4, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(3830), 1, + ACTIONS(3861), 1, anon_sym_DOT, - STATE(3032), 1, + STATE(2926), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [38004] = 4, + ACTIONS(3803), 1, + sym_name, + ACTIONS(3863), 1, + anon_sym_DOT, + STATE(1909), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [36686] = 4, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(3832), 1, - aux_sym_class_declaration_token13, - STATE(2817), 1, - sym_private_section, - ACTIONS(3), 2, sym_eol_comment, + [38019] = 4, + ACTIONS(1343), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(3865), 1, + anon_sym_DOT, + STATE(2134), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [36700] = 4, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(2774), 1, - aux_sym_class_declaration_token13, - STATE(2816), 1, - sym_private_section, - ACTIONS(3), 2, sym_eol_comment, + [38034] = 4, + ACTIONS(1343), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(3867), 1, + anon_sym_DOT, + STATE(2195), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [36714] = 4, - ACTIONS(3834), 1, + sym_eol_comment, + [38049] = 4, + ACTIONS(3869), 1, aux_sym_class_declaration_token11, - ACTIONS(3836), 1, + ACTIONS(3871), 1, aux_sym_class_declaration_token12, - ACTIONS(3838), 1, + ACTIONS(3873), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [36728] = 4, - ACTIONS(3693), 1, + sym_eol_comment, + [38064] = 4, + ACTIONS(3803), 1, sym_name, - ACTIONS(3840), 1, + ACTIONS(3875), 1, anon_sym_DOT, - STATE(1824), 1, + STATE(1909), 1, aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [36742] = 4, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(2463), 1, - aux_sym_class_declaration_token13, - STATE(2421), 1, - sym_private_section, - ACTIONS(3), 2, sym_eol_comment, + [38079] = 4, + ACTIONS(3877), 1, + aux_sym_class_declaration_token11, + ACTIONS(3879), 1, + aux_sym_class_declaration_token12, + ACTIONS(3881), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [36756] = 4, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(2986), 1, - aux_sym_class_declaration_token13, - STATE(2981), 1, - sym_private_section, - ACTIONS(3), 2, sym_eol_comment, + [38094] = 4, + ACTIONS(3803), 1, + sym_name, + ACTIONS(3883), 1, + anon_sym_DOT, + STATE(1909), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [36770] = 4, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(2944), 1, - aux_sym_class_declaration_token13, - STATE(2948), 1, - sym_private_section, - ACTIONS(3), 2, sym_eol_comment, + [38109] = 4, + ACTIONS(1343), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(3885), 1, + anon_sym_DOT, + STATE(3083), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [36784] = 4, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(3842), 1, - aux_sym_class_declaration_token13, - STATE(2139), 1, - sym_private_section, - ACTIONS(3), 2, sym_eol_comment, + [38124] = 4, + ACTIONS(3887), 1, + aux_sym_class_declaration_token11, + ACTIONS(3889), 1, + aux_sym_class_declaration_token12, + ACTIONS(3891), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [36798] = 4, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(3844), 1, - aux_sym_class_declaration_token13, - STATE(2400), 1, - sym_private_section, - ACTIONS(3), 2, sym_eol_comment, + [38139] = 4, + ACTIONS(3803), 1, + sym_name, + ACTIONS(3893), 1, + anon_sym_DOT, + STATE(1909), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [36812] = 4, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(2445), 1, - aux_sym_class_declaration_token13, - STATE(2812), 1, - sym_private_section, - ACTIONS(3), 2, sym_eol_comment, + [38154] = 4, + ACTIONS(3803), 1, + sym_name, + ACTIONS(3895), 1, + anon_sym_DOT, + STATE(1909), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [36826] = 4, - ACTIONS(1318), 1, + sym_eol_comment, + [38169] = 4, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(3846), 1, + ACTIONS(3897), 1, anon_sym_DOT, - STATE(2437), 1, + STATE(2148), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [36840] = 2, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(3848), 3, - aux_sym_class_declaration_token3, - aux_sym__create_addition_token2, - aux_sym__create_addition_token3, - [36850] = 4, - ACTIONS(1896), 1, + [38184] = 4, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(3850), 1, + ACTIONS(2767), 1, aux_sym_class_declaration_token13, - STATE(2100), 1, + STATE(2738), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [36864] = 4, - ACTIONS(3852), 1, + sym_eol_comment, + [38199] = 4, + ACTIONS(3899), 1, + aux_sym_class_declaration_token11, + ACTIONS(3901), 1, + aux_sym_class_declaration_token12, + ACTIONS(3903), 1, anon_sym_DOT, - ACTIONS(3854), 1, - anon_sym_COMMA, - STATE(1867), 1, - aux_sym_chained_interface_declaration_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [38214] = 4, + ACTIONS(1343), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(3905), 1, + anon_sym_DOT, + STATE(2320), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [36878] = 4, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(3856), 1, - aux_sym_class_declaration_token13, - STATE(2802), 1, - sym_private_section, - ACTIONS(3), 2, sym_eol_comment, + [38229] = 4, + ACTIONS(3009), 1, + aux_sym_class_declaration_token11, + ACTIONS(3011), 1, + aux_sym_class_declaration_token12, + ACTIONS(3013), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [36892] = 4, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(2758), 1, - aux_sym_class_declaration_token13, - STATE(2801), 1, - sym_private_section, - ACTIONS(3), 2, sym_eol_comment, + [38244] = 4, + ACTIONS(3803), 1, + sym_name, + ACTIONS(3907), 1, + anon_sym_DOT, + STATE(1909), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [36906] = 4, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(2748), 1, - aux_sym_class_declaration_token13, - STATE(2393), 1, - sym_private_section, - ACTIONS(3), 2, sym_eol_comment, + [38259] = 4, + ACTIONS(3909), 1, + aux_sym_class_declaration_token11, + ACTIONS(3911), 1, + aux_sym_class_declaration_token12, + ACTIONS(3913), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [36920] = 4, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(3858), 1, - aux_sym_class_declaration_token13, - STATE(2949), 1, - sym_private_section, - ACTIONS(3), 2, sym_eol_comment, + [38274] = 4, + ACTIONS(3803), 1, + sym_name, + ACTIONS(3915), 1, + anon_sym_DOT, + STATE(1909), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [36934] = 4, - ACTIONS(1896), 1, + sym_eol_comment, + [38289] = 4, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2461), 1, + ACTIONS(2466), 1, aux_sym_class_declaration_token13, - STATE(2799), 1, + STATE(2750), 1, sym_private_section, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [38304] = 4, + ACTIONS(3917), 1, + anon_sym_DOT, + ACTIONS(3919), 1, + anon_sym_COMMA, + STATE(1537), 1, + aux_sym_chained_interface_declaration_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [36948] = 4, - ACTIONS(1318), 1, + sym_eol_comment, + [38319] = 4, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(3860), 1, + ACTIONS(3921), 1, anon_sym_DOT, - STATE(2434), 1, + STATE(2160), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [38334] = 4, + ACTIONS(3017), 1, + aux_sym_class_declaration_token11, + ACTIONS(3019), 1, + aux_sym_class_declaration_token12, + ACTIONS(3021), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [36962] = 4, - ACTIONS(1896), 1, + sym_eol_comment, + [38349] = 4, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2810), 1, + ACTIONS(3923), 1, aux_sym_class_declaration_token13, - STATE(2796), 1, + STATE(2718), 1, sym_private_section, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [38364] = 4, + ACTIONS(3803), 1, + sym_name, + ACTIONS(3925), 1, + anon_sym_DOT, + STATE(1909), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [36976] = 4, - ACTIONS(1318), 1, + sym_eol_comment, + [38379] = 4, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(3862), 1, + ACTIONS(3927), 1, anon_sym_DOT, - STATE(3036), 1, + STATE(2429), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [36990] = 4, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(2912), 1, - aux_sym_class_declaration_token13, - STATE(2145), 1, - sym_private_section, - ACTIONS(3), 2, sym_eol_comment, + [38394] = 4, + ACTIONS(3803), 1, + sym_name, + ACTIONS(3929), 1, + anon_sym_DOT, + STATE(1909), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [37004] = 4, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(2533), 1, - aux_sym_class_declaration_token13, - STATE(2789), 1, - sym_private_section, - ACTIONS(3), 2, sym_eol_comment, + [38409] = 4, + ACTIONS(3803), 1, + sym_name, + ACTIONS(3931), 1, + anon_sym_DOT, + STATE(1909), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [37018] = 3, - ACTIONS(3866), 1, - aux_sym__data_object_typing_normal_token5, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(3864), 2, + [38424] = 4, + ACTIONS(3933), 1, + aux_sym_class_declaration_token11, + ACTIONS(3935), 1, + aux_sym_class_declaration_token12, + ACTIONS(3937), 1, anon_sym_DOT, - anon_sym_COMMA, - [37030] = 4, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(2888), 1, - aux_sym_class_declaration_token13, - STATE(2785), 1, - sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [37044] = 4, - ACTIONS(3693), 1, + sym_eol_comment, + [38439] = 4, + ACTIONS(3803), 1, sym_name, - ACTIONS(3868), 1, + ACTIONS(3939), 1, anon_sym_DOT, - STATE(1824), 1, + STATE(1909), 1, aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [37058] = 4, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(3870), 1, - aux_sym_class_declaration_token13, - STATE(2373), 1, - sym_private_section, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [37072] = 4, - ACTIONS(1318), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(3872), 1, + [38454] = 4, + ACTIONS(3803), 1, + sym_name, + ACTIONS(3941), 1, anon_sym_DOT, - STATE(3043), 1, - sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + STATE(1909), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [37086] = 4, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(3874), 1, - aux_sym_class_declaration_token13, - STATE(2979), 1, - sym_private_section, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [37100] = 4, - ACTIONS(1896), 1, + [38469] = 4, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(3876), 1, + ACTIONS(2755), 1, aux_sym_class_declaration_token13, - STATE(2370), 1, + STATE(2706), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [37114] = 4, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(3878), 1, - aux_sym_class_declaration_token13, - STATE(2150), 1, - sym_private_section, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [37128] = 4, - ACTIONS(1896), 1, + [38484] = 4, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2607), 1, + ACTIONS(1912), 1, aux_sym_class_declaration_token13, - STATE(2778), 1, + STATE(2666), 1, sym_private_section, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [38499] = 4, + ACTIONS(3919), 1, + anon_sym_COMMA, + ACTIONS(3943), 1, + anon_sym_DOT, + STATE(1602), 1, + aux_sym_chained_interface_declaration_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [37142] = 4, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(3880), 1, - aux_sym_class_declaration_token13, - STATE(2094), 1, - sym_private_section, - ACTIONS(3), 2, sym_eol_comment, + [38514] = 4, + ACTIONS(3945), 1, + aux_sym_class_declaration_token11, + ACTIONS(3947), 1, + aux_sym_class_declaration_token12, + ACTIONS(3949), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [37156] = 4, - ACTIONS(3693), 1, + sym_eol_comment, + [38529] = 4, + ACTIONS(3803), 1, sym_name, - ACTIONS(3882), 1, + ACTIONS(3951), 1, anon_sym_DOT, - STATE(1824), 1, + STATE(1909), 1, aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [37170] = 4, - ACTIONS(3723), 1, - anon_sym_COMMA, - ACTIONS(3884), 1, + sym_eol_comment, + [38544] = 4, + ACTIONS(1343), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(3953), 1, anon_sym_DOT, - STATE(1765), 1, - aux_sym_chained_variable_declaration_repeat1, - ACTIONS(3), 2, + STATE(2418), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [38559] = 4, + ACTIONS(1343), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(3955), 1, + anon_sym_DOT, + STATE(3090), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [37184] = 4, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(3886), 1, - aux_sym_class_declaration_token13, - STATE(2775), 1, - sym_private_section, - ACTIONS(3), 2, sym_eol_comment, + [38574] = 4, + ACTIONS(1343), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(3957), 1, + anon_sym_DOT, + STATE(2402), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [37198] = 4, - ACTIONS(1896), 1, + sym_eol_comment, + [38589] = 4, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2637), 1, + ACTIONS(2865), 1, aux_sym_class_declaration_token13, - STATE(2365), 1, + STATE(2093), 1, sym_private_section, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [38604] = 4, + ACTIONS(3025), 1, + aux_sym_class_declaration_token11, + ACTIONS(3027), 1, + aux_sym_class_declaration_token12, + ACTIONS(3029), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [37212] = 4, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(2635), 1, - aux_sym_class_declaration_token13, - STATE(2767), 1, - sym_private_section, - ACTIONS(3), 2, sym_eol_comment, + [38619] = 4, + ACTIONS(3803), 1, + sym_name, + ACTIONS(3959), 1, + anon_sym_DOT, + STATE(1909), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [37226] = 4, - ACTIONS(1896), 1, + sym_eol_comment, + [38634] = 4, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2856), 1, + ACTIONS(3961), 1, aux_sym_class_declaration_token13, - STATE(2772), 1, + STATE(2693), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [37240] = 4, - ACTIONS(1318), 1, + sym_eol_comment, + [38649] = 4, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(3888), 1, + ACTIONS(3963), 1, anon_sym_DOT, - STATE(3077), 1, + STATE(2184), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [37254] = 4, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(2976), 1, - aux_sym_class_declaration_token13, - STATE(2253), 1, - sym_private_section, - ACTIONS(3), 2, sym_eol_comment, + [38664] = 4, + ACTIONS(3803), 1, + sym_name, + ACTIONS(3965), 1, + anon_sym_DOT, + STATE(1909), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [37268] = 4, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(2950), 1, - aux_sym_class_declaration_token13, - STATE(2951), 1, - sym_private_section, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [37282] = 4, - ACTIONS(1896), 1, + [38679] = 4, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2613), 1, + ACTIONS(3967), 1, aux_sym_class_declaration_token13, - STATE(2759), 1, + STATE(2688), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [37296] = 4, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(2587), 1, - aux_sym_class_declaration_token13, - STATE(2748), 1, - sym_private_section, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [37310] = 4, - ACTIONS(1896), 1, + [38694] = 4, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(3890), 1, + ACTIONS(2977), 1, aux_sym_class_declaration_token13, - STATE(2355), 1, + STATE(2697), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [37324] = 4, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(3892), 1, - aux_sym_class_declaration_token13, - STATE(2717), 1, - sym_private_section, - ACTIONS(3), 2, sym_eol_comment, + [38709] = 4, + ACTIONS(3969), 1, + aux_sym_loop_statement_token3, + ACTIONS(3971), 1, + aux_sym__select_target_token3, + STATE(1020), 1, + sym__select_target, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [37338] = 4, - ACTIONS(1318), 1, + sym_eol_comment, + [38724] = 4, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(3894), 1, + ACTIONS(3973), 1, anon_sym_DOT, - STATE(2287), 1, + STATE(3095), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [38739] = 4, + ACTIONS(3803), 1, + sym_name, + ACTIONS(3975), 1, + anon_sym_DOT, + STATE(1909), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [37352] = 4, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(3896), 1, - aux_sym_class_declaration_token13, - STATE(2745), 1, - sym_private_section, - ACTIONS(3), 2, sym_eol_comment, + [38754] = 4, + ACTIONS(2660), 1, + aux_sym_class_declaration_token11, + ACTIONS(2662), 1, + aux_sym_class_declaration_token12, + ACTIONS(2664), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [37366] = 4, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(2886), 1, - aux_sym_class_declaration_token13, - STATE(3083), 1, - sym_private_section, - ACTIONS(3), 2, sym_eol_comment, + [38769] = 4, + ACTIONS(1343), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(3977), 1, + anon_sym_DOT, + STATE(2280), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [37380] = 4, - ACTIONS(1896), 1, + sym_eol_comment, + [38784] = 4, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2922), 1, + ACTIONS(2646), 1, aux_sym_class_declaration_token13, - STATE(2744), 1, + STATE(2683), 1, sym_private_section, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [38799] = 4, + ACTIONS(3979), 1, + sym_name, + ACTIONS(3981), 1, + aux_sym_chained_structure_declaration_token1, + STATE(1705), 1, + sym_variable, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [37394] = 4, - ACTIONS(3898), 1, - aux_sym_class_declaration_token11, - ACTIONS(3900), 1, - aux_sym_class_declaration_token12, - ACTIONS(3902), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [38814] = 4, + ACTIONS(3803), 1, + sym_name, + ACTIONS(3983), 1, + anon_sym_DOT, + STATE(1909), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [37408] = 2, - ACTIONS(3), 2, sym_eol_comment, + [38829] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3904), 3, + sym_eol_comment, + ACTIONS(3985), 3, anon_sym_DOT, - aux_sym_for_all_entries_token1, - aux_sym__where_clause_token1, - [37418] = 4, - ACTIONS(3735), 1, - anon_sym_COMMA, - ACTIONS(3906), 1, - anon_sym_DOT, - STATE(1799), 1, - aux_sym_chained_field_symbol_declaration_repeat1, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - [37432] = 4, - ACTIONS(1896), 1, + aux_sym_loop_statement_token3, + aux_sym__read_table_result_token1, + [38840] = 4, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2565), 1, + ACTIONS(2971), 1, aux_sym_class_declaration_token13, - STATE(2740), 1, + STATE(2680), 1, sym_private_section, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [38855] = 4, + ACTIONS(3803), 1, + sym_name, + ACTIONS(3987), 1, + anon_sym_DOT, + STATE(1909), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [37446] = 4, - ACTIONS(1896), 1, + sym_eol_comment, + [38870] = 4, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(1922), 1, + ACTIONS(3989), 1, aux_sym_class_declaration_token13, - STATE(2733), 1, + STATE(2704), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - [37460] = 4, - ACTIONS(3908), 1, - aux_sym_loop_statement_token3, - ACTIONS(3910), 1, - aux_sym__select_target_token3, - STATE(1164), 1, - sym__select_target, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [37474] = 3, - ACTIONS(3914), 1, - aux_sym__logical_expression_token3, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(3912), 2, + [38885] = 4, + ACTIONS(3991), 1, anon_sym_DOT, + ACTIONS(3993), 1, aux_sym__logical_expression_token2, - [37486] = 4, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(3916), 1, - aux_sym_class_declaration_token13, - STATE(2727), 1, - sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3995), 1, + aux_sym__logical_expression_token3, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [37500] = 4, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(2639), 1, - aux_sym_class_declaration_token13, - STATE(3093), 1, - sym_private_section, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [37514] = 4, - ACTIONS(1896), 1, + [38900] = 4, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2449), 1, + ACTIONS(3997), 1, aux_sym_class_declaration_token13, - STATE(2725), 1, + STATE(2675), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [37528] = 4, - ACTIONS(3693), 1, - sym_name, - ACTIONS(3918), 1, - anon_sym_DOT, - STATE(1824), 1, - aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, sym_eol_comment, + [38915] = 4, + ACTIONS(1343), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(3999), 1, + anon_sym_DOT, + STATE(2354), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [37542] = 4, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(3920), 1, - aux_sym_class_declaration_token13, - STATE(2091), 1, - sym_private_section, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [37556] = 4, - ACTIONS(1318), 1, + [38930] = 4, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(3922), 1, + ACTIONS(4001), 1, anon_sym_DOT, - STATE(2341), 1, + STATE(2637), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [37570] = 2, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(3912), 3, - anon_sym_DOT, + [38945] = 4, + ACTIONS(3993), 1, aux_sym__logical_expression_token2, + ACTIONS(3995), 1, aux_sym__logical_expression_token3, - [37580] = 2, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - ACTIONS(3912), 3, + ACTIONS(4003), 1, anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + [38960] = 4, + ACTIONS(3993), 1, aux_sym__logical_expression_token2, + ACTIONS(3995), 1, aux_sym__logical_expression_token3, - [37590] = 4, - ACTIONS(1896), 1, + ACTIONS(4005), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + [38975] = 4, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2768), 1, + ACTIONS(4007), 1, aux_sym_class_declaration_token13, - STATE(2721), 1, + STATE(2278), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [37604] = 4, - ACTIONS(1318), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(3924), 1, - anon_sym_DOT, - STATE(2337), 1, - sym__method_declaration_exceptions, - ACTIONS(3), 2, sym_eol_comment, + [38990] = 4, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(2859), 1, + aux_sym_class_declaration_token13, + STATE(2651), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [37618] = 4, - ACTIONS(3908), 1, - aux_sym_loop_statement_token3, - ACTIONS(3910), 1, - aux_sym__select_target_token3, - STATE(1145), 1, - sym__select_target, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [37632] = 4, - ACTIONS(1896), 1, + [39005] = 4, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2443), 1, + ACTIONS(1960), 1, aux_sym_class_declaration_token13, - STATE(2714), 1, + STATE(2270), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [37646] = 4, - ACTIONS(2846), 1, - aux_sym_loop_statement_token3, - ACTIONS(2850), 1, - aux_sym__read_table_result_token1, - STATE(2391), 1, - sym__read_table_result, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [37660] = 4, - ACTIONS(3693), 1, + [39020] = 4, + ACTIONS(3803), 1, sym_name, - ACTIONS(3926), 1, + ACTIONS(4009), 1, anon_sym_DOT, - STATE(1824), 1, + STATE(1909), 1, aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [39035] = 4, + ACTIONS(3803), 1, + sym_name, + ACTIONS(4011), 1, + anon_sym_DOT, + STATE(1909), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [37674] = 4, - ACTIONS(1896), 1, + sym_eol_comment, + [39050] = 4, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(3928), 1, + ACTIONS(2158), 1, aux_sym_class_declaration_token13, - STATE(3097), 1, + STATE(2883), 1, sym_private_section, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [39065] = 4, + ACTIONS(4013), 1, + aux_sym_class_declaration_token11, + ACTIONS(4015), 1, + aux_sym_class_declaration_token12, + ACTIONS(4017), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [37688] = 4, - ACTIONS(1896), 1, + sym_eol_comment, + [39080] = 4, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2870), 1, + ACTIONS(4019), 1, aux_sym_class_declaration_token13, - STATE(2705), 1, + STATE(2953), 1, sym_private_section, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [39095] = 4, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(4021), 1, + aux_sym_class_declaration_token13, + STATE(2952), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [37702] = 4, - ACTIONS(1318), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(3930), 1, - anon_sym_DOT, - STATE(2334), 1, - sym__method_declaration_exceptions, - ACTIONS(3), 2, sym_eol_comment, + [39110] = 4, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(2947), 1, + aux_sym_class_declaration_token13, + STATE(2951), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [37716] = 4, - ACTIONS(1318), 1, + sym_eol_comment, + [39125] = 4, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(3932), 1, + ACTIONS(4023), 1, anon_sym_DOT, - STATE(2403), 1, + STATE(3098), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [37730] = 4, - ACTIONS(1896), 1, + sym_eol_comment, + [39140] = 4, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2581), 1, + ACTIONS(2636), 1, aux_sym_class_declaration_token13, - STATE(3105), 1, + STATE(2627), 1, sym_private_section, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [39155] = 4, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(4025), 1, + aux_sym_class_declaration_token13, + STATE(2949), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [37744] = 4, - ACTIONS(1318), 1, + sym_eol_comment, + [39170] = 4, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(3934), 1, + ACTIONS(4027), 1, anon_sym_DOT, - STATE(2331), 1, + STATE(2620), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [37758] = 4, - ACTIONS(1896), 1, + sym_eol_comment, + [39185] = 4, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(3936), 1, + ACTIONS(2945), 1, aux_sym_class_declaration_token13, - STATE(2952), 1, + STATE(2948), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [37772] = 4, - ACTIONS(3693), 1, + sym_eol_comment, + [39200] = 4, + ACTIONS(3803), 1, sym_name, - ACTIONS(3938), 1, + ACTIONS(4029), 1, anon_sym_DOT, - STATE(1824), 1, + STATE(1909), 1, aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [37786] = 4, - ACTIONS(3940), 1, + sym_eol_comment, + [39215] = 4, + ACTIONS(4031), 1, aux_sym_class_declaration_token11, - ACTIONS(3942), 1, + ACTIONS(4033), 1, aux_sym_class_declaration_token12, - ACTIONS(3944), 1, + ACTIONS(4035), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [39230] = 4, + ACTIONS(1343), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(4037), 1, + anon_sym_DOT, + STATE(2628), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [37800] = 4, - ACTIONS(1896), 1, + sym_eol_comment, + [39245] = 4, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2068), 1, + ACTIONS(4039), 1, aux_sym_class_declaration_token13, - STATE(2694), 1, + STATE(2946), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [37814] = 4, - ACTIONS(1896), 1, + sym_eol_comment, + [39260] = 4, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(3946), 1, + ACTIONS(4041), 1, aux_sym_class_declaration_token13, - STATE(2953), 1, + STATE(2942), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [37828] = 4, - ACTIONS(1587), 1, - anon_sym_DOT, - ACTIONS(1589), 1, - anon_sym_COMMA, - STATE(1811), 1, - aux_sym_chained_write_statement_repeat1, - ACTIONS(3), 2, sym_eol_comment, + [39275] = 4, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(2921), 1, + aux_sym_class_declaration_token13, + STATE(2941), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [37842] = 4, - ACTIONS(1318), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(3948), 1, - anon_sym_DOT, - STATE(2315), 1, - sym__method_declaration_exceptions, - ACTIONS(3), 2, sym_eol_comment, + [39290] = 4, + ACTIONS(3803), 1, + sym_name, + ACTIONS(4043), 1, + anon_sym_DOT, + STATE(1909), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [37856] = 4, - ACTIONS(1896), 1, + sym_eol_comment, + [39305] = 4, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2932), 1, + ACTIONS(4045), 1, aux_sym_class_declaration_token13, - STATE(2156), 1, + STATE(2936), 1, sym_private_section, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [39320] = 4, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(2917), 1, + aux_sym_class_declaration_token13, + STATE(2935), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [37870] = 4, - ACTIONS(1318), 1, + sym_eol_comment, + [39335] = 4, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(3950), 1, + ACTIONS(4047), 1, anon_sym_DOT, - STATE(2765), 1, + STATE(2621), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [37884] = 4, - ACTIONS(3693), 1, - sym_name, - ACTIONS(3952), 1, - anon_sym_DOT, - STATE(1824), 1, - aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [37898] = 4, - ACTIONS(1896), 1, + [39350] = 4, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2926), 1, + ACTIONS(4049), 1, aux_sym_class_declaration_token13, - STATE(3100), 1, + STATE(2933), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [37912] = 4, - ACTIONS(1896), 1, + sym_eol_comment, + [39365] = 4, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2050), 1, + ACTIONS(4051), 1, aux_sym_class_declaration_token13, - STATE(2684), 1, + STATE(2723), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [37926] = 4, - ACTIONS(1318), 1, + sym_eol_comment, + [39380] = 4, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(3954), 1, + ACTIONS(4053), 1, anon_sym_DOT, - STATE(2309), 1, + STATE(2460), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [39395] = 4, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(4055), 1, + aux_sym_class_declaration_token13, + STATE(2932), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [37940] = 3, - ACTIONS(3309), 1, - sym_name, - ACTIONS(3), 2, sym_eol_comment, + [39410] = 4, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(4057), 1, + aux_sym_class_declaration_token13, + STATE(2931), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - STATE(1330), 2, - sym_return_code_binding, - aux_sym_exception_list_repeat1, - [37952] = 4, - ACTIONS(1318), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(3956), 1, - anon_sym_DOT, - STATE(2388), 1, - sym__method_declaration_exceptions, - ACTIONS(3), 2, sym_eol_comment, + [39425] = 4, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(2578), 1, + aux_sym_class_declaration_token13, + STATE(2999), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [37966] = 4, - ACTIONS(3958), 1, - anon_sym_RPAREN, - ACTIONS(3960), 1, - anon_sym_COMMA, - STATE(1713), 1, - aux_sym__select_target_repeat1, - ACTIONS(3), 2, sym_eol_comment, + [39440] = 4, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(2915), 1, + aux_sym_class_declaration_token13, + STATE(2929), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [37980] = 4, - ACTIONS(3962), 1, + sym_eol_comment, + [39455] = 4, + ACTIONS(3803), 1, + sym_name, + ACTIONS(4059), 1, + anon_sym_DOT, + STATE(1909), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + [39470] = 4, + ACTIONS(4061), 1, aux_sym_class_declaration_token11, - ACTIONS(3964), 1, + ACTIONS(4063), 1, aux_sym_class_declaration_token12, - ACTIONS(3966), 1, + ACTIONS(4065), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [37994] = 4, - ACTIONS(3505), 1, + sym_eol_comment, + [39485] = 4, + ACTIONS(4067), 1, aux_sym_class_declaration_token11, - ACTIONS(3507), 1, + ACTIONS(4069), 1, aux_sym_class_declaration_token12, - ACTIONS(3509), 1, + ACTIONS(4071), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [38008] = 4, - ACTIONS(1318), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(3968), 1, - anon_sym_DOT, - STATE(2354), 1, - sym__method_declaration_exceptions, - ACTIONS(3), 2, sym_eol_comment, + [39500] = 4, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(2961), 1, + aux_sym_class_declaration_token13, + STATE(2246), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [38022] = 4, - ACTIONS(1318), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(3970), 1, - anon_sym_DOT, - STATE(2306), 1, - sym__method_declaration_exceptions, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [38036] = 4, - ACTIONS(1896), 1, + [39515] = 4, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2732), 1, + ACTIONS(4073), 1, aux_sym_class_declaration_token13, - STATE(2084), 1, + STATE(2924), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [38050] = 4, - ACTIONS(1896), 1, + sym_eol_comment, + [39530] = 4, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2555), 1, + ACTIONS(4075), 1, aux_sym_class_declaration_token13, - STATE(3072), 1, + STATE(2923), 1, sym_private_section, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [39545] = 4, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(2907), 1, + aux_sym_class_declaration_token13, + STATE(2921), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [38064] = 4, - ACTIONS(1896), 1, + sym_eol_comment, + [39560] = 4, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2044), 1, + ACTIONS(2196), 1, aux_sym_class_declaration_token13, - STATE(2677), 1, + STATE(2905), 1, sym_private_section, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [39575] = 4, + ACTIONS(1343), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(4077), 1, + anon_sym_DOT, + STATE(2434), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [38078] = 4, - ACTIONS(1896), 1, + sym_eol_comment, + [39590] = 4, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(3972), 1, + ACTIONS(2905), 1, aux_sym_class_declaration_token13, - STATE(2165), 1, + STATE(2916), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [38092] = 4, - ACTIONS(3693), 1, - sym_name, - ACTIONS(3974), 1, - anon_sym_DOT, - STATE(1824), 1, - aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, sym_eol_comment, + [39605] = 4, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(2925), 1, + aux_sym_class_declaration_token13, + STATE(2819), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [38106] = 4, - ACTIONS(3976), 1, + sym_eol_comment, + [39620] = 4, + ACTIONS(4079), 1, aux_sym_class_declaration_token11, - ACTIONS(3978), 1, + ACTIONS(4081), 1, aux_sym_class_declaration_token12, - ACTIONS(3980), 1, + ACTIONS(4083), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + [39635] = 4, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(4085), 1, + aux_sym_class_declaration_token13, + STATE(2914), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + [39650] = 4, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(1916), 1, + aux_sym_class_declaration_token13, + STATE(2223), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [39665] = 4, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(2903), 1, + aux_sym_class_declaration_token13, + STATE(2913), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [38120] = 4, - ACTIONS(1318), 1, + sym_eol_comment, + [39680] = 4, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(3982), 1, + ACTIONS(4087), 1, anon_sym_DOT, - STATE(2298), 1, + STATE(2425), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [39695] = 4, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(4089), 1, + aux_sym_class_declaration_token13, + STATE(2910), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [38134] = 4, - ACTIONS(3908), 1, - aux_sym_loop_statement_token3, - ACTIONS(3910), 1, - aux_sym__select_target_token3, - STATE(1021), 1, - sym__select_target, - ACTIONS(3), 2, sym_eol_comment, + [39710] = 4, + ACTIONS(3550), 1, + aux_sym_class_declaration_token11, + ACTIONS(3552), 1, + aux_sym_class_declaration_token12, + ACTIONS(3554), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [38148] = 4, - ACTIONS(1896), 1, + sym_eol_comment, + [39725] = 4, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2874), 1, + ACTIONS(2901), 1, aux_sym_class_declaration_token13, - STATE(2724), 1, + STATE(2909), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [38162] = 4, - ACTIONS(2846), 1, - aux_sym_loop_statement_token3, - ACTIONS(2850), 1, - aux_sym__read_table_result_token1, - STATE(2457), 1, - sym__read_table_result, - ACTIONS(3), 2, sym_eol_comment, + [39740] = 4, + ACTIONS(3803), 1, + sym_name, + ACTIONS(4091), 1, + anon_sym_DOT, + STATE(1909), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [38176] = 2, - ACTIONS(3), 2, sym_eol_comment, + [39755] = 4, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(2552), 1, + aux_sym_class_declaration_token13, + STATE(2373), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3984), 3, - anon_sym_DOT, - aux_sym_loop_statement_token3, - aux_sym__read_table_result_token1, - [38186] = 4, - ACTIONS(3908), 1, - aux_sym_loop_statement_token3, - ACTIONS(3910), 1, - aux_sym__select_target_token3, - STATE(1162), 1, - sym__select_target, - ACTIONS(3), 2, sym_eol_comment, + [39770] = 4, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(2897), 1, + aux_sym_class_declaration_token13, + STATE(2904), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [38200] = 4, - ACTIONS(1318), 1, + sym_eol_comment, + [39785] = 4, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(3986), 1, + ACTIONS(4093), 1, anon_sym_DOT, - STATE(2296), 1, + STATE(2414), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [39800] = 4, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(4095), 1, + aux_sym_class_declaration_token13, + STATE(2901), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [38214] = 4, - ACTIONS(3693), 1, + sym_eol_comment, + [39815] = 4, + ACTIONS(3803), 1, sym_name, - ACTIONS(3988), 1, + ACTIONS(4097), 1, anon_sym_DOT, - STATE(1824), 1, + STATE(1909), 1, aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [39830] = 4, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(2895), 1, + aux_sym_class_declaration_token13, + STATE(2900), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [38228] = 4, - ACTIONS(1318), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(3990), 1, - anon_sym_DOT, - STATE(3010), 1, - sym__method_declaration_exceptions, - ACTIONS(3), 2, sym_eol_comment, + [39845] = 4, + ACTIONS(3698), 1, + anon_sym_COMMA, + ACTIONS(4099), 1, + anon_sym_DOT, + STATE(1506), 1, + aux_sym_chained_variable_declaration_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [38242] = 4, - ACTIONS(1896), 1, + sym_eol_comment, + [39860] = 4, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(3992), 1, + ACTIONS(4101), 1, aux_sym_class_declaration_token13, - STATE(2171), 1, + STATE(2892), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [38256] = 4, - ACTIONS(1318), 1, + sym_eol_comment, + [39875] = 4, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(3994), 1, + ACTIONS(4103), 1, anon_sym_DOT, - STATE(2335), 1, + STATE(2404), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [38270] = 4, - ACTIONS(1892), 1, - aux_sym_class_declaration_token13, - ACTIONS(1896), 1, + sym_eol_comment, + [39890] = 4, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - STATE(2956), 1, + ACTIONS(2883), 1, + aux_sym_class_declaration_token13, + STATE(2891), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [38284] = 4, - ACTIONS(3996), 1, - anon_sym_RPAREN, - ACTIONS(3998), 1, - anon_sym_COMMA, - STATE(1713), 1, - aux_sym__select_target_repeat1, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [38298] = 4, - ACTIONS(3914), 1, + [39905] = 4, + ACTIONS(3993), 1, + aux_sym__logical_expression_token2, + ACTIONS(3995), 1, aux_sym__logical_expression_token3, - ACTIONS(4001), 1, + ACTIONS(4105), 1, anon_sym_DOT, - ACTIONS(4003), 1, - aux_sym__logical_expression_token2, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [38312] = 2, - ACTIONS(3), 2, sym_eol_comment, + [39920] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(4005), 3, + sym_eol_comment, + ACTIONS(4107), 3, anon_sym_DOT, aux_sym_for_all_entries_token1, aux_sym__where_clause_token1, - [38322] = 4, - ACTIONS(3693), 1, - sym_name, - ACTIONS(4007), 1, + [39931] = 4, + ACTIONS(4109), 1, anon_sym_DOT, - STATE(1824), 1, - aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(4111), 1, + anon_sym_COMMA, + STATE(1802), 1, + aux_sym_chained_field_symbol_declaration_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [38336] = 4, - ACTIONS(1318), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(4009), 1, - anon_sym_DOT, - STATE(2289), 1, - sym__method_declaration_exceptions, - ACTIONS(3), 2, sym_eol_comment, + [39946] = 4, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(4113), 1, + aux_sym_class_declaration_token13, + STATE(2885), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [38350] = 4, - ACTIONS(3914), 1, - aux_sym__logical_expression_token3, - ACTIONS(4003), 1, - aux_sym__logical_expression_token2, - ACTIONS(4011), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [39961] = 4, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(2875), 1, + aux_sym_class_declaration_token13, + STATE(2884), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [38364] = 4, - ACTIONS(3693), 1, - sym_name, - ACTIONS(4013), 1, - anon_sym_DOT, - STATE(1824), 1, - aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [38378] = 4, - ACTIONS(1896), 1, + [39976] = 4, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2160), 1, + ACTIONS(2114), 1, aux_sym_class_declaration_token13, - STATE(2669), 1, + STATE(2882), 1, sym_private_section, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + [39991] = 4, + ACTIONS(3797), 1, + anon_sym_COMMA, + ACTIONS(4115), 1, + anon_sym_RPAREN, + STATE(1556), 1, + aux_sym__select_target_repeat1, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [40006] = 4, + ACTIONS(4117), 1, + anon_sym_RPAREN, + ACTIONS(4119), 1, + anon_sym_COMMA, + STATE(1716), 1, + aux_sym__select_target_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [38392] = 4, - ACTIONS(1318), 1, + sym_eol_comment, + [40021] = 4, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4015), 1, + ACTIONS(4122), 1, anon_sym_DOT, - STATE(2327), 1, + STATE(2401), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [38406] = 3, - ACTIONS(4019), 1, - aux_sym__data_object_typing_normal_token5, - ACTIONS(3), 2, sym_eol_comment, + [40036] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(4017), 2, - anon_sym_DOT, - anon_sym_COMMA, - [38418] = 3, - ACTIONS(4023), 1, - aux_sym__data_object_typing_normal_token5, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(4021), 2, + ACTIONS(4124), 3, anon_sym_DOT, - anon_sym_COMMA, - [38430] = 4, - ACTIONS(4025), 1, - aux_sym_class_declaration_token11, - ACTIONS(4027), 1, - aux_sym_class_declaration_token12, - ACTIONS(4029), 1, + aux_sym__logical_expression_token2, + aux_sym__logical_expression_token3, + [40047] = 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + ACTIONS(4126), 3, anon_sym_DOT, - ACTIONS(3), 2, + aux_sym_for_all_entries_token1, + aux_sym__where_clause_token1, + [40058] = 4, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(4128), 1, + aux_sym_class_declaration_token13, + STATE(2928), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [40073] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [38444] = 4, - ACTIONS(1896), 1, + sym_eol_comment, + ACTIONS(4130), 3, + aux_sym_generic_typing_token1, + aux_sym_generic_typing_token2, + aux_sym__data_object_typing_normal_token3, + [40084] = 4, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(1918), 1, + ACTIONS(4132), 1, aux_sym_class_declaration_token13, - STATE(2367), 1, + STATE(2875), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [38458] = 4, - ACTIONS(3693), 1, - sym_name, - ACTIONS(4031), 1, - anon_sym_DOT, - STATE(1824), 1, - aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, sym_eol_comment, + [40099] = 3, + ACTIONS(4136), 1, + aux_sym__data_object_typing_normal_token5, + ACTIONS(4134), 2, + anon_sym_DOT, + anon_sym_COMMA, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [38472] = 3, - ACTIONS(4035), 1, + sym_eol_comment, + [40112] = 3, + ACTIONS(4140), 1, aux_sym__data_object_typing_normal_token5, - ACTIONS(3), 2, + ACTIONS(4138), 2, + anon_sym_DOT, + anon_sym_COMMA, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [40125] = 4, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(2871), 1, + aux_sym_class_declaration_token13, + STATE(2874), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(4033), 2, + sym_eol_comment, + [40140] = 3, + ACTIONS(4144), 1, + aux_sym__data_object_typing_normal_token5, + ACTIONS(4142), 2, anon_sym_DOT, anon_sym_COMMA, - [38484] = 4, - ACTIONS(1318), 1, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + [40153] = 4, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4037), 1, + ACTIONS(4146), 1, anon_sym_DOT, - STATE(2286), 1, + STATE(2083), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [40168] = 4, + ACTIONS(1343), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(4148), 1, + anon_sym_DOT, + STATE(2394), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [38498] = 4, - ACTIONS(1896), 1, + sym_eol_comment, + [40183] = 4, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2198), 1, + ACTIONS(2124), 1, aux_sym_class_declaration_token13, - STATE(2683), 1, + STATE(2872), 1, sym_private_section, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [40198] = 3, + ACTIONS(4152), 1, + aux_sym__data_object_typing_normal_token5, + ACTIONS(4150), 2, + anon_sym_DOT, + anon_sym_COMMA, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [38512] = 3, - ACTIONS(4041), 1, + sym_eol_comment, + [40211] = 3, + ACTIONS(4156), 1, aux_sym__data_object_typing_normal_token5, - ACTIONS(3), 2, + ACTIONS(4154), 2, + anon_sym_DOT, + anon_sym_COMMA, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [40224] = 4, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(4158), 1, + aux_sym_class_declaration_token13, + STATE(2869), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(4039), 2, + sym_eol_comment, + [40239] = 3, + ACTIONS(4162), 1, + aux_sym__data_object_typing_normal_token5, + ACTIONS(4160), 2, anon_sym_DOT, anon_sym_COMMA, - [38524] = 4, - ACTIONS(1318), 1, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + [40252] = 4, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(4164), 1, + aux_sym_class_declaration_token13, + STATE(2868), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + [40267] = 4, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4043), 1, + ACTIONS(4166), 1, anon_sym_DOT, - STATE(2308), 1, + STATE(2369), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [40282] = 4, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(2863), 1, + aux_sym_class_declaration_token13, + STATE(2866), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [38538] = 4, - ACTIONS(4045), 1, - sym_name, - ACTIONS(4047), 1, - aux_sym_chained_structure_declaration_token1, - STATE(1778), 1, - sym_variable, - ACTIONS(3), 2, sym_eol_comment, + [40297] = 4, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(4168), 1, + aux_sym_class_declaration_token13, + STATE(2861), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [38552] = 4, - ACTIONS(1896), 1, + sym_eol_comment, + [40312] = 4, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2968), 1, + ACTIONS(2226), 1, aux_sym_class_declaration_token13, - STATE(2947), 1, + STATE(2853), 1, sym_private_section, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [40327] = 4, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(4170), 1, + aux_sym_class_declaration_token13, + STATE(2081), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [38566] = 4, - ACTIONS(1318), 1, + sym_eol_comment, + [40342] = 4, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4049), 1, + ACTIONS(4172), 1, anon_sym_DOT, - STATE(2304), 1, + STATE(2954), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [38580] = 4, - ACTIONS(1318), 1, + sym_eol_comment, + [40357] = 4, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4051), 1, + ACTIONS(4174), 1, anon_sym_DOT, - STATE(2279), 1, + STATE(2359), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [40372] = 4, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(2849), 1, + aux_sym_class_declaration_token13, + STATE(2858), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [38594] = 4, - ACTIONS(1896), 1, + sym_eol_comment, + [40387] = 4, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2838), 1, + ACTIONS(4176), 1, aux_sym_class_declaration_token13, - STATE(2693), 1, + STATE(2849), 1, sym_private_section, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [40402] = 4, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(2258), 1, + aux_sym_class_declaration_token13, + STATE(2841), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [38608] = 4, - ACTIONS(3914), 1, - aux_sym__logical_expression_token3, - ACTIONS(4003), 1, - aux_sym__logical_expression_token2, - ACTIONS(4053), 1, + sym_eol_comment, + [40417] = 4, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(2833), 1, + aux_sym_class_declaration_token13, + STATE(2846), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + [40432] = 4, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(2823), 1, + aux_sym_class_declaration_token13, + STATE(2838), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + [40447] = 4, + ACTIONS(3803), 1, + sym_name, + ACTIONS(4178), 1, anon_sym_DOT, - ACTIONS(3), 2, + STATE(1909), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [40462] = 4, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(4180), 1, + aux_sym_class_declaration_token13, + STATE(2835), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [38622] = 4, - ACTIONS(1896), 1, + sym_eol_comment, + [40477] = 4, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(4055), 1, + ACTIONS(2759), 1, aux_sym_class_declaration_token13, - STATE(2940), 1, + STATE(2834), 1, sym_private_section, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [40492] = 4, + ACTIONS(4182), 1, + aux_sym_class_declaration_token11, + ACTIONS(4184), 1, + aux_sym_class_declaration_token12, + ACTIONS(4186), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [38636] = 4, - ACTIONS(1318), 1, + sym_eol_comment, + [40507] = 4, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4057), 1, + ACTIONS(4188), 1, anon_sym_DOT, - STATE(2771), 1, + STATE(2350), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [40522] = 4, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(4190), 1, + aux_sym_class_declaration_token13, + STATE(2829), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [38650] = 4, - ACTIONS(1318), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(4059), 1, - anon_sym_DOT, - STATE(2292), 1, - sym__method_declaration_exceptions, - ACTIONS(3), 2, sym_eol_comment, + [40537] = 4, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(4192), 1, + aux_sym_class_declaration_token13, + STATE(2961), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [38664] = 4, - ACTIONS(1318), 1, + sym_eol_comment, + [40552] = 4, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(2811), 1, + aux_sym_class_declaration_token13, + STATE(2828), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + [40567] = 4, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(4194), 1, + aux_sym_class_declaration_token13, + STATE(2078), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + [40582] = 4, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(2298), 1, + aux_sym_class_declaration_token13, + STATE(2824), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + [40597] = 4, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4061), 1, + ACTIONS(4196), 1, anon_sym_DOT, - STATE(2277), 1, + STATE(2186), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + [40612] = 4, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(2104), 1, + aux_sym_class_declaration_token13, + STATE(2985), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [40627] = 4, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(4198), 1, + aux_sym_class_declaration_token13, + STATE(2817), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [38678] = 4, - ACTIONS(3693), 1, + sym_eol_comment, + [40642] = 4, + ACTIONS(3803), 1, sym_name, - ACTIONS(4063), 1, + ACTIONS(4200), 1, anon_sym_DOT, - STATE(1824), 1, + STATE(1909), 1, aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [40657] = 4, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(2781), 1, + aux_sym_class_declaration_token13, + STATE(2816), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + [40672] = 4, + ACTIONS(4202), 1, + aux_sym_class_declaration_token11, + ACTIONS(4204), 1, + aux_sym_class_declaration_token12, + ACTIONS(4206), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [38692] = 4, - ACTIONS(3693), 1, + sym_eol_comment, + [40687] = 4, + ACTIONS(3803), 1, sym_name, - ACTIONS(4065), 1, + ACTIONS(4208), 1, anon_sym_DOT, - STATE(1824), 1, + STATE(1909), 1, aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + [40702] = 4, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(2444), 1, + aux_sym_class_declaration_token13, + STATE(2812), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [40717] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [38706] = 4, - ACTIONS(1318), 1, + sym_eol_comment, + ACTIONS(4210), 3, + aux_sym_class_declaration_token3, + aux_sym__create_addition_token2, + aux_sym__create_addition_token3, + [40728] = 4, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4067), 1, + ACTIONS(4212), 1, anon_sym_DOT, - STATE(3009), 1, + STATE(2342), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [38720] = 4, - ACTIONS(1589), 1, - anon_sym_COMMA, - ACTIONS(4069), 1, - anon_sym_DOT, - STATE(1811), 1, - aux_sym_chained_write_statement_repeat1, - ACTIONS(3), 2, sym_eol_comment, + [40743] = 4, + ACTIONS(3704), 1, + sym_name, + STATE(1332), 1, + aux_sym_chained_structure_declaration_repeat1, + STATE(1973), 1, + sym_structure_component, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [38734] = 4, - ACTIONS(1896), 1, + sym_eol_comment, + [40758] = 4, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(4071), 1, + ACTIONS(2879), 1, aux_sym_class_declaration_token13, - STATE(2762), 1, + STATE(2972), 1, sym_private_section, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [40773] = 4, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(4214), 1, + aux_sym_class_declaration_token13, + STATE(2802), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [38748] = 4, - ACTIONS(1896), 1, + sym_eol_comment, + [40788] = 4, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(4073), 1, + ACTIONS(2769), 1, aux_sym_class_declaration_token13, - STATE(2700), 1, + STATE(2801), 1, sym_private_section, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [40803] = 4, + ACTIONS(3803), 1, + sym_name, + ACTIONS(4216), 1, + anon_sym_DOT, + STATE(1909), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [38762] = 4, - ACTIONS(1318), 1, + sym_eol_comment, + [40818] = 4, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(2460), 1, + aux_sym_class_declaration_token13, + STATE(2799), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + [40833] = 4, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4075), 1, + ACTIONS(4218), 1, anon_sym_DOT, - STATE(2078), 1, + STATE(2087), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [40848] = 4, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(2220), 1, + aux_sym_class_declaration_token13, + STATE(2944), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [38776] = 4, - ACTIONS(3693), 1, - sym_name, - ACTIONS(4077), 1, - anon_sym_DOT, - STATE(1824), 1, - aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, sym_eol_comment, + [40863] = 4, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(2763), 1, + aux_sym_class_declaration_token13, + STATE(2796), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + [40878] = 4, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(2528), 1, + aux_sym_class_declaration_token13, + STATE(2789), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [38790] = 4, - ACTIONS(1896), 1, + sym_eol_comment, + [40893] = 4, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2882), 1, + ACTIONS(2887), 1, aux_sym_class_declaration_token13, - STATE(2658), 1, + STATE(2988), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [38804] = 4, - ACTIONS(1318), 1, + sym_eol_comment, + [40908] = 4, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4079), 1, + ACTIONS(4220), 1, anon_sym_DOT, - STATE(2272), 1, + STATE(3103), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [38818] = 4, - ACTIONS(1589), 1, - anon_sym_COMMA, - ACTIONS(1621), 1, - anon_sym_DOT, - STATE(1811), 1, - aux_sym_chained_write_statement_repeat1, - ACTIONS(3), 2, sym_eol_comment, + [40923] = 4, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(2747), 1, + aux_sym_class_declaration_token13, + STATE(2785), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [38832] = 4, - ACTIONS(3735), 1, - anon_sym_COMMA, - ACTIONS(4081), 1, - anon_sym_DOT, - STATE(1799), 1, - aux_sym_chained_field_symbol_declaration_repeat1, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [38846] = 4, - ACTIONS(1318), 1, + [40938] = 4, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4083), 1, + ACTIONS(4222), 1, anon_sym_DOT, - STATE(3038), 1, + STATE(2098), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - [38860] = 4, - ACTIONS(3723), 1, - anon_sym_COMMA, - ACTIONS(4085), 1, - anon_sym_DOT, - STATE(1765), 1, - aux_sym_chained_variable_declaration_repeat1, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [38874] = 4, - ACTIONS(4045), 1, - sym_name, - ACTIONS(4087), 1, - aux_sym_chained_structure_declaration_token1, - STATE(1521), 1, - sym_variable, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [38888] = 4, - ACTIONS(3693), 1, + [40953] = 4, + ACTIONS(3803), 1, sym_name, - ACTIONS(4089), 1, + ACTIONS(4224), 1, anon_sym_DOT, - STATE(1824), 1, + STATE(1909), 1, aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [38902] = 4, - ACTIONS(1318), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(4091), 1, - anon_sym_DOT, - STATE(2934), 1, - sym__method_declaration_exceptions, - ACTIONS(3), 2, sym_eol_comment, + [40968] = 4, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(2841), 1, + aux_sym_class_declaration_token13, + STATE(2073), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [38916] = 4, - ACTIONS(1318), 1, + sym_eol_comment, + [40983] = 4, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4093), 1, + ACTIONS(4226), 1, anon_sym_DOT, - STATE(2275), 1, + STATE(2346), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [40998] = 4, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(2458), 1, + aux_sym_class_declaration_token13, + STATE(2337), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [38930] = 4, - ACTIONS(2655), 1, + sym_eol_comment, + [41013] = 4, + ACTIONS(3344), 1, aux_sym_class_declaration_token11, - ACTIONS(2657), 1, + ACTIONS(3346), 1, aux_sym_class_declaration_token12, - ACTIONS(2659), 1, + ACTIONS(3348), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [38944] = 4, - ACTIONS(1896), 1, + sym_eol_comment, + [41028] = 4, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(4095), 1, + ACTIONS(2590), 1, aux_sym_class_declaration_token13, - STATE(2776), 1, + STATE(2778), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [38958] = 4, - ACTIONS(1896), 1, + sym_eol_comment, + [41043] = 4, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(4097), 1, + ACTIONS(2919), 1, aux_sym_class_declaration_token13, - STATE(2075), 1, + STATE(2145), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [38972] = 4, - ACTIONS(1896), 1, + sym_eol_comment, + [41058] = 4, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(4099), 1, + ACTIONS(2775), 1, aux_sym_class_declaration_token13, - STATE(2243), 1, + STATE(2335), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [38986] = 4, - ACTIONS(3693), 1, - sym_name, - ACTIONS(4101), 1, - anon_sym_DOT, - STATE(1824), 1, - aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, sym_eol_comment, + [41073] = 4, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(4228), 1, + aux_sym_class_declaration_token13, + STATE(2775), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [39000] = 4, - ACTIONS(4103), 1, - anon_sym_DOT, - ACTIONS(4105), 1, - anon_sym_COMMA, - STATE(1765), 1, - aux_sym_chained_variable_declaration_repeat1, - ACTIONS(3), 2, sym_eol_comment, + [41088] = 4, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(2644), 1, + aux_sym_class_declaration_token13, + STATE(2767), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [39014] = 4, - ACTIONS(1896), 1, + sym_eol_comment, + [41103] = 4, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2894), 1, + ACTIONS(2885), 1, aux_sym_class_declaration_token13, - STATE(2779), 1, + STATE(2772), 1, sym_private_section, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [41118] = 4, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(4230), 1, + aux_sym_class_declaration_token13, + STATE(2325), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [39028] = 4, - ACTIONS(3443), 1, - aux_sym_class_declaration_token11, - ACTIONS(3445), 1, - aux_sym_class_declaration_token12, - ACTIONS(3447), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [41133] = 4, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(1914), 1, + aux_sym_class_declaration_token13, + STATE(2782), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [39042] = 4, - ACTIONS(1318), 1, + sym_eol_comment, + [41148] = 4, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4108), 1, + ACTIONS(4232), 1, anon_sym_DOT, - STATE(2926), 1, + STATE(2162), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [39056] = 4, - ACTIONS(1896), 1, + sym_eol_comment, + [41163] = 4, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(4110), 1, + ACTIONS(2616), 1, aux_sym_class_declaration_token13, - STATE(2073), 1, + STATE(2759), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [39070] = 4, - ACTIONS(3693), 1, - sym_name, - ACTIONS(4112), 1, - anon_sym_DOT, - STATE(1824), 1, - aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [39084] = 4, - ACTIONS(1896), 1, + [41178] = 4, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(1958), 1, + ACTIONS(2602), 1, aux_sym_class_declaration_token13, - STATE(2227), 1, + STATE(2748), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [39098] = 4, - ACTIONS(3735), 1, - anon_sym_COMMA, - ACTIONS(4114), 1, - anon_sym_DOT, - STATE(1753), 1, - aux_sym_chained_field_symbol_declaration_repeat1, - ACTIONS(3), 2, sym_eol_comment, + [41193] = 4, + ACTIONS(1343), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(4234), 1, + anon_sym_DOT, + STATE(2107), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [39112] = 4, - ACTIONS(1896), 1, + sym_eol_comment, + [41208] = 4, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2054), 1, + ACTIONS(4236), 1, aux_sym_class_declaration_token13, - STATE(2784), 1, + STATE(2745), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [39126] = 4, - ACTIONS(3693), 1, - sym_name, - ACTIONS(4116), 1, - anon_sym_DOT, - STATE(1824), 1, - aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, sym_eol_comment, + [41223] = 4, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(2943), 1, + aux_sym_class_declaration_token13, + STATE(2744), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [39140] = 4, - ACTIONS(4118), 1, - aux_sym_class_declaration_token11, - ACTIONS(4120), 1, - aux_sym_class_declaration_token12, - ACTIONS(4122), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [39154] = 4, - ACTIONS(1318), 1, + [41238] = 4, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4124), 1, + ACTIONS(4238), 1, anon_sym_DOT, - STATE(3008), 1, + STATE(2232), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - [39168] = 4, - ACTIONS(3693), 1, - sym_name, - ACTIONS(4126), 1, - anon_sym_DOT, - STATE(1824), 1, - aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [39182] = 4, - ACTIONS(3723), 1, - anon_sym_COMMA, - ACTIONS(4128), 1, - anon_sym_DOT, - STATE(1755), 1, - aux_sym_chained_variable_declaration_repeat1, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [39196] = 4, - ACTIONS(4130), 1, - aux_sym_class_declaration_token11, - ACTIONS(4132), 1, - aux_sym_class_declaration_token12, - ACTIONS(4134), 1, + [41253] = 4, + ACTIONS(1343), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(4240), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + STATE(2281), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [39210] = 4, - ACTIONS(3693), 1, - sym_name, - ACTIONS(4136), 1, - anon_sym_DOT, - STATE(1824), 1, - aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [39224] = 4, - ACTIONS(3693), 1, - sym_name, - ACTIONS(4138), 1, + [41268] = 4, + ACTIONS(4111), 1, + anon_sym_COMMA, + ACTIONS(4242), 1, anon_sym_DOT, - STATE(1824), 1, - aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, - sym_eol_comment, + STATE(1894), 1, + aux_sym_chained_field_symbol_declaration_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [39238] = 4, - ACTIONS(3693), 1, - sym_name, - ACTIONS(4140), 1, - anon_sym_DOT, - STATE(1824), 1, - aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [39252] = 4, - ACTIONS(1896), 1, + [41283] = 4, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2956), 1, + ACTIONS(2584), 1, aux_sym_class_declaration_token13, - STATE(2193), 1, + STATE(2740), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [39266] = 4, - ACTIONS(1896), 1, + sym_eol_comment, + [41298] = 4, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2457), 1, + ACTIONS(2526), 1, aux_sym_class_declaration_token13, - STATE(2264), 1, + STATE(2733), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [39280] = 4, - ACTIONS(4142), 1, - aux_sym_class_declaration_token11, - ACTIONS(4144), 1, - aux_sym_class_declaration_token12, - ACTIONS(4146), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [39294] = 4, - ACTIONS(1896), 1, + [41313] = 4, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(1986), 1, + ACTIONS(2777), 1, aux_sym_class_declaration_token13, - STATE(2176), 1, + STATE(2299), 1, sym_private_section, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [41328] = 4, + ACTIONS(3969), 1, + aux_sym_loop_statement_token3, + ACTIONS(3971), 1, + aux_sym__select_target_token3, + STATE(1164), 1, + sym__select_target, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [39308] = 4, - ACTIONS(1318), 1, + sym_eol_comment, + [41343] = 4, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4148), 1, + ACTIONS(4244), 1, anon_sym_DOT, - STATE(3034), 1, + STATE(2254), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [41358] = 3, + ACTIONS(3995), 1, + aux_sym__logical_expression_token3, + ACTIONS(4246), 2, + anon_sym_DOT, + aux_sym__logical_expression_token2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [39322] = 4, - ACTIONS(1896), 1, + sym_eol_comment, + [41371] = 4, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2764), 1, + ACTIONS(4248), 1, aux_sym_class_declaration_token13, - STATE(2262), 1, + STATE(2291), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [39336] = 4, - ACTIONS(3914), 1, - aux_sym__logical_expression_token3, - ACTIONS(4003), 1, - aux_sym__logical_expression_token2, - ACTIONS(4150), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [41386] = 4, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(4250), 1, + aux_sym_class_declaration_token13, + STATE(2727), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [39350] = 4, - ACTIONS(3693), 1, - sym_name, - ACTIONS(4152), 1, - anon_sym_DOT, - STATE(1824), 1, - aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [39364] = 4, - ACTIONS(1896), 1, + [41401] = 4, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2832), 1, + ACTIONS(2470), 1, aux_sym_class_declaration_token13, - STATE(2090), 1, + STATE(2725), 1, sym_private_section, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + [41416] = 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + ACTIONS(4246), 3, + anon_sym_DOT, + aux_sym__logical_expression_token2, + aux_sym__logical_expression_token3, + [41427] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [39378] = 4, - ACTIONS(1896), 1, + sym_eol_comment, + ACTIONS(4246), 3, + anon_sym_DOT, + aux_sym__logical_expression_token2, + aux_sym__logical_expression_token3, + [41438] = 4, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(4154), 1, + ACTIONS(2773), 1, aux_sym_class_declaration_token13, - STATE(2259), 1, + STATE(2721), 1, sym_private_section, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [41453] = 4, + ACTIONS(3969), 1, + aux_sym_loop_statement_token3, + ACTIONS(3971), 1, + aux_sym__select_target_token3, + STATE(1142), 1, + sym__select_target, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [39392] = 4, - ACTIONS(1896), 1, + sym_eol_comment, + [41468] = 4, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2222), 1, + ACTIONS(2462), 1, aux_sym_class_declaration_token13, - STATE(2706), 1, + STATE(2714), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [39406] = 4, - ACTIONS(3693), 1, - sym_name, - ACTIONS(4156), 1, - anon_sym_DOT, - STATE(1824), 1, - aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, sym_eol_comment, + [41483] = 4, + ACTIONS(2817), 1, + aux_sym_loop_statement_token3, + ACTIONS(2821), 1, + aux_sym__read_table_result_token1, + STATE(2392), 1, + sym__read_table_result, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [39420] = 4, - ACTIONS(3693), 1, - sym_name, - ACTIONS(4158), 1, - anon_sym_DOT, - STATE(1824), 1, - aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [39434] = 4, - ACTIONS(1318), 1, + [41498] = 4, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4160), 1, + ACTIONS(4252), 1, anon_sym_DOT, - STATE(2907), 1, + STATE(2151), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [39448] = 4, - ACTIONS(4162), 1, - aux_sym_class_declaration_token11, - ACTIONS(4164), 1, - aux_sym_class_declaration_token12, - ACTIONS(4166), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [41513] = 4, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(2761), 1, + aux_sym_class_declaration_token13, + STATE(2705), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [39462] = 4, - ACTIONS(3075), 1, - aux_sym_class_declaration_token11, - ACTIONS(3077), 1, - aux_sym_class_declaration_token12, - ACTIONS(3079), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [41528] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [39476] = 4, - ACTIONS(4168), 1, - anon_sym_DOT, - ACTIONS(4170), 1, - anon_sym_COMMA, - STATE(1799), 1, - aux_sym_chained_field_symbol_declaration_repeat1, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [39490] = 4, - ACTIONS(3693), 1, + ACTIONS(4254), 3, + anon_sym_DOT, + aux_sym_for_all_entries_token1, + aux_sym__where_clause_token1, + [41539] = 4, + ACTIONS(3803), 1, sym_name, - ACTIONS(4173), 1, + ACTIONS(4256), 1, anon_sym_DOT, - STATE(1824), 1, + STATE(1909), 1, aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [39504] = 4, - ACTIONS(1318), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(4175), 1, - anon_sym_DOT, - STATE(3067), 1, - sym__method_declaration_exceptions, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [39518] = 4, - ACTIONS(1318), 1, + [41554] = 4, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4177), 1, + ACTIONS(4258), 1, anon_sym_DOT, - STATE(2805), 1, + STATE(2441), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [39532] = 4, - ACTIONS(1896), 1, + sym_eol_comment, + [41569] = 4, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2826), 1, + ACTIONS(4260), 1, aux_sym_class_declaration_token13, - STATE(2108), 1, + STATE(2998), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [39546] = 4, - ACTIONS(3693), 1, - sym_name, - ACTIONS(4179), 1, - anon_sym_DOT, - STATE(1824), 1, - aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [39560] = 4, - ACTIONS(1896), 1, + [41584] = 4, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2766), 1, + ACTIONS(2088), 1, aux_sym_class_declaration_token13, - STATE(2247), 1, + STATE(2694), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - [39574] = 4, - ACTIONS(3914), 1, - aux_sym__logical_expression_token3, - ACTIONS(4003), 1, - aux_sym__logical_expression_token2, - ACTIONS(4181), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [39588] = 4, - ACTIONS(3349), 1, - aux_sym_class_declaration_token11, - ACTIONS(3351), 1, - aux_sym_class_declaration_token12, - ACTIONS(3353), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [41599] = 4, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(2785), 1, + aux_sym_class_declaration_token13, + STATE(2267), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [39602] = 2, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(4183), 3, - anon_sym_DOT, - aux_sym_for_all_entries_token1, - aux_sym__where_clause_token1, - [39612] = 4, - ACTIONS(1896), 1, + [41614] = 4, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(4185), 1, + ACTIONS(2835), 1, aux_sym_class_declaration_token13, - STATE(2245), 1, + STATE(2137), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [39626] = 4, - ACTIONS(1589), 1, - anon_sym_COMMA, - ACTIONS(4187), 1, - anon_sym_DOT, - STATE(1811), 1, - aux_sym_chained_write_statement_repeat1, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [39640] = 4, - ACTIONS(1787), 1, + [41629] = 4, + ACTIONS(1583), 1, anon_sym_DOT, - ACTIONS(4189), 1, + ACTIONS(1585), 1, anon_sym_COMMA, - STATE(1811), 1, + STATE(1902), 1, aux_sym_chained_write_statement_repeat1, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [39654] = 4, - ACTIONS(1318), 1, + sym_eol_comment, + [41644] = 4, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4192), 1, + ACTIONS(4262), 1, anon_sym_DOT, - STATE(2815), 1, + STATE(2163), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [39668] = 4, - ACTIONS(3693), 1, - sym_name, - ACTIONS(4194), 1, - anon_sym_DOT, - STATE(1824), 1, - aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, sym_eol_comment, + [41659] = 4, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(4264), 1, + aux_sym_class_declaration_token13, + STATE(2263), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [39682] = 4, - ACTIONS(1318), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(4196), 1, - anon_sym_DOT, - STATE(2810), 1, - sym__method_declaration_exceptions, - ACTIONS(3), 2, sym_eol_comment, + [41674] = 4, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(2058), 1, + aux_sym_class_declaration_token13, + STATE(2684), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [39696] = 4, - ACTIONS(3960), 1, - anon_sym_COMMA, - ACTIONS(4198), 1, - anon_sym_RPAREN, - STATE(1690), 1, - aux_sym__select_target_repeat1, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [39710] = 4, - ACTIONS(1318), 1, + [41689] = 4, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4200), 1, + ACTIONS(4266), 1, anon_sym_DOT, - STATE(2995), 1, + STATE(2636), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - [39724] = 4, - ACTIONS(3317), 1, - aux_sym_class_declaration_token11, - ACTIONS(3319), 1, - aux_sym_class_declaration_token12, - ACTIONS(3321), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [39738] = 4, - ACTIONS(4202), 1, - aux_sym_class_declaration_token11, - ACTIONS(4204), 1, - aux_sym_class_declaration_token12, - ACTIONS(4206), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [39752] = 4, - ACTIONS(3693), 1, + [41704] = 3, + ACTIONS(3111), 1, sym_name, - ACTIONS(4208), 1, - anon_sym_DOT, - STATE(1824), 1, - aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, - sym_eol_comment, + STATE(1231), 2, + sym_return_code_binding, + aux_sym_exception_list_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [39766] = 4, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(2066), 1, - aux_sym_class_declaration_token13, - STATE(2303), 1, - sym_private_section, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [39780] = 4, - ACTIONS(3693), 1, - sym_name, - ACTIONS(4210), 1, + [41717] = 4, + ACTIONS(1343), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(4268), 1, anon_sym_DOT, - STATE(1824), 1, - aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, - sym_eol_comment, + STATE(2175), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [39794] = 4, - ACTIONS(2696), 1, - aux_sym_class_declaration_token11, - ACTIONS(2698), 1, - aux_sym_class_declaration_token12, - ACTIONS(2700), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [39808] = 4, - ACTIONS(1318), 1, + [41732] = 4, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4212), 1, + ACTIONS(4270), 1, anon_sym_DOT, - STATE(2988), 1, + STATE(2185), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [39822] = 4, - ACTIONS(4214), 1, - sym_name, - ACTIONS(4217), 1, - anon_sym_DOT, - STATE(1824), 1, - aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [39836] = 4, - ACTIONS(1896), 1, + [41747] = 4, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2776), 1, + ACTIONS(2967), 1, aux_sym_class_declaration_token13, - STATE(2216), 1, + STATE(2800), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - [39850] = 4, - ACTIONS(3693), 1, - sym_name, - ACTIONS(4219), 1, - anon_sym_DOT, - STATE(1824), 1, - aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [39864] = 3, - ACTIONS(4223), 1, - aux_sym__data_object_typing_normal_token5, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(4221), 2, - anon_sym_DOT, - anon_sym_COMMA, - [39876] = 4, - ACTIONS(3693), 1, - sym_name, - ACTIONS(4225), 1, + [41762] = 4, + ACTIONS(1343), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(4272), 1, anon_sym_DOT, - STATE(1824), 1, - aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, - sym_eol_comment, + STATE(2349), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [39890] = 4, - ACTIONS(1896), 1, + sym_eol_comment, + [41777] = 4, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(4227), 1, + ACTIONS(2048), 1, aux_sym_class_declaration_token13, - STATE(2211), 1, + STATE(2677), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [39904] = 2, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(4229), 3, - anon_sym_DOT, - aux_sym__method_declaration_raising_token1, - aux_sym__method_declaration_exceptions_token1, - [39914] = 4, - ACTIONS(1896), 1, + [41792] = 4, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(4231), 1, + ACTIONS(2787), 1, aux_sym_class_declaration_token13, - STATE(2117), 1, + STATE(2257), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - [39928] = 4, - ACTIONS(2820), 1, - aux_sym__method_declaration_raising_token2, - ACTIONS(4233), 1, - sym_name, - STATE(1068), 1, - aux_sym__method_declaration_raising_repeat1, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [39942] = 3, - ACTIONS(4237), 1, - aux_sym__data_object_typing_normal_token5, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(4235), 2, - anon_sym_DOT, - anon_sym_COMMA, - [39954] = 4, - ACTIONS(1896), 1, + [41807] = 4, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2808), 1, + ACTIONS(4274), 1, aux_sym_class_declaration_token13, - STATE(2087), 1, + STATE(2822), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [39968] = 4, - ACTIONS(3725), 1, - sym_name, - STATE(1192), 1, - aux_sym_chained_structure_declaration_repeat1, - STATE(1934), 1, - sym_structure_component, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [39982] = 4, - ACTIONS(3693), 1, + [41822] = 4, + ACTIONS(3803), 1, sym_name, - ACTIONS(4239), 1, + ACTIONS(4276), 1, anon_sym_DOT, - STATE(1824), 1, - aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, - sym_eol_comment, - sym_bol_comment, - [39996] = 4, - ACTIONS(4241), 1, - aux_sym_class_declaration_token11, - ACTIONS(4243), 1, - aux_sym_class_declaration_token12, - ACTIONS(4245), 1, - anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + STATE(1909), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [40010] = 4, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(2780), 1, - aux_sym_class_declaration_token13, - STATE(2203), 1, - sym_private_section, - ACTIONS(3), 2, sym_eol_comment, + [41837] = 4, + ACTIONS(2817), 1, + aux_sym_loop_statement_token3, + ACTIONS(2821), 1, + aux_sym__read_table_result_token1, + STATE(2458), 1, + sym__read_table_result, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [40024] = 4, - ACTIONS(1896), 1, + sym_eol_comment, + [41852] = 4, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(4247), 1, + ACTIONS(2889), 1, aux_sym_class_declaration_token13, - STATE(2134), 1, + STATE(3001), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [40038] = 4, - ACTIONS(1318), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(4249), 1, - anon_sym_DOT, - STATE(2265), 1, - sym__method_declaration_exceptions, - ACTIONS(3), 2, sym_eol_comment, + [41867] = 4, + ACTIONS(3969), 1, + aux_sym_loop_statement_token3, + ACTIONS(3971), 1, + aux_sym__select_target_token3, + STATE(1157), 1, + sym__select_target, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [40052] = 4, - ACTIONS(3725), 1, - sym_name, - STATE(1230), 1, - aux_sym_chained_structure_declaration_repeat1, - STATE(1934), 1, - sym_structure_component, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [40066] = 4, - ACTIONS(1318), 1, + [41882] = 4, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4251), 1, + ACTIONS(4278), 1, anon_sym_DOT, - STATE(2972), 1, + STATE(2769), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [40080] = 4, - ACTIONS(3693), 1, - sym_name, - ACTIONS(4253), 1, - anon_sym_DOT, - STATE(1824), 1, - aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [40094] = 4, - ACTIONS(1318), 1, + [41897] = 4, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4255), 1, + ACTIONS(4280), 1, anon_sym_DOT, - STATE(2819), 1, + STATE(2251), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [40108] = 4, - ACTIONS(1318), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(4257), 1, - anon_sym_DOT, - STATE(2200), 1, - sym__method_declaration_exceptions, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [40122] = 4, - ACTIONS(1318), 1, + [41912] = 4, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4259), 1, + ACTIONS(4282), 1, anon_sym_DOT, - STATE(2079), 1, + STATE(3010), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [41927] = 4, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(2847), 1, + aux_sym_class_declaration_token13, + STATE(2204), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [40136] = 4, - ACTIONS(1318), 1, + sym_eol_comment, + [41942] = 4, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4261), 1, + ACTIONS(4284), 1, anon_sym_DOT, - STATE(2954), 1, + STATE(3024), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [40150] = 4, - ACTIONS(4263), 1, - aux_sym_class_declaration_token11, - ACTIONS(4265), 1, - aux_sym_class_declaration_token12, - ACTIONS(4267), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [40164] = 4, - ACTIONS(3693), 1, + [41957] = 4, + ACTIONS(3803), 1, sym_name, - ACTIONS(4269), 1, + ACTIONS(4286), 1, anon_sym_DOT, - STATE(1824), 1, + STATE(1909), 1, aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [40178] = 4, - ACTIONS(1318), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(4271), 1, - anon_sym_DOT, - STATE(2803), 1, - sym__method_declaration_exceptions, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [40192] = 4, - ACTIONS(1318), 1, + [41972] = 4, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4273), 1, + ACTIONS(4288), 1, anon_sym_DOT, - STATE(2893), 1, + STATE(2805), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [41987] = 4, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(4290), 1, + aux_sym_class_declaration_token13, + STATE(2155), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [40206] = 4, - ACTIONS(1318), 1, + sym_eol_comment, + [42002] = 4, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4275), 1, + ACTIONS(4292), 1, anon_sym_DOT, - STATE(2186), 1, + STATE(2245), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [40220] = 3, - ACTIONS(4279), 1, - aux_sym__data_object_typing_normal_token5, - ACTIONS(3), 2, sym_eol_comment, + [42017] = 4, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(1930), 1, + aux_sym_class_declaration_token13, + STATE(2368), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(4277), 2, - anon_sym_DOT, - anon_sym_COMMA, - [40232] = 4, - ACTIONS(4281), 1, + sym_eol_comment, + [42032] = 4, + ACTIONS(3157), 1, aux_sym_class_declaration_token11, - ACTIONS(4283), 1, + ACTIONS(3159), 1, aux_sym_class_declaration_token12, - ACTIONS(4285), 1, + ACTIONS(3161), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [42047] = 4, + ACTIONS(3979), 1, + sym_name, + ACTIONS(4294), 1, + aux_sym_chained_structure_declaration_token1, + STATE(1880), 1, + sym_variable, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [40246] = 4, - ACTIONS(1318), 1, + sym_eol_comment, + [42062] = 4, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4287), 1, + ACTIONS(4296), 1, anon_sym_DOT, - STATE(2820), 1, + STATE(3085), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [40260] = 4, - ACTIONS(3693), 1, + sym_eol_comment, + [42077] = 4, + ACTIONS(3803), 1, sym_name, - ACTIONS(4289), 1, + ACTIONS(4298), 1, anon_sym_DOT, - STATE(1824), 1, + STATE(1909), 1, aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [40274] = 4, - ACTIONS(4291), 1, - aux_sym_class_declaration_token11, - ACTIONS(4293), 1, - aux_sym_class_declaration_token12, - ACTIONS(4295), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [40288] = 4, - ACTIONS(1318), 1, + [42092] = 4, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4297), 1, + ACTIONS(4300), 1, anon_sym_DOT, - STATE(2181), 1, + STATE(2241), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [40302] = 4, - ACTIONS(1896), 1, + sym_eol_comment, + [42107] = 4, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(1954), 1, + ACTIONS(2432), 1, aux_sym_class_declaration_token13, - STATE(2999), 1, + STATE(2222), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [40316] = 4, - ACTIONS(1318), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(4299), 1, - anon_sym_DOT, - STATE(2822), 1, - sym__method_declaration_exceptions, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [40330] = 4, - ACTIONS(3693), 1, + [42122] = 4, + ACTIONS(3803), 1, sym_name, - ACTIONS(4301), 1, + ACTIONS(4302), 1, anon_sym_DOT, - STATE(1824), 1, + STATE(1909), 1, aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [40344] = 3, - ACTIONS(3200), 1, - aux_sym__data_object_typing_normal_token5, - ACTIONS(3), 2, sym_eol_comment, + [42137] = 4, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(4304), 1, + aux_sym_class_declaration_token13, + STATE(3011), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3196), 2, - anon_sym_DOT, - anon_sym_COMMA, - [40356] = 4, - ACTIONS(3693), 1, - sym_name, - ACTIONS(4303), 1, - anon_sym_DOT, - STATE(1824), 1, - aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [40370] = 4, - ACTIONS(1318), 1, + [42152] = 4, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4305), 1, + ACTIONS(4306), 1, anon_sym_DOT, - STATE(2827), 1, + STATE(3040), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [40384] = 2, - ACTIONS(3), 2, sym_eol_comment, + [42167] = 4, + ACTIONS(3803), 1, + sym_name, + ACTIONS(4308), 1, + anon_sym_DOT, + STATE(1909), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(4307), 3, + sym_eol_comment, + [42182] = 4, + ACTIONS(1585), 1, + anon_sym_COMMA, + ACTIONS(4310), 1, anon_sym_DOT, - aux_sym_for_all_entries_token1, - aux_sym__where_clause_token1, - [40394] = 4, - ACTIONS(1896), 1, + STATE(1902), 1, + aux_sym_chained_write_statement_repeat1, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + [42197] = 4, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2804), 1, + ACTIONS(2815), 1, aux_sym_class_declaration_token13, - STATE(2140), 1, + STATE(2169), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [40408] = 4, - ACTIONS(3854), 1, + sym_eol_comment, + [42212] = 4, + ACTIONS(1585), 1, anon_sym_COMMA, - ACTIONS(4309), 1, + ACTIONS(1631), 1, anon_sym_DOT, - STATE(1549), 1, - aux_sym_chained_interface_declaration_repeat1, - ACTIONS(3), 2, + STATE(1902), 1, + aux_sym_chained_write_statement_repeat1, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [42227] = 4, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(2899), 1, + aux_sym_class_declaration_token13, + STATE(3013), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [40422] = 4, - ACTIONS(1318), 1, + sym_eol_comment, + [42242] = 4, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4311), 1, + ACTIONS(4312), 1, anon_sym_DOT, - STATE(2173), 1, + STATE(2226), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [40436] = 4, - ACTIONS(3693), 1, - sym_name, - ACTIONS(4313), 1, - anon_sym_DOT, - STATE(1824), 1, - aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [40450] = 4, - ACTIONS(1318), 1, + [42257] = 4, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4315), 1, + ACTIONS(4314), 1, anon_sym_DOT, - STATE(2894), 1, + STATE(3026), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [42272] = 4, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(2851), 1, + aux_sym_class_declaration_token13, + STATE(2920), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [40464] = 4, - ACTIONS(1318), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(4317), 1, - anon_sym_DOT, - STATE(2657), 1, - sym__method_declaration_exceptions, - ACTIONS(3), 2, sym_eol_comment, + [42287] = 4, + ACTIONS(4111), 1, + anon_sym_COMMA, + ACTIONS(4316), 1, + anon_sym_DOT, + STATE(1894), 1, + aux_sym_chained_field_symbol_declaration_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [40478] = 4, - ACTIONS(1318), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(4319), 1, + sym_eol_comment, + [42302] = 4, + ACTIONS(3698), 1, + anon_sym_COMMA, + ACTIONS(4318), 1, anon_sym_DOT, - STATE(2085), 1, - sym__method_declaration_exceptions, - ACTIONS(3), 2, + STATE(1876), 1, + aux_sym_chained_variable_declaration_repeat1, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [42317] = 2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [40492] = 4, - ACTIONS(1318), 1, + sym_eol_comment, + ACTIONS(4320), 3, + anon_sym_DOT, + aux_sym_for_all_entries_token1, + aux_sym__where_clause_token1, + [42328] = 3, + ACTIONS(3146), 1, + aux_sym__data_object_typing_normal_token5, + ACTIONS(3142), 2, + anon_sym_DOT, + anon_sym_COMMA, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + [42341] = 4, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4321), 1, + ACTIONS(4322), 1, anon_sym_DOT, - STATE(2905), 1, + STATE(3048), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [40506] = 4, - ACTIONS(4323), 1, - aux_sym_class_declaration_token11, - ACTIONS(4325), 1, - aux_sym_class_declaration_token12, - ACTIONS(4327), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [40520] = 4, - ACTIONS(3693), 1, - sym_name, - ACTIONS(4329), 1, + [42356] = 4, + ACTIONS(4324), 1, anon_sym_DOT, - STATE(1824), 1, - aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, + ACTIONS(4326), 1, + anon_sym_COMMA, + STATE(1876), 1, + aux_sym_chained_variable_declaration_repeat1, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [42371] = 4, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(4329), 1, + aux_sym_class_declaration_token13, + STATE(2176), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [40534] = 4, - ACTIONS(1318), 1, + sym_eol_comment, + [42386] = 4, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, ACTIONS(4331), 1, anon_sym_DOT, - STATE(2837), 1, + STATE(3074), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [40548] = 4, - ACTIONS(3693), 1, - sym_name, + sym_eol_comment, + [42401] = 4, + ACTIONS(4111), 1, + anon_sym_COMMA, ACTIONS(4333), 1, anon_sym_DOT, - STATE(1824), 1, - aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, - sym_eol_comment, + STATE(1871), 1, + aux_sym_chained_field_symbol_declaration_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [40562] = 4, + sym_eol_comment, + [42416] = 4, + ACTIONS(3698), 1, + anon_sym_COMMA, ACTIONS(4335), 1, - aux_sym_class_declaration_token11, - ACTIONS(4337), 1, - aux_sym_class_declaration_token12, - ACTIONS(4339), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + STATE(1872), 1, + aux_sym_chained_variable_declaration_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [40576] = 4, - ACTIONS(3693), 1, - sym_name, - ACTIONS(4341), 1, - anon_sym_DOT, - STATE(1824), 1, - aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, sym_eol_comment, + [42431] = 4, + ACTIONS(1343), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(4337), 1, + anon_sym_DOT, + STATE(3033), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [40590] = 4, - ACTIONS(1896), 1, + sym_eol_comment, + [42446] = 4, + ACTIONS(1910), 1, aux_sym__create_addition_token3, - ACTIONS(2431), 1, + ACTIONS(2813), 1, aux_sym_class_declaration_token13, - STATE(2221), 1, + STATE(2183), 1, sym_private_section, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [40604] = 4, - ACTIONS(3161), 1, - aux_sym_class_declaration_token11, - ACTIONS(3163), 1, - aux_sym_class_declaration_token12, - ACTIONS(3165), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [40618] = 4, - ACTIONS(1318), 1, + [42461] = 4, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4343), 1, + ACTIONS(4339), 1, anon_sym_DOT, - STATE(2847), 1, + STATE(2217), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [40632] = 4, - ACTIONS(1318), 1, + sym_eol_comment, + [42476] = 4, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4345), 1, + ACTIONS(4341), 1, anon_sym_DOT, - STATE(2166), 1, + STATE(3091), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [42491] = 3, + ACTIONS(4345), 1, + aux_sym__data_object_typing_normal_token5, + ACTIONS(4343), 2, + anon_sym_DOT, + anon_sym_COMMA, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [40646] = 4, - ACTIONS(1318), 1, - aux_sym__method_declaration_exceptions_token1, + sym_eol_comment, + [42504] = 4, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(2062), 1, + aux_sym_class_declaration_token13, + STATE(3019), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + [42519] = 4, + ACTIONS(3993), 1, + aux_sym__logical_expression_token2, + ACTIONS(3995), 1, + aux_sym__logical_expression_token3, ACTIONS(4347), 1, anon_sym_DOT, - STATE(2845), 1, - sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [40660] = 4, - ACTIONS(3693), 1, + sym_eol_comment, + [42534] = 4, + ACTIONS(3803), 1, sym_name, ACTIONS(4349), 1, anon_sym_DOT, - STATE(1824), 1, + STATE(1909), 1, aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [40674] = 4, - ACTIONS(3693), 1, - sym_name, + sym_eol_comment, + [42549] = 4, + ACTIONS(1343), 1, + aux_sym__method_declaration_exceptions_token1, ACTIONS(4351), 1, anon_sym_DOT, - STATE(1824), 1, - aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, - sym_eol_comment, + STATE(3036), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [40688] = 4, - ACTIONS(1896), 1, - aux_sym__create_addition_token3, - ACTIONS(2812), 1, - aux_sym_class_declaration_token13, - STATE(2202), 1, - sym_private_section, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [40702] = 4, - ACTIONS(1318), 1, + [42564] = 4, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, ACTIONS(4353), 1, anon_sym_DOT, - STATE(2898), 1, + STATE(3065), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [40716] = 4, - ACTIONS(1318), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(4355), 1, - anon_sym_DOT, - STATE(2850), 1, - sym__method_declaration_exceptions, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [40730] = 4, - ACTIONS(3693), 1, + [42579] = 4, + ACTIONS(3803), 1, sym_name, - ACTIONS(4357), 1, + ACTIONS(4355), 1, anon_sym_DOT, - STATE(1824), 1, + STATE(1909), 1, aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [42594] = 4, + ACTIONS(1343), 1, + aux_sym__method_declaration_exceptions_token1, + ACTIONS(4357), 1, + anon_sym_DOT, + STATE(2069), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [40744] = 4, - ACTIONS(3693), 1, - sym_name, + sym_eol_comment, + [42609] = 4, + ACTIONS(1343), 1, + aux_sym__method_declaration_exceptions_token1, ACTIONS(4359), 1, anon_sym_DOT, - STATE(1824), 1, - aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, + STATE(3099), 1, + sym__method_declaration_exceptions, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [42624] = 4, + ACTIONS(4361), 1, + anon_sym_DOT, + ACTIONS(4363), 1, + anon_sym_COMMA, + STATE(1894), 1, + aux_sym_chained_field_symbol_declaration_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [40758] = 4, - ACTIONS(3693), 1, + sym_eol_comment, + [42639] = 4, + ACTIONS(3803), 1, sym_name, - ACTIONS(4361), 1, + ACTIONS(4366), 1, anon_sym_DOT, - STATE(1824), 1, + STATE(1909), 1, aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [42654] = 4, + ACTIONS(3704), 1, + sym_name, + STATE(1256), 1, + aux_sym_chained_structure_declaration_repeat1, + STATE(1973), 1, + sym_structure_component, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [40772] = 4, - ACTIONS(1318), 1, + sym_eol_comment, + [42669] = 4, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4363), 1, + ACTIONS(4368), 1, anon_sym_DOT, - STATE(2860), 1, + STATE(2266), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [40786] = 4, - ACTIONS(1318), 1, + sym_eol_comment, + [42684] = 4, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4365), 1, + ACTIONS(4370), 1, anon_sym_DOT, - STATE(2183), 1, + STATE(2355), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [42699] = 4, + ACTIONS(4372), 1, + aux_sym_class_declaration_token11, + ACTIONS(4374), 1, + aux_sym_class_declaration_token12, + ACTIONS(4376), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [40800] = 4, - ACTIONS(1318), 1, + sym_eol_comment, + [42714] = 4, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4367), 1, + ACTIONS(4378), 1, anon_sym_DOT, - STATE(2807), 1, + STATE(3067), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [40814] = 4, - ACTIONS(3693), 1, - sym_name, - ACTIONS(4369), 1, + sym_eol_comment, + [42729] = 4, + ACTIONS(1585), 1, + anon_sym_COMMA, + ACTIONS(4380), 1, anon_sym_DOT, - STATE(1824), 1, - aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, + STATE(1902), 1, + aux_sym_chained_write_statement_repeat1, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [42744] = 4, + ACTIONS(1776), 1, + anon_sym_DOT, + ACTIONS(4382), 1, + anon_sym_COMMA, + STATE(1902), 1, + aux_sym_chained_write_statement_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [40828] = 4, - ACTIONS(1318), 1, + sym_eol_comment, + [42759] = 4, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4371), 1, + ACTIONS(4385), 1, anon_sym_DOT, - STATE(2857), 1, + STATE(3115), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [40842] = 4, - ACTIONS(1318), 1, + sym_eol_comment, + [42774] = 4, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4373), 1, + ACTIONS(4387), 1, anon_sym_DOT, - STATE(2097), 1, + STATE(2208), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [40856] = 4, - ACTIONS(1318), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(4375), 1, + sym_eol_comment, + [42789] = 4, + ACTIONS(3803), 1, + sym_name, + ACTIONS(4389), 1, anon_sym_DOT, - STATE(2172), 1, - sym__method_declaration_exceptions, - ACTIONS(3), 2, + STATE(1909), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [42804] = 4, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(2070), 1, + aux_sym_class_declaration_token13, + STATE(2304), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [40870] = 4, - ACTIONS(1318), 1, + sym_eol_comment, + [42819] = 4, + ACTIONS(1343), 1, aux_sym__method_declaration_exceptions_token1, - ACTIONS(4377), 1, + ACTIONS(4391), 1, anon_sym_DOT, - STATE(2881), 1, + STATE(3148), 1, sym__method_declaration_exceptions, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + [42834] = 4, + ACTIONS(2705), 1, + aux_sym_class_declaration_token11, + ACTIONS(2707), 1, + aux_sym_class_declaration_token12, + ACTIONS(2709), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [42849] = 4, + ACTIONS(4393), 1, + sym_name, + ACTIONS(4396), 1, + anon_sym_DOT, + STATE(1909), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [40884] = 4, - ACTIONS(3693), 1, + sym_eol_comment, + [42864] = 4, + ACTIONS(3803), 1, sym_name, - ACTIONS(4379), 1, + ACTIONS(4398), 1, anon_sym_DOT, - STATE(1824), 1, + STATE(1909), 1, aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + [42879] = 4, + ACTIONS(1910), 1, + aux_sym__create_addition_token3, + ACTIONS(1966), 1, + aux_sym_class_declaration_token13, + STATE(2422), 1, + sym_private_section, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [42894] = 4, + ACTIONS(2829), 1, + aux_sym__method_declaration_raising_token2, + ACTIONS(4400), 1, + sym_name, + STATE(1070), 1, + aux_sym__method_declaration_raising_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [40898] = 4, - ACTIONS(1318), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(4381), 1, - anon_sym_DOT, - STATE(2160), 1, - sym__method_declaration_exceptions, - ACTIONS(3), 2, sym_eol_comment, + [42909] = 3, + ACTIONS(4402), 1, + sym_name, + STATE(1860), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [40912] = 4, - ACTIONS(1318), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(4383), 1, + sym_eol_comment, + [42921] = 3, + ACTIONS(4404), 1, + sym_name, + STATE(1840), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + [42933] = 2, + ACTIONS(4406), 2, + aux_sym_class_method_declaration_interface_token1, + aux_sym_class_method_declaration_interface_token2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + [42943] = 3, + ACTIONS(4408), 1, + sym_name, + STATE(1013), 1, + aux_sym_line_spec_repeat1, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + [42955] = 2, + ACTIONS(4410), 2, + aux_sym_class_method_declaration_interface_token1, + aux_sym_class_method_declaration_interface_token2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + [42965] = 2, + ACTIONS(4412), 2, anon_sym_DOT, - STATE(2873), 1, - sym__method_declaration_exceptions, - ACTIONS(3), 2, + aux_sym_line_spec_token1, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [42975] = 3, + ACTIONS(3107), 1, + aux_sym_generic_type_token2, + ACTIONS(4414), 1, + aux_sym__select_target_token1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [40926] = 4, - ACTIONS(1318), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(4385), 1, + sym_eol_comment, + [42987] = 2, + ACTIONS(4361), 2, anon_sym_DOT, - STATE(2158), 1, - sym__method_declaration_exceptions, - ACTIONS(3), 2, + anon_sym_COMMA, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [42997] = 2, + ACTIONS(4416), 2, + anon_sym_DOT, + anon_sym_COMMA, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [40940] = 4, - ACTIONS(1318), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(4387), 1, + sym_eol_comment, + [43007] = 2, + ACTIONS(4418), 2, anon_sym_DOT, - STATE(2118), 1, - sym__method_declaration_exceptions, - ACTIONS(3), 2, + anon_sym_COMMA, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [43017] = 3, + ACTIONS(4420), 1, + sym_name, + ACTIONS(4422), 1, + aux_sym__data_object_typing_normal_token3, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [40954] = 4, - ACTIONS(3693), 1, + sym_eol_comment, + [43029] = 3, + ACTIONS(4424), 1, sym_name, - ACTIONS(4389), 1, + ACTIONS(4426), 1, + aux_sym_complete_typing_token1, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + [43041] = 2, + ACTIONS(4428), 2, anon_sym_DOT, - STATE(1824), 1, - aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, + anon_sym_COMMA, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [43051] = 3, + ACTIONS(4430), 1, + sym_name, + ACTIONS(4432), 1, + aux_sym__data_object_typing_normal_token3, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [40968] = 4, - ACTIONS(1318), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(4391), 1, + sym_eol_comment, + [43063] = 3, + ACTIONS(4434), 1, anon_sym_DOT, - STATE(2280), 1, - sym__method_declaration_exceptions, - ACTIONS(3), 2, + ACTIONS(4436), 1, + aux_sym_complete_typing_token2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [43075] = 3, + ACTIONS(4438), 1, + sym_name, + STATE(1895), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [40982] = 4, - ACTIONS(1318), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(4393), 1, + sym_eol_comment, + [43087] = 3, + ACTIONS(4440), 1, anon_sym_DOT, - STATE(2878), 1, - sym__method_declaration_exceptions, - ACTIONS(3), 2, + ACTIONS(4442), 1, + aux_sym_if_statement_token1, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [43099] = 2, + ACTIONS(4444), 2, + anon_sym_DOT, + anon_sym_COMMA, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [40996] = 4, - ACTIONS(1318), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(4395), 1, + sym_eol_comment, + [43109] = 3, + ACTIONS(4446), 1, anon_sym_DOT, - STATE(2147), 1, - sym__method_declaration_exceptions, - ACTIONS(3), 2, + ACTIONS(4448), 1, + aux_sym__method_declaration_exporting_token1, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + [43121] = 3, + ACTIONS(4450), 1, + sym_name, + STATE(1600), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [43133] = 3, + ACTIONS(4452), 1, + sym_name, + ACTIONS(4454), 1, + aux_sym_complete_typing_token1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [41010] = 4, - ACTIONS(1318), 1, - aux_sym__method_declaration_exceptions_token1, - ACTIONS(4397), 1, + sym_eol_comment, + [43145] = 2, + ACTIONS(4324), 2, anon_sym_DOT, - STATE(2870), 1, - sym__method_declaration_exceptions, - ACTIONS(3), 2, + anon_sym_COMMA, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + [43155] = 3, + ACTIONS(4456), 1, + aux_sym_class_declaration_token3, + ACTIONS(4458), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [43167] = 3, + ACTIONS(2745), 1, + aux_sym__where_clause_token1, + STATE(2235), 1, + sym__where_clause, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [41024] = 2, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(4399), 3, + [43179] = 2, + ACTIONS(4460), 2, anon_sym_DOT, - aux_sym_for_all_entries_token1, - aux_sym__where_clause_token1, - [41034] = 3, - ACTIONS(4401), 1, - sym_name, - STATE(1623), 1, - aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, - sym_eol_comment, + aux_sym_line_spec_token1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [41045] = 3, - ACTIONS(4403), 1, + sym_eol_comment, + [43189] = 3, + ACTIONS(4462), 1, sym_name, - STATE(1821), 1, + STATE(1559), 1, aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [43201] = 3, + ACTIONS(4464), 1, + anon_sym_COMMA, + ACTIONS(4466), 1, + aux_sym__data_object_typing_normal_token5, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [41056] = 2, - ACTIONS(3), 2, sym_eol_comment, + [43213] = 2, + ACTIONS(4468), 2, + aux_sym_try_catch_statement_token2, + aux_sym_catch_statement_token1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(4405), 2, - anon_sym_DOT, - anon_sym_COMMA, - [41065] = 3, - ACTIONS(4407), 1, + sym_eol_comment, + [43223] = 3, + ACTIONS(4470), 1, sym_name, - STATE(1749), 1, + STATE(1698), 1, aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [43235] = 3, + ACTIONS(4472), 1, + anon_sym_DOT, + ACTIONS(4474), 1, + aux_sym__method_declaration_exporting_token1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [41076] = 2, - ACTIONS(3), 2, sym_eol_comment, + [43247] = 3, + ACTIONS(4476), 1, + sym_name, + STATE(1910), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(4409), 2, - anon_sym_DOT, - anon_sym_COMMA, - [41085] = 2, - ACTIONS(3), 2, sym_eol_comment, + [43259] = 3, + ACTIONS(4478), 1, + sym_name, + ACTIONS(4480), 1, + aux_sym_raise_exception_statement_token2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(4411), 2, - anon_sym_DOT, - anon_sym_COMMA, - [41094] = 2, - ACTIONS(3), 2, sym_eol_comment, + [43271] = 2, + ACTIONS(4482), 2, + sym_name, + sym_field_symbol_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(4413), 2, - anon_sym_DOT, - anon_sym_COMMA, - [41103] = 3, - ACTIONS(2742), 1, - aux_sym__where_clause_token1, - STATE(3001), 1, - sym__where_clause, - ACTIONS(3), 2, sym_eol_comment, + [43281] = 3, + ACTIONS(4484), 1, + sym_field_symbol_name, + STATE(1879), 1, + sym_field_symbol, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [41114] = 3, - ACTIONS(4415), 1, + sym_eol_comment, + [43293] = 3, + ACTIONS(4486), 1, sym_name, - STATE(1764), 1, + STATE(1651), 1, aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [43305] = 3, + ACTIONS(2745), 1, + aux_sym__where_clause_token1, + STATE(2395), 1, + sym__where_clause, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [41125] = 3, - ACTIONS(4417), 1, - sym_name, - STATE(1777), 1, - aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, sym_eol_comment, + [43317] = 3, + ACTIONS(4488), 1, + sym_name, + ACTIONS(4490), 1, + aux_sym_generic_typing_token1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [41136] = 3, - ACTIONS(4419), 1, + sym_eol_comment, + [43329] = 3, + ACTIONS(4492), 1, sym_name, - STATE(1790), 1, + STATE(1905), 1, aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [43341] = 3, + ACTIONS(2819), 1, + aux_sym_line_spec_token1, + STATE(2458), 1, + sym_line_spec, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [41147] = 3, - ACTIONS(4421), 1, + sym_eol_comment, + [43353] = 3, + ACTIONS(4494), 1, sym_name, - STATE(1780), 1, + STATE(1863), 1, aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [41158] = 3, - ACTIONS(4423), 1, + sym_eol_comment, + [43365] = 3, + ACTIONS(4496), 1, sym_name, - STATE(1795), 1, + STATE(1763), 1, aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [43377] = 2, + ACTIONS(4498), 2, + aux_sym_class_declaration_token13, + aux_sym_method_implementation_token1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [41169] = 3, - ACTIONS(4425), 1, + sym_eol_comment, + [43387] = 3, + ACTIONS(4500), 1, sym_name, - STATE(2062), 1, + STATE(1615), 1, sym_interface, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [43399] = 3, + ACTIONS(4502), 1, + anon_sym_DOT, + ACTIONS(4504), 1, + aux_sym__method_declaration_exporting_token1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [41180] = 2, - ACTIONS(3), 2, sym_eol_comment, + [43411] = 3, + ACTIONS(2745), 1, + aux_sym__where_clause_token1, + STATE(2477), 1, + sym__where_clause, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(4427), 2, - aux_sym_try_catch_statement_token2, - aux_sym_catch_statement_token1, - [41189] = 3, - ACTIONS(4429), 1, + sym_eol_comment, + [43423] = 3, + ACTIONS(4506), 1, sym_name, - STATE(1774), 1, + STATE(1760), 1, aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [41200] = 2, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(4431), 2, + [43435] = 3, + ACTIONS(4508), 1, anon_sym_DOT, + ACTIONS(4510), 1, + aux_sym_loop_statement_token3, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + [43447] = 3, + ACTIONS(2819), 1, aux_sym_line_spec_token1, - [41209] = 3, - ACTIONS(2742), 1, - aux_sym__where_clause_token1, - STATE(2234), 1, - sym__where_clause, - ACTIONS(3), 2, + STATE(2392), 1, + sym_line_spec, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [43459] = 3, + ACTIONS(4512), 1, + sym_name, + STATE(1623), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [41220] = 2, - ACTIONS(3), 2, sym_eol_comment, + [43471] = 3, + ACTIONS(4484), 1, + sym_field_symbol_name, + STATE(1920), 1, + sym_field_symbol, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(4433), 2, + sym_eol_comment, + [43483] = 2, + ACTIONS(4514), 2, anon_sym_DOT, anon_sym_COMMA, - [41229] = 3, - ACTIONS(4435), 1, - sym_name, - ACTIONS(4437), 1, - aux_sym_complete_typing_token1, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [43493] = 2, + ACTIONS(4516), 2, + anon_sym_DOT, + anon_sym_COMMA, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [41240] = 2, - ACTIONS(3), 2, sym_eol_comment, + [43503] = 3, + ACTIONS(4518), 1, + sym_name, + STATE(1934), 1, + sym_variable, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(4439), 2, + sym_eol_comment, + [43515] = 2, + ACTIONS(4520), 2, anon_sym_DOT, anon_sym_COMMA, - [41249] = 2, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(4441), 2, - aux_sym_class_method_declaration_interface_token1, - aux_sym_class_method_declaration_interface_token2, - [41258] = 3, - ACTIONS(4443), 1, - sym_name, - ACTIONS(4445), 1, - aux_sym_chained_structure_declaration_token2, - ACTIONS(3), 2, sym_eol_comment, + [43525] = 2, + ACTIONS(4522), 2, + anon_sym_DOT, + anon_sym_COMMA, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [41269] = 3, - ACTIONS(4447), 1, + sym_eol_comment, + [43535] = 3, + ACTIONS(4524), 1, sym_name, - STATE(1794), 1, + STATE(1888), 1, aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [43547] = 2, + ACTIONS(4526), 2, + anon_sym_DOT, + anon_sym_COMMA, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [41280] = 3, - ACTIONS(4449), 1, - sym_name, - STATE(1800), 1, - aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, sym_eol_comment, + [43557] = 3, + ACTIONS(2745), 1, + aux_sym__where_clause_token1, + STATE(2514), 1, + sym__where_clause, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [41291] = 2, - ACTIONS(3), 2, sym_eol_comment, + [43569] = 2, + ACTIONS(4528), 2, + anon_sym_RBRACK, + sym_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(4451), 2, - aux_sym_class_method_declaration_interface_token1, - aux_sym_class_method_declaration_interface_token2, - [41300] = 3, - ACTIONS(4453), 1, + sym_eol_comment, + [43579] = 3, + ACTIONS(4530), 1, sym_name, - STATE(1668), 1, + STATE(1631), 1, aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [41311] = 2, - ACTIONS(3), 2, sym_eol_comment, + [43591] = 3, + ACTIONS(4532), 1, + sym_name, + ACTIONS(4534), 1, + aux_sym_chained_structure_declaration_token2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(4455), 2, + sym_eol_comment, + [43603] = 2, + ACTIONS(4536), 2, anon_sym_DOT, anon_sym_COMMA, - [41320] = 3, - ACTIONS(4457), 1, - sym_name, - ACTIONS(4459), 1, - aux_sym__data_object_typing_normal_token3, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [41331] = 2, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(4461), 2, + [43613] = 3, + ACTIONS(4538), 1, + aux_sym_class_declaration_token3, + ACTIONS(4540), 1, anon_sym_DOT, - anon_sym_COMMA, - [41340] = 3, - ACTIONS(4463), 1, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + [43625] = 3, + ACTIONS(4542), 1, sym_name, - STATE(1770), 1, + STATE(1849), 1, aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [41351] = 3, - ACTIONS(4465), 1, - anon_sym_COMMA, - ACTIONS(4467), 1, - aux_sym__data_object_typing_normal_token5, - ACTIONS(3), 2, sym_eol_comment, + [43637] = 3, + ACTIONS(4544), 1, + sym_name, + STATE(1130), 1, + sym_parameter_binding, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [41362] = 2, - ACTIONS(3), 2, sym_eol_comment, + [43649] = 3, + ACTIONS(1214), 1, + anon_sym_EQ, + ACTIONS(4546), 1, + anon_sym_LPAREN2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(4469), 2, + sym_eol_comment, + [43661] = 2, + ACTIONS(4548), 2, anon_sym_DOT, anon_sym_COMMA, - [41371] = 3, - ACTIONS(4471), 1, - sym_name, - STATE(1891), 1, - aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [43671] = 3, + ACTIONS(4550), 1, + sym_name, + ACTIONS(4552), 1, + aux_sym_chained_structure_declaration_token2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [41382] = 2, - ACTIONS(3), 2, sym_eol_comment, + [43683] = 3, + ACTIONS(4554), 1, + sym_name, + ACTIONS(4556), 1, + aux_sym__data_object_typing_normal_token3, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(4235), 2, + sym_eol_comment, + [43695] = 2, + ACTIONS(4558), 2, anon_sym_DOT, anon_sym_COMMA, - [41391] = 2, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(4473), 2, - aux_sym_class_declaration_token13, - aux_sym_method_implementation_token1, - [41400] = 2, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(4475), 2, + [43705] = 2, + ACTIONS(4154), 2, anon_sym_DOT, anon_sym_COMMA, - [41409] = 3, - ACTIONS(3643), 1, - sym_name, - ACTIONS(3645), 1, - aux_sym_complete_typing_token1, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [43715] = 2, + ACTIONS(4150), 2, + anon_sym_DOT, + anon_sym_COMMA, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [41420] = 3, - ACTIONS(4477), 1, + sym_eol_comment, + [43725] = 3, + ACTIONS(4560), 1, sym_name, - STATE(1836), 1, + STATE(1662), 1, aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [41431] = 3, - ACTIONS(4425), 1, - sym_name, - STATE(1610), 1, - sym_interface, - ACTIONS(3), 2, sym_eol_comment, + [43737] = 2, + ACTIONS(4562), 2, + anon_sym_DOT, + anon_sym_COMMA, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [41442] = 2, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(4221), 2, + [43747] = 2, + ACTIONS(4564), 2, anon_sym_DOT, anon_sym_COMMA, - [41451] = 2, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [43757] = 3, + ACTIONS(4566), 1, + sym_name, + ACTIONS(4568), 1, + aux_sym__data_object_typing_normal_token3, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(4479), 2, + sym_eol_comment, + [43769] = 2, + ACTIONS(4134), 2, anon_sym_DOT, anon_sym_COMMA, - [41460] = 3, - ACTIONS(4481), 1, - sym_name, - STATE(1804), 1, - aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [43779] = 2, + ACTIONS(4570), 2, + anon_sym_DOT, + anon_sym_COMMA, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [41471] = 3, - ACTIONS(4483), 1, - sym_name, - STATE(1877), 1, - aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, sym_eol_comment, + [43789] = 2, + ACTIONS(4138), 2, + anon_sym_DOT, + anon_sym_COMMA, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [41482] = 3, - ACTIONS(4485), 1, - sym_name, - STATE(1010), 1, - aux_sym_line_spec_repeat1, - ACTIONS(3), 2, sym_eol_comment, + [43799] = 2, + ACTIONS(4117), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [41493] = 2, - ACTIONS(3), 2, sym_eol_comment, + [43809] = 3, + ACTIONS(4572), 1, + aux_sym_loop_statement_token3, + ACTIONS(4574), 1, + aux_sym_loop_statement_token4, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(4487), 2, - anon_sym_DOT, - aux_sym_line_spec_token1, - [41502] = 3, - ACTIONS(3339), 1, - aux_sym_generic_type_token2, - ACTIONS(4489), 1, - aux_sym__select_target_token1, - ACTIONS(3), 2, sym_eol_comment, + [43821] = 2, + ACTIONS(4576), 2, + anon_sym_DOT, + anon_sym_COMMA, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [41513] = 2, - ACTIONS(3), 2, sym_eol_comment, + [43831] = 3, + ACTIONS(4578), 1, + sym_name, + STATE(1891), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(4491), 2, + sym_eol_comment, + [43843] = 2, + ACTIONS(4580), 2, anon_sym_DOT, sym_name, - [41522] = 3, - ACTIONS(4493), 1, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + [43853] = 3, + ACTIONS(4582), 1, sym_name, - STATE(1716), 1, + STATE(1650), 1, aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [41533] = 2, - ACTIONS(3), 2, sym_eol_comment, + [43865] = 3, + ACTIONS(4584), 1, + sym_name, + STATE(1668), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(4168), 2, - anon_sym_DOT, - anon_sym_COMMA, - [41542] = 2, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(4495), 2, - anon_sym_DOT, - anon_sym_COMMA, - [41551] = 3, - ACTIONS(4497), 1, + [43877] = 3, + ACTIONS(4586), 1, sym_name, - STATE(1726), 1, + STATE(1679), 1, aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [41562] = 3, - ACTIONS(4499), 1, - sym_name, - ACTIONS(4501), 1, - aux_sym__data_object_typing_normal_token3, - ACTIONS(3), 2, sym_eol_comment, + [43889] = 3, + ACTIONS(4588), 1, + anon_sym_DOT, + ACTIONS(4590), 1, + aux_sym__method_declaration_exporting_token1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [41573] = 2, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - ACTIONS(4503), 2, - anon_sym_DOT, - anon_sym_COMMA, - [41582] = 3, - ACTIONS(4505), 1, + [43901] = 3, + ACTIONS(4592), 1, sym_name, - ACTIONS(4507), 1, - aux_sym__data_object_typing_normal_token3, - ACTIONS(3), 2, - sym_eol_comment, + STATE(1608), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [41593] = 3, - ACTIONS(4509), 1, - anon_sym_DOT, - ACTIONS(4511), 1, - aux_sym_complete_typing_token2, - ACTIONS(3), 2, sym_eol_comment, + [43913] = 3, + ACTIONS(4594), 1, + anon_sym_STAR, + STATE(2008), 1, + sym_select_list, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [41604] = 3, - ACTIONS(4513), 1, + sym_eol_comment, + [43925] = 3, + ACTIONS(4596), 1, anon_sym_DOT, - ACTIONS(4515), 1, + ACTIONS(4598), 1, aux_sym_if_statement_token1, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [43937] = 3, + ACTIONS(4600), 1, + anon_sym_DOT, + ACTIONS(4602), 1, + aux_sym_complete_typing_token2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [41615] = 3, - ACTIONS(4517), 1, + sym_eol_comment, + [43949] = 3, + ACTIONS(4604), 1, sym_name, - ACTIONS(4519), 1, - aux_sym_complete_typing_token1, - ACTIONS(3), 2, + ACTIONS(4606), 1, + aux_sym_generic_typing_token1, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [43961] = 3, + ACTIONS(4608), 1, + sym_name, + STATE(1747), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [41626] = 3, - ACTIONS(4521), 1, + sym_eol_comment, + [43973] = 3, + ACTIONS(4610), 1, sym_name, - STATE(1782), 1, + STATE(1771), 1, aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [43985] = 3, + ACTIONS(4612), 1, + aux_sym_class_declaration_token5, + ACTIONS(4614), 1, + aux_sym_select_statement_obsolete_token2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + [43997] = 2, + ACTIONS(4616), 2, + aux_sym_class_declaration_token5, + aux_sym_select_statement_obsolete_token2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [41637] = 3, - ACTIONS(4523), 1, - anon_sym_DOT, - ACTIONS(4525), 1, - aux_sym__method_declaration_exporting_token1, - ACTIONS(3), 2, sym_eol_comment, + [44007] = 3, + ACTIONS(4618), 1, + sym_name, + ACTIONS(4620), 1, + anon_sym_COLON, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [41648] = 3, - ACTIONS(4527), 1, + sym_eol_comment, + [44019] = 3, + ACTIONS(4622), 1, anon_sym_COLON, - ACTIONS(4529), 1, + ACTIONS(4624), 1, sym_field_symbol_name, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [44031] = 3, + ACTIONS(4626), 1, + aux_sym_class_declaration_token2, + ACTIONS(4628), 1, + aux_sym_class_implementation_token1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [41659] = 3, - ACTIONS(4531), 1, - sym_name, - STATE(1505), 1, - aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, sym_eol_comment, + [44043] = 3, + ACTIONS(4630), 1, + aux_sym_class_declaration_token3, + ACTIONS(4632), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [41670] = 3, - ACTIONS(4533), 1, - sym_name, - ACTIONS(4535), 1, - aux_sym_raise_exception_statement_token2, - ACTIONS(3), 2, sym_eol_comment, + [44055] = 3, + ACTIONS(4634), 1, + sym_name, + ACTIONS(4636), 1, + aux_sym_constructor_declaration_token1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [41681] = 3, - ACTIONS(4537), 1, + sym_eol_comment, + [44067] = 3, + ACTIONS(4638), 1, sym_name, - STATE(1813), 1, + STATE(1703), 1, aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + [44079] = 3, + ACTIONS(4640), 1, + sym_name, + ACTIONS(4642), 1, + aux_sym_class_constructor_declaration_token2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [44091] = 3, + ACTIONS(1214), 1, + anon_sym_EQ, + ACTIONS(4644), 1, + anon_sym_LPAREN2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [41692] = 2, - ACTIONS(3), 2, sym_eol_comment, + [44103] = 2, + ACTIONS(4646), 2, + aux_sym_try_catch_statement_token2, + aux_sym_catch_statement_token1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(4539), 2, - sym_name, + sym_eol_comment, + [44113] = 3, + ACTIONS(4484), 1, sym_field_symbol_name, - [41701] = 3, - ACTIONS(4541), 1, + STATE(1711), 1, + sym_field_symbol, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + [44125] = 3, + ACTIONS(4648), 1, sym_name, - STATE(1600), 1, + STATE(1821), 1, aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [44137] = 3, + ACTIONS(4650), 1, + aux_sym_class_declaration_token3, + ACTIONS(4652), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [41712] = 3, - ACTIONS(4543), 1, + sym_eol_comment, + [44149] = 3, + ACTIONS(4654), 1, aux_sym_class_declaration_token2, - ACTIONS(4545), 1, + ACTIONS(4656), 1, aux_sym_class_implementation_token1, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [41723] = 3, - ACTIONS(4547), 1, - aux_sym_class_declaration_token3, - ACTIONS(4549), 1, + sym_eol_comment, + [44161] = 2, + ACTIONS(4658), 2, anon_sym_DOT, - ACTIONS(3), 2, + anon_sym_COMMA, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [44171] = 2, + ACTIONS(4660), 2, + sym_name, + sym_field_symbol_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [41734] = 2, - ACTIONS(3), 2, sym_eol_comment, + [44181] = 3, + ACTIONS(4662), 1, + sym_name, + ACTIONS(4664), 1, + aux_sym_raise_exception_statement_token2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(4103), 2, + sym_eol_comment, + [44193] = 2, + ACTIONS(4666), 2, anon_sym_DOT, anon_sym_COMMA, - [41743] = 3, - ACTIONS(4551), 1, - sym_name, - ACTIONS(4553), 1, - aux_sym_constructor_declaration_token1, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + [44203] = 2, + ACTIONS(4668), 2, + aux_sym_class_declaration_token13, + aux_sym_method_implementation_token1, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [44213] = 3, + ACTIONS(4500), 1, + sym_name, + STATE(2048), 1, + sym_interface, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [41754] = 3, - ACTIONS(4555), 1, + sym_eol_comment, + [44225] = 3, + ACTIONS(4670), 1, sym_name, - STATE(1658), 1, + STATE(1857), 1, aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [44237] = 3, + ACTIONS(4672), 1, + sym_name, + ACTIONS(4674), 1, + aux_sym_generic_type_token2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [41765] = 3, - ACTIONS(4557), 1, + sym_eol_comment, + [44249] = 3, + ACTIONS(4676), 1, sym_name, - ACTIONS(4559), 1, - aux_sym_class_constructor_declaration_token2, - ACTIONS(3), 2, + STATE(1781), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [44261] = 3, + ACTIONS(4678), 1, + aux_sym_class_declaration_token5, + ACTIONS(4680), 1, + aux_sym_select_statement_obsolete_token2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [41776] = 3, - ACTIONS(4561), 1, + sym_eol_comment, + [44273] = 3, + ACTIONS(4682), 1, sym_name, - STATE(1828), 1, + STATE(1639), 1, aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [44285] = 3, + ACTIONS(4684), 1, + sym_name, + STATE(1636), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [41787] = 3, - ACTIONS(4563), 1, - anon_sym_COMMA, - ACTIONS(4565), 1, - aux_sym__data_object_typing_normal_token5, - ACTIONS(3), 2, sym_eol_comment, + [44297] = 3, + ACTIONS(4686), 1, + sym_name, + STATE(1626), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [41798] = 3, - ACTIONS(4567), 1, - aux_sym_class_declaration_token3, - ACTIONS(4569), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [44309] = 3, + ACTIONS(4688), 1, + sym_name, + STATE(1617), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [41809] = 3, - ACTIONS(4571), 1, - anon_sym_DOT, - ACTIONS(4573), 1, - aux_sym__method_declaration_exporting_token1, - ACTIONS(3), 2, sym_eol_comment, + [44321] = 3, + ACTIONS(4690), 1, + sym_name, + STATE(1612), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [41820] = 3, - ACTIONS(4575), 1, + sym_eol_comment, + [44333] = 3, + ACTIONS(4692), 1, sym_name, - ACTIONS(4577), 1, - aux_sym__data_object_typing_normal_token3, - ACTIONS(3), 2, + STATE(1611), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [44345] = 3, + ACTIONS(4694), 1, + sym_name, + STATE(1609), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [41831] = 3, - ACTIONS(4579), 1, + sym_eol_comment, + [44357] = 3, + ACTIONS(4696), 1, sym_name, - STATE(1743), 1, + STATE(1606), 1, aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + [44369] = 3, + ACTIONS(4698), 1, + anon_sym_COLON, + ACTIONS(4700), 1, + sym_field_symbol_name, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [44381] = 3, + ACTIONS(4702), 1, + sym_name, + STATE(1598), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [41842] = 2, - ACTIONS(3), 2, sym_eol_comment, + [44393] = 3, + ACTIONS(4704), 1, + sym_name, + STATE(1592), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(4033), 2, + sym_eol_comment, + [44405] = 2, + ACTIONS(3750), 2, anon_sym_DOT, anon_sym_COMMA, - [41851] = 3, - ACTIONS(4581), 1, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + [44415] = 3, + ACTIONS(4706), 1, sym_name, - STATE(1826), 1, + STATE(1591), 1, aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [44427] = 3, + ACTIONS(4708), 1, + sym_name, + STATE(1588), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [41862] = 3, - ACTIONS(4583), 1, + sym_eol_comment, + [44439] = 3, + ACTIONS(4710), 1, sym_name, - STATE(1843), 1, + STATE(1586), 1, aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [44451] = 2, + ACTIONS(3756), 2, + anon_sym_DOT, + anon_sym_COMMA, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [41873] = 3, - ACTIONS(4585), 1, + sym_eol_comment, + [44461] = 3, + ACTIONS(4712), 1, sym_name, - ACTIONS(4587), 1, - aux_sym_raise_exception_statement_token2, - ACTIONS(3), 2, + STATE(1582), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [44473] = 3, + ACTIONS(4714), 1, + sym_name, + ACTIONS(4716), 1, + anon_sym_COLON, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [41884] = 3, - ACTIONS(4589), 1, + sym_eol_comment, + [44485] = 3, + ACTIONS(4718), 1, sym_name, - STATE(1849), 1, + STATE(1579), 1, aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [41895] = 3, - ACTIONS(4591), 1, + sym_eol_comment, + [44497] = 3, + ACTIONS(4720), 1, sym_name, - ACTIONS(4593), 1, - aux_sym_chained_structure_declaration_token2, - ACTIONS(3), 2, + STATE(1578), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [44509] = 3, + ACTIONS(4722), 1, + sym_name, + STATE(1574), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [41906] = 2, - ACTIONS(3), 2, sym_eol_comment, + [44521] = 2, + ACTIONS(4724), 2, + anon_sym_DOT, + anon_sym_COMMA, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(4595), 2, + sym_eol_comment, + [44531] = 3, + ACTIONS(4726), 1, sym_name, - sym_field_symbol_name, - [41915] = 3, - ACTIONS(4597), 1, + STATE(1572), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + [44543] = 3, + ACTIONS(4728), 1, sym_name, - STATE(1676), 1, + STATE(1570), 1, aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [44555] = 3, + ACTIONS(4730), 1, + sym_name, + STATE(1569), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [41926] = 3, - ACTIONS(654), 1, - anon_sym_EQ, - ACTIONS(4599), 1, - anon_sym_LPAREN2, - ACTIONS(3), 2, sym_eol_comment, + [44567] = 3, + ACTIONS(4732), 1, + sym_name, + STATE(1567), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [41937] = 3, - ACTIONS(4601), 1, + sym_eol_comment, + [44579] = 3, + ACTIONS(4734), 1, sym_name, - STATE(1856), 1, + STATE(1566), 1, aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [44591] = 3, + ACTIONS(4736), 1, + sym_name, + STATE(1563), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [41948] = 3, - ACTIONS(4603), 1, + sym_eol_comment, + [44603] = 3, + ACTIONS(4738), 1, sym_name, - ACTIONS(4605), 1, - anon_sym_COLON, - ACTIONS(3), 2, + STATE(1562), 1, + aux_sym_class_declaration_repeat1, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [44615] = 3, + ACTIONS(3039), 1, + sym_name, + ACTIONS(3041), 1, + aux_sym_complete_typing_token1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [41959] = 3, - ACTIONS(4607), 1, - sym_field_symbol_name, - STATE(1772), 1, - sym_field_symbol, - ACTIONS(3), 2, sym_eol_comment, + [44627] = 2, + ACTIONS(4740), 2, + anon_sym_DOT, + anon_sym_COMMA, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [41970] = 3, - ACTIONS(4609), 1, + sym_eol_comment, + [44637] = 3, + ACTIONS(4742), 1, sym_name, - STATE(1684), 1, + STATE(1561), 1, aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [44649] = 3, + ACTIONS(4594), 1, + anon_sym_STAR, + STATE(2032), 1, + sym_select_list, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [41981] = 3, - ACTIONS(4611), 1, - aux_sym_class_declaration_token5, - ACTIONS(4613), 1, - aux_sym_select_statement_obsolete_token2, - ACTIONS(3), 2, sym_eol_comment, + [44661] = 3, + ACTIONS(4744), 1, + aux_sym_loop_statement_token3, + ACTIONS(4746), 1, + aux_sym_loop_statement_token4, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [41992] = 2, - ACTIONS(3), 2, sym_eol_comment, + [44673] = 3, + ACTIONS(4748), 1, + aux_sym_generic_typing_token1, + STATE(1517), 1, + sym_complete_typing, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(4615), 2, - anon_sym_DOT, + sym_eol_comment, + [44685] = 3, + ACTIONS(4750), 1, anon_sym_COMMA, - [42001] = 3, - ACTIONS(4617), 1, - sym_name, - ACTIONS(4619), 1, - aux_sym_generic_typing_token1, - ACTIONS(3), 2, + ACTIONS(4752), 1, + aux_sym__data_object_typing_normal_token5, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [44697] = 2, + ACTIONS(4754), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [42012] = 3, - ACTIONS(4621), 1, - sym_name, - STATE(1861), 1, - aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, sym_eol_comment, + [44706] = 2, + ACTIONS(4756), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [42023] = 2, - ACTIONS(3), 2, sym_eol_comment, + [44715] = 2, + ACTIONS(2881), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(4017), 2, + sym_eol_comment, + [44724] = 2, + ACTIONS(4758), 1, anon_sym_DOT, - anon_sym_COMMA, - [42032] = 3, - ACTIONS(4623), 1, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + [44733] = 2, + ACTIONS(3734), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + [44742] = 2, + ACTIONS(4760), 1, sym_name, - STATE(1863), 1, - aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [44751] = 2, + ACTIONS(4762), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [42043] = 2, - ACTIONS(3), 2, sym_eol_comment, + [44760] = 2, + ACTIONS(4764), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3996), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [42052] = 3, - ACTIONS(4625), 1, - sym_name, - STATE(1631), 1, - aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, sym_eol_comment, + [44769] = 2, + ACTIONS(4766), 1, + aux_sym__data_object_typing_normal_token4, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [42063] = 3, - ACTIONS(4627), 1, - sym_name, - STATE(1875), 1, - aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, sym_eol_comment, + [44778] = 2, + ACTIONS(4768), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [42074] = 3, - ACTIONS(4629), 1, - sym_name, - STATE(1699), 1, - aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, sym_eol_comment, + [44787] = 2, + ACTIONS(4770), 1, + aux_sym__data_object_typing_normal_token4, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [42085] = 3, - ACTIONS(4631), 1, - aux_sym_class_declaration_token3, - ACTIONS(4633), 1, + sym_eol_comment, + [44796] = 2, + ACTIONS(4772), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + [44805] = 2, + ACTIONS(4774), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, + sym_eol_comment, + [44814] = 2, + ACTIONS(4776), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [44823] = 2, + ACTIONS(4778), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [42096] = 3, - ACTIONS(4635), 1, - sym_name, - STATE(1819), 1, - aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, sym_eol_comment, + [44832] = 2, + ACTIONS(4780), 1, + aux_sym__data_object_typing_normal_token2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [42107] = 3, - ACTIONS(4637), 1, - aux_sym_class_declaration_token2, - ACTIONS(4639), 1, - aux_sym_class_implementation_token1, - ACTIONS(3), 2, sym_eol_comment, + [44841] = 2, + ACTIONS(4782), 1, + anon_sym_COMMA, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [42118] = 2, - ACTIONS(3), 2, sym_eol_comment, + [44850] = 2, + ACTIONS(4784), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(4641), 2, - aux_sym_try_catch_statement_token2, - aux_sym_catch_statement_token1, - [42127] = 3, - ACTIONS(4643), 1, - sym_name, - STATE(1869), 1, - aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, sym_eol_comment, + [44859] = 2, + ACTIONS(4786), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [42138] = 3, - ACTIONS(2848), 1, - aux_sym_line_spec_token1, - STATE(2457), 1, - sym_line_spec, - ACTIONS(3), 2, sym_eol_comment, + [44868] = 2, + ACTIONS(4788), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [42149] = 3, - ACTIONS(4645), 1, - anon_sym_COLON, - ACTIONS(4647), 1, - sym_field_symbol_name, - ACTIONS(3), 2, sym_eol_comment, + [44877] = 2, + ACTIONS(4790), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [42160] = 3, - ACTIONS(4649), 1, - sym_name, - STATE(1879), 1, - aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, sym_eol_comment, + [44886] = 2, + ACTIONS(4792), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [42171] = 3, - ACTIONS(4651), 1, - sym_name, - ACTIONS(4653), 1, - anon_sym_COLON, - ACTIONS(3), 2, sym_eol_comment, + [44895] = 2, + ACTIONS(2891), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [42182] = 3, - ACTIONS(4655), 1, - sym_name, - STATE(1742), 1, - aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, sym_eol_comment, + [44904] = 2, + ACTIONS(4794), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [42193] = 3, - ACTIONS(4657), 1, - sym_name, - STATE(1885), 1, - aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, sym_eol_comment, + [44913] = 2, + ACTIONS(3746), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [42204] = 3, - ACTIONS(4659), 1, - sym_name, - ACTIONS(4661), 1, - aux_sym_generic_type_token2, - ACTIONS(3), 2, sym_eol_comment, + [44922] = 2, + ACTIONS(4796), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [42215] = 2, - ACTIONS(3), 2, sym_eol_comment, + [44931] = 2, + ACTIONS(4798), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(4663), 2, - aux_sym_class_declaration_token5, - aux_sym_select_statement_obsolete_token2, - [42224] = 3, - ACTIONS(4665), 1, - sym_name, - STATE(1886), 1, - aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, sym_eol_comment, + [44940] = 2, + ACTIONS(4800), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [42235] = 3, - ACTIONS(4667), 1, + sym_eol_comment, + [44949] = 2, + ACTIONS(4802), 1, anon_sym_DOT, - ACTIONS(4669), 1, - aux_sym__method_declaration_exporting_token1, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [44958] = 2, + ACTIONS(4804), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [42246] = 3, - ACTIONS(4671), 1, - sym_name, - STATE(1557), 1, - aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, sym_eol_comment, + [44967] = 2, + ACTIONS(4806), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [42257] = 3, - ACTIONS(2742), 1, - aux_sym__where_clause_token1, - STATE(2475), 1, - sym__where_clause, - ACTIONS(3), 2, sym_eol_comment, + [44976] = 2, + ACTIONS(4808), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [42268] = 3, - ACTIONS(4673), 1, - sym_name, - STATE(1890), 1, - aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, sym_eol_comment, + [44985] = 2, + ACTIONS(4810), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [42279] = 3, - ACTIONS(4675), 1, + sym_eol_comment, + [44994] = 2, + ACTIONS(4812), 1, anon_sym_DOT, - ACTIONS(4677), 1, - aux_sym_loop_statement_token3, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [45003] = 2, + ACTIONS(4814), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [42290] = 3, - ACTIONS(2848), 1, - aux_sym_line_spec_token1, - STATE(2391), 1, - sym_line_spec, - ACTIONS(3), 2, sym_eol_comment, + [45012] = 2, + ACTIONS(4816), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [42301] = 3, - ACTIONS(4679), 1, - sym_name, - STATE(1708), 1, - aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, sym_eol_comment, + [45021] = 2, + ACTIONS(4818), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [42312] = 3, - ACTIONS(4607), 1, - sym_field_symbol_name, - STATE(1961), 1, - sym_field_symbol, - ACTIONS(3), 2, sym_eol_comment, + [45030] = 2, + ACTIONS(4820), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [42323] = 2, - ACTIONS(3), 2, sym_eol_comment, + [45039] = 2, + ACTIONS(4822), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(4681), 2, + sym_eol_comment, + [45048] = 2, + ACTIONS(4824), 1, anon_sym_DOT, - anon_sym_COMMA, - [42332] = 3, - ACTIONS(4607), 1, - sym_field_symbol_name, - STATE(1528), 1, - sym_field_symbol, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [45057] = 2, + ACTIONS(3738), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [42343] = 3, - ACTIONS(4683), 1, - sym_name, - STATE(1892), 1, - aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, sym_eol_comment, + [45066] = 2, + ACTIONS(4826), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [42354] = 3, - ACTIONS(4685), 1, - sym_name, - STATE(1980), 1, - sym_variable, - ACTIONS(3), 2, sym_eol_comment, + [45075] = 2, + ACTIONS(4828), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [42365] = 2, - ACTIONS(3), 2, sym_eol_comment, + [45084] = 2, + ACTIONS(4830), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3864), 2, + sym_eol_comment, + [45093] = 2, + ACTIONS(4832), 1, anon_sym_DOT, - anon_sym_COMMA, - [42374] = 2, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [45102] = 2, + ACTIONS(4834), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(4687), 2, + sym_eol_comment, + [45111] = 2, + ACTIONS(4836), 1, anon_sym_DOT, - anon_sym_COMMA, - [42383] = 3, - ACTIONS(4689), 1, - sym_name, - STATE(1896), 1, - aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [45120] = 2, + ACTIONS(2919), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [42394] = 3, - ACTIONS(2742), 1, - aux_sym__where_clause_token1, - STATE(2512), 1, - sym__where_clause, - ACTIONS(3), 2, sym_eol_comment, + [45129] = 2, + ACTIONS(4838), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [42405] = 3, - ACTIONS(4691), 1, - aux_sym_class_declaration_token5, - ACTIONS(4693), 1, - aux_sym_select_statement_obsolete_token2, - ACTIONS(3), 2, sym_eol_comment, + [45138] = 2, + ACTIONS(4840), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [42416] = 2, - ACTIONS(3), 2, sym_eol_comment, + [45147] = 2, + ACTIONS(4842), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(4695), 2, - anon_sym_RBRACK, - sym_name, - [42425] = 3, - ACTIONS(4697), 1, - sym_name, - STATE(1901), 1, - aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, sym_eol_comment, + [45156] = 2, + ACTIONS(4844), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [42436] = 3, - ACTIONS(4699), 1, - aux_sym_class_declaration_token3, - ACTIONS(4701), 1, + sym_eol_comment, + [45165] = 2, + ACTIONS(4846), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [45174] = 2, + ACTIONS(3710), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [42447] = 2, - ACTIONS(3), 2, sym_eol_comment, + [45183] = 2, + ACTIONS(4848), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(4703), 2, - aux_sym_class_declaration_token13, - aux_sym_method_implementation_token1, - [42456] = 3, - ACTIONS(4705), 1, - sym_name, - STATE(1719), 1, - aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, sym_eol_comment, + [45192] = 2, + ACTIONS(4850), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [42467] = 2, - ACTIONS(3), 2, sym_eol_comment, + [45201] = 2, + ACTIONS(4852), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(4707), 2, + sym_eol_comment, + [45210] = 2, + ACTIONS(4854), 1, anon_sym_DOT, - anon_sym_COMMA, - [42476] = 2, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [45219] = 2, + ACTIONS(4856), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(4709), 2, + sym_eol_comment, + [45228] = 2, + ACTIONS(4858), 1, anon_sym_DOT, - anon_sym_COMMA, - [42485] = 3, - ACTIONS(4711), 1, - sym_name, - STATE(1906), 1, - aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [45237] = 2, + ACTIONS(4860), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [42496] = 3, - ACTIONS(3301), 1, - sym_name, - STATE(1140), 1, - sym_parameter_binding, - ACTIONS(3), 2, sym_eol_comment, + [45246] = 2, + ACTIONS(2939), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [42507] = 4, - ACTIONS(3), 1, sym_eol_comment, - ACTIONS(5), 1, + [45255] = 2, + ACTIONS(4862), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(4713), 1, - anon_sym_STAR, - STATE(2003), 1, - sym_select_list, - [42520] = 3, - ACTIONS(4715), 1, - sym_name, - STATE(1781), 1, - aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, sym_eol_comment, + [45264] = 2, + ACTIONS(4864), 1, + aux_sym__data_object_typing_normal_token4, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [42531] = 3, - ACTIONS(4717), 1, - sym_name, - ACTIONS(4719), 1, - aux_sym_generic_typing_token1, - ACTIONS(3), 2, sym_eol_comment, + [45273] = 2, + ACTIONS(4866), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [42542] = 3, - ACTIONS(654), 1, - anon_sym_EQ, - ACTIONS(4721), 1, - anon_sym_LPAREN2, - ACTIONS(3), 2, sym_eol_comment, + [45282] = 2, + ACTIONS(4868), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [42553] = 3, - ACTIONS(4723), 1, + sym_eol_comment, + [45291] = 2, + ACTIONS(4870), 1, anon_sym_DOT, - ACTIONS(4725), 1, - aux_sym_complete_typing_token2, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [45300] = 2, + ACTIONS(4872), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [42564] = 3, - ACTIONS(4727), 1, - aux_sym_loop_statement_token3, - ACTIONS(4729), 1, - aux_sym_loop_statement_token4, - ACTIONS(3), 2, sym_eol_comment, + [45309] = 2, + ACTIONS(3763), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [42575] = 3, - ACTIONS(4731), 1, + sym_eol_comment, + [45318] = 2, + ACTIONS(4874), 1, anon_sym_DOT, - ACTIONS(4733), 1, - aux_sym_if_statement_token1, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [45327] = 2, + ACTIONS(4876), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [42586] = 2, - ACTIONS(3), 2, sym_eol_comment, + [45336] = 2, + ACTIONS(4878), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(4735), 2, + sym_eol_comment, + [45345] = 2, + ACTIONS(4880), 1, anon_sym_DOT, - anon_sym_COMMA, - [42595] = 3, - ACTIONS(4737), 1, - sym_name, - STATE(1757), 1, - aux_sym_class_declaration_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [45354] = 2, + ACTIONS(4882), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [42606] = 2, - ACTIONS(3), 2, sym_eol_comment, + [45363] = 2, + ACTIONS(4884), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(3763), 2, + sym_eol_comment, + [45372] = 2, + ACTIONS(4886), 1, anon_sym_DOT, - anon_sym_COMMA, - [42615] = 3, - ACTIONS(4739), 1, - aux_sym_loop_statement_token3, - ACTIONS(4741), 1, - aux_sym_loop_statement_token4, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [45381] = 2, + ACTIONS(3769), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [42626] = 2, - ACTIONS(3), 2, sym_eol_comment, + [45390] = 2, + ACTIONS(4888), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(4743), 2, + sym_eol_comment, + [45399] = 2, + ACTIONS(4890), 1, anon_sym_DOT, - anon_sym_COMMA, - [42635] = 3, - ACTIONS(4745), 1, - aux_sym_generic_typing_token1, - STATE(1830), 1, - sym_complete_typing, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [45408] = 2, + ACTIONS(4892), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [42646] = 3, - ACTIONS(4747), 1, + sym_eol_comment, + [45417] = 2, + ACTIONS(4894), 1, anon_sym_DOT, - ACTIONS(4749), 1, - aux_sym__method_declaration_exporting_token1, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [45426] = 2, + ACTIONS(4896), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [42657] = 4, - ACTIONS(3), 1, sym_eol_comment, - ACTIONS(5), 1, + [45435] = 2, + ACTIONS(4898), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - ACTIONS(4713), 1, - anon_sym_STAR, - STATE(2043), 1, - sym_select_list, - [42670] = 2, - ACTIONS(4751), 1, + sym_eol_comment, + [45444] = 2, + ACTIONS(4900), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [45453] = 2, + ACTIONS(4902), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [42678] = 2, - ACTIONS(4753), 1, + sym_eol_comment, + [45462] = 2, + ACTIONS(4904), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [45471] = 2, + ACTIONS(4906), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [42686] = 2, - ACTIONS(4755), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [45480] = 2, + ACTIONS(3779), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [42694] = 2, - ACTIONS(4757), 1, + sym_eol_comment, + [45489] = 2, + ACTIONS(4908), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [45498] = 2, + ACTIONS(4910), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [42702] = 2, - ACTIONS(4759), 1, - aux_sym__data_object_typing_normal_token4, - ACTIONS(3), 2, sym_eol_comment, + [45507] = 2, + ACTIONS(4912), 1, + sym_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [42710] = 2, - ACTIONS(4761), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [45516] = 2, + ACTIONS(4914), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [42718] = 2, - ACTIONS(4763), 1, + sym_eol_comment, + [45525] = 2, + ACTIONS(4916), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [45534] = 2, + ACTIONS(4918), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [42726] = 2, - ACTIONS(4765), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [45543] = 2, + ACTIONS(4920), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [42734] = 2, - ACTIONS(4767), 1, - aux_sym__data_object_typing_normal_token2, - ACTIONS(3), 2, sym_eol_comment, + [45552] = 2, + ACTIONS(4922), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [42742] = 2, - ACTIONS(4769), 1, - anon_sym_COMMA, - ACTIONS(3), 2, sym_eol_comment, + [45561] = 2, + ACTIONS(4924), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [42750] = 2, - ACTIONS(4771), 1, + sym_eol_comment, + [45570] = 2, + ACTIONS(4926), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [45579] = 2, + ACTIONS(4928), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [42758] = 2, - ACTIONS(4773), 1, + sym_eol_comment, + [45588] = 2, + ACTIONS(4930), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [45597] = 2, + ACTIONS(3791), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [42766] = 2, - ACTIONS(4775), 1, + sym_eol_comment, + [45606] = 2, + ACTIONS(4932), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [45615] = 2, + ACTIONS(4934), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [42774] = 2, - ACTIONS(4777), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [45624] = 2, + ACTIONS(4936), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [42782] = 2, - ACTIONS(2884), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [45633] = 2, + ACTIONS(4938), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [42790] = 2, - ACTIONS(4779), 1, + sym_eol_comment, + [45642] = 2, + ACTIONS(4940), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [45651] = 2, + ACTIONS(4942), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [42798] = 2, - ACTIONS(3697), 1, + sym_eol_comment, + [45660] = 2, + ACTIONS(4944), 1, aux_sym_class_declaration_token13, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [45669] = 2, + ACTIONS(4946), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [42806] = 2, - ACTIONS(4781), 1, + sym_eol_comment, + [45678] = 2, + ACTIONS(4948), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [45687] = 2, + ACTIONS(4950), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [42814] = 2, - ACTIONS(4783), 1, + sym_eol_comment, + [45696] = 2, + ACTIONS(4952), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [45705] = 2, + ACTIONS(4954), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [42822] = 2, - ACTIONS(3880), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [45714] = 2, + ACTIONS(4674), 1, + aux_sym_generic_type_token2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [42830] = 2, - ACTIONS(4785), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [45723] = 2, + ACTIONS(3799), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [42838] = 2, - ACTIONS(4787), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [45732] = 2, + ACTIONS(4956), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [42846] = 2, - ACTIONS(3806), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [45741] = 2, + ACTIONS(4958), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [42854] = 2, - ACTIONS(4789), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [45750] = 2, + ACTIONS(4960), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [42862] = 2, - ACTIONS(4791), 1, + sym_eol_comment, + [45759] = 2, + ACTIONS(4962), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [45768] = 2, + ACTIONS(4964), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [42870] = 2, - ACTIONS(4793), 1, + sym_eol_comment, + [45777] = 2, + ACTIONS(4966), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [45786] = 2, + ACTIONS(4968), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [42878] = 2, - ACTIONS(4795), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [45795] = 2, + ACTIONS(4970), 1, + aux_sym_for_all_entries_token4, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [42886] = 2, - ACTIONS(2876), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [45804] = 2, + ACTIONS(2865), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [42894] = 2, - ACTIONS(4797), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [45813] = 2, + ACTIONS(4972), 1, + sym_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [42902] = 2, - ACTIONS(4799), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [45822] = 2, + ACTIONS(4974), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [42910] = 2, - ACTIONS(4801), 1, - sym_name, - ACTIONS(3), 2, sym_eol_comment, + [45831] = 2, + ACTIONS(4976), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [42918] = 2, - ACTIONS(4803), 1, + sym_eol_comment, + [45840] = 2, + ACTIONS(4978), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [45849] = 2, + ACTIONS(4980), 1, + sym_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [42926] = 2, - ACTIONS(4805), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [45858] = 2, + ACTIONS(4982), 1, + sym_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [42934] = 2, - ACTIONS(4807), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [45867] = 2, + ACTIONS(4984), 1, + aux_sym_method_implementation_token2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [42942] = 2, - ACTIONS(4809), 1, + sym_eol_comment, + [45876] = 2, + ACTIONS(4986), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [45885] = 2, + ACTIONS(4988), 1, + anon_sym_COLON, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [42950] = 2, - ACTIONS(4811), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [45894] = 2, + ACTIONS(4990), 1, + aux_sym_class_declaration_token9, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [42958] = 2, - ACTIONS(3842), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [45903] = 2, + ACTIONS(2729), 1, + aux_sym_class_declaration_token12, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [42966] = 2, - ACTIONS(4813), 1, - aux_sym__data_object_typing_normal_token4, - ACTIONS(3), 2, sym_eol_comment, + [45912] = 2, + ACTIONS(4007), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [42974] = 2, - ACTIONS(4815), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [45921] = 2, + ACTIONS(4992), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [42982] = 2, - ACTIONS(4817), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [45930] = 2, + ACTIONS(4994), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [42990] = 2, - ACTIONS(3850), 1, + sym_eol_comment, + [45939] = 2, + ACTIONS(1960), 1, aux_sym_class_declaration_token13, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [45948] = 2, + ACTIONS(4996), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [42998] = 2, - ACTIONS(4819), 1, + sym_eol_comment, + [45957] = 2, + ACTIONS(4998), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [45966] = 2, + ACTIONS(5000), 1, + aux_sym_class_declaration_token10, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43006] = 2, - ACTIONS(4821), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [45975] = 2, + ACTIONS(5002), 1, + aux_sym_class_declaration_token10, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43014] = 2, - ACTIONS(4823), 1, + sym_eol_comment, + [45984] = 2, + ACTIONS(5004), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [45993] = 2, + ACTIONS(2158), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43022] = 2, - ACTIONS(4825), 1, - aux_sym__data_object_typing_normal_token4, - ACTIONS(3), 2, sym_eol_comment, + [46002] = 2, + ACTIONS(2674), 1, + aux_sym_class_declaration_token12, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43030] = 2, - ACTIONS(2912), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [46011] = 2, + ACTIONS(5006), 1, + aux_sym_class_declaration_token9, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43038] = 2, - ACTIONS(4827), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [46020] = 2, + ACTIONS(2961), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43046] = 2, - ACTIONS(4829), 1, + sym_eol_comment, + [46029] = 2, + ACTIONS(5008), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [46038] = 2, + ACTIONS(5010), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43054] = 2, - ACTIONS(4831), 1, + sym_eol_comment, + [46047] = 2, + ACTIONS(5012), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [46056] = 2, + ACTIONS(4081), 1, + aux_sym_class_declaration_token12, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43062] = 2, - ACTIONS(4833), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [46065] = 2, + ACTIONS(5014), 1, + aux_sym_class_declaration_token9, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43070] = 2, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [46074] = 2, + ACTIONS(1916), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43078] = 2, - ACTIONS(4837), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [46083] = 2, + ACTIONS(2196), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43086] = 2, - ACTIONS(4839), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [46092] = 2, + ACTIONS(5016), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43094] = 2, - ACTIONS(3878), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [46101] = 2, + ACTIONS(5018), 1, + aux_sym_class_declaration_token10, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43102] = 2, - ACTIONS(4841), 1, + sym_eol_comment, + [46110] = 2, + ACTIONS(5020), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [46119] = 2, + ACTIONS(5022), 1, + aux_sym_class_declaration_token10, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43110] = 2, - ACTIONS(4843), 1, + sym_eol_comment, + [46128] = 2, + ACTIONS(5024), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [46137] = 2, + ACTIONS(4033), 1, + aux_sym_class_declaration_token12, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43118] = 2, - ACTIONS(4845), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [46146] = 2, + ACTIONS(2028), 1, + aux_sym_class_declaration_token12, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43126] = 2, - ACTIONS(4847), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [46155] = 2, + ACTIONS(5026), 1, + aux_sym_class_declaration_token9, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43134] = 2, - ACTIONS(4849), 1, + sym_eol_comment, + [46164] = 2, + ACTIONS(5028), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [46173] = 2, + ACTIONS(5030), 1, + aux_sym_line_spec_token4, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43142] = 2, - ACTIONS(4851), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [46182] = 2, + ACTIONS(5032), 1, + sym_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43150] = 2, - ACTIONS(4853), 1, + sym_eol_comment, + [46191] = 2, + ACTIONS(5034), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [46200] = 2, + ACTIONS(5036), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43158] = 2, - ACTIONS(4855), 1, - sym_name, - ACTIONS(3), 2, sym_eol_comment, + [46209] = 2, + ACTIONS(5038), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43166] = 2, - ACTIONS(2932), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [46218] = 2, + ACTIONS(5040), 1, + aux_sym_for_all_entries_token3, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43174] = 2, - ACTIONS(4857), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [46227] = 2, + ACTIONS(5042), 1, + aux_sym__data_object_typing_normal_token2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43182] = 2, - ACTIONS(4859), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [46236] = 2, + ACTIONS(5044), 1, + aux_sym__data_object_typing_normal_token2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43190] = 2, - ACTIONS(4861), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [46245] = 2, + ACTIONS(5046), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43198] = 2, - ACTIONS(4863), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [46254] = 2, + ACTIONS(2851), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43206] = 2, - ACTIONS(4865), 1, + sym_eol_comment, + [46263] = 2, + ACTIONS(5048), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [46272] = 2, + ACTIONS(5050), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43214] = 2, - ACTIONS(4867), 1, + sym_eol_comment, + [46281] = 2, + ACTIONS(5052), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [46290] = 2, + ACTIONS(4128), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43222] = 2, - ACTIONS(4869), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [46299] = 2, + ACTIONS(5054), 1, + aux_sym_class_declaration_token9, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43230] = 2, - ACTIONS(4871), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [46308] = 2, + ACTIONS(5056), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43238] = 2, - ACTIONS(4873), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [46317] = 2, + ACTIONS(5058), 1, + aux_sym__data_object_typing_normal_token3, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43246] = 2, - ACTIONS(3920), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [46326] = 2, + ACTIONS(3346), 1, + aux_sym_class_declaration_token12, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43254] = 2, - ACTIONS(4875), 1, + sym_eol_comment, + [46335] = 2, + ACTIONS(5060), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [46344] = 2, + ACTIONS(5062), 1, + sym_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43262] = 2, - ACTIONS(4877), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [46353] = 2, + ACTIONS(5064), 1, + aux_sym_complete_typing_token2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43270] = 2, - ACTIONS(4879), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [46362] = 2, + ACTIONS(5066), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43278] = 2, - ACTIONS(2732), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [46371] = 2, + ACTIONS(5068), 1, + aux_sym_class_declaration_token10, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43286] = 2, - ACTIONS(3972), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [46380] = 2, + ACTIONS(5070), 1, + sym_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43294] = 2, - ACTIONS(4661), 1, - aux_sym_generic_type_token2, - ACTIONS(3), 2, sym_eol_comment, + [46389] = 2, + ACTIONS(4170), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43302] = 2, - ACTIONS(4881), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [46398] = 2, + ACTIONS(5072), 1, + aux_sym__data_object_typing_normal_token3, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43310] = 2, - ACTIONS(4883), 1, + sym_eol_comment, + [46407] = 2, + ACTIONS(5074), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [46416] = 2, + ACTIONS(5076), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43318] = 2, - ACTIONS(4885), 1, + sym_eol_comment, + [46425] = 2, + ACTIONS(5078), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [46434] = 2, + ACTIONS(5080), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43326] = 2, - ACTIONS(4887), 1, + sym_eol_comment, + [46443] = 2, + ACTIONS(5082), 1, aux_sym_class_declaration_token13, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [46452] = 2, + ACTIONS(5084), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43334] = 2, - ACTIONS(4889), 1, - aux_sym_for_all_entries_token4, - ACTIONS(3), 2, sym_eol_comment, + [46461] = 2, + ACTIONS(5086), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43342] = 2, - ACTIONS(4891), 1, + sym_eol_comment, + [46470] = 2, + ACTIONS(5088), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [46479] = 2, + ACTIONS(4194), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43350] = 2, - ACTIONS(4893), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [46488] = 2, + ACTIONS(5090), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43358] = 2, - ACTIONS(4895), 1, + sym_eol_comment, + [46497] = 2, + ACTIONS(5092), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [46506] = 2, + ACTIONS(2220), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43366] = 2, - ACTIONS(4897), 1, - aux_sym_class_declaration_token9, - ACTIONS(3), 2, sym_eol_comment, + [46515] = 2, + ACTIONS(5094), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43374] = 2, - ACTIONS(3992), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [46524] = 2, + ACTIONS(2841), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43382] = 2, - ACTIONS(2728), 1, - aux_sym_class_declaration_token12, - ACTIONS(3), 2, sym_eol_comment, + [46533] = 2, + ACTIONS(5096), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43390] = 2, - ACTIONS(4899), 1, + sym_eol_comment, + [46542] = 2, + ACTIONS(5098), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [46551] = 2, + ACTIONS(5100), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43398] = 2, - ACTIONS(4901), 1, - aux_sym_class_declaration_token10, - ACTIONS(3), 2, sym_eol_comment, + [46560] = 2, + ACTIONS(5102), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43406] = 2, - ACTIONS(4903), 1, + sym_eol_comment, + [46569] = 2, + ACTIONS(5104), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [46578] = 2, + ACTIONS(5106), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43414] = 2, - ACTIONS(4905), 1, + sym_eol_comment, + [46587] = 2, + ACTIONS(5108), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [46596] = 2, + ACTIONS(5110), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43422] = 2, - ACTIONS(4907), 1, + sym_eol_comment, + [46605] = 2, + ACTIONS(5112), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [46614] = 2, + ACTIONS(5114), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43430] = 2, - ACTIONS(4909), 1, + sym_eol_comment, + [46623] = 2, + ACTIONS(5116), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [46632] = 2, + ACTIONS(2835), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43438] = 2, - ACTIONS(4911), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [46641] = 2, + ACTIONS(5118), 1, + aux_sym__where_clause_token1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43446] = 2, - ACTIONS(4913), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [46650] = 2, + ACTIONS(5120), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43454] = 2, - ACTIONS(4915), 1, + sym_eol_comment, + [46659] = 2, + ACTIONS(5122), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [46668] = 2, + ACTIONS(5124), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43462] = 2, - ACTIONS(4917), 1, + sym_eol_comment, + [46677] = 2, + ACTIONS(5126), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [46686] = 2, + ACTIONS(5128), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43470] = 2, - ACTIONS(2160), 1, + sym_eol_comment, + [46695] = 2, + ACTIONS(5130), 1, aux_sym_class_declaration_token13, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [46704] = 2, + ACTIONS(5132), 1, + anon_sym_LPAREN, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43478] = 2, - ACTIONS(4919), 1, + sym_eol_comment, + [46713] = 2, + ACTIONS(5134), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [46722] = 2, + ACTIONS(5136), 1, + anon_sym_LPAREN, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43486] = 2, - ACTIONS(4921), 1, - aux_sym_class_declaration_token9, - ACTIONS(3), 2, sym_eol_comment, + [46731] = 2, + ACTIONS(5138), 1, + anon_sym_LPAREN, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43494] = 2, - ACTIONS(4923), 1, + sym_eol_comment, + [46740] = 2, + ACTIONS(2847), 1, aux_sym_class_declaration_token13, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [46749] = 2, + ACTIONS(5140), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43502] = 2, - ACTIONS(4925), 1, + sym_eol_comment, + [46758] = 2, + ACTIONS(5142), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [46767] = 2, + ACTIONS(4290), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43510] = 2, - ACTIONS(4927), 1, + sym_eol_comment, + [46776] = 2, + ACTIONS(5144), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [46785] = 2, + ACTIONS(2286), 1, + aux_sym_class_declaration_token12, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43518] = 2, - ACTIONS(4929), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [46794] = 2, + ACTIONS(5146), 1, + aux_sym_class_declaration_token9, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43526] = 2, - ACTIONS(4931), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [46803] = 2, + ACTIONS(5148), 1, + anon_sym_RPAREN, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43534] = 2, - ACTIONS(2198), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [46812] = 2, + ACTIONS(2432), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43542] = 2, - ACTIONS(4933), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [46821] = 2, + ACTIONS(5150), 1, + sym_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43550] = 2, - ACTIONS(4935), 1, - aux_sym_class_declaration_token10, - ACTIONS(3), 2, sym_eol_comment, + [46830] = 2, + ACTIONS(5152), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43558] = 2, - ACTIONS(4937), 1, + sym_eol_comment, + [46839] = 2, + ACTIONS(5154), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [46848] = 2, + ACTIONS(5156), 1, + aux_sym_class_declaration_token10, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43566] = 2, - ACTIONS(4939), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [46857] = 2, + ACTIONS(5158), 1, + anon_sym_RPAREN, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43574] = 2, - ACTIONS(4941), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [46866] = 2, + ACTIONS(2815), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43582] = 2, - ACTIONS(4027), 1, + sym_eol_comment, + [46875] = 2, + ACTIONS(3159), 1, aux_sym_class_declaration_token12, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43590] = 2, - ACTIONS(4943), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [46884] = 2, + ACTIONS(5160), 1, + aux_sym_class_declaration_token9, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43598] = 2, - ACTIONS(2838), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [43606] = 2, - ACTIONS(4945), 1, + [46893] = 2, + ACTIONS(5162), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43614] = 2, - ACTIONS(4947), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [43622] = 2, - ACTIONS(4949), 1, + [46902] = 2, + ACTIONS(5164), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43630] = 2, - ACTIONS(4951), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [46911] = 2, + ACTIONS(5166), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43638] = 2, - ACTIONS(4953), 1, - aux_sym_complete_typing_token2, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [43646] = 2, - ACTIONS(4955), 1, + [46920] = 2, + ACTIONS(5168), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43654] = 2, - ACTIONS(4957), 1, - sym_name, - ACTIONS(3), 2, sym_eol_comment, + [46929] = 2, + ACTIONS(5170), 1, + sym_numeric_literal, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43662] = 2, - ACTIONS(4959), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [46938] = 2, + ACTIONS(5172), 1, + sym_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43670] = 2, - ACTIONS(4073), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [46947] = 2, + ACTIONS(5174), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43678] = 2, - ACTIONS(4961), 1, - aux_sym_class_declaration_token9, - ACTIONS(3), 2, sym_eol_comment, + [46956] = 2, + ACTIONS(5176), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43686] = 2, - ACTIONS(4963), 1, - sym_name, - ACTIONS(3), 2, sym_eol_comment, + [46965] = 2, + ACTIONS(5178), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43694] = 2, - ACTIONS(4965), 1, - sym_name, - ACTIONS(3), 2, sym_eol_comment, + [46974] = 2, + ACTIONS(5180), 1, + anon_sym_EQ, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43702] = 2, - ACTIONS(4967), 1, - aux_sym_method_implementation_token2, - ACTIONS(3), 2, sym_eol_comment, + [46983] = 2, + ACTIONS(5182), 1, + aux_sym_class_declaration_token5, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43710] = 2, - ACTIONS(4969), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [46992] = 2, + ACTIONS(5184), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43718] = 2, - ACTIONS(4971), 1, - anon_sym_COLON, - ACTIONS(3), 2, sym_eol_comment, + [47001] = 2, + ACTIONS(5186), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43726] = 2, - ACTIONS(4973), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [47010] = 2, + ACTIONS(5188), 1, + aux_sym_for_all_entries_token2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43734] = 2, - ACTIONS(3077), 1, - aux_sym_class_declaration_token12, - ACTIONS(3), 2, sym_eol_comment, + [47019] = 2, + ACTIONS(5190), 1, + aux_sym__select_target_token2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43742] = 2, - ACTIONS(4099), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [47028] = 2, + ACTIONS(5192), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43750] = 2, - ACTIONS(4097), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [47037] = 2, + ACTIONS(5194), 1, + aux_sym__select_target_token2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43758] = 2, - ACTIONS(4975), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [47046] = 2, + ACTIONS(5196), 1, + sym_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43766] = 2, - ACTIONS(1958), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [47055] = 2, + ACTIONS(5198), 1, + sym_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43774] = 2, - ACTIONS(4977), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [43782] = 2, - ACTIONS(4979), 1, + [47064] = 2, + ACTIONS(5200), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43790] = 2, - ACTIONS(4981), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [47073] = 2, + ACTIONS(5202), 1, + aux_sym__data_object_typing_normal_token4, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43798] = 2, - ACTIONS(4983), 1, - aux_sym_class_declaration_token10, - ACTIONS(3), 2, sym_eol_comment, + [47082] = 2, + ACTIONS(5204), 1, + sym_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43806] = 2, - ACTIONS(4985), 1, - aux_sym_class_declaration_token10, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [43814] = 2, - ACTIONS(4987), 1, + [47091] = 2, + ACTIONS(4329), 1, aux_sym_class_declaration_token13, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43822] = 2, - ACTIONS(4989), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [47100] = 2, + ACTIONS(5206), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43830] = 2, - ACTIONS(2665), 1, - aux_sym_class_declaration_token12, - ACTIONS(3), 2, sym_eol_comment, + [47109] = 2, + ACTIONS(2813), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43838] = 2, - ACTIONS(4991), 1, - aux_sym_class_declaration_token9, - ACTIONS(3), 2, sym_eol_comment, + [47118] = 2, + ACTIONS(5208), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43846] = 2, - ACTIONS(2956), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [47127] = 2, + ACTIONS(5210), 1, + aux_sym__data_object_typing_normal_token4, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43854] = 2, - ACTIONS(4110), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [43862] = 2, - ACTIONS(4993), 1, + [47136] = 2, + ACTIONS(5212), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43870] = 2, - ACTIONS(4995), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [47145] = 2, + ACTIONS(5214), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43878] = 2, - ACTIONS(4144), 1, - aux_sym_class_declaration_token12, - ACTIONS(3), 2, sym_eol_comment, + [47154] = 2, + ACTIONS(5216), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43886] = 2, - ACTIONS(4997), 1, - aux_sym_class_declaration_token9, - ACTIONS(3), 2, sym_eol_comment, + [47163] = 2, + ACTIONS(5218), 1, + aux_sym_complete_typing_token2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43894] = 2, - ACTIONS(1986), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [43902] = 2, - ACTIONS(4999), 1, + [47172] = 2, + ACTIONS(5220), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43910] = 2, - ACTIONS(5001), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [47181] = 2, + ACTIONS(5222), 1, + anon_sym_COMMA, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43918] = 2, - ACTIONS(2832), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [43926] = 2, - ACTIONS(5003), 1, + [47190] = 2, + ACTIONS(5224), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43934] = 2, - ACTIONS(5005), 1, - aux_sym_class_declaration_token10, - ACTIONS(3), 2, sym_eol_comment, + [47199] = 2, + ACTIONS(5226), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43942] = 2, - ACTIONS(2222), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [43950] = 2, - ACTIONS(5007), 1, + [47208] = 2, + ACTIONS(5228), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43958] = 2, - ACTIONS(2014), 1, - aux_sym_class_declaration_token12, - ACTIONS(3), 2, sym_eol_comment, + [47217] = 2, + ACTIONS(5230), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43966] = 2, - ACTIONS(5009), 1, - aux_sym_class_declaration_token9, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [43974] = 2, - ACTIONS(5011), 1, + [47226] = 2, + ACTIONS(5232), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43982] = 2, - ACTIONS(5013), 1, - aux_sym_line_spec_token4, - ACTIONS(3), 2, sym_eol_comment, + [47235] = 2, + ACTIONS(5234), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43990] = 2, - ACTIONS(5015), 1, - sym_name, - ACTIONS(3), 2, sym_eol_comment, + [47244] = 2, + ACTIONS(1874), 1, + anon_sym_RPAREN, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [43998] = 2, - ACTIONS(5017), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [47253] = 2, + ACTIONS(5236), 1, + aux_sym_method_parameters_token1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [44006] = 2, - ACTIONS(5019), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [47262] = 2, + ACTIONS(5238), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [44014] = 2, - ACTIONS(2826), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [47271] = 2, + ACTIONS(5240), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [44022] = 2, - ACTIONS(5021), 1, - aux_sym_for_all_entries_token3, - ACTIONS(3), 2, sym_eol_comment, + [47280] = 2, + ACTIONS(5242), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [44030] = 2, - ACTIONS(5023), 1, - aux_sym__data_object_typing_normal_token2, - ACTIONS(3), 2, sym_eol_comment, + [47289] = 2, + ACTIONS(5244), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [44038] = 2, - ACTIONS(5025), 1, - aux_sym__data_object_typing_normal_token2, - ACTIONS(3), 2, sym_eol_comment, + [47298] = 2, + ACTIONS(5246), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [44046] = 2, - ACTIONS(2808), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [44054] = 2, - ACTIONS(5027), 1, + [47307] = 2, + ACTIONS(5248), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [44062] = 2, - ACTIONS(5029), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [47316] = 2, + ACTIONS(5250), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [44070] = 2, - ACTIONS(5031), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [44078] = 2, - ACTIONS(5033), 1, + [47325] = 2, + ACTIONS(5252), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [44086] = 2, - ACTIONS(5035), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [44094] = 2, - ACTIONS(5037), 1, + [47334] = 2, + ACTIONS(5254), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [44102] = 2, - ACTIONS(4231), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [47343] = 2, + ACTIONS(5256), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [44110] = 2, - ACTIONS(5039), 1, - aux_sym__data_object_typing_normal_token3, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [44118] = 2, - ACTIONS(5041), 1, + [47352] = 2, + ACTIONS(5258), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [44126] = 2, - ACTIONS(5043), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [44134] = 2, - ACTIONS(5045), 1, + [47361] = 2, + ACTIONS(5260), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [44142] = 2, - ACTIONS(5047), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, sym_eol_comment, + [47370] = 2, + ACTIONS(5262), 1, + anon_sym_RPAREN, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [44150] = 2, - ACTIONS(4227), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [47379] = 2, + ACTIONS(5264), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [44158] = 2, - ACTIONS(5049), 1, - sym_name, - ACTIONS(3), 2, sym_eol_comment, + [47388] = 2, + ACTIONS(2070), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [44166] = 2, - ACTIONS(5051), 1, - sym_name, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [44174] = 2, - ACTIONS(5053), 1, + [47397] = 2, + ACTIONS(5266), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [44182] = 2, - ACTIONS(5055), 1, - aux_sym__data_object_typing_normal_token3, - ACTIONS(3), 2, sym_eol_comment, + [47406] = 2, + ACTIONS(5268), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [44190] = 2, - ACTIONS(5057), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, sym_eol_comment, + [47415] = 2, + ACTIONS(5270), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [44198] = 2, - ACTIONS(5059), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [47424] = 2, + ACTIONS(5272), 1, + aux_sym_class_declaration_token10, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [44206] = 2, - ACTIONS(5061), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [47433] = 2, + ACTIONS(1966), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [44214] = 2, - ACTIONS(5063), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [47442] = 2, + ACTIONS(5274), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [44222] = 2, - ACTIONS(4247), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [47451] = 2, + ACTIONS(2707), 1, + aux_sym_class_declaration_token12, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [44230] = 2, - ACTIONS(5065), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [47460] = 2, + ACTIONS(5276), 1, + aux_sym_class_declaration_token9, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [44238] = 2, - ACTIONS(2804), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [47469] = 2, + ACTIONS(5278), 1, + sym_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [44246] = 2, - ACTIONS(5067), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [47478] = 2, + ACTIONS(1876), 1, + anon_sym_RPAREN, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [44254] = 2, - ACTIONS(5069), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [44262] = 2, - ACTIONS(5071), 1, + [47487] = 2, + ACTIONS(5280), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [44270] = 2, - ACTIONS(5073), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [44278] = 2, - ACTIONS(5075), 1, + [47496] = 2, + ACTIONS(5282), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [44286] = 2, - ACTIONS(5077), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [44294] = 2, - ACTIONS(5079), 1, + [47505] = 2, + ACTIONS(5284), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [44302] = 2, - ACTIONS(5081), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [47514] = 2, + ACTIONS(5286), 1, + aux_sym_class_declaration_token9, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [44310] = 2, - ACTIONS(5083), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [44318] = 2, - ACTIONS(5085), 1, + [47523] = 2, + ACTIONS(5288), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [44326] = 2, - ACTIONS(5087), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [44334] = 2, - ACTIONS(5089), 1, + [47532] = 2, + ACTIONS(5290), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [44342] = 2, - ACTIONS(5091), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [44350] = 2, - ACTIONS(5093), 1, + [47541] = 2, + ACTIONS(5292), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [44358] = 2, - ACTIONS(5095), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [47550] = 2, + ACTIONS(5294), 1, + anon_sym_EQ, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [44366] = 2, - ACTIONS(5097), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [47559] = 2, + ACTIONS(5296), 1, + anon_sym_EQ, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [44374] = 2, - ACTIONS(5099), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [44382] = 2, - ACTIONS(5101), 1, + [47568] = 2, + ACTIONS(5298), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [44390] = 2, - ACTIONS(5103), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [44398] = 2, - ACTIONS(5105), 1, + [47577] = 2, + ACTIONS(5300), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [44406] = 2, - ACTIONS(5107), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [44414] = 2, - ACTIONS(5109), 1, + [47586] = 2, + ACTIONS(5302), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [44422] = 2, - ACTIONS(5111), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [47595] = 2, + ACTIONS(5304), 1, + sym_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [44430] = 2, - ACTIONS(5113), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [44438] = 2, - ACTIONS(5115), 1, + [47604] = 2, + ACTIONS(5306), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [44446] = 2, - ACTIONS(5117), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [47613] = 2, + ACTIONS(5308), 1, + aux_sym__select_target_token2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [44454] = 2, - ACTIONS(5119), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [44462] = 2, - ACTIONS(5121), 1, + [47622] = 2, + ACTIONS(5310), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [44470] = 2, - ACTIONS(5123), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, sym_eol_comment, + [47631] = 2, + ACTIONS(5312), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [44478] = 2, - ACTIONS(5125), 1, - anon_sym_LPAREN, - ACTIONS(3), 2, sym_eol_comment, + [47640] = 2, + ACTIONS(5314), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [44486] = 2, - ACTIONS(2812), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [47649] = 2, + ACTIONS(4069), 1, + aux_sym_class_declaration_token12, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [44494] = 2, - ACTIONS(5127), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [44502] = 2, - ACTIONS(5129), 1, + [47658] = 2, + ACTIONS(5316), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [44510] = 2, - ACTIONS(5131), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [44518] = 2, - ACTIONS(5133), 1, + [47667] = 2, + ACTIONS(5318), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [44526] = 2, - ACTIONS(2286), 1, - aux_sym_class_declaration_token12, - ACTIONS(3), 2, sym_eol_comment, + [47676] = 2, + ACTIONS(5320), 1, + sym_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [44534] = 2, - ACTIONS(5135), 1, - aux_sym_class_declaration_token9, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [44542] = 2, - ACTIONS(5137), 1, + [47685] = 2, + ACTIONS(5322), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [44550] = 2, - ACTIONS(2431), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [44558] = 2, - ACTIONS(5139), 1, + [47694] = 2, + ACTIONS(5324), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [44566] = 2, - ACTIONS(5141), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [44574] = 2, - ACTIONS(5143), 1, + [47703] = 2, + ACTIONS(5326), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [44582] = 2, - ACTIONS(5145), 1, - aux_sym_class_declaration_token10, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [44590] = 2, - ACTIONS(5147), 1, + [47712] = 2, + ACTIONS(5328), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [44598] = 2, - ACTIONS(5149), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [47721] = 2, + ACTIONS(5330), 1, + aux_sym__data_object_typing_normal_token2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [44606] = 2, - ACTIONS(3163), 1, - aux_sym_class_declaration_token12, - ACTIONS(3), 2, sym_eol_comment, + [47730] = 2, + ACTIONS(5332), 1, + sym_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [44614] = 2, - ACTIONS(5151), 1, - aux_sym_class_declaration_token9, - ACTIONS(3), 2, sym_eol_comment, + [47739] = 2, + ACTIONS(5334), 1, + sym_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [44622] = 2, - ACTIONS(5153), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [44630] = 2, - ACTIONS(5155), 1, + [47748] = 2, + ACTIONS(5336), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [44638] = 2, - ACTIONS(5157), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [44646] = 2, - ACTIONS(5159), 1, + [47757] = 2, + ACTIONS(5338), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [44654] = 2, - ACTIONS(5161), 1, - sym_numeric_literal, - ACTIONS(3), 2, sym_eol_comment, + [47766] = 2, + ACTIONS(5340), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [44662] = 2, - ACTIONS(5163), 1, - sym_name, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [44670] = 2, - ACTIONS(5165), 1, + [47775] = 2, + ACTIONS(5342), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [44678] = 2, - ACTIONS(5167), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [44686] = 2, - ACTIONS(5169), 1, + [47784] = 2, + ACTIONS(5344), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [44694] = 2, - ACTIONS(5171), 1, - anon_sym_EQ, - ACTIONS(3), 2, sym_eol_comment, + [47793] = 2, + ACTIONS(5346), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [44702] = 2, - ACTIONS(5173), 1, - aux_sym_class_declaration_token5, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [44710] = 2, - ACTIONS(5175), 1, + [47802] = 2, + ACTIONS(5348), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [44718] = 2, - ACTIONS(5177), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [47811] = 2, + ACTIONS(5350), 1, + aux_sym__data_object_typing_normal_token2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [44726] = 2, - ACTIONS(5179), 1, - aux_sym_for_all_entries_token2, - ACTIONS(3), 2, sym_eol_comment, + [47820] = 2, + ACTIONS(5352), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [44734] = 2, - ACTIONS(5181), 1, - aux_sym__select_target_token2, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [44742] = 2, - ACTIONS(5183), 1, + [47829] = 2, + ACTIONS(5354), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [44750] = 2, - ACTIONS(5185), 1, - aux_sym__select_target_token2, - ACTIONS(3), 2, sym_eol_comment, + [47838] = 2, + ACTIONS(5356), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [44758] = 2, - ACTIONS(5187), 1, - sym_name, - ACTIONS(3), 2, sym_eol_comment, + [47847] = 2, + ACTIONS(5358), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [44766] = 2, - ACTIONS(5189), 1, - sym_name, - ACTIONS(3), 2, sym_eol_comment, + [47856] = 2, + ACTIONS(5360), 1, + sym_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [44774] = 2, - ACTIONS(5191), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [47865] = 2, + ACTIONS(5362), 1, + sym_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [44782] = 2, - ACTIONS(5193), 1, - aux_sym__data_object_typing_normal_token4, - ACTIONS(3), 2, sym_eol_comment, + [47874] = 2, + ACTIONS(2062), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [44790] = 2, - ACTIONS(5195), 1, - sym_name, - ACTIONS(3), 2, sym_eol_comment, + [47883] = 2, + ACTIONS(5364), 1, + aux_sym_class_declaration_token10, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [44798] = 2, - ACTIONS(5197), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [44806] = 2, - ACTIONS(5199), 1, + [47892] = 2, + ACTIONS(5366), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [44814] = 2, - ACTIONS(5201), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [44822] = 2, - ACTIONS(5203), 1, + [47901] = 2, + ACTIONS(5368), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [44830] = 2, - ACTIONS(5205), 1, - aux_sym__data_object_typing_normal_token4, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [44838] = 2, - ACTIONS(5207), 1, + [47910] = 2, + ACTIONS(5370), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [44846] = 2, - ACTIONS(5209), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [47919] = 2, + ACTIONS(5372), 1, + sym_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [44854] = 2, - ACTIONS(5211), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [47928] = 2, + ACTIONS(5374), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [44862] = 2, - ACTIONS(5213), 1, - aux_sym_complete_typing_token2, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [44870] = 2, - ACTIONS(5215), 1, + [47937] = 2, + ACTIONS(5376), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [44878] = 2, - ACTIONS(5217), 1, - anon_sym_COMMA, - ACTIONS(3), 2, sym_eol_comment, + [47946] = 2, + ACTIONS(5378), 1, + sym_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [44886] = 2, - ACTIONS(5219), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [47955] = 2, + ACTIONS(4374), 1, + aux_sym_class_declaration_token12, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [44894] = 2, - ACTIONS(5221), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [44902] = 2, - ACTIONS(5223), 1, + [47964] = 2, + ACTIONS(5380), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [44910] = 2, - ACTIONS(5225), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [47973] = 2, + ACTIONS(5382), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [44918] = 2, - ACTIONS(2780), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [44926] = 2, - ACTIONS(5227), 1, + [47982] = 2, + ACTIONS(5384), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [44934] = 2, - ACTIONS(5229), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [47991] = 2, + ACTIONS(5386), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [44942] = 2, - ACTIONS(5231), 1, - aux_sym_method_parameters_token1, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [44950] = 2, - ACTIONS(5233), 1, + [48000] = 2, + ACTIONS(5388), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [44958] = 2, - ACTIONS(5235), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [48009] = 2, + ACTIONS(5390), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [44966] = 2, - ACTIONS(5237), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [44974] = 2, - ACTIONS(5239), 1, + [48018] = 2, + ACTIONS(5392), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [44982] = 2, - ACTIONS(5241), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [44990] = 2, - ACTIONS(5243), 1, + [48027] = 2, + ACTIONS(5394), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [44998] = 2, - ACTIONS(5245), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [45006] = 2, - ACTIONS(5247), 1, + [48036] = 2, + ACTIONS(5396), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [45014] = 2, - ACTIONS(5249), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [45022] = 2, - ACTIONS(5251), 1, + [48045] = 2, + ACTIONS(5398), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [45030] = 2, - ACTIONS(5253), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [45038] = 2, - ACTIONS(5255), 1, + [48054] = 2, + ACTIONS(5400), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [45046] = 2, - ACTIONS(2776), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [45054] = 2, - ACTIONS(5257), 1, + [48063] = 2, + ACTIONS(5402), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [45062] = 2, - ACTIONS(2066), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [45070] = 2, - ACTIONS(5259), 1, + [48072] = 2, + ACTIONS(5404), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [45078] = 2, - ACTIONS(5261), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [48081] = 2, + ACTIONS(5406), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [45086] = 2, - ACTIONS(5263), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [48090] = 2, + ACTIONS(2899), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [45094] = 2, - ACTIONS(5265), 1, - aux_sym_class_declaration_token10, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [45102] = 2, - ACTIONS(5267), 1, + [48099] = 2, + ACTIONS(5408), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [45110] = 2, - ACTIONS(5269), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [48108] = 2, + ACTIONS(5410), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [45118] = 2, - ACTIONS(2698), 1, - aux_sym_class_declaration_token12, - ACTIONS(3), 2, sym_eol_comment, + [48117] = 2, + ACTIONS(5412), 1, + anon_sym_EQ, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [45126] = 2, - ACTIONS(5271), 1, - aux_sym_class_declaration_token9, - ACTIONS(3), 2, sym_eol_comment, + [48126] = 2, + ACTIONS(5414), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [45134] = 2, - ACTIONS(5273), 1, - sym_name, - ACTIONS(3), 2, sym_eol_comment, + [48135] = 2, + ACTIONS(5416), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [45142] = 2, - ACTIONS(1835), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [45150] = 2, - ACTIONS(5275), 1, + [48144] = 2, + ACTIONS(5418), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [45158] = 2, - ACTIONS(1833), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [45166] = 2, - ACTIONS(5277), 1, + [48153] = 2, + ACTIONS(5420), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [45174] = 2, - ACTIONS(5279), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [45182] = 2, - ACTIONS(5281), 1, + [48162] = 2, + ACTIONS(5422), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [45190] = 2, - ACTIONS(5283), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [45198] = 2, - ACTIONS(5285), 1, + [48171] = 2, + ACTIONS(5424), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [45206] = 2, - ACTIONS(5287), 1, - anon_sym_EQ, - ACTIONS(3), 2, sym_eol_comment, + [48180] = 2, + ACTIONS(5426), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [45214] = 2, - ACTIONS(5289), 1, - anon_sym_EQ, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [45222] = 2, - ACTIONS(5291), 1, + [48189] = 2, + ACTIONS(5428), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [45230] = 2, - ACTIONS(5293), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [45238] = 2, - ACTIONS(5295), 1, + [48198] = 2, + ACTIONS(5430), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [45246] = 2, - ACTIONS(5297), 1, - sym_name, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [45254] = 2, - ACTIONS(5299), 1, + [48207] = 2, + ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [45262] = 2, - ACTIONS(5301), 1, - aux_sym__select_target_token2, - ACTIONS(3), 2, sym_eol_comment, + [48216] = 2, + ACTIONS(5434), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [45270] = 2, - ACTIONS(4185), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [45278] = 2, - ACTIONS(5303), 1, + [48225] = 2, + ACTIONS(5436), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [45286] = 2, - ACTIONS(2766), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [45294] = 2, - ACTIONS(5305), 1, + [48234] = 2, + ACTIONS(5438), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [45302] = 2, - ACTIONS(5307), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [45310] = 2, - ACTIONS(5309), 1, + [48243] = 2, + ACTIONS(5440), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [45318] = 2, - ACTIONS(5311), 1, - sym_name, - ACTIONS(3), 2, sym_eol_comment, + [48252] = 2, + ACTIONS(5442), 1, + aux_sym_class_declaration_token10, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [45326] = 2, - ACTIONS(5313), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [45334] = 2, - ACTIONS(5315), 1, + [48261] = 2, + ACTIONS(5444), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [45342] = 2, - ACTIONS(5317), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [45350] = 2, - ACTIONS(5319), 1, + [48270] = 2, + ACTIONS(5446), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [45358] = 2, - ACTIONS(5321), 1, - aux_sym__data_object_typing_normal_token2, - ACTIONS(3), 2, sym_eol_comment, + [48279] = 2, + ACTIONS(5448), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [45366] = 2, - ACTIONS(5323), 1, - sym_name, - ACTIONS(3), 2, sym_eol_comment, + [48288] = 2, + ACTIONS(5450), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [45374] = 2, - ACTIONS(5325), 1, - sym_name, - ACTIONS(3), 2, sym_eol_comment, + [48297] = 2, + ACTIONS(5452), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [45382] = 2, - ACTIONS(5327), 1, - aux_sym_class_declaration_token12, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [45390] = 2, - ACTIONS(5329), 1, + [48306] = 2, + ACTIONS(5454), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [45398] = 2, - ACTIONS(5331), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [45406] = 2, - ACTIONS(5333), 1, + [48315] = 2, + ACTIONS(5456), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [45414] = 2, - ACTIONS(4154), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [45422] = 2, - ACTIONS(5335), 1, + [48324] = 2, + ACTIONS(5458), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [45430] = 2, - ACTIONS(5337), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [48333] = 2, + ACTIONS(5460), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [45438] = 2, - ACTIONS(5339), 1, - aux_sym__data_object_typing_normal_token2, - ACTIONS(3), 2, sym_eol_comment, + [48342] = 2, + ACTIONS(5462), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [45446] = 2, - ACTIONS(5341), 1, - sym_name, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [45454] = 2, - ACTIONS(5343), 1, + [48351] = 2, + ACTIONS(5464), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [45462] = 2, - ACTIONS(5345), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [48360] = 2, + ACTIONS(5466), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [45470] = 2, - ACTIONS(2764), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [45478] = 2, - ACTIONS(5347), 1, + [48369] = 2, + ACTIONS(5468), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [45486] = 2, - ACTIONS(5349), 1, - sym_name, - ACTIONS(3), 2, sym_eol_comment, + [48378] = 2, + ACTIONS(5470), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [45494] = 2, - ACTIONS(2457), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [45502] = 2, - ACTIONS(5351), 1, + [48387] = 2, + ACTIONS(5472), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [45510] = 2, - ACTIONS(5353), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [45518] = 2, - ACTIONS(5355), 1, + [48396] = 2, + ACTIONS(5474), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [45526] = 2, - ACTIONS(5357), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [45534] = 2, - ACTIONS(5359), 1, + [48405] = 2, + ACTIONS(5476), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [45542] = 2, - ACTIONS(5361), 1, - sym_name, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [45550] = 2, - ACTIONS(5363), 1, + [48414] = 2, + ACTIONS(5478), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [45558] = 2, - ACTIONS(5365), 1, - sym_name, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [45566] = 2, - ACTIONS(5367), 1, + [48423] = 2, + ACTIONS(5480), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [45574] = 2, - ACTIONS(5369), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [45582] = 2, - ACTIONS(5371), 1, + [48432] = 2, + ACTIONS(5482), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [45590] = 2, - ACTIONS(5373), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [45598] = 2, - ACTIONS(5375), 1, + [48441] = 2, + ACTIONS(5484), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [45606] = 2, - ACTIONS(5377), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [45614] = 2, - ACTIONS(5379), 1, + [48450] = 2, + ACTIONS(5486), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [45622] = 2, - ACTIONS(5381), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [45630] = 2, - ACTIONS(5383), 1, + [48459] = 2, + ACTIONS(5488), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [45638] = 2, - ACTIONS(5385), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [45646] = 2, - ACTIONS(5387), 1, + [48468] = 2, + ACTIONS(5490), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [45654] = 2, - ACTIONS(5389), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [45662] = 2, - ACTIONS(5391), 1, + [48477] = 2, + ACTIONS(5492), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [45670] = 2, - ACTIONS(5393), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [48486] = 2, + ACTIONS(5494), 1, + sym_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [45678] = 2, - ACTIONS(5395), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [45686] = 2, - ACTIONS(5397), 1, + [48495] = 2, + ACTIONS(5496), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [45694] = 2, - ACTIONS(5399), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [45702] = 2, - ACTIONS(5401), 1, + [48504] = 2, + ACTIONS(5498), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [45710] = 2, - ACTIONS(5403), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [45718] = 2, - ACTIONS(5405), 1, + [48513] = 2, + ACTIONS(5500), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [45726] = 2, - ACTIONS(5407), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [45734] = 2, - ACTIONS(5409), 1, + [48522] = 2, + ACTIONS(5502), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [45742] = 2, - ACTIONS(5411), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [48531] = 2, + ACTIONS(5504), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [45750] = 2, - ACTIONS(5413), 1, + sym_eol_comment, + [48540] = 2, + ACTIONS(5506), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [48549] = 2, + ACTIONS(5508), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [45758] = 2, - ACTIONS(5415), 1, + sym_eol_comment, + [48558] = 2, + ACTIONS(5510), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [45766] = 2, - ACTIONS(5417), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [45774] = 2, - ACTIONS(5419), 1, + [48567] = 2, + ACTIONS(5512), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [45782] = 2, - ACTIONS(5421), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [45790] = 2, - ACTIONS(5423), 1, + [48576] = 2, + ACTIONS(5514), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [45798] = 2, - ACTIONS(5425), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [45806] = 2, - ACTIONS(5427), 1, + [48585] = 2, + ACTIONS(5516), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [45814] = 2, - ACTIONS(5429), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [45822] = 2, - ACTIONS(5431), 1, + [48594] = 2, + ACTIONS(5518), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [45830] = 2, - ACTIONS(5433), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [45838] = 2, - ACTIONS(5435), 1, + [48603] = 2, + ACTIONS(5520), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [45846] = 2, - ACTIONS(5437), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [45854] = 2, - ACTIONS(5439), 1, + [48612] = 2, + ACTIONS(5522), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [45862] = 2, - ACTIONS(5441), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [45870] = 2, - ACTIONS(5443), 1, + [48621] = 2, + ACTIONS(5524), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [45878] = 2, - ACTIONS(5445), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [45886] = 2, - ACTIONS(5447), 1, + [48630] = 2, + ACTIONS(5526), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [45894] = 2, - ACTIONS(5449), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [45902] = 2, - ACTIONS(5451), 1, + [48639] = 2, + ACTIONS(5528), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [45910] = 2, - ACTIONS(5453), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [45918] = 2, - ACTIONS(5455), 1, + [48648] = 2, + ACTIONS(5530), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [45926] = 2, - ACTIONS(5457), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [45934] = 2, - ACTIONS(5459), 1, + [48657] = 2, + ACTIONS(5532), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [45942] = 2, - ACTIONS(5461), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [45950] = 2, - ACTIONS(5463), 1, + [48666] = 2, + ACTIONS(5534), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [45958] = 2, - ACTIONS(5465), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [45966] = 2, - ACTIONS(5467), 1, + [48675] = 2, + ACTIONS(5536), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [45974] = 2, - ACTIONS(5469), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [45982] = 2, - ACTIONS(5471), 1, + [48684] = 2, + ACTIONS(5538), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [45990] = 2, - ACTIONS(5473), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [45998] = 2, - ACTIONS(5475), 1, + [48693] = 2, + ACTIONS(5540), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [46006] = 2, - ACTIONS(5477), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [46014] = 2, - ACTIONS(5479), 1, + [48702] = 2, + ACTIONS(5542), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [46022] = 2, - ACTIONS(5481), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [48711] = 2, + ACTIONS(5544), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [46030] = 2, - ACTIONS(5483), 1, - sym_name, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [46038] = 2, - ACTIONS(5485), 1, + [48720] = 2, + ACTIONS(5546), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [46046] = 2, - ACTIONS(5487), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [46054] = 2, - ACTIONS(5489), 1, + [48729] = 2, + ACTIONS(5548), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [46062] = 2, - ACTIONS(5491), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [46070] = 2, - ACTIONS(5493), 1, + [48738] = 2, + ACTIONS(5550), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [46078] = 2, - ACTIONS(5495), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [46086] = 2, - ACTIONS(5497), 1, + [48747] = 2, + ACTIONS(5552), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [46094] = 2, - ACTIONS(5499), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [46102] = 2, - ACTIONS(5501), 1, + [48756] = 2, + ACTIONS(5554), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [46110] = 2, - ACTIONS(5503), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [46118] = 2, - ACTIONS(5505), 1, + [48765] = 2, + ACTIONS(5556), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [46126] = 2, - ACTIONS(5507), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [46134] = 2, - ACTIONS(5509), 1, + [48774] = 2, + ACTIONS(5558), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [46142] = 2, - ACTIONS(5511), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [46150] = 2, - ACTIONS(5513), 1, + [48783] = 2, + ACTIONS(5560), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [46158] = 2, - ACTIONS(5515), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [46166] = 2, - ACTIONS(5517), 1, + [48792] = 2, + ACTIONS(5562), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [46174] = 2, - ACTIONS(5519), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [46182] = 2, - ACTIONS(5521), 1, + [48801] = 2, + ACTIONS(5564), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [46190] = 2, - ACTIONS(5523), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [46198] = 2, - ACTIONS(5525), 1, + [48810] = 2, + ACTIONS(5566), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [46206] = 2, - ACTIONS(5527), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [46214] = 2, - ACTIONS(5529), 1, + [48819] = 2, + ACTIONS(5568), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [46222] = 2, - ACTIONS(5531), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [46230] = 2, - ACTIONS(5533), 1, + [48828] = 2, + ACTIONS(5570), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [46238] = 2, - ACTIONS(5535), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [46246] = 2, - ACTIONS(5537), 1, + [48837] = 2, + ACTIONS(5572), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [46254] = 2, - ACTIONS(5539), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [46262] = 2, - ACTIONS(5541), 1, + [48846] = 2, + ACTIONS(5574), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [46270] = 2, - ACTIONS(5543), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [46278] = 2, - ACTIONS(5545), 1, + [48855] = 2, + ACTIONS(5576), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [46286] = 2, - ACTIONS(5547), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [46294] = 2, - ACTIONS(5549), 1, + [48864] = 2, + ACTIONS(5578), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [46302] = 2, - ACTIONS(5551), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [46310] = 2, - ACTIONS(5553), 1, + [48873] = 2, + ACTIONS(5580), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [46318] = 2, - ACTIONS(5555), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [46326] = 2, - ACTIONS(5557), 1, + [48882] = 2, + ACTIONS(5582), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [46334] = 2, - ACTIONS(5559), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [46342] = 2, - ACTIONS(5561), 1, + [48891] = 2, + ACTIONS(5584), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [46350] = 2, - ACTIONS(5563), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [46358] = 2, - ACTIONS(5565), 1, + [48900] = 2, + ACTIONS(5586), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [46366] = 2, - ACTIONS(5567), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [46374] = 2, - ACTIONS(5569), 1, + [48909] = 2, + ACTIONS(5588), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [46382] = 2, - ACTIONS(5571), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [46390] = 2, - ACTIONS(5573), 1, + [48918] = 2, + ACTIONS(5590), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [46398] = 2, - ACTIONS(5575), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [46406] = 2, - ACTIONS(5577), 1, + [48927] = 2, + ACTIONS(5592), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [46414] = 2, - ACTIONS(5579), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [46422] = 2, - ACTIONS(5581), 1, + [48936] = 2, + ACTIONS(5594), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [46430] = 2, - ACTIONS(5583), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [46438] = 2, - ACTIONS(5585), 1, + [48945] = 2, + ACTIONS(5596), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [46446] = 2, - ACTIONS(5587), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [46454] = 2, - ACTIONS(5589), 1, + [48954] = 2, + ACTIONS(5598), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [46462] = 2, - ACTIONS(5591), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [46470] = 2, - ACTIONS(5593), 1, + [48963] = 2, + ACTIONS(5600), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [46478] = 2, - ACTIONS(5595), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [46486] = 2, - ACTIONS(5597), 1, + [48972] = 2, + ACTIONS(5602), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [46494] = 2, - ACTIONS(5599), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [46502] = 2, - ACTIONS(5601), 1, + [48981] = 2, + ACTIONS(5604), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [46510] = 2, - ACTIONS(5603), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [46518] = 2, - ACTIONS(5605), 1, + [48990] = 2, + ACTIONS(5606), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [46526] = 2, - ACTIONS(5607), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [46534] = 2, - ACTIONS(5609), 1, + [48999] = 2, + ACTIONS(5608), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [46542] = 2, - ACTIONS(5611), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [46550] = 2, - ACTIONS(5613), 1, + [49008] = 2, + ACTIONS(5610), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [46558] = 2, - ACTIONS(5615), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [46566] = 2, - ACTIONS(5617), 1, + [49017] = 2, + ACTIONS(5612), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [46574] = 2, - ACTIONS(5619), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [46582] = 2, - ACTIONS(5621), 1, + [49026] = 2, + ACTIONS(5614), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [46590] = 2, - ACTIONS(5623), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [46598] = 2, - ACTIONS(5625), 1, + [49035] = 2, + ACTIONS(5616), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [46606] = 2, - ACTIONS(5627), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [46614] = 2, - ACTIONS(5629), 1, + [49044] = 2, + ACTIONS(5618), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [46622] = 2, - ACTIONS(5631), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [46630] = 2, - ACTIONS(5633), 1, + [49053] = 2, + ACTIONS(5620), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [46638] = 2, - ACTIONS(5635), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [46646] = 2, - ACTIONS(5637), 1, + [49062] = 2, + ACTIONS(5622), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [46654] = 2, - ACTIONS(5639), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [46662] = 2, - ACTIONS(5641), 1, + [49071] = 2, + ACTIONS(5624), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [46670] = 2, - ACTIONS(5643), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [46678] = 2, - ACTIONS(5645), 1, + [49080] = 2, + ACTIONS(5626), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [46686] = 2, - ACTIONS(5647), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [46694] = 2, - ACTIONS(5649), 1, + [49089] = 2, + ACTIONS(5628), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [46702] = 2, - ACTIONS(5651), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [46710] = 2, - ACTIONS(5653), 1, + [49098] = 2, + ACTIONS(5630), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [46718] = 2, - ACTIONS(5655), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [46726] = 2, - ACTIONS(5657), 1, + [49107] = 2, + ACTIONS(5632), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [46734] = 2, - ACTIONS(5659), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [46742] = 2, - ACTIONS(5661), 1, + [49116] = 2, + ACTIONS(5634), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [46750] = 2, - ACTIONS(5663), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [46758] = 2, - ACTIONS(5665), 1, + [49125] = 2, + ACTIONS(5636), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [46766] = 2, - ACTIONS(5667), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [46774] = 2, - ACTIONS(5669), 1, + [49134] = 2, + ACTIONS(5638), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [46782] = 2, - ACTIONS(5671), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [46790] = 2, - ACTIONS(5673), 1, + [49143] = 2, + ACTIONS(5640), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [46798] = 2, - ACTIONS(5675), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [46806] = 2, - ACTIONS(5677), 1, + [49152] = 2, + ACTIONS(5642), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [46814] = 2, - ACTIONS(5679), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [46822] = 2, - ACTIONS(5681), 1, + [49161] = 2, + ACTIONS(5644), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [46830] = 2, - ACTIONS(5683), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [46838] = 2, - ACTIONS(5685), 1, + [49170] = 2, + ACTIONS(5646), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [46846] = 2, - ACTIONS(5687), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [46854] = 2, - ACTIONS(5689), 1, + [49179] = 2, + ACTIONS(5648), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [46862] = 2, - ACTIONS(5691), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [46870] = 2, - ACTIONS(5693), 1, + [49188] = 2, + ACTIONS(5650), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [46878] = 2, - ACTIONS(5695), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [46886] = 2, - ACTIONS(5697), 1, + [49197] = 2, + ACTIONS(5652), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [46894] = 2, - ACTIONS(5699), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [46902] = 2, - ACTIONS(5701), 1, + [49206] = 2, + ACTIONS(5654), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [46910] = 2, - ACTIONS(5703), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [46918] = 2, - ACTIONS(5705), 1, + [49215] = 2, + ACTIONS(5656), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [46926] = 2, - ACTIONS(5707), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [46934] = 2, - ACTIONS(5709), 1, + [49224] = 2, + ACTIONS(5658), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [46942] = 2, - ACTIONS(5711), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [46950] = 2, - ACTIONS(5713), 1, + [49233] = 2, + ACTIONS(5660), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [46958] = 2, - ACTIONS(5715), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [46966] = 2, - ACTIONS(5717), 1, + [49242] = 2, + ACTIONS(5662), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [46974] = 2, - ACTIONS(5719), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [46982] = 2, - ACTIONS(5721), 1, + [49251] = 2, + ACTIONS(5664), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [46990] = 2, - ACTIONS(5723), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [46998] = 2, - ACTIONS(5725), 1, + [49260] = 2, + ACTIONS(5666), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47006] = 2, - ACTIONS(5727), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [49269] = 2, + ACTIONS(5668), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47014] = 2, - ACTIONS(5729), 1, - aux_sym__data_object_typing_normal_token4, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [47022] = 2, - ACTIONS(5731), 1, + [49278] = 2, + ACTIONS(5670), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47030] = 2, - ACTIONS(5733), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [47038] = 2, - ACTIONS(5735), 1, + [49287] = 2, + ACTIONS(5672), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47046] = 2, - ACTIONS(5737), 1, - sym_name, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [47054] = 2, - ACTIONS(5739), 1, + [49296] = 2, + ACTIONS(5674), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47062] = 2, - ACTIONS(5741), 1, - sym_name, - ACTIONS(3), 2, sym_eol_comment, + [49305] = 2, + ACTIONS(5676), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47070] = 2, - ACTIONS(5743), 1, - sym_name, - ACTIONS(3), 2, sym_eol_comment, + [49314] = 2, + ACTIONS(5678), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47078] = 2, - ACTIONS(5745), 1, - aux_sym_public_section_token1, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [47086] = 2, - ACTIONS(5747), 1, + [49323] = 2, + ACTIONS(5680), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47094] = 2, - ACTIONS(5749), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [47102] = 2, - ACTIONS(5751), 1, + [49332] = 2, + ACTIONS(5682), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47110] = 2, - ACTIONS(5753), 1, - sym_name, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [47118] = 2, - ACTIONS(5755), 1, + [49341] = 2, + ACTIONS(5684), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47126] = 2, - ACTIONS(5757), 1, - sym_name, - ACTIONS(3), 2, sym_eol_comment, + [49350] = 2, + ACTIONS(5686), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47134] = 2, - ACTIONS(5759), 1, - sym_name, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [47142] = 2, - ACTIONS(5761), 1, + [49359] = 2, + ACTIONS(5688), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47150] = 2, - ACTIONS(5763), 1, - aux_sym__data_object_typing_normal_token2, - ACTIONS(3), 2, sym_eol_comment, + [49368] = 2, + ACTIONS(5690), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47158] = 2, - ACTIONS(1918), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [47166] = 2, - ACTIONS(5765), 1, + [49377] = 2, + ACTIONS(5692), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47174] = 2, - ACTIONS(5767), 1, - aux_sym_public_section_token1, - ACTIONS(3), 2, sym_eol_comment, + [49386] = 2, + ACTIONS(5694), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47182] = 2, - ACTIONS(5769), 1, - aux_sym_public_section_token1, - ACTIONS(3), 2, sym_eol_comment, + [49395] = 2, + ACTIONS(5696), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47190] = 2, - ACTIONS(5771), 1, - sym_character_literal, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [47198] = 2, - ACTIONS(5773), 1, + [49404] = 2, + ACTIONS(5698), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47206] = 2, - ACTIONS(5775), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [47214] = 2, - ACTIONS(5777), 1, + [49413] = 2, + ACTIONS(5700), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47222] = 2, - ACTIONS(5779), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [49422] = 2, + ACTIONS(5702), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47230] = 2, - ACTIONS(5781), 1, - aux_sym_class_declaration_token10, - ACTIONS(3), 2, sym_eol_comment, + [49431] = 2, + ACTIONS(5704), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47238] = 2, - ACTIONS(5783), 1, - sym_name, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [47246] = 2, - ACTIONS(5785), 1, + [49440] = 2, + ACTIONS(5706), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47254] = 2, - ACTIONS(5787), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [49449] = 2, + ACTIONS(5708), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47262] = 2, - ACTIONS(5789), 1, - sym_name, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [47270] = 2, - ACTIONS(5791), 1, + [49458] = 2, + ACTIONS(5710), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47278] = 2, - ACTIONS(5793), 1, - sym_name, - ACTIONS(3), 2, sym_eol_comment, + [49467] = 2, + ACTIONS(5712), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47286] = 2, - ACTIONS(5795), 1, - sym_name, - ACTIONS(3), 2, sym_eol_comment, + [49476] = 2, + ACTIONS(5714), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47294] = 2, - ACTIONS(5797), 1, - aux_sym_include_statement_token2, - ACTIONS(3), 2, sym_eol_comment, + [49485] = 2, + ACTIONS(5716), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47302] = 2, - ACTIONS(1904), 1, - aux_sym_class_declaration_token12, - ACTIONS(3), 2, sym_eol_comment, + [49494] = 2, + ACTIONS(5718), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47310] = 2, - ACTIONS(1793), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, sym_eol_comment, + [49503] = 2, + ACTIONS(5720), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47318] = 2, - ACTIONS(5799), 1, - aux_sym_class_declaration_token9, - ACTIONS(3), 2, sym_eol_comment, + [49512] = 2, + ACTIONS(5722), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47326] = 2, - ACTIONS(5801), 1, - sym_name, - ACTIONS(3), 2, sym_eol_comment, + [49521] = 2, + ACTIONS(5724), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47334] = 2, - ACTIONS(5803), 1, - aux_sym_class_declaration_token9, - ACTIONS(3), 2, sym_eol_comment, + [49530] = 2, + ACTIONS(5726), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47342] = 2, - ACTIONS(5805), 1, - aux_sym_class_declaration_token5, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [47350] = 2, - ACTIONS(5807), 1, + [49539] = 2, + ACTIONS(5728), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [49548] = 2, + ACTIONS(5730), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47358] = 2, - ACTIONS(5809), 1, - anon_sym_EQ, - ACTIONS(3), 2, sym_eol_comment, + [49557] = 2, + ACTIONS(5732), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47366] = 2, - ACTIONS(5811), 1, + sym_eol_comment, + [49566] = 2, + ACTIONS(5734), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [49575] = 2, + ACTIONS(5736), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47374] = 2, - ACTIONS(3507), 1, - aux_sym_class_declaration_token12, - ACTIONS(3), 2, sym_eol_comment, + [49584] = 2, + ACTIONS(5738), 1, + aux_sym__data_object_typing_normal_token4, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47382] = 2, - ACTIONS(5813), 1, + sym_eol_comment, + [49593] = 2, + ACTIONS(5740), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [49602] = 2, + ACTIONS(5742), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47390] = 2, - ACTIONS(3870), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [49611] = 2, + ACTIONS(5744), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47398] = 2, - ACTIONS(5815), 1, - aux_sym_class_declaration_token10, - ACTIONS(3), 2, sym_eol_comment, + [49620] = 2, + ACTIONS(5746), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47406] = 2, - ACTIONS(5817), 1, - anon_sym_EQ, - ACTIONS(3), 2, sym_eol_comment, + [49629] = 2, + ACTIONS(5748), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47414] = 2, - ACTIONS(5819), 1, - anon_sym_EQ, - ACTIONS(3), 2, sym_eol_comment, + [49638] = 2, + ACTIONS(5750), 1, + sym_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47422] = 2, - ACTIONS(5821), 1, - anon_sym_EQ, - ACTIONS(3), 2, sym_eol_comment, + [49647] = 2, + ACTIONS(5752), 1, + aux_sym_public_section_token1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47430] = 2, - ACTIONS(5823), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [49656] = 2, + ACTIONS(5754), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47438] = 2, - ACTIONS(5825), 1, + sym_eol_comment, + [49665] = 2, + ACTIONS(5756), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [49674] = 2, + ACTIONS(5758), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47446] = 2, - ACTIONS(2044), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [49683] = 2, + ACTIONS(5760), 1, + sym_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47454] = 2, - ACTIONS(5827), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [49692] = 2, + ACTIONS(4304), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47462] = 2, - ACTIONS(5829), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [49701] = 2, + ACTIONS(5762), 1, + sym_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47470] = 2, - ACTIONS(5831), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [49710] = 2, + ACTIONS(5764), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47478] = 2, - ACTIONS(2555), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [49719] = 2, + ACTIONS(1914), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47486] = 2, - ACTIONS(5833), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [49728] = 2, + ACTIONS(5766), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47494] = 2, - ACTIONS(1829), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, sym_eol_comment, + [49737] = 2, + ACTIONS(1930), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47502] = 2, - ACTIONS(5835), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [49746] = 2, + ACTIONS(5768), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47510] = 2, - ACTIONS(1831), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, sym_eol_comment, + [49755] = 2, + ACTIONS(5770), 1, + aux_sym_public_section_token1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47518] = 2, - ACTIONS(5837), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [49764] = 2, + ACTIONS(5772), 1, + aux_sym_public_section_token1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47526] = 2, - ACTIONS(3942), 1, - aux_sym_class_declaration_token12, - ACTIONS(3), 2, sym_eol_comment, + [49773] = 2, + ACTIONS(5774), 1, + sym_character_literal, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47534] = 2, - ACTIONS(5839), 1, + sym_eol_comment, + [49782] = 2, + ACTIONS(5776), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [49791] = 2, + ACTIONS(5778), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47542] = 2, - ACTIONS(2050), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [49800] = 2, + ACTIONS(5780), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47550] = 2, - ACTIONS(5841), 1, + sym_eol_comment, + [49809] = 2, + ACTIONS(5782), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [49818] = 2, + ACTIONS(5784), 1, + aux_sym_class_declaration_token10, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47558] = 2, - ACTIONS(5843), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [49827] = 2, + ACTIONS(5786), 1, + sym_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47566] = 2, - ACTIONS(2926), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [49836] = 2, + ACTIONS(5788), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47574] = 2, - ACTIONS(5845), 1, + sym_eol_comment, + [49845] = 2, + ACTIONS(5790), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [49854] = 2, + ACTIONS(5792), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47582] = 2, - ACTIONS(5847), 1, + sym_eol_comment, + [49863] = 2, + ACTIONS(5794), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [49872] = 2, + ACTIONS(5796), 1, + sym_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47590] = 2, - ACTIONS(2581), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [49881] = 2, + ACTIONS(5798), 1, + sym_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47598] = 2, - ACTIONS(2068), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [49890] = 2, + ACTIONS(5800), 1, + aux_sym_include_statement_token2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47606] = 2, - ACTIONS(5849), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [49899] = 2, + ACTIONS(1924), 1, + aux_sym_class_declaration_token12, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47614] = 2, - ACTIONS(5851), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [49908] = 2, + ACTIONS(1894), 1, + anon_sym_RPAREN, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47622] = 2, - ACTIONS(5853), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [49917] = 2, + ACTIONS(5802), 1, + aux_sym_class_declaration_token9, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47630] = 2, - ACTIONS(5855), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [49926] = 2, + ACTIONS(5804), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47638] = 2, - ACTIONS(2870), 1, + sym_eol_comment, + [49935] = 2, + ACTIONS(4274), 1, aux_sym_class_declaration_token13, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [49944] = 2, + ACTIONS(5806), 1, + aux_sym_class_declaration_token5, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47646] = 2, - ACTIONS(5857), 1, + sym_eol_comment, + [49953] = 2, + ACTIONS(5808), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [49962] = 2, + ACTIONS(5810), 1, + anon_sym_EQ, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47654] = 2, - ACTIONS(5859), 1, + sym_eol_comment, + [49971] = 2, + ACTIONS(5812), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [49980] = 2, + ACTIONS(5814), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47662] = 2, - ACTIONS(5861), 1, - aux_sym__read_table_result_token2, - ACTIONS(3), 2, sym_eol_comment, + [49989] = 2, + ACTIONS(5816), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47670] = 2, - ACTIONS(3928), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [49998] = 2, + ACTIONS(5818), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47678] = 2, - ACTIONS(2443), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [50007] = 2, + ACTIONS(5820), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47686] = 2, - ACTIONS(5863), 1, - aux_sym_line_spec_token2, - ACTIONS(3), 2, sym_eol_comment, + [50016] = 2, + ACTIONS(5822), 1, + anon_sym_EQ, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47694] = 2, - ACTIONS(5865), 1, - sym_name, - ACTIONS(3), 2, sym_eol_comment, + [50025] = 2, + ACTIONS(5824), 1, + anon_sym_EQ, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47702] = 2, - ACTIONS(5867), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [50034] = 2, + ACTIONS(5826), 1, + anon_sym_EQ, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47710] = 2, - ACTIONS(5869), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [50043] = 2, + ACTIONS(5828), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47718] = 2, - ACTIONS(2768), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [50052] = 2, + ACTIONS(2787), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47726] = 2, - ACTIONS(5871), 1, + sym_eol_comment, + [50061] = 2, + ACTIONS(2048), 1, aux_sym_class_declaration_token13, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [50070] = 2, + ACTIONS(2889), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47734] = 2, - ACTIONS(5873), 1, - aux_sym_class_declaration_token10, - ACTIONS(3), 2, sym_eol_comment, + [50079] = 2, + ACTIONS(2967), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47742] = 2, - ACTIONS(5875), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [50088] = 2, + ACTIONS(5830), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47750] = 2, - ACTIONS(2449), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [50097] = 2, + ACTIONS(5832), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47758] = 2, - ACTIONS(5877), 1, + sym_eol_comment, + [50106] = 2, + ACTIONS(5834), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [50115] = 2, + ACTIONS(1864), 1, + anon_sym_RPAREN, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47766] = 2, - ACTIONS(3916), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [50124] = 2, + ACTIONS(5836), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47774] = 2, - ACTIONS(2639), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [50133] = 2, + ACTIONS(1866), 1, + anon_sym_RPAREN, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47782] = 2, - ACTIONS(5879), 1, + sym_eol_comment, + [50142] = 2, + ACTIONS(5838), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [50151] = 2, + ACTIONS(5840), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47790] = 2, - ACTIONS(5881), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [50160] = 2, + ACTIONS(5842), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47798] = 2, - ACTIONS(5883), 1, - sym_field_symbol_name, - ACTIONS(3), 2, sym_eol_comment, + [50169] = 2, + ACTIONS(2058), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47806] = 2, - ACTIONS(5885), 1, - aux_sym_class_declaration_token9, - ACTIONS(3), 2, sym_eol_comment, + [50178] = 2, + ACTIONS(5844), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47814] = 2, - ACTIONS(1922), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [50187] = 2, + ACTIONS(4184), 1, + aux_sym_class_declaration_token12, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47822] = 2, - ACTIONS(5883), 1, - sym_name, - ACTIONS(3), 2, sym_eol_comment, + [50196] = 2, + ACTIONS(4264), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47830] = 2, - ACTIONS(5887), 1, + sym_eol_comment, + [50205] = 2, + ACTIONS(5846), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [50214] = 2, + ACTIONS(5848), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47838] = 2, - ACTIONS(2565), 1, + sym_eol_comment, + [50223] = 2, + ACTIONS(2785), 1, aux_sym_class_declaration_token13, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [50232] = 2, + ACTIONS(2088), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47846] = 2, - ACTIONS(5889), 1, - aux_sym_complete_typing_token2, - ACTIONS(3), 2, sym_eol_comment, + [50241] = 2, + ACTIONS(5850), 1, + aux_sym_class_declaration_token10, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47854] = 2, - ACTIONS(3900), 1, - aux_sym_class_declaration_token12, - ACTIONS(3), 2, sym_eol_comment, + [50250] = 2, + ACTIONS(5852), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47862] = 2, - ACTIONS(5891), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [47870] = 2, - ACTIONS(5893), 1, + [50259] = 2, + ACTIONS(5854), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47878] = 2, - ACTIONS(2922), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [50268] = 2, + ACTIONS(5856), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47886] = 2, - ACTIONS(5895), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [47894] = 2, - ACTIONS(3896), 1, + [50277] = 2, + ACTIONS(2761), 1, aux_sym_class_declaration_token13, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47902] = 2, - ACTIONS(5897), 1, - aux_sym_class_declaration_token12, - ACTIONS(3), 2, sym_eol_comment, + [50286] = 2, + ACTIONS(5858), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47910] = 2, - ACTIONS(2886), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [50295] = 2, + ACTIONS(5860), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47918] = 2, - ACTIONS(3890), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [50304] = 2, + ACTIONS(5862), 1, + aux_sym__read_table_result_token2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47926] = 2, - ACTIONS(2587), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [50313] = 2, + ACTIONS(5864), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47934] = 2, - ACTIONS(5899), 1, - aux_sym_generic_type_token2, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [47942] = 2, - ACTIONS(5901), 1, + [50322] = 2, + ACTIONS(2462), 1, aux_sym_class_declaration_token13, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47950] = 2, - ACTIONS(5903), 1, - sym_name, - ACTIONS(3), 2, sym_eol_comment, + [50331] = 2, + ACTIONS(5866), 1, + aux_sym_line_spec_token2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47958] = 2, - ACTIONS(5905), 1, - aux_sym__data_object_typing_normal_token2, - ACTIONS(3), 2, sym_eol_comment, + [50340] = 2, + ACTIONS(5868), 1, + sym_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47966] = 2, - ACTIONS(5907), 1, - aux_sym__data_object_typing_normal_token2, - ACTIONS(3), 2, sym_eol_comment, + [50349] = 2, + ACTIONS(4260), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47974] = 2, - ACTIONS(5909), 1, - aux_sym_complete_typing_token2, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [47982] = 2, - ACTIONS(5911), 1, + [50358] = 2, + ACTIONS(5870), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47990] = 2, - ACTIONS(2613), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [50367] = 2, + ACTIONS(2773), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [47998] = 2, - ACTIONS(5913), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [50376] = 2, + ACTIONS(5872), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48006] = 2, - ACTIONS(5915), 1, - aux_sym_generic_type_token2, - ACTIONS(3), 2, sym_eol_comment, + [50385] = 2, + ACTIONS(5874), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48014] = 2, - ACTIONS(5917), 1, - aux_sym__data_object_typing_normal_token2, - ACTIONS(3), 2, sym_eol_comment, + [50394] = 2, + ACTIONS(5876), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48022] = 2, - ACTIONS(5919), 1, - aux_sym__data_object_typing_normal_token2, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [48030] = 2, - ACTIONS(2976), 1, + [50403] = 2, + ACTIONS(2470), 1, aux_sym_class_declaration_token13, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48038] = 2, - ACTIONS(2856), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [48046] = 2, - ACTIONS(2635), 1, + [50412] = 2, + ACTIONS(5878), 1, aux_sym_class_declaration_token13, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48054] = 2, - ACTIONS(5921), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [50421] = 2, + ACTIONS(4250), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48062] = 2, - ACTIONS(5923), 1, - aux_sym_complete_typing_token2, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [48070] = 2, - ACTIONS(2637), 1, + [50430] = 2, + ACTIONS(4248), 1, aux_sym_class_declaration_token13, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48078] = 2, - ACTIONS(3886), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [50439] = 2, + ACTIONS(5880), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48086] = 2, - ACTIONS(5925), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [48094] = 2, - ACTIONS(5927), 1, + [50448] = 2, + ACTIONS(5882), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48102] = 2, - ACTIONS(5929), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [50457] = 2, + ACTIONS(5884), 1, + sym_field_symbol_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48110] = 2, - ACTIONS(2607), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [50466] = 2, + ACTIONS(2777), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48118] = 2, - ACTIONS(5931), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [48126] = 2, - ACTIONS(3876), 1, + [50475] = 2, + ACTIONS(2526), 1, aux_sym_class_declaration_token13, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48134] = 2, - ACTIONS(5933), 1, - sym_name, - ACTIONS(3), 2, sym_eol_comment, + [50484] = 2, + ACTIONS(5884), 1, + sym_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48142] = 2, - ACTIONS(5935), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [50493] = 2, + ACTIONS(5886), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48150] = 2, - ACTIONS(2888), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [50502] = 2, + ACTIONS(2584), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48158] = 2, - ACTIONS(5937), 1, - sym_name, - ACTIONS(3), 2, sym_eol_comment, + [50511] = 2, + ACTIONS(5888), 1, + aux_sym_complete_typing_token2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48166] = 2, - ACTIONS(5939), 1, - sym_name, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [48174] = 2, - ACTIONS(5941), 1, + [50520] = 2, + ACTIONS(5890), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48182] = 2, - ACTIONS(5943), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [48190] = 2, - ACTIONS(5945), 1, + [50529] = 2, + ACTIONS(5892), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48198] = 2, - ACTIONS(2533), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [50538] = 2, + ACTIONS(5894), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48206] = 2, - ACTIONS(5947), 1, - sym_name, - ACTIONS(3), 2, sym_eol_comment, + [50547] = 2, + ACTIONS(2943), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48214] = 2, - ACTIONS(5949), 1, - sym_name, - ACTIONS(3), 2, sym_eol_comment, + [50556] = 2, + ACTIONS(5896), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48222] = 2, - ACTIONS(5951), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [50565] = 2, + ACTIONS(4236), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48230] = 2, - ACTIONS(5953), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [50574] = 2, + ACTIONS(5898), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48238] = 2, - ACTIONS(2810), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [50583] = 2, + ACTIONS(5900), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48246] = 2, - ACTIONS(5955), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [48254] = 2, - ACTIONS(5957), 1, + [50592] = 2, + ACTIONS(5902), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48262] = 2, - ACTIONS(2461), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [50601] = 2, + ACTIONS(2602), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48270] = 2, - ACTIONS(5959), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [50610] = 2, + ACTIONS(5904), 1, + aux_sym_generic_type_token2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48278] = 2, - ACTIONS(2748), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [48286] = 2, - ACTIONS(2758), 1, + [50619] = 2, + ACTIONS(5906), 1, aux_sym_class_declaration_token13, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48294] = 2, - ACTIONS(5961), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [50628] = 2, + ACTIONS(5908), 1, + sym_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48302] = 2, - ACTIONS(3856), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [50637] = 2, + ACTIONS(5910), 1, + aux_sym__data_object_typing_normal_token2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48310] = 2, - ACTIONS(5963), 1, - aux_sym_class_declaration_token12, - ACTIONS(3), 2, sym_eol_comment, + [50646] = 2, + ACTIONS(5912), 1, + aux_sym__data_object_typing_normal_token2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48318] = 2, - ACTIONS(5965), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [50655] = 2, + ACTIONS(5914), 1, + aux_sym_complete_typing_token2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48326] = 2, - ACTIONS(5967), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [50664] = 2, + ACTIONS(5916), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48334] = 2, - ACTIONS(5969), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [50673] = 2, + ACTIONS(2616), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48342] = 2, - ACTIONS(5971), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [50682] = 2, + ACTIONS(5918), 1, + aux_sym_class_declaration_token12, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48350] = 2, - ACTIONS(2445), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [50691] = 2, + ACTIONS(5920), 1, + aux_sym_generic_type_token2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48358] = 2, - ACTIONS(3844), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [50700] = 2, + ACTIONS(5922), 1, + aux_sym__data_object_typing_normal_token2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48366] = 2, - ACTIONS(1728), 1, - aux_sym_class_declaration_token12, - ACTIONS(3), 2, sym_eol_comment, + [50709] = 2, + ACTIONS(5924), 1, + aux_sym__data_object_typing_normal_token2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48374] = 2, - ACTIONS(5973), 1, - aux_sym_class_declaration_token9, - ACTIONS(3), 2, sym_eol_comment, + [50718] = 2, + ACTIONS(4230), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48382] = 2, - ACTIONS(5975), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [48390] = 2, - ACTIONS(2774), 1, + [50727] = 2, + ACTIONS(2885), 1, aux_sym_class_declaration_token13, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48398] = 2, - ACTIONS(2463), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [48406] = 2, - ACTIONS(3832), 1, + [50736] = 2, + ACTIONS(2644), 1, aux_sym_class_declaration_token13, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48414] = 2, - ACTIONS(5977), 1, - aux_sym_class_declaration_token5, - ACTIONS(3), 2, sym_eol_comment, + [50745] = 2, + ACTIONS(5926), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48422] = 2, - ACTIONS(5979), 1, - anon_sym_LPAREN2, - ACTIONS(3), 2, sym_eol_comment, + [50754] = 2, + ACTIONS(5928), 1, + aux_sym_complete_typing_token2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48430] = 2, - ACTIONS(5981), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [50763] = 2, + ACTIONS(5930), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48438] = 2, - ACTIONS(2272), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [50772] = 2, + ACTIONS(4228), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48446] = 2, - ACTIONS(1837), 1, - anon_sym_RPAREN, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [48454] = 2, - ACTIONS(2760), 1, + [50781] = 2, + ACTIONS(5932), 1, aux_sym_class_declaration_token13, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48462] = 2, - ACTIONS(5983), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [50790] = 2, + ACTIONS(2775), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48470] = 2, - ACTIONS(5985), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [50799] = 2, + ACTIONS(5934), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48478] = 2, - ACTIONS(2806), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [50808] = 2, + ACTIONS(2590), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48486] = 2, - ACTIONS(5987), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [50817] = 2, + ACTIONS(5936), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48494] = 2, - ACTIONS(3820), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [50826] = 2, + ACTIONS(2458), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48502] = 2, - ACTIONS(3836), 1, - aux_sym_class_declaration_token12, - ACTIONS(3), 2, sym_eol_comment, + [50835] = 2, + ACTIONS(5938), 1, + sym_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48510] = 2, - ACTIONS(5989), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [50844] = 2, + ACTIONS(5940), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48518] = 2, - ACTIONS(2756), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [50853] = 2, + ACTIONS(2747), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48526] = 2, - ACTIONS(5991), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [50862] = 2, + ACTIONS(5942), 1, + sym_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48534] = 2, - ACTIONS(3814), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [50871] = 2, + ACTIONS(5944), 1, + sym_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48542] = 2, - ACTIONS(5993), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [50880] = 2, + ACTIONS(5946), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48550] = 2, - ACTIONS(5995), 1, + sym_eol_comment, + [50889] = 2, + ACTIONS(5948), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [50898] = 2, + ACTIONS(5950), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48558] = 2, - ACTIONS(5997), 1, - sym_name, - ACTIONS(3), 2, sym_eol_comment, + [50907] = 2, + ACTIONS(2528), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48566] = 2, - ACTIONS(5999), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [50916] = 2, + ACTIONS(5952), 1, + sym_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48574] = 2, - ACTIONS(2814), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [50925] = 2, + ACTIONS(5954), 1, + sym_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48582] = 2, - ACTIONS(6001), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [50934] = 2, + ACTIONS(5956), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48590] = 2, - ACTIONS(6003), 1, - aux_sym_include_statement_token2, - ACTIONS(3), 2, sym_eol_comment, + [50943] = 2, + ACTIONS(2887), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48598] = 2, - ACTIONS(6005), 1, - sym_name, - ACTIONS(3), 2, sym_eol_comment, + [50952] = 2, + ACTIONS(2763), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48606] = 2, - ACTIONS(6007), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [50961] = 2, + ACTIONS(5958), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48614] = 2, - ACTIONS(2828), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [50970] = 2, + ACTIONS(4204), 1, + aux_sym_class_declaration_token12, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48622] = 2, - ACTIONS(2250), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [50979] = 2, + ACTIONS(2460), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48630] = 2, - ACTIONS(6009), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [50988] = 2, + ACTIONS(5960), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48638] = 2, - ACTIONS(6011), 1, + sym_eol_comment, + [50997] = 2, + ACTIONS(5962), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [51006] = 2, + ACTIONS(2769), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48646] = 2, - ACTIONS(6013), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [51015] = 2, + ACTIONS(5964), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48654] = 2, - ACTIONS(3776), 1, + sym_eol_comment, + [51024] = 2, + ACTIONS(4214), 1, aux_sym_class_declaration_token13, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [51033] = 2, + ACTIONS(5966), 1, + aux_sym_class_declaration_token12, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48662] = 2, - ACTIONS(6015), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [51042] = 2, + ACTIONS(5968), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48670] = 2, - ACTIONS(6017), 1, - sym_name, - ACTIONS(3), 2, sym_eol_comment, + [51051] = 2, + ACTIONS(5970), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48678] = 2, - ACTIONS(6019), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [51060] = 2, + ACTIONS(2879), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48686] = 2, - ACTIONS(6021), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [51069] = 2, + ACTIONS(5972), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48694] = 2, - ACTIONS(6023), 1, - sym_name, - ACTIONS(3), 2, sym_eol_comment, + [51078] = 2, + ACTIONS(2444), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48702] = 2, - ACTIONS(6025), 1, + sym_eol_comment, + [51087] = 2, + ACTIONS(5974), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [51096] = 2, + ACTIONS(1714), 1, + aux_sym_class_declaration_token12, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48710] = 2, - ACTIONS(2844), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [51105] = 2, + ACTIONS(5976), 1, + aux_sym_class_declaration_token9, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48718] = 2, - ACTIONS(2256), 1, + sym_eol_comment, + [51114] = 2, + ACTIONS(2104), 1, aux_sym_class_declaration_token13, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [51123] = 2, + ACTIONS(2781), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48726] = 2, - ACTIONS(6027), 1, + sym_eol_comment, + [51132] = 2, + ACTIONS(5978), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [51141] = 2, + ACTIONS(4198), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48734] = 2, - ACTIONS(6029), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [51150] = 2, + ACTIONS(5980), 1, + aux_sym_class_declaration_token5, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48742] = 2, - ACTIONS(6031), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [51159] = 2, + ACTIONS(5982), 1, + anon_sym_LPAREN2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48750] = 2, - ACTIONS(3770), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [51168] = 2, + ACTIONS(5984), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48758] = 2, - ACTIONS(6033), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [51177] = 2, + ACTIONS(2298), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48766] = 2, - ACTIONS(6035), 1, - aux_sym_complete_typing_token2, - ACTIONS(3), 2, sym_eol_comment, + [51186] = 2, + ACTIONS(1836), 1, + anon_sym_RPAREN, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48774] = 2, - ACTIONS(6037), 1, - sym_name, - ACTIONS(3), 2, sym_eol_comment, + [51195] = 2, + ACTIONS(5986), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48782] = 2, - ACTIONS(6039), 1, - sym_name, - ACTIONS(3), 2, sym_eol_comment, + [51204] = 2, + ACTIONS(5988), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48790] = 2, - ACTIONS(2858), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [51213] = 2, + ACTIONS(5990), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48798] = 2, - ACTIONS(3761), 1, + sym_eol_comment, + [51222] = 2, + ACTIONS(2811), 1, aux_sym_class_declaration_token13, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [51231] = 2, + ACTIONS(5992), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48806] = 2, - ACTIONS(6041), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [51240] = 2, + ACTIONS(4190), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48814] = 2, - ACTIONS(6043), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [51249] = 2, + ACTIONS(5994), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48822] = 2, - ACTIONS(6045), 1, + sym_eol_comment, + [51258] = 2, + ACTIONS(5996), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [51267] = 2, + ACTIONS(2759), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48830] = 2, - ACTIONS(3757), 1, + sym_eol_comment, + [51276] = 2, + ACTIONS(4192), 1, aux_sym_class_declaration_token13, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [51285] = 2, + ACTIONS(4180), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48838] = 2, - ACTIONS(6047), 1, - aux_sym__data_object_typing_normal_token4, - ACTIONS(3), 2, sym_eol_comment, + [51294] = 2, + ACTIONS(5998), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48846] = 2, - ACTIONS(6049), 1, + sym_eol_comment, + [51303] = 2, + ACTIONS(6000), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [51312] = 2, + ACTIONS(6002), 1, + sym_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48854] = 2, - ACTIONS(2116), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [51321] = 2, + ACTIONS(6004), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48862] = 2, - ACTIONS(6051), 1, - sym_name, - ACTIONS(3), 2, sym_eol_comment, + [51330] = 2, + ACTIONS(2823), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48870] = 2, - ACTIONS(6053), 1, + sym_eol_comment, + [51339] = 2, + ACTIONS(6006), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [51348] = 2, + ACTIONS(6008), 1, + aux_sym_include_statement_token2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48878] = 2, - ACTIONS(2868), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [51357] = 2, + ACTIONS(6010), 1, + sym_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48886] = 2, - ACTIONS(6055), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [51366] = 2, + ACTIONS(6012), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48894] = 2, - ACTIONS(3753), 1, + sym_eol_comment, + [51375] = 2, + ACTIONS(2833), 1, aux_sym_class_declaration_token13, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [51384] = 2, + ACTIONS(2258), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48902] = 2, - ACTIONS(6057), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [51393] = 2, + ACTIONS(6014), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48910] = 2, - ACTIONS(6059), 1, + sym_eol_comment, + [51402] = 2, + ACTIONS(6016), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [51411] = 2, + ACTIONS(6018), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48918] = 2, - ACTIONS(6061), 1, + sym_eol_comment, + [51420] = 2, + ACTIONS(4176), 1, aux_sym_class_declaration_token13, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [51429] = 2, + ACTIONS(6020), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48926] = 2, - ACTIONS(6063), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [51438] = 2, + ACTIONS(6022), 1, + sym_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48934] = 2, - ACTIONS(6065), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [51447] = 2, + ACTIONS(3989), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48942] = 2, - ACTIONS(6067), 1, + sym_eol_comment, + [51456] = 2, + ACTIONS(6024), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [51465] = 2, + ACTIONS(6026), 1, + sym_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48950] = 2, - ACTIONS(2104), 1, + sym_eol_comment, + [51474] = 2, + ACTIONS(6028), 1, aux_sym_class_declaration_token13, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [51483] = 2, + ACTIONS(2849), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48958] = 2, - ACTIONS(6069), 1, - sym_name, - ACTIONS(3), 2, sym_eol_comment, + [51492] = 2, + ACTIONS(2226), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48966] = 2, - ACTIONS(6071), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [51501] = 2, + ACTIONS(6030), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48974] = 2, - ACTIONS(2872), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [51510] = 2, + ACTIONS(6032), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48982] = 2, - ACTIONS(6073), 1, + sym_eol_comment, + [51519] = 2, + ACTIONS(6034), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [51528] = 2, + ACTIONS(4168), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48990] = 2, - ACTIONS(3741), 1, + sym_eol_comment, + [51537] = 2, + ACTIONS(6036), 1, aux_sym_class_declaration_token13, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [51546] = 2, + ACTIONS(6038), 1, + aux_sym_complete_typing_token2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [48998] = 2, - ACTIONS(6075), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [51555] = 2, + ACTIONS(6040), 1, + sym_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49006] = 2, - ACTIONS(6077), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [51564] = 2, + ACTIONS(6042), 1, + sym_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49014] = 2, - ACTIONS(6079), 1, + sym_eol_comment, + [51573] = 2, + ACTIONS(2863), 1, aux_sym_class_declaration_token13, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [51582] = 2, + ACTIONS(4164), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49022] = 2, - ACTIONS(6081), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [51591] = 2, + ACTIONS(6044), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49030] = 2, - ACTIONS(6083), 1, + sym_eol_comment, + [51600] = 2, + ACTIONS(6046), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [51609] = 2, + ACTIONS(6048), 1, + aux_sym__data_object_typing_normal_token2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49038] = 2, - ACTIONS(2878), 1, + sym_eol_comment, + [51618] = 2, + ACTIONS(4158), 1, aux_sym_class_declaration_token13, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [51627] = 2, + ACTIONS(6050), 1, + aux_sym__data_object_typing_normal_token4, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49046] = 2, - ACTIONS(6085), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [51636] = 2, + ACTIONS(6052), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49054] = 2, - ACTIONS(3727), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [51645] = 2, + ACTIONS(2124), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49062] = 2, - ACTIONS(6087), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [51654] = 2, + ACTIONS(6054), 1, + sym_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49070] = 2, - ACTIONS(6089), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [51663] = 2, + ACTIONS(6056), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49078] = 2, - ACTIONS(6091), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [51672] = 2, + ACTIONS(2871), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49086] = 2, - ACTIONS(6093), 1, + sym_eol_comment, + [51681] = 2, + ACTIONS(6058), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [51690] = 2, + ACTIONS(4132), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49094] = 2, - ACTIONS(6095), 1, + sym_eol_comment, + [51699] = 2, + ACTIONS(6060), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [51708] = 2, + ACTIONS(6062), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49102] = 2, - ACTIONS(2890), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [51717] = 2, + ACTIONS(6064), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49110] = 2, - ACTIONS(6097), 1, + sym_eol_comment, + [51726] = 2, + ACTIONS(6066), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [51735] = 2, + ACTIONS(6068), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49118] = 2, - ACTIONS(3717), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [51744] = 2, + ACTIONS(6070), 1, + sym_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49126] = 2, - ACTIONS(6099), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [51753] = 2, + ACTIONS(2114), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49134] = 2, - ACTIONS(6101), 1, - aux_sym__data_object_typing_normal_token2, - ACTIONS(3), 2, sym_eol_comment, + [51762] = 2, + ACTIONS(6072), 1, + sym_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49142] = 2, - ACTIONS(6103), 1, + sym_eol_comment, + [51771] = 2, + ACTIONS(6074), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [51780] = 2, + ACTIONS(2875), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49150] = 2, - ACTIONS(6105), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [51789] = 2, + ACTIONS(6076), 1, + sym_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49158] = 2, - ACTIONS(2892), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [51798] = 2, + ACTIONS(4113), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49166] = 2, - ACTIONS(6107), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [51807] = 2, + ACTIONS(6078), 1, + aux_sym_class_declaration_token12, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49174] = 2, - ACTIONS(6109), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [51816] = 2, + ACTIONS(6080), 1, + aux_sym_class_declaration_token9, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49182] = 2, - ACTIONS(2896), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [51825] = 2, + ACTIONS(6082), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49190] = 2, - ACTIONS(6111), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [51834] = 2, + ACTIONS(6084), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49198] = 2, - ACTIONS(3705), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [51843] = 2, + ACTIONS(3552), 1, + aux_sym_class_declaration_token12, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49206] = 2, - ACTIONS(6113), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [51852] = 2, + ACTIONS(2883), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49214] = 2, - ACTIONS(6115), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [51861] = 2, + ACTIONS(6086), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49222] = 2, - ACTIONS(6117), 1, - sym_name, - ACTIONS(3), 2, sym_eol_comment, + [51870] = 2, + ACTIONS(4101), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49230] = 2, - ACTIONS(6119), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [51879] = 2, + ACTIONS(6088), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49238] = 2, - ACTIONS(2900), 1, + sym_eol_comment, + [51888] = 2, + ACTIONS(6090), 1, aux_sym_class_declaration_token13, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [51897] = 2, + ACTIONS(6092), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49246] = 2, - ACTIONS(6121), 1, + sym_eol_comment, + [51906] = 2, + ACTIONS(6094), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [51915] = 2, + ACTIONS(6096), 1, + aux_sym_class_declaration_token10, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49254] = 2, - ACTIONS(3699), 1, + sym_eol_comment, + [51924] = 2, + ACTIONS(2895), 1, aux_sym_class_declaration_token13, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [51933] = 2, + ACTIONS(6098), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49262] = 2, - ACTIONS(6123), 1, + sym_eol_comment, + [51942] = 2, + ACTIONS(4095), 1, aux_sym_class_declaration_token13, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [51951] = 2, + ACTIONS(6100), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49270] = 2, - ACTIONS(6125), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [51960] = 2, + ACTIONS(6102), 1, + aux_sym__data_object_typing_normal_token2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49278] = 2, - ACTIONS(6127), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [51969] = 2, + ACTIONS(6104), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49286] = 2, - ACTIONS(2902), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [51978] = 2, + ACTIONS(6106), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49294] = 2, - ACTIONS(6129), 1, - sym_name, - ACTIONS(3), 2, sym_eol_comment, + [51987] = 2, + ACTIONS(2897), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49302] = 2, - ACTIONS(6131), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [51996] = 2, + ACTIONS(6108), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49310] = 2, - ACTIONS(6133), 1, + sym_eol_comment, + [52005] = 2, + ACTIONS(6110), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [52014] = 2, + ACTIONS(2901), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49318] = 2, - ACTIONS(2906), 1, + sym_eol_comment, + [52023] = 2, + ACTIONS(2552), 1, aux_sym_class_declaration_token13, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [52032] = 2, + ACTIONS(4089), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49326] = 2, - ACTIONS(3782), 1, + sym_eol_comment, + [52041] = 2, + ACTIONS(6112), 1, aux_sym_class_declaration_token13, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [52050] = 2, + ACTIONS(6114), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49334] = 2, - ACTIONS(6135), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [52059] = 2, + ACTIONS(6116), 1, + sym_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49342] = 2, - ACTIONS(6137), 1, + sym_eol_comment, + [52068] = 2, + ACTIONS(6118), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [52077] = 2, + ACTIONS(2903), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49350] = 2, - ACTIONS(6139), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [52086] = 2, + ACTIONS(4063), 1, + aux_sym_class_declaration_token12, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49358] = 2, - ACTIONS(3786), 1, + sym_eol_comment, + [52095] = 2, + ACTIONS(4085), 1, aux_sym_class_declaration_token13, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [52104] = 2, + ACTIONS(6120), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49366] = 2, - ACTIONS(6141), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [52113] = 2, + ACTIONS(6122), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49374] = 2, - ACTIONS(6143), 1, + sym_eol_comment, + [52122] = 2, + ACTIONS(6124), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [52131] = 2, + ACTIONS(2905), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49382] = 2, - ACTIONS(6145), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [52140] = 2, + ACTIONS(6126), 1, + sym_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49390] = 2, - ACTIONS(2914), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [52149] = 2, + ACTIONS(6128), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49398] = 2, - ACTIONS(3794), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [52158] = 2, + ACTIONS(2925), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49406] = 2, - ACTIONS(6147), 1, + sym_eol_comment, + [52167] = 2, + ACTIONS(2907), 1, aux_sym_class_declaration_token13, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [52176] = 2, + ACTIONS(4075), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49414] = 2, - ACTIONS(6149), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [52185] = 2, + ACTIONS(6130), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49422] = 2, - ACTIONS(6151), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [52194] = 2, + ACTIONS(6132), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49430] = 2, - ACTIONS(3798), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [52203] = 2, + ACTIONS(6134), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49438] = 2, - ACTIONS(6153), 1, + sym_eol_comment, + [52212] = 2, + ACTIONS(4073), 1, aux_sym_class_declaration_token13, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [52221] = 2, + ACTIONS(2578), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49446] = 2, - ACTIONS(6155), 1, + sym_eol_comment, + [52230] = 2, + ACTIONS(6136), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [52239] = 2, + ACTIONS(6138), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49454] = 2, - ACTIONS(3802), 1, + sym_eol_comment, + [52248] = 2, + ACTIONS(2915), 1, aux_sym_class_declaration_token13, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [52257] = 2, + ACTIONS(4057), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49462] = 2, - ACTIONS(6157), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [52266] = 2, + ACTIONS(6140), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49470] = 2, - ACTIONS(6159), 1, + sym_eol_comment, + [52275] = 2, + ACTIONS(6142), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [52284] = 2, + ACTIONS(6144), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49478] = 2, - ACTIONS(2916), 1, + sym_eol_comment, + [52293] = 2, + ACTIONS(4055), 1, aux_sym_class_declaration_token13, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [52302] = 2, + ACTIONS(6146), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49486] = 2, - ACTIONS(6161), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [52311] = 2, + ACTIONS(6148), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49494] = 2, - ACTIONS(3774), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [52320] = 2, + ACTIONS(4049), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49502] = 2, - ACTIONS(6163), 1, + sym_eol_comment, + [52329] = 2, + ACTIONS(6150), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [52338] = 2, + ACTIONS(6152), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49510] = 2, - ACTIONS(6165), 1, + sym_eol_comment, + [52347] = 2, + ACTIONS(2917), 1, aux_sym_class_declaration_token13, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [52356] = 2, + ACTIONS(4051), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49518] = 2, - ACTIONS(6167), 1, + sym_eol_comment, + [52365] = 2, + ACTIONS(4045), 1, aux_sym_class_declaration_token13, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49526] = 2, - ACTIONS(6169), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [49534] = 2, - ACTIONS(6171), 1, + [52374] = 2, + ACTIONS(6154), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49542] = 2, - ACTIONS(2934), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [52383] = 2, + ACTIONS(6156), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49550] = 2, - ACTIONS(6173), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [49558] = 2, - ACTIONS(3812), 1, + [52392] = 2, + ACTIONS(6158), 1, aux_sym_class_declaration_token13, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49566] = 2, - ACTIONS(6175), 1, - sym_character_literal, - ACTIONS(3), 2, sym_eol_comment, + [52401] = 2, + ACTIONS(6160), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49574] = 2, - ACTIONS(6177), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [52410] = 2, + ACTIONS(6162), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49582] = 2, - ACTIONS(6179), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [49590] = 2, - ACTIONS(6181), 1, + [52419] = 2, + ACTIONS(2921), 1, aux_sym_class_declaration_token13, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49598] = 2, - ACTIONS(6183), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [49606] = 2, - ACTIONS(3816), 1, + [52428] = 2, + ACTIONS(6164), 1, aux_sym_class_declaration_token13, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49614] = 2, - ACTIONS(6185), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [52437] = 2, + ACTIONS(4041), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49622] = 2, - ACTIONS(6187), 1, - sym_name, - ACTIONS(3), 2, sym_eol_comment, + [52446] = 2, + ACTIONS(6166), 1, + sym_character_literal, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49630] = 2, - ACTIONS(6189), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [49638] = 2, - ACTIONS(2944), 1, + [52455] = 2, + ACTIONS(6168), 1, aux_sym_class_declaration_token13, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49646] = 2, - ACTIONS(6191), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [49654] = 2, - ACTIONS(3858), 1, + [52464] = 2, + ACTIONS(6170), 1, aux_sym_class_declaration_token13, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49662] = 2, - ACTIONS(6193), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [52473] = 2, + ACTIONS(6172), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49670] = 2, - ACTIONS(6195), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [52482] = 2, + ACTIONS(6174), 1, + aux_sym_class_declaration_token10, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49678] = 2, - ACTIONS(6197), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [49686] = 2, - ACTIONS(2950), 1, + [52491] = 2, + ACTIONS(4039), 1, aux_sym_class_declaration_token13, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49694] = 2, - ACTIONS(6199), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [49702] = 2, - ACTIONS(3892), 1, + [52500] = 2, + ACTIONS(6176), 1, aux_sym_class_declaration_token13, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49710] = 2, - ACTIONS(3936), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [52509] = 2, + ACTIONS(6178), 1, + sym_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49718] = 2, - ACTIONS(6201), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [49726] = 2, - ACTIONS(6203), 1, + [52518] = 2, + ACTIONS(6180), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49734] = 2, - ACTIONS(3946), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [49742] = 2, - ACTIONS(6205), 1, + [52527] = 2, + ACTIONS(2945), 1, aux_sym_class_declaration_token13, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49750] = 2, - ACTIONS(6207), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [49758] = 2, - ACTIONS(6209), 1, + [52536] = 2, + ACTIONS(6182), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49766] = 2, - ACTIONS(6211), 1, - aux_sym_create_object_statement_token1, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [49774] = 2, - ACTIONS(2102), 1, + [52545] = 2, + ACTIONS(4025), 1, aux_sym_class_declaration_token13, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49782] = 2, - ACTIONS(6213), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [52554] = 2, + ACTIONS(6184), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49790] = 2, - ACTIONS(6215), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [52563] = 2, + ACTIONS(6186), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49798] = 2, - ACTIONS(6217), 1, - aux_sym_call_function_token2, - ACTIONS(3), 2, sym_eol_comment, + [52572] = 2, + ACTIONS(2636), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49806] = 2, - ACTIONS(6219), 1, - anon_sym_EQ, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [49814] = 2, - ACTIONS(2874), 1, + [52581] = 2, + ACTIONS(2947), 1, aux_sym_class_declaration_token13, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49822] = 2, - ACTIONS(6221), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [52590] = 2, + ACTIONS(6188), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49830] = 2, - ACTIONS(6223), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [52599] = 2, + ACTIONS(6190), 1, + aux_sym_class_declaration_token9, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49838] = 2, - ACTIONS(6225), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [52608] = 2, + ACTIONS(4021), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49846] = 2, - ACTIONS(6227), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [52617] = 2, + ACTIONS(6192), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49854] = 2, - ACTIONS(6229), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [52626] = 2, + ACTIONS(4015), 1, + aux_sym_class_declaration_token12, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49862] = 2, - ACTIONS(6231), 1, - sym_name, - ACTIONS(3), 2, sym_eol_comment, + [52635] = 2, + ACTIONS(4019), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49870] = 2, - ACTIONS(3964), 1, - aux_sym_class_declaration_token12, - ACTIONS(3), 2, sym_eol_comment, + [52644] = 2, + ACTIONS(6194), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49878] = 2, - ACTIONS(6233), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [52653] = 2, + ACTIONS(6196), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49886] = 2, - ACTIONS(6235), 1, - anon_sym_LPAREN2, - ACTIONS(3), 2, sym_eol_comment, + [52662] = 2, + ACTIONS(6198), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49894] = 2, - ACTIONS(6237), 1, - aux_sym__data_object_typing_normal_token3, - ACTIONS(3), 2, sym_eol_comment, + [52671] = 2, + ACTIONS(6200), 1, + aux_sym_create_object_statement_token1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49902] = 2, - ACTIONS(6239), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [52680] = 2, + ACTIONS(6202), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49910] = 2, - ACTIONS(6241), 1, - sym_name, - ACTIONS(3), 2, sym_eol_comment, + [52689] = 2, + ACTIONS(6204), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49918] = 2, - ACTIONS(6243), 1, - aux_sym_class_declaration_token12, - ACTIONS(3), 2, sym_eol_comment, + [52698] = 2, + ACTIONS(6206), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49926] = 2, - ACTIONS(2880), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [52707] = 2, + ACTIONS(6208), 1, + aux_sym_call_function_token2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49934] = 2, - ACTIONS(6245), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [52716] = 2, + ACTIONS(6210), 1, + anon_sym_EQ, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49942] = 2, - ACTIONS(6247), 1, - sym_name, - ACTIONS(3), 2, sym_eol_comment, + [52725] = 2, + ACTIONS(6212), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49950] = 2, - ACTIONS(6249), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [52734] = 2, + ACTIONS(6214), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49958] = 2, - ACTIONS(6251), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [52743] = 2, + ACTIONS(2859), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49966] = 2, - ACTIONS(6253), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [52752] = 2, + ACTIONS(6216), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49974] = 2, - ACTIONS(4071), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [49982] = 2, - ACTIONS(6255), 1, + [52761] = 2, + ACTIONS(6218), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49990] = 2, - ACTIONS(6257), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [52770] = 2, + ACTIONS(6220), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [49998] = 2, - ACTIONS(2882), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [52779] = 2, + ACTIONS(6222), 1, + sym_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50006] = 2, - ACTIONS(6259), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [52788] = 2, + ACTIONS(6224), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50014] = 2, - ACTIONS(4095), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [52797] = 2, + ACTIONS(6226), 1, + aux_sym_class_declaration_token12, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50022] = 2, - ACTIONS(6261), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [52806] = 2, + ACTIONS(6228), 1, + anon_sym_LPAREN2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50030] = 2, - ACTIONS(6263), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [52815] = 2, + ACTIONS(6230), 1, + aux_sym__data_object_typing_normal_token3, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50038] = 2, - ACTIONS(2894), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [52824] = 2, + ACTIONS(3997), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50046] = 2, - ACTIONS(6265), 1, - sym_name, - ACTIONS(3), 2, sym_eol_comment, + [52833] = 2, + ACTIONS(6232), 1, + sym_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50054] = 2, - ACTIONS(6267), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [50062] = 2, - ACTIONS(4120), 1, + [52842] = 2, + ACTIONS(6234), 1, aux_sym_class_declaration_token12, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50070] = 2, - ACTIONS(6269), 1, - anon_sym_EQ, - ACTIONS(3), 2, sym_eol_comment, + [52851] = 2, + ACTIONS(6236), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50078] = 2, - ACTIONS(6271), 1, - ts_builtin_sym_end, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [50086] = 2, - ACTIONS(6273), 1, + [52860] = 2, + ACTIONS(6238), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50094] = 2, - ACTIONS(6275), 1, - sym_name, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [50102] = 2, - ACTIONS(6277), 1, + [52869] = 2, + ACTIONS(6240), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50110] = 2, - ACTIONS(6279), 1, - aux_sym_class_declaration_token10, - ACTIONS(3), 2, sym_eol_comment, + [52878] = 2, + ACTIONS(6242), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50118] = 2, - ACTIONS(2054), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [50126] = 2, - ACTIONS(6281), 1, + [52887] = 2, + ACTIONS(6244), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50134] = 2, - ACTIONS(6283), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [52896] = 2, + ACTIONS(6246), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50142] = 2, - ACTIONS(6285), 1, - sym_name, - ACTIONS(3), 2, sym_eol_comment, + [52905] = 2, + ACTIONS(2971), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50150] = 2, - ACTIONS(6287), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [52914] = 2, + ACTIONS(2977), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50158] = 2, - ACTIONS(6289), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [52923] = 2, + ACTIONS(6248), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50166] = 2, - ACTIONS(6291), 1, - aux_sym__data_object_typing_normal_token2, - ACTIONS(3), 2, sym_eol_comment, + [52932] = 2, + ACTIONS(2767), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50174] = 2, - ACTIONS(6293), 1, - aux_sym_call_function_token2, - ACTIONS(3), 2, sym_eol_comment, + [52941] = 2, + ACTIONS(2646), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50182] = 2, - ACTIONS(6295), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [50190] = 2, - ACTIONS(6297), 1, + [52950] = 2, + ACTIONS(6250), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50198] = 2, - ACTIONS(6299), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [50206] = 2, - ACTIONS(6301), 1, + [52959] = 2, + ACTIONS(6252), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50214] = 2, - ACTIONS(6303), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [52968] = 2, + ACTIONS(3967), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50222] = 2, - ACTIONS(6305), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [50230] = 2, - ACTIONS(6307), 1, + [52977] = 2, + ACTIONS(6254), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50238] = 2, - ACTIONS(6309), 1, - aux_sym__data_object_typing_normal_token2, - ACTIONS(3), 2, sym_eol_comment, + [52986] = 2, + ACTIONS(6256), 1, + sym_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50246] = 2, - ACTIONS(6311), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [52995] = 2, + ACTIONS(6258), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50254] = 2, - ACTIONS(6313), 1, - aux_sym_generic_type_token2, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [50262] = 2, - ACTIONS(6315), 1, + [53004] = 2, + ACTIONS(6260), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50270] = 2, - ACTIONS(6317), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [53013] = 2, + ACTIONS(6262), 1, + anon_sym_EQ, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50278] = 2, - ACTIONS(6319), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [53022] = 2, + ACTIONS(6264), 1, + ts_builtin_sym_end, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50286] = 2, - ACTIONS(6321), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [53031] = 2, + ACTIONS(6266), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50294] = 2, - ACTIONS(3709), 1, - aux_sym_class_declaration_token12, - ACTIONS(3), 2, sym_eol_comment, + [53040] = 2, + ACTIONS(6268), 1, + sym_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50302] = 2, - ACTIONS(6323), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [53049] = 2, + ACTIONS(6270), 1, + sym_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50310] = 2, - ACTIONS(6325), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [53058] = 2, + ACTIONS(6272), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50318] = 2, - ACTIONS(6327), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [53067] = 2, + ACTIONS(1912), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50326] = 2, - ACTIONS(6329), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [50334] = 2, - ACTIONS(6331), 1, + [53076] = 2, + ACTIONS(6274), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50342] = 2, - ACTIONS(6333), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [53085] = 2, + ACTIONS(3961), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50350] = 2, - ACTIONS(6335), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [50358] = 2, - ACTIONS(6337), 1, + [53094] = 2, + ACTIONS(6276), 1, sym_name, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50366] = 2, - ACTIONS(6339), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [50374] = 2, - ACTIONS(6341), 1, + [53103] = 2, + ACTIONS(6278), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50382] = 2, - ACTIONS(6343), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [53112] = 2, + ACTIONS(2755), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50390] = 2, - ACTIONS(6345), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [53121] = 2, + ACTIONS(6280), 1, + aux_sym__data_object_typing_normal_token2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50398] = 2, - ACTIONS(6347), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [53130] = 2, + ACTIONS(6282), 1, + aux_sym_call_function_token2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50406] = 2, - ACTIONS(6349), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [50414] = 2, - ACTIONS(6351), 1, + [53139] = 2, + ACTIONS(6284), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50422] = 2, - ACTIONS(6353), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [50430] = 2, - ACTIONS(6355), 1, + [53148] = 2, + ACTIONS(6286), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50438] = 2, - ACTIONS(6357), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, - sym_bol_comment, - [50446] = 2, - ACTIONS(6359), 1, + [53157] = 2, + ACTIONS(6288), 1, anon_sym_DOT, - ACTIONS(3), 2, - sym_eol_comment, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50454] = 2, - ACTIONS(6361), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [53166] = 2, + ACTIONS(6290), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50462] = 2, - ACTIONS(6363), 1, - sym_name, - ACTIONS(3), 2, sym_eol_comment, + [53175] = 2, + ACTIONS(6292), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50470] = 2, - ACTIONS(6365), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [53184] = 2, + ACTIONS(6294), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50478] = 2, - ACTIONS(6367), 1, - sym_name, - ACTIONS(3), 2, sym_eol_comment, + [53193] = 2, + ACTIONS(3923), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50486] = 2, - ACTIONS(6369), 1, - sym_name, - ACTIONS(3), 2, sym_eol_comment, + [53202] = 2, + ACTIONS(6296), 1, + aux_sym__data_object_typing_normal_token2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50494] = 2, - ACTIONS(6371), 1, - sym_name, - ACTIONS(3), 2, sym_eol_comment, + [53211] = 2, + ACTIONS(6298), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50502] = 2, - ACTIONS(6373), 1, - sym_name, - ACTIONS(3), 2, sym_eol_comment, + [53220] = 2, + ACTIONS(6300), 1, + aux_sym_generic_type_token2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50510] = 2, - ACTIONS(6375), 1, + sym_eol_comment, + [53229] = 2, + ACTIONS(6302), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [53238] = 2, + ACTIONS(6304), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50518] = 2, - ACTIONS(6377), 1, - sym_name, - ACTIONS(3), 2, sym_eol_comment, + [53247] = 2, + ACTIONS(2466), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50526] = 2, - ACTIONS(6379), 1, - sym_name, - ACTIONS(3), 2, sym_eol_comment, + [53256] = 2, + ACTIONS(6306), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50534] = 2, - ACTIONS(6381), 1, - sym_name, - ACTIONS(3), 2, sym_eol_comment, + [53265] = 2, + ACTIONS(6308), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50542] = 2, - ACTIONS(6383), 1, + sym_eol_comment, + [53274] = 2, + ACTIONS(6310), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [53283] = 2, + ACTIONS(6312), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50550] = 2, - ACTIONS(6385), 1, - sym_name, - ACTIONS(3), 2, sym_eol_comment, + [53292] = 2, + ACTIONS(6314), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50558] = 2, - ACTIONS(6385), 1, - sym_field_symbol_name, - ACTIONS(3), 2, sym_eol_comment, + [53301] = 2, + ACTIONS(3911), 1, + aux_sym_class_declaration_token12, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50566] = 2, - ACTIONS(6387), 1, - aux_sym__where_clause_token1, - ACTIONS(3), 2, sym_eol_comment, + [53310] = 2, + ACTIONS(6316), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50574] = 2, - ACTIONS(6389), 1, - sym_name, - ACTIONS(3), 2, sym_eol_comment, + [53319] = 2, + ACTIONS(6318), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50582] = 2, - ACTIONS(6391), 1, - aux_sym_class_declaration_token10, - ACTIONS(3), 2, sym_eol_comment, + [53328] = 2, + ACTIONS(6320), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50590] = 2, - ACTIONS(6393), 1, - sym_name, - ACTIONS(3), 2, sym_eol_comment, + [53337] = 2, + ACTIONS(6322), 1, + sym_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50598] = 2, - ACTIONS(6395), 1, + sym_eol_comment, + [53346] = 2, + ACTIONS(6324), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [53355] = 2, + ACTIONS(6326), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50606] = 2, - ACTIONS(6397), 1, - aux_sym_class_declaration_token10, - ACTIONS(3), 2, sym_eol_comment, + [53364] = 2, + ACTIONS(6328), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50614] = 2, - ACTIONS(6399), 1, + sym_eol_comment, + [53373] = 2, + ACTIONS(6330), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [53382] = 2, + ACTIONS(6332), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50622] = 2, - ACTIONS(6401), 1, + sym_eol_comment, + [53391] = 2, + ACTIONS(6334), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [53400] = 2, + ACTIONS(6336), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50630] = 2, - ACTIONS(6403), 1, + sym_eol_comment, + [53409] = 2, + ACTIONS(6338), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [53418] = 2, + ACTIONS(6340), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50638] = 2, - ACTIONS(6405), 1, - aux_sym_class_declaration_token5, - ACTIONS(3), 2, sym_eol_comment, + [53427] = 2, + ACTIONS(6342), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50646] = 2, - ACTIONS(6407), 1, + sym_eol_comment, + [53436] = 2, + ACTIONS(6344), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [53445] = 2, + ACTIONS(6346), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50654] = 2, - ACTIONS(6409), 1, - aux_sym_class_declaration_token10, - ACTIONS(3), 2, sym_eol_comment, + [53454] = 2, + ACTIONS(6348), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50662] = 2, - ACTIONS(6411), 1, + sym_eol_comment, + [53463] = 2, + ACTIONS(6350), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [53472] = 2, + ACTIONS(6352), 1, + sym_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50670] = 2, - ACTIONS(6413), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [53481] = 2, + ACTIONS(6354), 1, + sym_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50678] = 2, - ACTIONS(6415), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [53490] = 2, + ACTIONS(6356), 1, + sym_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50686] = 2, - ACTIONS(6417), 1, - aux_sym_class_declaration_token10, - ACTIONS(3), 2, sym_eol_comment, + [53499] = 2, + ACTIONS(6358), 1, + sym_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50694] = 2, - ACTIONS(6419), 1, + sym_eol_comment, + [53508] = 2, + ACTIONS(6360), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [53517] = 2, + ACTIONS(6362), 1, + sym_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50702] = 2, - ACTIONS(1954), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [53526] = 2, + ACTIONS(6364), 1, + sym_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50710] = 2, - ACTIONS(6421), 1, - aux_sym_class_declaration_token10, - ACTIONS(3), 2, sym_eol_comment, + [53535] = 2, + ACTIONS(6366), 1, + sym_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50718] = 2, - ACTIONS(6423), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [53544] = 2, + ACTIONS(6368), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50726] = 2, - ACTIONS(6425), 1, - aux_sym_loop_statement_token2, - ACTIONS(3), 2, sym_eol_comment, + [53553] = 2, + ACTIONS(6370), 1, + sym_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50734] = 2, - ACTIONS(6427), 1, - aux_sym_class_declaration_token10, - ACTIONS(3), 2, sym_eol_comment, + [53562] = 2, + ACTIONS(6370), 1, + sym_field_symbol_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50742] = 2, - ACTIONS(6429), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [53571] = 2, + ACTIONS(6372), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50750] = 2, - ACTIONS(6431), 1, - aux_sym_class_declaration_token10, - ACTIONS(3), 2, sym_eol_comment, + [53580] = 2, + ACTIONS(6374), 1, + sym_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50758] = 2, - ACTIONS(6433), 1, + sym_eol_comment, + [53589] = 2, + ACTIONS(6376), 1, aux_sym_class_declaration_token10, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [53598] = 2, + ACTIONS(6378), 1, + sym_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50766] = 2, - ACTIONS(6435), 1, + sym_eol_comment, + [53607] = 2, + ACTIONS(6380), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [53616] = 2, + ACTIONS(6382), 1, + aux_sym_class_declaration_token10, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50774] = 2, - ACTIONS(6437), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [53625] = 2, + ACTIONS(6384), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50782] = 2, - ACTIONS(6439), 1, - aux_sym_class_declaration_token10, - ACTIONS(3), 2, sym_eol_comment, + [53634] = 2, + ACTIONS(6386), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50790] = 2, - ACTIONS(4055), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [53643] = 2, + ACTIONS(6388), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50798] = 2, - ACTIONS(6441), 1, - aux_sym_class_declaration_token10, - ACTIONS(3), 2, sym_eol_comment, + [53652] = 2, + ACTIONS(6390), 1, + aux_sym_class_declaration_token5, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50806] = 2, - ACTIONS(6443), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [53661] = 2, + ACTIONS(6392), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50814] = 2, - ACTIONS(6445), 1, + sym_eol_comment, + [53670] = 2, + ACTIONS(6394), 1, aux_sym_class_declaration_token10, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [53679] = 2, + ACTIONS(6396), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50822] = 2, - ACTIONS(2968), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [53688] = 2, + ACTIONS(2969), 1, + aux_sym_class_declaration_token13, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50830] = 2, - ACTIONS(6447), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [53697] = 2, + ACTIONS(6398), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50838] = 2, - ACTIONS(6449), 1, - aux_sym_class_declaration_token10, - ACTIONS(3), 2, sym_eol_comment, + [53706] = 2, + ACTIONS(6400), 1, + aux_sym_class_declaration_token10, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50846] = 2, - ACTIONS(3978), 1, - aux_sym_class_declaration_token12, - ACTIONS(3), 2, sym_eol_comment, + [53715] = 2, + ACTIONS(6402), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50854] = 2, - ACTIONS(6451), 1, - aux_sym_class_declaration_token10, - ACTIONS(3), 2, sym_eol_comment, + [53724] = 2, + ACTIONS(6404), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50862] = 2, - ACTIONS(6453), 1, + sym_eol_comment, + [53733] = 2, + ACTIONS(6406), 1, aux_sym_class_declaration_token10, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [53742] = 2, + ACTIONS(6408), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50870] = 2, - ACTIONS(1892), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [53751] = 2, + ACTIONS(6410), 1, + aux_sym_loop_statement_token2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50878] = 2, - ACTIONS(6455), 1, - aux_sym_class_declaration_token10, - ACTIONS(3), 2, sym_eol_comment, + [53760] = 2, + ACTIONS(6412), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50886] = 2, - ACTIONS(6457), 1, + sym_eol_comment, + [53769] = 2, + ACTIONS(6414), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [53778] = 2, + ACTIONS(6416), 1, + aux_sym_class_declaration_token10, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50894] = 2, - ACTIONS(6459), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [53787] = 2, + ACTIONS(6418), 1, + aux_sym_class_declaration_token10, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50902] = 2, - ACTIONS(6461), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [53796] = 2, + ACTIONS(6420), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50910] = 2, - ACTIONS(6463), 1, + sym_eol_comment, + [53805] = 2, + ACTIONS(6422), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [53814] = 2, + ACTIONS(6424), 1, + aux_sym_class_declaration_token10, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50918] = 2, - ACTIONS(6465), 1, - aux_sym_class_declaration_token12, - ACTIONS(3), 2, sym_eol_comment, + [53823] = 2, + ACTIONS(6426), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50926] = 2, - ACTIONS(3874), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [53832] = 2, + ACTIONS(6428), 1, + aux_sym_class_declaration_token10, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50934] = 2, - ACTIONS(6467), 1, + sym_eol_comment, + [53841] = 2, + ACTIONS(6430), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [53850] = 2, + ACTIONS(6432), 1, + aux_sym_class_declaration_token10, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50942] = 2, - ACTIONS(2986), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [53859] = 2, + ACTIONS(6434), 1, + sym_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50950] = 2, - ACTIONS(6469), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [53868] = 2, + ACTIONS(6436), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50958] = 2, - ACTIONS(6471), 1, - aux_sym_generic_type_token2, - ACTIONS(3), 2, sym_eol_comment, + [53877] = 2, + ACTIONS(6438), 1, + aux_sym_class_declaration_token10, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50966] = 2, - ACTIONS(2441), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [53886] = 2, + ACTIONS(6440), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50974] = 2, - ACTIONS(6473), 1, - aux_sym_class_declaration_token5, - ACTIONS(3), 2, sym_eol_comment, + [53895] = 2, + ACTIONS(6442), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50982] = 2, - ACTIONS(6475), 1, - aux_sym_class_declaration_token9, - ACTIONS(3), 2, sym_eol_comment, + [53904] = 2, + ACTIONS(6444), 1, + aux_sym_class_declaration_token10, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50990] = 2, - ACTIONS(1746), 1, - aux_sym_class_declaration_token12, - ACTIONS(3), 2, sym_eol_comment, + [53913] = 2, + ACTIONS(6446), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [50998] = 2, - ACTIONS(6477), 1, - aux_sym_class_declaration_token5, - ACTIONS(3), 2, sym_eol_comment, + [53922] = 2, + ACTIONS(6448), 1, + aux_sym_class_declaration_token10, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [51006] = 2, - ACTIONS(6479), 1, - aux_sym_class_declaration_token9, - ACTIONS(3), 2, sym_eol_comment, + [53931] = 2, + ACTIONS(6450), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [51014] = 2, - ACTIONS(1968), 1, - aux_sym_class_declaration_token12, - ACTIONS(3), 2, sym_eol_comment, + [53940] = 2, + ACTIONS(6452), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [51022] = 2, - ACTIONS(6481), 1, - sym_name, - ACTIONS(3), 2, sym_eol_comment, + [53949] = 2, + ACTIONS(6454), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [51030] = 2, - ACTIONS(6483), 1, - aux_sym_class_declaration_token9, - ACTIONS(3), 2, sym_eol_comment, + [53958] = 2, + ACTIONS(6456), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [51038] = 2, - ACTIONS(2657), 1, - aux_sym_class_declaration_token12, - ACTIONS(3), 2, sym_eol_comment, + [53967] = 2, + ACTIONS(6458), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [51046] = 2, - ACTIONS(6485), 1, + sym_eol_comment, + [53976] = 2, + ACTIONS(6460), 1, anon_sym_DOT, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [53985] = 2, + ACTIONS(6462), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [51054] = 2, - ACTIONS(6487), 1, - aux_sym_class_declaration_token9, - ACTIONS(3), 2, sym_eol_comment, + [53994] = 2, + ACTIONS(6464), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [51062] = 2, - ACTIONS(3445), 1, - aux_sym_class_declaration_token12, - ACTIONS(3), 2, sym_eol_comment, + [54003] = 2, + ACTIONS(6466), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [51070] = 2, - ACTIONS(6489), 1, - aux_sym_class_declaration_token9, - ACTIONS(3), 2, sym_eol_comment, + [54012] = 2, + ACTIONS(6468), 1, + aux_sym_generic_type_token2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [51078] = 2, - ACTIONS(1944), 1, - aux_sym_class_declaration_token12, - ACTIONS(3), 2, sym_eol_comment, + [54021] = 2, + ACTIONS(6470), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [51086] = 2, - ACTIONS(2970), 1, - aux_sym_class_declaration_token13, - ACTIONS(3), 2, sym_eol_comment, + [54030] = 2, + ACTIONS(6472), 1, + aux_sym_class_declaration_token5, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [51094] = 2, - ACTIONS(6491), 1, - aux_sym_class_declaration_token9, - ACTIONS(3), 2, sym_eol_comment, + [54039] = 2, + ACTIONS(6474), 1, + aux_sym_class_declaration_token9, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [51102] = 2, - ACTIONS(1930), 1, + sym_eol_comment, + [54048] = 2, + ACTIONS(1744), 1, aux_sym_class_declaration_token12, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [54057] = 2, + ACTIONS(6476), 1, + aux_sym_class_declaration_token5, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [51110] = 2, - ACTIONS(6493), 1, - aux_sym_class_declaration_token9, - ACTIONS(3), 2, sym_eol_comment, + [54066] = 2, + ACTIONS(6478), 1, + aux_sym_class_declaration_token9, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [51118] = 2, - ACTIONS(4132), 1, + sym_eol_comment, + [54075] = 2, + ACTIONS(1976), 1, aux_sym_class_declaration_token12, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [54084] = 2, + ACTIONS(6480), 1, + sym_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [51126] = 2, - ACTIONS(6495), 1, - aux_sym_class_declaration_token9, - ACTIONS(3), 2, sym_eol_comment, + [54093] = 2, + ACTIONS(6482), 1, + aux_sym_class_declaration_token9, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [51134] = 2, - ACTIONS(2720), 1, + sym_eol_comment, + [54102] = 2, + ACTIONS(2662), 1, aux_sym_class_declaration_token12, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [54111] = 2, + ACTIONS(6484), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [51142] = 2, - ACTIONS(6497), 1, - aux_sym_class_declaration_token9, - ACTIONS(3), 2, sym_eol_comment, + [54120] = 2, + ACTIONS(6486), 1, + aux_sym_class_declaration_token9, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [51150] = 2, - ACTIONS(2712), 1, + sym_eol_comment, + [54129] = 2, + ACTIONS(3027), 1, aux_sym_class_declaration_token12, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [54138] = 2, + ACTIONS(6488), 1, + aux_sym_class_declaration_token9, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [51158] = 2, - ACTIONS(4164), 1, + sym_eol_comment, + [54147] = 2, + ACTIONS(1952), 1, aux_sym_class_declaration_token12, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [54156] = 2, + ACTIONS(6490), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [51166] = 2, - ACTIONS(6499), 1, - aux_sym_class_declaration_token9, - ACTIONS(3), 2, sym_eol_comment, + [54165] = 2, + ACTIONS(6492), 1, + aux_sym_class_declaration_token9, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [51174] = 2, - ACTIONS(3351), 1, - aux_sym_class_declaration_token12, - ACTIONS(3), 2, sym_eol_comment, + [54174] = 2, + ACTIONS(1938), 1, + aux_sym_class_declaration_token12, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [51182] = 2, - ACTIONS(6501), 1, - aux_sym_class_declaration_token9, - ACTIONS(3), 2, sym_eol_comment, + [54183] = 2, + ACTIONS(6494), 1, + aux_sym_class_declaration_token9, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [51190] = 2, - ACTIONS(3319), 1, + sym_eol_comment, + [54192] = 2, + ACTIONS(3947), 1, aux_sym_class_declaration_token12, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [54201] = 2, + ACTIONS(6496), 1, + aux_sym_class_declaration_token9, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [51198] = 2, - ACTIONS(4204), 1, - aux_sym_class_declaration_token12, - ACTIONS(3), 2, sym_eol_comment, + [54210] = 2, + ACTIONS(2721), 1, + aux_sym_class_declaration_token12, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [51206] = 2, - ACTIONS(6503), 1, - aux_sym_class_declaration_token9, - ACTIONS(3), 2, sym_eol_comment, + [54219] = 2, + ACTIONS(6498), 1, + aux_sym_class_declaration_token9, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [51214] = 2, - ACTIONS(4243), 1, + sym_eol_comment, + [54228] = 2, + ACTIONS(2654), 1, aux_sym_class_declaration_token12, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [54237] = 2, + ACTIONS(3935), 1, + aux_sym_class_declaration_token12, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [51222] = 2, - ACTIONS(6505), 1, - aux_sym_class_declaration_token9, - ACTIONS(3), 2, sym_eol_comment, + [54246] = 2, + ACTIONS(6500), 1, + aux_sym_class_declaration_token9, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [51230] = 2, - ACTIONS(4265), 1, + sym_eol_comment, + [54255] = 2, + ACTIONS(3019), 1, aux_sym_class_declaration_token12, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [54264] = 2, + ACTIONS(6502), 1, + aux_sym_class_declaration_token9, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [51238] = 2, - ACTIONS(6507), 1, - aux_sym_class_declaration_token12, - ACTIONS(3), 2, sym_eol_comment, + [54273] = 2, + ACTIONS(3011), 1, + aux_sym_class_declaration_token12, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [51246] = 2, - ACTIONS(4283), 1, + sym_eol_comment, + [54282] = 2, + ACTIONS(3901), 1, aux_sym_class_declaration_token12, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [54291] = 2, + ACTIONS(6504), 1, + aux_sym_class_declaration_token9, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [51254] = 2, - ACTIONS(4293), 1, + sym_eol_comment, + [54300] = 2, + ACTIONS(3889), 1, aux_sym_class_declaration_token12, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [54309] = 2, + ACTIONS(6506), 1, + aux_sym_class_declaration_token9, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [51262] = 2, - ACTIONS(4325), 1, + sym_eol_comment, + [54318] = 2, + ACTIONS(3879), 1, aux_sym_class_declaration_token12, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [54327] = 2, + ACTIONS(6508), 1, + aux_sym_class_declaration_token12, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [51270] = 2, - ACTIONS(4337), 1, + sym_eol_comment, + [54336] = 2, + ACTIONS(3871), 1, aux_sym_class_declaration_token12, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [54345] = 2, + ACTIONS(3857), 1, + aux_sym_class_declaration_token12, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [51278] = 2, - ACTIONS(6509), 1, + sym_eol_comment, + [54354] = 2, + ACTIONS(3845), 1, aux_sym_class_declaration_token12, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [54363] = 2, + ACTIONS(3835), 1, + aux_sym_class_declaration_token12, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [51286] = 2, - ACTIONS(6511), 1, + sym_eol_comment, + [54372] = 2, + ACTIONS(6510), 1, aux_sym_class_declaration_token12, - ACTIONS(3), 2, + ACTIONS(3), 3, + sym__whitespace, + sym_bol_comment, sym_eol_comment, + [54381] = 2, + ACTIONS(6512), 1, + aux_sym_class_declaration_token12, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [51294] = 2, - ACTIONS(6513), 1, - sym_name, - ACTIONS(3), 2, sym_eol_comment, + [54390] = 2, + ACTIONS(6514), 1, + sym_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [51302] = 2, - ACTIONS(6515), 1, - aux_sym_create_object_statement_token1, - ACTIONS(3), 2, sym_eol_comment, + [54399] = 2, + ACTIONS(6516), 1, + aux_sym_create_object_statement_token1, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [51310] = 2, - ACTIONS(6517), 1, - anon_sym_DOT, - ACTIONS(3), 2, sym_eol_comment, + [54408] = 2, + ACTIONS(6518), 1, + anon_sym_DOT, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [51318] = 2, - ACTIONS(6519), 1, - anon_sym_COMMA, - ACTIONS(3), 2, sym_eol_comment, + [54417] = 2, + ACTIONS(6520), 1, + anon_sym_COMMA, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [51326] = 2, - ACTIONS(6521), 1, - aux_sym_loop_statement_token2, - ACTIONS(3), 2, sym_eol_comment, + [54426] = 2, + ACTIONS(6522), 1, + aux_sym_loop_statement_token2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [51334] = 2, - ACTIONS(6523), 1, - aux_sym_complete_typing_token2, - ACTIONS(3), 2, sym_eol_comment, + [54435] = 2, + ACTIONS(6524), 1, + aux_sym_complete_typing_token2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [51342] = 2, - ACTIONS(6525), 1, - sym_name, - ACTIONS(3), 2, sym_eol_comment, + [54444] = 2, + ACTIONS(6526), 1, + sym_name, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, - [51350] = 2, - ACTIONS(6527), 1, - aux_sym__data_object_typing_normal_token2, - ACTIONS(3), 2, sym_eol_comment, + [54453] = 2, + ACTIONS(6528), 1, + aux_sym__data_object_typing_normal_token2, + ACTIONS(3), 3, + sym__whitespace, sym_bol_comment, + sym_eol_comment, }; static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(31)] = 0, - [SMALL_STATE(32)] = 115, - [SMALL_STATE(33)] = 228, - [SMALL_STATE(34)] = 340, - [SMALL_STATE(35)] = 452, - [SMALL_STATE(36)] = 564, - [SMALL_STATE(37)] = 676, - [SMALL_STATE(38)] = 788, - [SMALL_STATE(39)] = 834, - [SMALL_STATE(40)] = 880, - [SMALL_STATE(41)] = 926, - [SMALL_STATE(42)] = 965, - [SMALL_STATE(43)] = 1004, - [SMALL_STATE(44)] = 1043, - [SMALL_STATE(45)] = 1082, - [SMALL_STATE(46)] = 1121, - [SMALL_STATE(47)] = 1160, - [SMALL_STATE(48)] = 1199, - [SMALL_STATE(49)] = 1238, - [SMALL_STATE(50)] = 1277, - [SMALL_STATE(51)] = 1316, + [SMALL_STATE(32)] = 116, + [SMALL_STATE(33)] = 230, + [SMALL_STATE(34)] = 343, + [SMALL_STATE(35)] = 456, + [SMALL_STATE(36)] = 569, + [SMALL_STATE(37)] = 682, + [SMALL_STATE(38)] = 795, + [SMALL_STATE(39)] = 835, + [SMALL_STATE(40)] = 875, + [SMALL_STATE(41)] = 915, + [SMALL_STATE(42)] = 955, + [SMALL_STATE(43)] = 995, + [SMALL_STATE(44)] = 1035, + [SMALL_STATE(45)] = 1075, + [SMALL_STATE(46)] = 1115, + [SMALL_STATE(47)] = 1155, + [SMALL_STATE(48)] = 1195, + [SMALL_STATE(49)] = 1235, + [SMALL_STATE(50)] = 1275, + [SMALL_STATE(51)] = 1315, [SMALL_STATE(52)] = 1355, - [SMALL_STATE(53)] = 1394, - [SMALL_STATE(54)] = 1433, - [SMALL_STATE(55)] = 1472, - [SMALL_STATE(56)] = 1511, - [SMALL_STATE(57)] = 1550, - [SMALL_STATE(58)] = 1589, - [SMALL_STATE(59)] = 1628, - [SMALL_STATE(60)] = 1667, - [SMALL_STATE(61)] = 1706, - [SMALL_STATE(62)] = 1745, - [SMALL_STATE(63)] = 1784, - [SMALL_STATE(64)] = 1823, - [SMALL_STATE(65)] = 1862, - [SMALL_STATE(66)] = 1901, - [SMALL_STATE(67)] = 1940, - [SMALL_STATE(68)] = 1979, - [SMALL_STATE(69)] = 2018, - [SMALL_STATE(70)] = 2057, - [SMALL_STATE(71)] = 2096, - [SMALL_STATE(72)] = 2135, - [SMALL_STATE(73)] = 2174, - [SMALL_STATE(74)] = 2213, - [SMALL_STATE(75)] = 2252, - [SMALL_STATE(76)] = 2291, - [SMALL_STATE(77)] = 2330, - [SMALL_STATE(78)] = 2369, - [SMALL_STATE(79)] = 2408, - [SMALL_STATE(80)] = 2447, - [SMALL_STATE(81)] = 2486, - [SMALL_STATE(82)] = 2527, - [SMALL_STATE(83)] = 2566, - [SMALL_STATE(84)] = 2605, - [SMALL_STATE(85)] = 2644, - [SMALL_STATE(86)] = 2683, - [SMALL_STATE(87)] = 2722, - [SMALL_STATE(88)] = 2761, - [SMALL_STATE(89)] = 2800, - [SMALL_STATE(90)] = 2839, - [SMALL_STATE(91)] = 2878, - [SMALL_STATE(92)] = 2917, - [SMALL_STATE(93)] = 2956, - [SMALL_STATE(94)] = 2995, - [SMALL_STATE(95)] = 3034, - [SMALL_STATE(96)] = 3073, - [SMALL_STATE(97)] = 3112, - [SMALL_STATE(98)] = 3151, - [SMALL_STATE(99)] = 3190, - [SMALL_STATE(100)] = 3229, - [SMALL_STATE(101)] = 3268, - [SMALL_STATE(102)] = 3307, - [SMALL_STATE(103)] = 3346, - [SMALL_STATE(104)] = 3385, - [SMALL_STATE(105)] = 3425, - [SMALL_STATE(106)] = 3465, - [SMALL_STATE(107)] = 3502, - [SMALL_STATE(108)] = 3539, - [SMALL_STATE(109)] = 3576, - [SMALL_STATE(110)] = 3613, - [SMALL_STATE(111)] = 3650, - [SMALL_STATE(112)] = 3687, - [SMALL_STATE(113)] = 3724, - [SMALL_STATE(114)] = 3761, - [SMALL_STATE(115)] = 3798, - [SMALL_STATE(116)] = 3835, - [SMALL_STATE(117)] = 3872, - [SMALL_STATE(118)] = 3909, - [SMALL_STATE(119)] = 3946, - [SMALL_STATE(120)] = 3983, - [SMALL_STATE(121)] = 4020, - [SMALL_STATE(122)] = 4057, - [SMALL_STATE(123)] = 4094, - [SMALL_STATE(124)] = 4131, - [SMALL_STATE(125)] = 4168, - [SMALL_STATE(126)] = 4205, - [SMALL_STATE(127)] = 4242, - [SMALL_STATE(128)] = 4279, - [SMALL_STATE(129)] = 4316, - [SMALL_STATE(130)] = 4353, - [SMALL_STATE(131)] = 4390, - [SMALL_STATE(132)] = 4427, - [SMALL_STATE(133)] = 4464, - [SMALL_STATE(134)] = 4501, - [SMALL_STATE(135)] = 4538, - [SMALL_STATE(136)] = 4575, - [SMALL_STATE(137)] = 4612, - [SMALL_STATE(138)] = 4649, - [SMALL_STATE(139)] = 4686, - [SMALL_STATE(140)] = 4723, - [SMALL_STATE(141)] = 4760, - [SMALL_STATE(142)] = 4797, - [SMALL_STATE(143)] = 4834, - [SMALL_STATE(144)] = 4871, - [SMALL_STATE(145)] = 4908, - [SMALL_STATE(146)] = 4945, - [SMALL_STATE(147)] = 4982, - [SMALL_STATE(148)] = 5019, - [SMALL_STATE(149)] = 5056, - [SMALL_STATE(150)] = 5093, - [SMALL_STATE(151)] = 5130, - [SMALL_STATE(152)] = 5167, - [SMALL_STATE(153)] = 5204, - [SMALL_STATE(154)] = 5241, - [SMALL_STATE(155)] = 5278, - [SMALL_STATE(156)] = 5315, - [SMALL_STATE(157)] = 5352, - [SMALL_STATE(158)] = 5389, - [SMALL_STATE(159)] = 5426, - [SMALL_STATE(160)] = 5463, - [SMALL_STATE(161)] = 5500, - [SMALL_STATE(162)] = 5537, - [SMALL_STATE(163)] = 5574, - [SMALL_STATE(164)] = 5611, - [SMALL_STATE(165)] = 5648, - [SMALL_STATE(166)] = 5685, - [SMALL_STATE(167)] = 5722, - [SMALL_STATE(168)] = 5759, - [SMALL_STATE(169)] = 5796, - [SMALL_STATE(170)] = 5833, - [SMALL_STATE(171)] = 5870, - [SMALL_STATE(172)] = 5907, - [SMALL_STATE(173)] = 5944, - [SMALL_STATE(174)] = 5981, - [SMALL_STATE(175)] = 6018, - [SMALL_STATE(176)] = 6055, - [SMALL_STATE(177)] = 6092, - [SMALL_STATE(178)] = 6129, - [SMALL_STATE(179)] = 6166, - [SMALL_STATE(180)] = 6203, - [SMALL_STATE(181)] = 6240, - [SMALL_STATE(182)] = 6277, - [SMALL_STATE(183)] = 6314, - [SMALL_STATE(184)] = 6351, - [SMALL_STATE(185)] = 6388, - [SMALL_STATE(186)] = 6425, - [SMALL_STATE(187)] = 6462, - [SMALL_STATE(188)] = 6499, - [SMALL_STATE(189)] = 6536, - [SMALL_STATE(190)] = 6573, - [SMALL_STATE(191)] = 6610, - [SMALL_STATE(192)] = 6647, - [SMALL_STATE(193)] = 6684, - [SMALL_STATE(194)] = 6721, - [SMALL_STATE(195)] = 6758, - [SMALL_STATE(196)] = 6795, - [SMALL_STATE(197)] = 6832, - [SMALL_STATE(198)] = 6869, - [SMALL_STATE(199)] = 6906, - [SMALL_STATE(200)] = 6943, - [SMALL_STATE(201)] = 6980, - [SMALL_STATE(202)] = 7017, - [SMALL_STATE(203)] = 7054, - [SMALL_STATE(204)] = 7091, - [SMALL_STATE(205)] = 7128, - [SMALL_STATE(206)] = 7165, - [SMALL_STATE(207)] = 7202, - [SMALL_STATE(208)] = 7239, - [SMALL_STATE(209)] = 7276, - [SMALL_STATE(210)] = 7313, - [SMALL_STATE(211)] = 7350, - [SMALL_STATE(212)] = 7387, - [SMALL_STATE(213)] = 7424, - [SMALL_STATE(214)] = 7461, - [SMALL_STATE(215)] = 7498, - [SMALL_STATE(216)] = 7535, - [SMALL_STATE(217)] = 7572, - [SMALL_STATE(218)] = 7609, - [SMALL_STATE(219)] = 7646, - [SMALL_STATE(220)] = 7683, - [SMALL_STATE(221)] = 7720, - [SMALL_STATE(222)] = 7757, - [SMALL_STATE(223)] = 7794, - [SMALL_STATE(224)] = 7831, - [SMALL_STATE(225)] = 7868, - [SMALL_STATE(226)] = 7905, - [SMALL_STATE(227)] = 7942, - [SMALL_STATE(228)] = 7979, - [SMALL_STATE(229)] = 8016, - [SMALL_STATE(230)] = 8053, - [SMALL_STATE(231)] = 8090, - [SMALL_STATE(232)] = 8127, - [SMALL_STATE(233)] = 8164, - [SMALL_STATE(234)] = 8201, - [SMALL_STATE(235)] = 8238, - [SMALL_STATE(236)] = 8275, - [SMALL_STATE(237)] = 8312, - [SMALL_STATE(238)] = 8349, - [SMALL_STATE(239)] = 8386, - [SMALL_STATE(240)] = 8431, - [SMALL_STATE(241)] = 8468, - [SMALL_STATE(242)] = 8505, - [SMALL_STATE(243)] = 8542, - [SMALL_STATE(244)] = 8579, - [SMALL_STATE(245)] = 8616, - [SMALL_STATE(246)] = 8653, - [SMALL_STATE(247)] = 8690, - [SMALL_STATE(248)] = 8727, - [SMALL_STATE(249)] = 8761, - [SMALL_STATE(250)] = 8795, - [SMALL_STATE(251)] = 8829, - [SMALL_STATE(252)] = 8863, - [SMALL_STATE(253)] = 8897, - [SMALL_STATE(254)] = 8931, - [SMALL_STATE(255)] = 8965, - [SMALL_STATE(256)] = 8999, - [SMALL_STATE(257)] = 9033, - [SMALL_STATE(258)] = 9067, - [SMALL_STATE(259)] = 9101, - [SMALL_STATE(260)] = 9135, - [SMALL_STATE(261)] = 9169, - [SMALL_STATE(262)] = 9203, - [SMALL_STATE(263)] = 9237, - [SMALL_STATE(264)] = 9271, - [SMALL_STATE(265)] = 9313, - [SMALL_STATE(266)] = 9351, - [SMALL_STATE(267)] = 9385, - [SMALL_STATE(268)] = 9419, - [SMALL_STATE(269)] = 9453, - [SMALL_STATE(270)] = 9487, - [SMALL_STATE(271)] = 9521, - [SMALL_STATE(272)] = 9555, - [SMALL_STATE(273)] = 9589, - [SMALL_STATE(274)] = 9623, - [SMALL_STATE(275)] = 9657, - [SMALL_STATE(276)] = 9691, - [SMALL_STATE(277)] = 9725, - [SMALL_STATE(278)] = 9759, - [SMALL_STATE(279)] = 9793, - [SMALL_STATE(280)] = 9827, - [SMALL_STATE(281)] = 9861, - [SMALL_STATE(282)] = 9895, - [SMALL_STATE(283)] = 9929, - [SMALL_STATE(284)] = 9963, - [SMALL_STATE(285)] = 9997, - [SMALL_STATE(286)] = 10031, - [SMALL_STATE(287)] = 10065, - [SMALL_STATE(288)] = 10099, - [SMALL_STATE(289)] = 10133, - [SMALL_STATE(290)] = 10167, - [SMALL_STATE(291)] = 10201, - [SMALL_STATE(292)] = 10235, - [SMALL_STATE(293)] = 10269, - [SMALL_STATE(294)] = 10303, - [SMALL_STATE(295)] = 10337, - [SMALL_STATE(296)] = 10371, - [SMALL_STATE(297)] = 10405, - [SMALL_STATE(298)] = 10439, - [SMALL_STATE(299)] = 10473, - [SMALL_STATE(300)] = 10507, - [SMALL_STATE(301)] = 10541, - [SMALL_STATE(302)] = 10575, - [SMALL_STATE(303)] = 10609, - [SMALL_STATE(304)] = 10643, - [SMALL_STATE(305)] = 10677, - [SMALL_STATE(306)] = 10711, - [SMALL_STATE(307)] = 10745, - [SMALL_STATE(308)] = 10779, - [SMALL_STATE(309)] = 10813, - [SMALL_STATE(310)] = 10847, - [SMALL_STATE(311)] = 10881, - [SMALL_STATE(312)] = 10915, - [SMALL_STATE(313)] = 10949, - [SMALL_STATE(314)] = 10983, - [SMALL_STATE(315)] = 11017, - [SMALL_STATE(316)] = 11051, - [SMALL_STATE(317)] = 11085, - [SMALL_STATE(318)] = 11119, - [SMALL_STATE(319)] = 11153, - [SMALL_STATE(320)] = 11187, - [SMALL_STATE(321)] = 11221, - [SMALL_STATE(322)] = 11255, - [SMALL_STATE(323)] = 11289, - [SMALL_STATE(324)] = 11323, - [SMALL_STATE(325)] = 11357, - [SMALL_STATE(326)] = 11391, - [SMALL_STATE(327)] = 11425, - [SMALL_STATE(328)] = 11459, - [SMALL_STATE(329)] = 11493, - [SMALL_STATE(330)] = 11527, - [SMALL_STATE(331)] = 11561, - [SMALL_STATE(332)] = 11595, - [SMALL_STATE(333)] = 11629, - [SMALL_STATE(334)] = 11663, - [SMALL_STATE(335)] = 11697, - [SMALL_STATE(336)] = 11731, - [SMALL_STATE(337)] = 11765, - [SMALL_STATE(338)] = 11799, - [SMALL_STATE(339)] = 11833, - [SMALL_STATE(340)] = 11867, - [SMALL_STATE(341)] = 11901, - [SMALL_STATE(342)] = 11935, - [SMALL_STATE(343)] = 11969, - [SMALL_STATE(344)] = 12003, - [SMALL_STATE(345)] = 12037, - [SMALL_STATE(346)] = 12071, - [SMALL_STATE(347)] = 12105, - [SMALL_STATE(348)] = 12139, - [SMALL_STATE(349)] = 12173, - [SMALL_STATE(350)] = 12207, - [SMALL_STATE(351)] = 12241, - [SMALL_STATE(352)] = 12275, - [SMALL_STATE(353)] = 12309, - [SMALL_STATE(354)] = 12343, - [SMALL_STATE(355)] = 12377, - [SMALL_STATE(356)] = 12411, - [SMALL_STATE(357)] = 12445, - [SMALL_STATE(358)] = 12479, - [SMALL_STATE(359)] = 12513, - [SMALL_STATE(360)] = 12547, - [SMALL_STATE(361)] = 12581, - [SMALL_STATE(362)] = 12615, - [SMALL_STATE(363)] = 12649, - [SMALL_STATE(364)] = 12683, - [SMALL_STATE(365)] = 12717, - [SMALL_STATE(366)] = 12751, - [SMALL_STATE(367)] = 12785, - [SMALL_STATE(368)] = 12819, - [SMALL_STATE(369)] = 12853, - [SMALL_STATE(370)] = 12887, - [SMALL_STATE(371)] = 12921, - [SMALL_STATE(372)] = 12955, - [SMALL_STATE(373)] = 12989, - [SMALL_STATE(374)] = 13023, - [SMALL_STATE(375)] = 13057, - [SMALL_STATE(376)] = 13091, - [SMALL_STATE(377)] = 13125, - [SMALL_STATE(378)] = 13159, - [SMALL_STATE(379)] = 13193, - [SMALL_STATE(380)] = 13227, - [SMALL_STATE(381)] = 13261, - [SMALL_STATE(382)] = 13295, - [SMALL_STATE(383)] = 13329, - [SMALL_STATE(384)] = 13363, - [SMALL_STATE(385)] = 13397, - [SMALL_STATE(386)] = 13431, - [SMALL_STATE(387)] = 13465, - [SMALL_STATE(388)] = 13499, - [SMALL_STATE(389)] = 13533, - [SMALL_STATE(390)] = 13567, - [SMALL_STATE(391)] = 13601, - [SMALL_STATE(392)] = 13635, - [SMALL_STATE(393)] = 13669, - [SMALL_STATE(394)] = 13703, - [SMALL_STATE(395)] = 13737, - [SMALL_STATE(396)] = 13771, - [SMALL_STATE(397)] = 13805, - [SMALL_STATE(398)] = 13839, - [SMALL_STATE(399)] = 13873, - [SMALL_STATE(400)] = 13907, - [SMALL_STATE(401)] = 13941, - [SMALL_STATE(402)] = 13975, - [SMALL_STATE(403)] = 14009, - [SMALL_STATE(404)] = 14043, - [SMALL_STATE(405)] = 14077, - [SMALL_STATE(406)] = 14111, - [SMALL_STATE(407)] = 14145, - [SMALL_STATE(408)] = 14179, - [SMALL_STATE(409)] = 14213, - [SMALL_STATE(410)] = 14247, - [SMALL_STATE(411)] = 14281, - [SMALL_STATE(412)] = 14315, - [SMALL_STATE(413)] = 14349, - [SMALL_STATE(414)] = 14383, - [SMALL_STATE(415)] = 14417, - [SMALL_STATE(416)] = 14451, - [SMALL_STATE(417)] = 14485, - [SMALL_STATE(418)] = 14519, - [SMALL_STATE(419)] = 14553, - [SMALL_STATE(420)] = 14587, - [SMALL_STATE(421)] = 14621, - [SMALL_STATE(422)] = 14655, - [SMALL_STATE(423)] = 14689, - [SMALL_STATE(424)] = 14723, - [SMALL_STATE(425)] = 14757, - [SMALL_STATE(426)] = 14791, - [SMALL_STATE(427)] = 14825, - [SMALL_STATE(428)] = 14859, - [SMALL_STATE(429)] = 14893, - [SMALL_STATE(430)] = 14927, - [SMALL_STATE(431)] = 14961, - [SMALL_STATE(432)] = 14995, - [SMALL_STATE(433)] = 15029, - [SMALL_STATE(434)] = 15063, - [SMALL_STATE(435)] = 15097, - [SMALL_STATE(436)] = 15131, - [SMALL_STATE(437)] = 15165, - [SMALL_STATE(438)] = 15199, - [SMALL_STATE(439)] = 15233, - [SMALL_STATE(440)] = 15267, - [SMALL_STATE(441)] = 15301, - [SMALL_STATE(442)] = 15335, - [SMALL_STATE(443)] = 15369, - [SMALL_STATE(444)] = 15403, - [SMALL_STATE(445)] = 15437, - [SMALL_STATE(446)] = 15471, - [SMALL_STATE(447)] = 15505, - [SMALL_STATE(448)] = 15539, - [SMALL_STATE(449)] = 15573, - [SMALL_STATE(450)] = 15607, - [SMALL_STATE(451)] = 15641, - [SMALL_STATE(452)] = 15675, - [SMALL_STATE(453)] = 15709, - [SMALL_STATE(454)] = 15754, - [SMALL_STATE(455)] = 15799, - [SMALL_STATE(456)] = 15844, - [SMALL_STATE(457)] = 15889, - [SMALL_STATE(458)] = 15934, - [SMALL_STATE(459)] = 15979, - [SMALL_STATE(460)] = 16029, - [SMALL_STATE(461)] = 16079, - [SMALL_STATE(462)] = 16119, - [SMALL_STATE(463)] = 16152, - [SMALL_STATE(464)] = 16189, - [SMALL_STATE(465)] = 16226, - [SMALL_STATE(466)] = 16263, - [SMALL_STATE(467)] = 16300, - [SMALL_STATE(468)] = 16337, - [SMALL_STATE(469)] = 16374, - [SMALL_STATE(470)] = 16411, - [SMALL_STATE(471)] = 16464, - [SMALL_STATE(472)] = 16497, - [SMALL_STATE(473)] = 16530, - [SMALL_STATE(474)] = 16564, - [SMALL_STATE(475)] = 16596, - [SMALL_STATE(476)] = 16628, - [SMALL_STATE(477)] = 16662, - [SMALL_STATE(478)] = 16694, - [SMALL_STATE(479)] = 16723, - [SMALL_STATE(480)] = 16754, - [SMALL_STATE(481)] = 16779, - [SMALL_STATE(482)] = 16808, - [SMALL_STATE(483)] = 16855, - [SMALL_STATE(484)] = 16886, - [SMALL_STATE(485)] = 16915, - [SMALL_STATE(486)] = 16946, - [SMALL_STATE(487)] = 16993, - [SMALL_STATE(488)] = 17040, - [SMALL_STATE(489)] = 17071, - [SMALL_STATE(490)] = 17102, - [SMALL_STATE(491)] = 17146, - [SMALL_STATE(492)] = 17190, - [SMALL_STATE(493)] = 17212, - [SMALL_STATE(494)] = 17256, - [SMALL_STATE(495)] = 17300, - [SMALL_STATE(496)] = 17322, - [SMALL_STATE(497)] = 17352, - [SMALL_STATE(498)] = 17374, - [SMALL_STATE(499)] = 17398, - [SMALL_STATE(500)] = 17420, - [SMALL_STATE(501)] = 17449, - [SMALL_STATE(502)] = 17478, - [SMALL_STATE(503)] = 17509, - [SMALL_STATE(504)] = 17534, - [SMALL_STATE(505)] = 17563, - [SMALL_STATE(506)] = 17604, - [SMALL_STATE(507)] = 17627, - [SMALL_STATE(508)] = 17650, - [SMALL_STATE(509)] = 17681, - [SMALL_STATE(510)] = 17710, - [SMALL_STATE(511)] = 17739, - [SMALL_STATE(512)] = 17764, - [SMALL_STATE(513)] = 17793, - [SMALL_STATE(514)] = 17824, - [SMALL_STATE(515)] = 17865, - [SMALL_STATE(516)] = 17894, - [SMALL_STATE(517)] = 17925, - [SMALL_STATE(518)] = 17950, - [SMALL_STATE(519)] = 17979, - [SMALL_STATE(520)] = 18017, - [SMALL_STATE(521)] = 18041, - [SMALL_STATE(522)] = 18067, - [SMALL_STATE(523)] = 18097, - [SMALL_STATE(524)] = 18135, - [SMALL_STATE(525)] = 18163, - [SMALL_STATE(526)] = 18201, - [SMALL_STATE(527)] = 18227, - [SMALL_STATE(528)] = 18253, - [SMALL_STATE(529)] = 18291, - [SMALL_STATE(530)] = 18329, - [SMALL_STATE(531)] = 18367, - [SMALL_STATE(532)] = 18405, - [SMALL_STATE(533)] = 18428, - [SMALL_STATE(534)] = 18447, - [SMALL_STATE(535)] = 18470, - [SMALL_STATE(536)] = 18493, - [SMALL_STATE(537)] = 18524, - [SMALL_STATE(538)] = 18547, - [SMALL_STATE(539)] = 18570, - [SMALL_STATE(540)] = 18589, - [SMALL_STATE(541)] = 18620, - [SMALL_STATE(542)] = 18643, - [SMALL_STATE(543)] = 18666, - [SMALL_STATE(544)] = 18689, - [SMALL_STATE(545)] = 18712, - [SMALL_STATE(546)] = 18735, - [SMALL_STATE(547)] = 18758, - [SMALL_STATE(548)] = 18781, - [SMALL_STATE(549)] = 18812, - [SMALL_STATE(550)] = 18835, - [SMALL_STATE(551)] = 18858, - [SMALL_STATE(552)] = 18881, - [SMALL_STATE(553)] = 18904, - [SMALL_STATE(554)] = 18923, - [SMALL_STATE(555)] = 18954, - [SMALL_STATE(556)] = 18977, - [SMALL_STATE(557)] = 19000, - [SMALL_STATE(558)] = 19023, - [SMALL_STATE(559)] = 19054, - [SMALL_STATE(560)] = 19077, - [SMALL_STATE(561)] = 19100, - [SMALL_STATE(562)] = 19123, - [SMALL_STATE(563)] = 19144, - [SMALL_STATE(564)] = 19165, - [SMALL_STATE(565)] = 19192, - [SMALL_STATE(566)] = 19215, - [SMALL_STATE(567)] = 19238, - [SMALL_STATE(568)] = 19261, - [SMALL_STATE(569)] = 19292, - [SMALL_STATE(570)] = 19315, - [SMALL_STATE(571)] = 19338, - [SMALL_STATE(572)] = 19361, - [SMALL_STATE(573)] = 19384, - [SMALL_STATE(574)] = 19407, - [SMALL_STATE(575)] = 19430, - [SMALL_STATE(576)] = 19453, - [SMALL_STATE(577)] = 19476, - [SMALL_STATE(578)] = 19499, - [SMALL_STATE(579)] = 19518, - [SMALL_STATE(580)] = 19550, - [SMALL_STATE(581)] = 19574, - [SMALL_STATE(582)] = 19602, - [SMALL_STATE(583)] = 19634, - [SMALL_STATE(584)] = 19666, - [SMALL_STATE(585)] = 19698, - [SMALL_STATE(586)] = 19730, - [SMALL_STATE(587)] = 19762, - [SMALL_STATE(588)] = 19786, - [SMALL_STATE(589)] = 19818, - [SMALL_STATE(590)] = 19850, - [SMALL_STATE(591)] = 19882, - [SMALL_STATE(592)] = 19914, - [SMALL_STATE(593)] = 19942, - [SMALL_STATE(594)] = 19974, - [SMALL_STATE(595)] = 19998, - [SMALL_STATE(596)] = 20022, - [SMALL_STATE(597)] = 20050, - [SMALL_STATE(598)] = 20078, - [SMALL_STATE(599)] = 20102, - [SMALL_STATE(600)] = 20130, - [SMALL_STATE(601)] = 20154, - [SMALL_STATE(602)] = 20178, - [SMALL_STATE(603)] = 20202, - [SMALL_STATE(604)] = 20226, - [SMALL_STATE(605)] = 20258, - [SMALL_STATE(606)] = 20290, - [SMALL_STATE(607)] = 20322, - [SMALL_STATE(608)] = 20354, - [SMALL_STATE(609)] = 20380, - [SMALL_STATE(610)] = 20412, - [SMALL_STATE(611)] = 20437, - [SMALL_STATE(612)] = 20462, - [SMALL_STATE(613)] = 20487, - [SMALL_STATE(614)] = 20506, - [SMALL_STATE(615)] = 20531, - [SMALL_STATE(616)] = 20560, - [SMALL_STATE(617)] = 20589, - [SMALL_STATE(618)] = 20614, - [SMALL_STATE(619)] = 20639, - [SMALL_STATE(620)] = 20664, - [SMALL_STATE(621)] = 20689, - [SMALL_STATE(622)] = 20714, - [SMALL_STATE(623)] = 20739, - [SMALL_STATE(624)] = 20764, - [SMALL_STATE(625)] = 20783, - [SMALL_STATE(626)] = 20808, - [SMALL_STATE(627)] = 20833, - [SMALL_STATE(628)] = 20858, - [SMALL_STATE(629)] = 20887, - [SMALL_STATE(630)] = 20912, - [SMALL_STATE(631)] = 20941, - [SMALL_STATE(632)] = 20966, - [SMALL_STATE(633)] = 20991, - [SMALL_STATE(634)] = 21020, - [SMALL_STATE(635)] = 21045, - [SMALL_STATE(636)] = 21068, - [SMALL_STATE(637)] = 21091, - [SMALL_STATE(638)] = 21114, - [SMALL_STATE(639)] = 21139, - [SMALL_STATE(640)] = 21154, - [SMALL_STATE(641)] = 21179, - [SMALL_STATE(642)] = 21204, - [SMALL_STATE(643)] = 21218, - [SMALL_STATE(644)] = 21232, - [SMALL_STATE(645)] = 21258, - [SMALL_STATE(646)] = 21284, - [SMALL_STATE(647)] = 21310, - [SMALL_STATE(648)] = 21330, - [SMALL_STATE(649)] = 21344, - [SMALL_STATE(650)] = 21370, - [SMALL_STATE(651)] = 21396, - [SMALL_STATE(652)] = 21410, - [SMALL_STATE(653)] = 21436, - [SMALL_STATE(654)] = 21462, - [SMALL_STATE(655)] = 21476, - [SMALL_STATE(656)] = 21494, - [SMALL_STATE(657)] = 21520, - [SMALL_STATE(658)] = 21546, - [SMALL_STATE(659)] = 21560, - [SMALL_STATE(660)] = 21574, - [SMALL_STATE(661)] = 21600, - [SMALL_STATE(662)] = 21626, - [SMALL_STATE(663)] = 21652, - [SMALL_STATE(664)] = 21678, - [SMALL_STATE(665)] = 21704, - [SMALL_STATE(666)] = 21730, - [SMALL_STATE(667)] = 21744, - [SMALL_STATE(668)] = 21758, - [SMALL_STATE(669)] = 21782, - [SMALL_STATE(670)] = 21808, - [SMALL_STATE(671)] = 21834, - [SMALL_STATE(672)] = 21860, - [SMALL_STATE(673)] = 21886, - [SMALL_STATE(674)] = 21900, - [SMALL_STATE(675)] = 21924, - [SMALL_STATE(676)] = 21950, - [SMALL_STATE(677)] = 21964, - [SMALL_STATE(678)] = 21990, - [SMALL_STATE(679)] = 22016, - [SMALL_STATE(680)] = 22042, - [SMALL_STATE(681)] = 22056, - [SMALL_STATE(682)] = 22070, - [SMALL_STATE(683)] = 22096, - [SMALL_STATE(684)] = 22122, - [SMALL_STATE(685)] = 22136, - [SMALL_STATE(686)] = 22162, - [SMALL_STATE(687)] = 22176, - [SMALL_STATE(688)] = 22202, - [SMALL_STATE(689)] = 22228, - [SMALL_STATE(690)] = 22242, - [SMALL_STATE(691)] = 22256, - [SMALL_STATE(692)] = 22270, - [SMALL_STATE(693)] = 22284, - [SMALL_STATE(694)] = 22298, - [SMALL_STATE(695)] = 22312, - [SMALL_STATE(696)] = 22338, - [SMALL_STATE(697)] = 22364, - [SMALL_STATE(698)] = 22390, - [SMALL_STATE(699)] = 22414, - [SMALL_STATE(700)] = 22440, - [SMALL_STATE(701)] = 22466, - [SMALL_STATE(702)] = 22492, - [SMALL_STATE(703)] = 22510, - [SMALL_STATE(704)] = 22536, - [SMALL_STATE(705)] = 22562, - [SMALL_STATE(706)] = 22588, - [SMALL_STATE(707)] = 22614, - [SMALL_STATE(708)] = 22640, - [SMALL_STATE(709)] = 22666, - [SMALL_STATE(710)] = 22692, - [SMALL_STATE(711)] = 22706, - [SMALL_STATE(712)] = 22720, - [SMALL_STATE(713)] = 22734, - [SMALL_STATE(714)] = 22748, - [SMALL_STATE(715)] = 22762, - [SMALL_STATE(716)] = 22776, - [SMALL_STATE(717)] = 22802, - [SMALL_STATE(718)] = 22816, - [SMALL_STATE(719)] = 22838, - [SMALL_STATE(720)] = 22864, - [SMALL_STATE(721)] = 22890, - [SMALL_STATE(722)] = 22916, - [SMALL_STATE(723)] = 22942, - [SMALL_STATE(724)] = 22968, - [SMALL_STATE(725)] = 22994, - [SMALL_STATE(726)] = 23020, - [SMALL_STATE(727)] = 23034, - [SMALL_STATE(728)] = 23048, - [SMALL_STATE(729)] = 23074, - [SMALL_STATE(730)] = 23100, - [SMALL_STATE(731)] = 23114, - [SMALL_STATE(732)] = 23128, - [SMALL_STATE(733)] = 23142, - [SMALL_STATE(734)] = 23156, - [SMALL_STATE(735)] = 23182, - [SMALL_STATE(736)] = 23196, - [SMALL_STATE(737)] = 23222, - [SMALL_STATE(738)] = 23248, - [SMALL_STATE(739)] = 23274, - [SMALL_STATE(740)] = 23300, - [SMALL_STATE(741)] = 23326, - [SMALL_STATE(742)] = 23340, - [SMALL_STATE(743)] = 23366, - [SMALL_STATE(744)] = 23380, - [SMALL_STATE(745)] = 23406, - [SMALL_STATE(746)] = 23420, - [SMALL_STATE(747)] = 23434, - [SMALL_STATE(748)] = 23448, - [SMALL_STATE(749)] = 23462, - [SMALL_STATE(750)] = 23476, - [SMALL_STATE(751)] = 23490, - [SMALL_STATE(752)] = 23516, - [SMALL_STATE(753)] = 23530, - [SMALL_STATE(754)] = 23544, - [SMALL_STATE(755)] = 23558, - [SMALL_STATE(756)] = 23572, - [SMALL_STATE(757)] = 23586, - [SMALL_STATE(758)] = 23600, - [SMALL_STATE(759)] = 23614, - [SMALL_STATE(760)] = 23628, - [SMALL_STATE(761)] = 23642, - [SMALL_STATE(762)] = 23668, - [SMALL_STATE(763)] = 23694, - [SMALL_STATE(764)] = 23708, - [SMALL_STATE(765)] = 23722, - [SMALL_STATE(766)] = 23736, - [SMALL_STATE(767)] = 23750, - [SMALL_STATE(768)] = 23764, - [SMALL_STATE(769)] = 23778, - [SMALL_STATE(770)] = 23792, - [SMALL_STATE(771)] = 23818, - [SMALL_STATE(772)] = 23832, - [SMALL_STATE(773)] = 23846, - [SMALL_STATE(774)] = 23860, - [SMALL_STATE(775)] = 23874, - [SMALL_STATE(776)] = 23888, - [SMALL_STATE(777)] = 23902, - [SMALL_STATE(778)] = 23916, - [SMALL_STATE(779)] = 23930, - [SMALL_STATE(780)] = 23944, - [SMALL_STATE(781)] = 23970, - [SMALL_STATE(782)] = 23984, - [SMALL_STATE(783)] = 24010, - [SMALL_STATE(784)] = 24034, - [SMALL_STATE(785)] = 24060, - [SMALL_STATE(786)] = 24086, - [SMALL_STATE(787)] = 24100, - [SMALL_STATE(788)] = 24114, - [SMALL_STATE(789)] = 24140, - [SMALL_STATE(790)] = 24154, - [SMALL_STATE(791)] = 24168, - [SMALL_STATE(792)] = 24194, - [SMALL_STATE(793)] = 24208, - [SMALL_STATE(794)] = 24234, - [SMALL_STATE(795)] = 24260, - [SMALL_STATE(796)] = 24274, - [SMALL_STATE(797)] = 24300, - [SMALL_STATE(798)] = 24314, - [SMALL_STATE(799)] = 24328, - [SMALL_STATE(800)] = 24354, - [SMALL_STATE(801)] = 24368, - [SMALL_STATE(802)] = 24382, - [SMALL_STATE(803)] = 24396, - [SMALL_STATE(804)] = 24422, - [SMALL_STATE(805)] = 24436, - [SMALL_STATE(806)] = 24450, - [SMALL_STATE(807)] = 24476, - [SMALL_STATE(808)] = 24502, - [SMALL_STATE(809)] = 24516, - [SMALL_STATE(810)] = 24530, - [SMALL_STATE(811)] = 24556, - [SMALL_STATE(812)] = 24582, - [SMALL_STATE(813)] = 24608, - [SMALL_STATE(814)] = 24622, - [SMALL_STATE(815)] = 24648, - [SMALL_STATE(816)] = 24674, - [SMALL_STATE(817)] = 24688, - [SMALL_STATE(818)] = 24702, - [SMALL_STATE(819)] = 24716, - [SMALL_STATE(820)] = 24730, - [SMALL_STATE(821)] = 24744, - [SMALL_STATE(822)] = 24758, - [SMALL_STATE(823)] = 24772, - [SMALL_STATE(824)] = 24786, - [SMALL_STATE(825)] = 24800, - [SMALL_STATE(826)] = 24814, - [SMALL_STATE(827)] = 24828, - [SMALL_STATE(828)] = 24842, - [SMALL_STATE(829)] = 24856, - [SMALL_STATE(830)] = 24870, - [SMALL_STATE(831)] = 24884, - [SMALL_STATE(832)] = 24898, - [SMALL_STATE(833)] = 24912, - [SMALL_STATE(834)] = 24926, - [SMALL_STATE(835)] = 24940, - [SMALL_STATE(836)] = 24954, - [SMALL_STATE(837)] = 24968, - [SMALL_STATE(838)] = 24982, - [SMALL_STATE(839)] = 24996, - [SMALL_STATE(840)] = 25010, - [SMALL_STATE(841)] = 25024, - [SMALL_STATE(842)] = 25038, - [SMALL_STATE(843)] = 25052, - [SMALL_STATE(844)] = 25066, - [SMALL_STATE(845)] = 25080, - [SMALL_STATE(846)] = 25094, - [SMALL_STATE(847)] = 25108, - [SMALL_STATE(848)] = 25122, - [SMALL_STATE(849)] = 25136, - [SMALL_STATE(850)] = 25150, - [SMALL_STATE(851)] = 25164, - [SMALL_STATE(852)] = 25178, - [SMALL_STATE(853)] = 25192, - [SMALL_STATE(854)] = 25206, - [SMALL_STATE(855)] = 25220, - [SMALL_STATE(856)] = 25234, - [SMALL_STATE(857)] = 25248, - [SMALL_STATE(858)] = 25262, - [SMALL_STATE(859)] = 25276, - [SMALL_STATE(860)] = 25290, - [SMALL_STATE(861)] = 25304, - [SMALL_STATE(862)] = 25318, - [SMALL_STATE(863)] = 25332, - [SMALL_STATE(864)] = 25346, - [SMALL_STATE(865)] = 25360, - [SMALL_STATE(866)] = 25374, - [SMALL_STATE(867)] = 25400, - [SMALL_STATE(868)] = 25426, - [SMALL_STATE(869)] = 25440, - [SMALL_STATE(870)] = 25454, - [SMALL_STATE(871)] = 25468, - [SMALL_STATE(872)] = 25482, - [SMALL_STATE(873)] = 25508, - [SMALL_STATE(874)] = 25522, - [SMALL_STATE(875)] = 25536, - [SMALL_STATE(876)] = 25550, - [SMALL_STATE(877)] = 25564, - [SMALL_STATE(878)] = 25578, - [SMALL_STATE(879)] = 25592, - [SMALL_STATE(880)] = 25606, - [SMALL_STATE(881)] = 25620, - [SMALL_STATE(882)] = 25638, - [SMALL_STATE(883)] = 25664, - [SMALL_STATE(884)] = 25678, - [SMALL_STATE(885)] = 25704, - [SMALL_STATE(886)] = 25730, - [SMALL_STATE(887)] = 25756, - [SMALL_STATE(888)] = 25782, - [SMALL_STATE(889)] = 25808, - [SMALL_STATE(890)] = 25834, - [SMALL_STATE(891)] = 25860, - [SMALL_STATE(892)] = 25886, - [SMALL_STATE(893)] = 25912, - [SMALL_STATE(894)] = 25938, - [SMALL_STATE(895)] = 25964, - [SMALL_STATE(896)] = 25990, - [SMALL_STATE(897)] = 26016, - [SMALL_STATE(898)] = 26042, - [SMALL_STATE(899)] = 26068, - [SMALL_STATE(900)] = 26094, - [SMALL_STATE(901)] = 26120, - [SMALL_STATE(902)] = 26146, - [SMALL_STATE(903)] = 26172, - [SMALL_STATE(904)] = 26198, - [SMALL_STATE(905)] = 26212, - [SMALL_STATE(906)] = 26226, - [SMALL_STATE(907)] = 26240, - [SMALL_STATE(908)] = 26254, - [SMALL_STATE(909)] = 26268, - [SMALL_STATE(910)] = 26282, - [SMALL_STATE(911)] = 26296, - [SMALL_STATE(912)] = 26310, - [SMALL_STATE(913)] = 26324, - [SMALL_STATE(914)] = 26338, - [SMALL_STATE(915)] = 26352, - [SMALL_STATE(916)] = 26378, - [SMALL_STATE(917)] = 26392, - [SMALL_STATE(918)] = 26406, - [SMALL_STATE(919)] = 26420, - [SMALL_STATE(920)] = 26434, - [SMALL_STATE(921)] = 26448, - [SMALL_STATE(922)] = 26462, - [SMALL_STATE(923)] = 26476, - [SMALL_STATE(924)] = 26502, - [SMALL_STATE(925)] = 26516, - [SMALL_STATE(926)] = 26530, - [SMALL_STATE(927)] = 26544, - [SMALL_STATE(928)] = 26558, - [SMALL_STATE(929)] = 26572, - [SMALL_STATE(930)] = 26586, - [SMALL_STATE(931)] = 26600, - [SMALL_STATE(932)] = 26614, - [SMALL_STATE(933)] = 26640, - [SMALL_STATE(934)] = 26666, - [SMALL_STATE(935)] = 26692, - [SMALL_STATE(936)] = 26718, - [SMALL_STATE(937)] = 26732, - [SMALL_STATE(938)] = 26746, - [SMALL_STATE(939)] = 26760, - [SMALL_STATE(940)] = 26774, - [SMALL_STATE(941)] = 26788, - [SMALL_STATE(942)] = 26802, - [SMALL_STATE(943)] = 26816, - [SMALL_STATE(944)] = 26830, - [SMALL_STATE(945)] = 26844, - [SMALL_STATE(946)] = 26870, - [SMALL_STATE(947)] = 26884, - [SMALL_STATE(948)] = 26898, - [SMALL_STATE(949)] = 26912, - [SMALL_STATE(950)] = 26926, - [SMALL_STATE(951)] = 26952, - [SMALL_STATE(952)] = 26966, - [SMALL_STATE(953)] = 26980, - [SMALL_STATE(954)] = 26994, - [SMALL_STATE(955)] = 27020, - [SMALL_STATE(956)] = 27046, - [SMALL_STATE(957)] = 27060, - [SMALL_STATE(958)] = 27074, - [SMALL_STATE(959)] = 27100, - [SMALL_STATE(960)] = 27126, - [SMALL_STATE(961)] = 27140, - [SMALL_STATE(962)] = 27166, - [SMALL_STATE(963)] = 27180, - [SMALL_STATE(964)] = 27194, - [SMALL_STATE(965)] = 27220, - [SMALL_STATE(966)] = 27234, - [SMALL_STATE(967)] = 27248, - [SMALL_STATE(968)] = 27262, - [SMALL_STATE(969)] = 27276, - [SMALL_STATE(970)] = 27290, - [SMALL_STATE(971)] = 27316, - [SMALL_STATE(972)] = 27342, - [SMALL_STATE(973)] = 27356, - [SMALL_STATE(974)] = 27370, - [SMALL_STATE(975)] = 27396, - [SMALL_STATE(976)] = 27410, - [SMALL_STATE(977)] = 27424, - [SMALL_STATE(978)] = 27450, - [SMALL_STATE(979)] = 27476, - [SMALL_STATE(980)] = 27490, - [SMALL_STATE(981)] = 27504, - [SMALL_STATE(982)] = 27518, - [SMALL_STATE(983)] = 27544, - [SMALL_STATE(984)] = 27558, - [SMALL_STATE(985)] = 27572, - [SMALL_STATE(986)] = 27598, - [SMALL_STATE(987)] = 27624, - [SMALL_STATE(988)] = 27650, - [SMALL_STATE(989)] = 27676, - [SMALL_STATE(990)] = 27702, - [SMALL_STATE(991)] = 27728, - [SMALL_STATE(992)] = 27747, - [SMALL_STATE(993)] = 27770, - [SMALL_STATE(994)] = 27789, - [SMALL_STATE(995)] = 27812, - [SMALL_STATE(996)] = 27835, - [SMALL_STATE(997)] = 27858, - [SMALL_STATE(998)] = 27877, - [SMALL_STATE(999)] = 27896, - [SMALL_STATE(1000)] = 27919, - [SMALL_STATE(1001)] = 27942, - [SMALL_STATE(1002)] = 27965, - [SMALL_STATE(1003)] = 27984, - [SMALL_STATE(1004)] = 28007, - [SMALL_STATE(1005)] = 28022, - [SMALL_STATE(1006)] = 28039, - [SMALL_STATE(1007)] = 28058, - [SMALL_STATE(1008)] = 28081, - [SMALL_STATE(1009)] = 28100, - [SMALL_STATE(1010)] = 28123, - [SMALL_STATE(1011)] = 28142, - [SMALL_STATE(1012)] = 28155, - [SMALL_STATE(1013)] = 28178, - [SMALL_STATE(1014)] = 28201, - [SMALL_STATE(1015)] = 28224, - [SMALL_STATE(1016)] = 28247, - [SMALL_STATE(1017)] = 28267, - [SMALL_STATE(1018)] = 28287, - [SMALL_STATE(1019)] = 28307, - [SMALL_STATE(1020)] = 28327, - [SMALL_STATE(1021)] = 28347, - [SMALL_STATE(1022)] = 28367, - [SMALL_STATE(1023)] = 28387, - [SMALL_STATE(1024)] = 28407, - [SMALL_STATE(1025)] = 28427, - [SMALL_STATE(1026)] = 28447, - [SMALL_STATE(1027)] = 28467, - [SMALL_STATE(1028)] = 28487, - [SMALL_STATE(1029)] = 28507, - [SMALL_STATE(1030)] = 28527, - [SMALL_STATE(1031)] = 28543, - [SMALL_STATE(1032)] = 28563, - [SMALL_STATE(1033)] = 28583, - [SMALL_STATE(1034)] = 28603, - [SMALL_STATE(1035)] = 28623, - [SMALL_STATE(1036)] = 28643, - [SMALL_STATE(1037)] = 28663, - [SMALL_STATE(1038)] = 28683, - [SMALL_STATE(1039)] = 28703, - [SMALL_STATE(1040)] = 28723, - [SMALL_STATE(1041)] = 28743, - [SMALL_STATE(1042)] = 28763, - [SMALL_STATE(1043)] = 28783, - [SMALL_STATE(1044)] = 28803, - [SMALL_STATE(1045)] = 28823, - [SMALL_STATE(1046)] = 28843, - [SMALL_STATE(1047)] = 28863, - [SMALL_STATE(1048)] = 28883, - [SMALL_STATE(1049)] = 28903, - [SMALL_STATE(1050)] = 28923, - [SMALL_STATE(1051)] = 28943, - [SMALL_STATE(1052)] = 28963, - [SMALL_STATE(1053)] = 28983, - [SMALL_STATE(1054)] = 29003, - [SMALL_STATE(1055)] = 29023, - [SMALL_STATE(1056)] = 29043, - [SMALL_STATE(1057)] = 29063, - [SMALL_STATE(1058)] = 29083, - [SMALL_STATE(1059)] = 29103, - [SMALL_STATE(1060)] = 29123, - [SMALL_STATE(1061)] = 29143, - [SMALL_STATE(1062)] = 29163, - [SMALL_STATE(1063)] = 29183, - [SMALL_STATE(1064)] = 29203, - [SMALL_STATE(1065)] = 29223, - [SMALL_STATE(1066)] = 29243, - [SMALL_STATE(1067)] = 29263, - [SMALL_STATE(1068)] = 29279, - [SMALL_STATE(1069)] = 29297, - [SMALL_STATE(1070)] = 29317, - [SMALL_STATE(1071)] = 29337, - [SMALL_STATE(1072)] = 29357, - [SMALL_STATE(1073)] = 29377, - [SMALL_STATE(1074)] = 29397, - [SMALL_STATE(1075)] = 29417, - [SMALL_STATE(1076)] = 29437, - [SMALL_STATE(1077)] = 29457, - [SMALL_STATE(1078)] = 29477, - [SMALL_STATE(1079)] = 29497, - [SMALL_STATE(1080)] = 29517, - [SMALL_STATE(1081)] = 29537, - [SMALL_STATE(1082)] = 29557, - [SMALL_STATE(1083)] = 29577, - [SMALL_STATE(1084)] = 29597, - [SMALL_STATE(1085)] = 29617, - [SMALL_STATE(1086)] = 29637, - [SMALL_STATE(1087)] = 29657, - [SMALL_STATE(1088)] = 29677, - [SMALL_STATE(1089)] = 29697, - [SMALL_STATE(1090)] = 29717, - [SMALL_STATE(1091)] = 29737, - [SMALL_STATE(1092)] = 29757, - [SMALL_STATE(1093)] = 29777, - [SMALL_STATE(1094)] = 29797, - [SMALL_STATE(1095)] = 29817, - [SMALL_STATE(1096)] = 29837, - [SMALL_STATE(1097)] = 29857, - [SMALL_STATE(1098)] = 29877, - [SMALL_STATE(1099)] = 29893, - [SMALL_STATE(1100)] = 29913, - [SMALL_STATE(1101)] = 29933, - [SMALL_STATE(1102)] = 29953, - [SMALL_STATE(1103)] = 29973, - [SMALL_STATE(1104)] = 29993, - [SMALL_STATE(1105)] = 30013, - [SMALL_STATE(1106)] = 30033, - [SMALL_STATE(1107)] = 30049, - [SMALL_STATE(1108)] = 30069, - [SMALL_STATE(1109)] = 30089, - [SMALL_STATE(1110)] = 30109, - [SMALL_STATE(1111)] = 30129, - [SMALL_STATE(1112)] = 30149, - [SMALL_STATE(1113)] = 30169, - [SMALL_STATE(1114)] = 30189, - [SMALL_STATE(1115)] = 30209, - [SMALL_STATE(1116)] = 30229, - [SMALL_STATE(1117)] = 30249, - [SMALL_STATE(1118)] = 30269, - [SMALL_STATE(1119)] = 30289, - [SMALL_STATE(1120)] = 30309, - [SMALL_STATE(1121)] = 30329, - [SMALL_STATE(1122)] = 30349, - [SMALL_STATE(1123)] = 30369, - [SMALL_STATE(1124)] = 30389, - [SMALL_STATE(1125)] = 30409, - [SMALL_STATE(1126)] = 30429, - [SMALL_STATE(1127)] = 30449, - [SMALL_STATE(1128)] = 30469, - [SMALL_STATE(1129)] = 30481, - [SMALL_STATE(1130)] = 30501, - [SMALL_STATE(1131)] = 30521, - [SMALL_STATE(1132)] = 30541, - [SMALL_STATE(1133)] = 30561, - [SMALL_STATE(1134)] = 30581, - [SMALL_STATE(1135)] = 30601, - [SMALL_STATE(1136)] = 30621, - [SMALL_STATE(1137)] = 30641, - [SMALL_STATE(1138)] = 30661, - [SMALL_STATE(1139)] = 30681, - [SMALL_STATE(1140)] = 30701, - [SMALL_STATE(1141)] = 30713, - [SMALL_STATE(1142)] = 30733, - [SMALL_STATE(1143)] = 30753, - [SMALL_STATE(1144)] = 30773, - [SMALL_STATE(1145)] = 30793, - [SMALL_STATE(1146)] = 30813, - [SMALL_STATE(1147)] = 30833, - [SMALL_STATE(1148)] = 30853, - [SMALL_STATE(1149)] = 30869, - [SMALL_STATE(1150)] = 30889, - [SMALL_STATE(1151)] = 30909, - [SMALL_STATE(1152)] = 30929, - [SMALL_STATE(1153)] = 30949, - [SMALL_STATE(1154)] = 30969, - [SMALL_STATE(1155)] = 30989, - [SMALL_STATE(1156)] = 31009, - [SMALL_STATE(1157)] = 31029, - [SMALL_STATE(1158)] = 31049, - [SMALL_STATE(1159)] = 31069, - [SMALL_STATE(1160)] = 31089, - [SMALL_STATE(1161)] = 31105, - [SMALL_STATE(1162)] = 31125, - [SMALL_STATE(1163)] = 31145, - [SMALL_STATE(1164)] = 31165, - [SMALL_STATE(1165)] = 31185, - [SMALL_STATE(1166)] = 31205, - [SMALL_STATE(1167)] = 31221, - [SMALL_STATE(1168)] = 31241, - [SMALL_STATE(1169)] = 31261, - [SMALL_STATE(1170)] = 31281, - [SMALL_STATE(1171)] = 31301, - [SMALL_STATE(1172)] = 31321, - [SMALL_STATE(1173)] = 31337, - [SMALL_STATE(1174)] = 31357, - [SMALL_STATE(1175)] = 31377, - [SMALL_STATE(1176)] = 31397, - [SMALL_STATE(1177)] = 31413, - [SMALL_STATE(1178)] = 31431, - [SMALL_STATE(1179)] = 31451, - [SMALL_STATE(1180)] = 31471, - [SMALL_STATE(1181)] = 31491, - [SMALL_STATE(1182)] = 31511, - [SMALL_STATE(1183)] = 31531, - [SMALL_STATE(1184)] = 31551, - [SMALL_STATE(1185)] = 31571, - [SMALL_STATE(1186)] = 31591, - [SMALL_STATE(1187)] = 31611, - [SMALL_STATE(1188)] = 31622, - [SMALL_STATE(1189)] = 31633, - [SMALL_STATE(1190)] = 31644, - [SMALL_STATE(1191)] = 31661, - [SMALL_STATE(1192)] = 31672, - [SMALL_STATE(1193)] = 31689, - [SMALL_STATE(1194)] = 31700, - [SMALL_STATE(1195)] = 31711, - [SMALL_STATE(1196)] = 31722, - [SMALL_STATE(1197)] = 31733, - [SMALL_STATE(1198)] = 31744, - [SMALL_STATE(1199)] = 31755, - [SMALL_STATE(1200)] = 31766, - [SMALL_STATE(1201)] = 31777, - [SMALL_STATE(1202)] = 31788, - [SMALL_STATE(1203)] = 31799, - [SMALL_STATE(1204)] = 31810, - [SMALL_STATE(1205)] = 31821, - [SMALL_STATE(1206)] = 31832, - [SMALL_STATE(1207)] = 31843, - [SMALL_STATE(1208)] = 31854, - [SMALL_STATE(1209)] = 31865, - [SMALL_STATE(1210)] = 31876, - [SMALL_STATE(1211)] = 31893, - [SMALL_STATE(1212)] = 31904, - [SMALL_STATE(1213)] = 31915, - [SMALL_STATE(1214)] = 31926, - [SMALL_STATE(1215)] = 31937, - [SMALL_STATE(1216)] = 31948, - [SMALL_STATE(1217)] = 31959, - [SMALL_STATE(1218)] = 31970, - [SMALL_STATE(1219)] = 31981, - [SMALL_STATE(1220)] = 31992, - [SMALL_STATE(1221)] = 32003, - [SMALL_STATE(1222)] = 32014, - [SMALL_STATE(1223)] = 32025, - [SMALL_STATE(1224)] = 32036, - [SMALL_STATE(1225)] = 32053, - [SMALL_STATE(1226)] = 32064, - [SMALL_STATE(1227)] = 32081, - [SMALL_STATE(1228)] = 32098, - [SMALL_STATE(1229)] = 32115, - [SMALL_STATE(1230)] = 32126, - [SMALL_STATE(1231)] = 32143, - [SMALL_STATE(1232)] = 32154, - [SMALL_STATE(1233)] = 32165, - [SMALL_STATE(1234)] = 32176, - [SMALL_STATE(1235)] = 32193, - [SMALL_STATE(1236)] = 32204, - [SMALL_STATE(1237)] = 32215, - [SMALL_STATE(1238)] = 32226, - [SMALL_STATE(1239)] = 32237, - [SMALL_STATE(1240)] = 32248, - [SMALL_STATE(1241)] = 32259, - [SMALL_STATE(1242)] = 32270, - [SMALL_STATE(1243)] = 32281, - [SMALL_STATE(1244)] = 32292, - [SMALL_STATE(1245)] = 32303, - [SMALL_STATE(1246)] = 32314, - [SMALL_STATE(1247)] = 32325, - [SMALL_STATE(1248)] = 32336, - [SMALL_STATE(1249)] = 32347, - [SMALL_STATE(1250)] = 32358, - [SMALL_STATE(1251)] = 32369, - [SMALL_STATE(1252)] = 32380, - [SMALL_STATE(1253)] = 32391, - [SMALL_STATE(1254)] = 32402, - [SMALL_STATE(1255)] = 32413, - [SMALL_STATE(1256)] = 32424, - [SMALL_STATE(1257)] = 32435, - [SMALL_STATE(1258)] = 32446, - [SMALL_STATE(1259)] = 32457, - [SMALL_STATE(1260)] = 32468, - [SMALL_STATE(1261)] = 32485, - [SMALL_STATE(1262)] = 32496, - [SMALL_STATE(1263)] = 32507, - [SMALL_STATE(1264)] = 32518, - [SMALL_STATE(1265)] = 32529, - [SMALL_STATE(1266)] = 32540, - [SMALL_STATE(1267)] = 32551, - [SMALL_STATE(1268)] = 32562, - [SMALL_STATE(1269)] = 32579, - [SMALL_STATE(1270)] = 32590, - [SMALL_STATE(1271)] = 32601, - [SMALL_STATE(1272)] = 32612, - [SMALL_STATE(1273)] = 32623, - [SMALL_STATE(1274)] = 32638, - [SMALL_STATE(1275)] = 32649, - [SMALL_STATE(1276)] = 32660, - [SMALL_STATE(1277)] = 32671, - [SMALL_STATE(1278)] = 32682, - [SMALL_STATE(1279)] = 32693, - [SMALL_STATE(1280)] = 32704, - [SMALL_STATE(1281)] = 32715, - [SMALL_STATE(1282)] = 32726, - [SMALL_STATE(1283)] = 32741, - [SMALL_STATE(1284)] = 32752, - [SMALL_STATE(1285)] = 32763, - [SMALL_STATE(1286)] = 32774, - [SMALL_STATE(1287)] = 32785, - [SMALL_STATE(1288)] = 32796, - [SMALL_STATE(1289)] = 32811, - [SMALL_STATE(1290)] = 32822, - [SMALL_STATE(1291)] = 32833, - [SMALL_STATE(1292)] = 32844, - [SMALL_STATE(1293)] = 32859, - [SMALL_STATE(1294)] = 32870, - [SMALL_STATE(1295)] = 32881, - [SMALL_STATE(1296)] = 32892, - [SMALL_STATE(1297)] = 32903, - [SMALL_STATE(1298)] = 32914, - [SMALL_STATE(1299)] = 32929, - [SMALL_STATE(1300)] = 32940, - [SMALL_STATE(1301)] = 32951, - [SMALL_STATE(1302)] = 32962, - [SMALL_STATE(1303)] = 32973, - [SMALL_STATE(1304)] = 32984, - [SMALL_STATE(1305)] = 32995, - [SMALL_STATE(1306)] = 33006, - [SMALL_STATE(1307)] = 33017, - [SMALL_STATE(1308)] = 33028, - [SMALL_STATE(1309)] = 33039, - [SMALL_STATE(1310)] = 33050, - [SMALL_STATE(1311)] = 33061, - [SMALL_STATE(1312)] = 33072, - [SMALL_STATE(1313)] = 33083, - [SMALL_STATE(1314)] = 33098, - [SMALL_STATE(1315)] = 33109, - [SMALL_STATE(1316)] = 33120, - [SMALL_STATE(1317)] = 33131, - [SMALL_STATE(1318)] = 33142, - [SMALL_STATE(1319)] = 33153, - [SMALL_STATE(1320)] = 33164, - [SMALL_STATE(1321)] = 33175, - [SMALL_STATE(1322)] = 33186, - [SMALL_STATE(1323)] = 33197, - [SMALL_STATE(1324)] = 33214, - [SMALL_STATE(1325)] = 33225, - [SMALL_STATE(1326)] = 33236, - [SMALL_STATE(1327)] = 33251, - [SMALL_STATE(1328)] = 33262, - [SMALL_STATE(1329)] = 33273, - [SMALL_STATE(1330)] = 33284, - [SMALL_STATE(1331)] = 33299, - [SMALL_STATE(1332)] = 33310, - [SMALL_STATE(1333)] = 33327, - [SMALL_STATE(1334)] = 33338, - [SMALL_STATE(1335)] = 33349, - [SMALL_STATE(1336)] = 33360, - [SMALL_STATE(1337)] = 33371, - [SMALL_STATE(1338)] = 33382, - [SMALL_STATE(1339)] = 33393, - [SMALL_STATE(1340)] = 33410, - [SMALL_STATE(1341)] = 33421, - [SMALL_STATE(1342)] = 33432, - [SMALL_STATE(1343)] = 33449, - [SMALL_STATE(1344)] = 33460, - [SMALL_STATE(1345)] = 33471, - [SMALL_STATE(1346)] = 33488, - [SMALL_STATE(1347)] = 33499, - [SMALL_STATE(1348)] = 33510, - [SMALL_STATE(1349)] = 33521, - [SMALL_STATE(1350)] = 33532, - [SMALL_STATE(1351)] = 33543, - [SMALL_STATE(1352)] = 33554, - [SMALL_STATE(1353)] = 33565, - [SMALL_STATE(1354)] = 33576, - [SMALL_STATE(1355)] = 33587, - [SMALL_STATE(1356)] = 33598, - [SMALL_STATE(1357)] = 33609, - [SMALL_STATE(1358)] = 33620, - [SMALL_STATE(1359)] = 33637, - [SMALL_STATE(1360)] = 33648, - [SMALL_STATE(1361)] = 33659, - [SMALL_STATE(1362)] = 33670, - [SMALL_STATE(1363)] = 33681, - [SMALL_STATE(1364)] = 33692, - [SMALL_STATE(1365)] = 33703, - [SMALL_STATE(1366)] = 33714, - [SMALL_STATE(1367)] = 33731, - [SMALL_STATE(1368)] = 33742, - [SMALL_STATE(1369)] = 33753, - [SMALL_STATE(1370)] = 33764, - [SMALL_STATE(1371)] = 33775, - [SMALL_STATE(1372)] = 33786, - [SMALL_STATE(1373)] = 33797, - [SMALL_STATE(1374)] = 33808, - [SMALL_STATE(1375)] = 33819, - [SMALL_STATE(1376)] = 33836, - [SMALL_STATE(1377)] = 33847, - [SMALL_STATE(1378)] = 33858, - [SMALL_STATE(1379)] = 33869, - [SMALL_STATE(1380)] = 33880, - [SMALL_STATE(1381)] = 33897, - [SMALL_STATE(1382)] = 33908, - [SMALL_STATE(1383)] = 33919, - [SMALL_STATE(1384)] = 33930, - [SMALL_STATE(1385)] = 33941, - [SMALL_STATE(1386)] = 33952, - [SMALL_STATE(1387)] = 33963, - [SMALL_STATE(1388)] = 33980, - [SMALL_STATE(1389)] = 33991, - [SMALL_STATE(1390)] = 34002, - [SMALL_STATE(1391)] = 34013, - [SMALL_STATE(1392)] = 34024, - [SMALL_STATE(1393)] = 34035, - [SMALL_STATE(1394)] = 34046, - [SMALL_STATE(1395)] = 34057, - [SMALL_STATE(1396)] = 34068, - [SMALL_STATE(1397)] = 34083, - [SMALL_STATE(1398)] = 34100, - [SMALL_STATE(1399)] = 34111, - [SMALL_STATE(1400)] = 34122, - [SMALL_STATE(1401)] = 34139, - [SMALL_STATE(1402)] = 34150, - [SMALL_STATE(1403)] = 34161, - [SMALL_STATE(1404)] = 34178, - [SMALL_STATE(1405)] = 34189, - [SMALL_STATE(1406)] = 34200, - [SMALL_STATE(1407)] = 34217, - [SMALL_STATE(1408)] = 34228, - [SMALL_STATE(1409)] = 34239, - [SMALL_STATE(1410)] = 34250, - [SMALL_STATE(1411)] = 34265, - [SMALL_STATE(1412)] = 34280, - [SMALL_STATE(1413)] = 34291, - [SMALL_STATE(1414)] = 34306, - [SMALL_STATE(1415)] = 34323, - [SMALL_STATE(1416)] = 34338, - [SMALL_STATE(1417)] = 34353, - [SMALL_STATE(1418)] = 34370, - [SMALL_STATE(1419)] = 34381, - [SMALL_STATE(1420)] = 34396, - [SMALL_STATE(1421)] = 34413, - [SMALL_STATE(1422)] = 34424, - [SMALL_STATE(1423)] = 34439, - [SMALL_STATE(1424)] = 34454, - [SMALL_STATE(1425)] = 34469, - [SMALL_STATE(1426)] = 34484, - [SMALL_STATE(1427)] = 34499, - [SMALL_STATE(1428)] = 34514, - [SMALL_STATE(1429)] = 34525, - [SMALL_STATE(1430)] = 34540, - [SMALL_STATE(1431)] = 34555, - [SMALL_STATE(1432)] = 34570, - [SMALL_STATE(1433)] = 34587, - [SMALL_STATE(1434)] = 34600, - [SMALL_STATE(1435)] = 34611, - [SMALL_STATE(1436)] = 34626, - [SMALL_STATE(1437)] = 34637, - [SMALL_STATE(1438)] = 34648, - [SMALL_STATE(1439)] = 34659, - [SMALL_STATE(1440)] = 34670, - [SMALL_STATE(1441)] = 34681, - [SMALL_STATE(1442)] = 34692, - [SMALL_STATE(1443)] = 34703, - [SMALL_STATE(1444)] = 34714, - [SMALL_STATE(1445)] = 34725, - [SMALL_STATE(1446)] = 34736, - [SMALL_STATE(1447)] = 34747, - [SMALL_STATE(1448)] = 34758, - [SMALL_STATE(1449)] = 34769, - [SMALL_STATE(1450)] = 34780, - [SMALL_STATE(1451)] = 34791, - [SMALL_STATE(1452)] = 34802, - [SMALL_STATE(1453)] = 34813, - [SMALL_STATE(1454)] = 34824, - [SMALL_STATE(1455)] = 34841, - [SMALL_STATE(1456)] = 34852, - [SMALL_STATE(1457)] = 34863, - [SMALL_STATE(1458)] = 34874, - [SMALL_STATE(1459)] = 34885, - [SMALL_STATE(1460)] = 34896, - [SMALL_STATE(1461)] = 34907, - [SMALL_STATE(1462)] = 34918, - [SMALL_STATE(1463)] = 34929, - [SMALL_STATE(1464)] = 34940, - [SMALL_STATE(1465)] = 34951, - [SMALL_STATE(1466)] = 34962, - [SMALL_STATE(1467)] = 34973, - [SMALL_STATE(1468)] = 34984, - [SMALL_STATE(1469)] = 34995, - [SMALL_STATE(1470)] = 35006, - [SMALL_STATE(1471)] = 35017, - [SMALL_STATE(1472)] = 35028, - [SMALL_STATE(1473)] = 35039, - [SMALL_STATE(1474)] = 35050, - [SMALL_STATE(1475)] = 35061, - [SMALL_STATE(1476)] = 35072, - [SMALL_STATE(1477)] = 35083, - [SMALL_STATE(1478)] = 35094, - [SMALL_STATE(1479)] = 35105, - [SMALL_STATE(1480)] = 35116, - [SMALL_STATE(1481)] = 35133, - [SMALL_STATE(1482)] = 35144, - [SMALL_STATE(1483)] = 35155, - [SMALL_STATE(1484)] = 35166, - [SMALL_STATE(1485)] = 35177, - [SMALL_STATE(1486)] = 35188, - [SMALL_STATE(1487)] = 35199, - [SMALL_STATE(1488)] = 35210, - [SMALL_STATE(1489)] = 35221, - [SMALL_STATE(1490)] = 35232, - [SMALL_STATE(1491)] = 35247, - [SMALL_STATE(1492)] = 35258, - [SMALL_STATE(1493)] = 35269, - [SMALL_STATE(1494)] = 35280, - [SMALL_STATE(1495)] = 35291, - [SMALL_STATE(1496)] = 35302, - [SMALL_STATE(1497)] = 35313, - [SMALL_STATE(1498)] = 35324, - [SMALL_STATE(1499)] = 35339, - [SMALL_STATE(1500)] = 35350, - [SMALL_STATE(1501)] = 35361, - [SMALL_STATE(1502)] = 35372, - [SMALL_STATE(1503)] = 35383, - [SMALL_STATE(1504)] = 35394, - [SMALL_STATE(1505)] = 35408, - [SMALL_STATE(1506)] = 35422, - [SMALL_STATE(1507)] = 35436, - [SMALL_STATE(1508)] = 35450, - [SMALL_STATE(1509)] = 35464, - [SMALL_STATE(1510)] = 35478, - [SMALL_STATE(1511)] = 35492, - [SMALL_STATE(1512)] = 35506, - [SMALL_STATE(1513)] = 35520, - [SMALL_STATE(1514)] = 35534, - [SMALL_STATE(1515)] = 35548, - [SMALL_STATE(1516)] = 35562, - [SMALL_STATE(1517)] = 35576, - [SMALL_STATE(1518)] = 35590, - [SMALL_STATE(1519)] = 35604, - [SMALL_STATE(1520)] = 35618, - [SMALL_STATE(1521)] = 35632, - [SMALL_STATE(1522)] = 35646, - [SMALL_STATE(1523)] = 35660, - [SMALL_STATE(1524)] = 35674, - [SMALL_STATE(1525)] = 35688, - [SMALL_STATE(1526)] = 35702, - [SMALL_STATE(1527)] = 35716, - [SMALL_STATE(1528)] = 35730, - [SMALL_STATE(1529)] = 35744, - [SMALL_STATE(1530)] = 35758, - [SMALL_STATE(1531)] = 35772, - [SMALL_STATE(1532)] = 35786, - [SMALL_STATE(1533)] = 35800, - [SMALL_STATE(1534)] = 35814, - [SMALL_STATE(1535)] = 35828, - [SMALL_STATE(1536)] = 35842, - [SMALL_STATE(1537)] = 35852, - [SMALL_STATE(1538)] = 35866, - [SMALL_STATE(1539)] = 35880, - [SMALL_STATE(1540)] = 35890, - [SMALL_STATE(1541)] = 35904, - [SMALL_STATE(1542)] = 35918, - [SMALL_STATE(1543)] = 35932, - [SMALL_STATE(1544)] = 35946, - [SMALL_STATE(1545)] = 35960, - [SMALL_STATE(1546)] = 35974, - [SMALL_STATE(1547)] = 35988, - [SMALL_STATE(1548)] = 36002, - [SMALL_STATE(1549)] = 36016, - [SMALL_STATE(1550)] = 36030, - [SMALL_STATE(1551)] = 36044, - [SMALL_STATE(1552)] = 36058, - [SMALL_STATE(1553)] = 36072, - [SMALL_STATE(1554)] = 36086, - [SMALL_STATE(1555)] = 36100, - [SMALL_STATE(1556)] = 36114, - [SMALL_STATE(1557)] = 36128, - [SMALL_STATE(1558)] = 36142, - [SMALL_STATE(1559)] = 36156, - [SMALL_STATE(1560)] = 36170, - [SMALL_STATE(1561)] = 36184, - [SMALL_STATE(1562)] = 36198, - [SMALL_STATE(1563)] = 36212, - [SMALL_STATE(1564)] = 36226, - [SMALL_STATE(1565)] = 36240, - [SMALL_STATE(1566)] = 36254, - [SMALL_STATE(1567)] = 36268, - [SMALL_STATE(1568)] = 36282, - [SMALL_STATE(1569)] = 36296, - [SMALL_STATE(1570)] = 36310, - [SMALL_STATE(1571)] = 36324, - [SMALL_STATE(1572)] = 36338, - [SMALL_STATE(1573)] = 36352, - [SMALL_STATE(1574)] = 36366, - [SMALL_STATE(1575)] = 36380, - [SMALL_STATE(1576)] = 36394, - [SMALL_STATE(1577)] = 36408, - [SMALL_STATE(1578)] = 36422, - [SMALL_STATE(1579)] = 36436, - [SMALL_STATE(1580)] = 36450, - [SMALL_STATE(1581)] = 36464, - [SMALL_STATE(1582)] = 36478, - [SMALL_STATE(1583)] = 36492, - [SMALL_STATE(1584)] = 36506, - [SMALL_STATE(1585)] = 36520, - [SMALL_STATE(1586)] = 36534, - [SMALL_STATE(1587)] = 36548, - [SMALL_STATE(1588)] = 36562, - [SMALL_STATE(1589)] = 36576, - [SMALL_STATE(1590)] = 36588, - [SMALL_STATE(1591)] = 36602, - [SMALL_STATE(1592)] = 36616, - [SMALL_STATE(1593)] = 36630, - [SMALL_STATE(1594)] = 36644, - [SMALL_STATE(1595)] = 36658, - [SMALL_STATE(1596)] = 36672, - [SMALL_STATE(1597)] = 36686, - [SMALL_STATE(1598)] = 36700, - [SMALL_STATE(1599)] = 36714, - [SMALL_STATE(1600)] = 36728, - [SMALL_STATE(1601)] = 36742, - [SMALL_STATE(1602)] = 36756, - [SMALL_STATE(1603)] = 36770, - [SMALL_STATE(1604)] = 36784, - [SMALL_STATE(1605)] = 36798, - [SMALL_STATE(1606)] = 36812, - [SMALL_STATE(1607)] = 36826, - [SMALL_STATE(1608)] = 36840, - [SMALL_STATE(1609)] = 36850, - [SMALL_STATE(1610)] = 36864, - [SMALL_STATE(1611)] = 36878, - [SMALL_STATE(1612)] = 36892, - [SMALL_STATE(1613)] = 36906, - [SMALL_STATE(1614)] = 36920, - [SMALL_STATE(1615)] = 36934, - [SMALL_STATE(1616)] = 36948, - [SMALL_STATE(1617)] = 36962, - [SMALL_STATE(1618)] = 36976, - [SMALL_STATE(1619)] = 36990, - [SMALL_STATE(1620)] = 37004, - [SMALL_STATE(1621)] = 37018, - [SMALL_STATE(1622)] = 37030, - [SMALL_STATE(1623)] = 37044, - [SMALL_STATE(1624)] = 37058, - [SMALL_STATE(1625)] = 37072, - [SMALL_STATE(1626)] = 37086, - [SMALL_STATE(1627)] = 37100, - [SMALL_STATE(1628)] = 37114, - [SMALL_STATE(1629)] = 37128, - [SMALL_STATE(1630)] = 37142, - [SMALL_STATE(1631)] = 37156, - [SMALL_STATE(1632)] = 37170, - [SMALL_STATE(1633)] = 37184, - [SMALL_STATE(1634)] = 37198, - [SMALL_STATE(1635)] = 37212, - [SMALL_STATE(1636)] = 37226, - [SMALL_STATE(1637)] = 37240, - [SMALL_STATE(1638)] = 37254, - [SMALL_STATE(1639)] = 37268, - [SMALL_STATE(1640)] = 37282, - [SMALL_STATE(1641)] = 37296, - [SMALL_STATE(1642)] = 37310, - [SMALL_STATE(1643)] = 37324, - [SMALL_STATE(1644)] = 37338, - [SMALL_STATE(1645)] = 37352, - [SMALL_STATE(1646)] = 37366, - [SMALL_STATE(1647)] = 37380, - [SMALL_STATE(1648)] = 37394, - [SMALL_STATE(1649)] = 37408, - [SMALL_STATE(1650)] = 37418, - [SMALL_STATE(1651)] = 37432, - [SMALL_STATE(1652)] = 37446, - [SMALL_STATE(1653)] = 37460, - [SMALL_STATE(1654)] = 37474, - [SMALL_STATE(1655)] = 37486, - [SMALL_STATE(1656)] = 37500, - [SMALL_STATE(1657)] = 37514, - [SMALL_STATE(1658)] = 37528, - [SMALL_STATE(1659)] = 37542, - [SMALL_STATE(1660)] = 37556, - [SMALL_STATE(1661)] = 37570, - [SMALL_STATE(1662)] = 37580, - [SMALL_STATE(1663)] = 37590, - [SMALL_STATE(1664)] = 37604, - [SMALL_STATE(1665)] = 37618, - [SMALL_STATE(1666)] = 37632, - [SMALL_STATE(1667)] = 37646, - [SMALL_STATE(1668)] = 37660, - [SMALL_STATE(1669)] = 37674, - [SMALL_STATE(1670)] = 37688, - [SMALL_STATE(1671)] = 37702, - [SMALL_STATE(1672)] = 37716, - [SMALL_STATE(1673)] = 37730, - [SMALL_STATE(1674)] = 37744, - [SMALL_STATE(1675)] = 37758, - [SMALL_STATE(1676)] = 37772, - [SMALL_STATE(1677)] = 37786, - [SMALL_STATE(1678)] = 37800, - [SMALL_STATE(1679)] = 37814, - [SMALL_STATE(1680)] = 37828, - [SMALL_STATE(1681)] = 37842, - [SMALL_STATE(1682)] = 37856, - [SMALL_STATE(1683)] = 37870, - [SMALL_STATE(1684)] = 37884, - [SMALL_STATE(1685)] = 37898, - [SMALL_STATE(1686)] = 37912, - [SMALL_STATE(1687)] = 37926, - [SMALL_STATE(1688)] = 37940, - [SMALL_STATE(1689)] = 37952, - [SMALL_STATE(1690)] = 37966, - [SMALL_STATE(1691)] = 37980, - [SMALL_STATE(1692)] = 37994, - [SMALL_STATE(1693)] = 38008, - [SMALL_STATE(1694)] = 38022, - [SMALL_STATE(1695)] = 38036, - [SMALL_STATE(1696)] = 38050, - [SMALL_STATE(1697)] = 38064, - [SMALL_STATE(1698)] = 38078, - [SMALL_STATE(1699)] = 38092, - [SMALL_STATE(1700)] = 38106, - [SMALL_STATE(1701)] = 38120, - [SMALL_STATE(1702)] = 38134, - [SMALL_STATE(1703)] = 38148, - [SMALL_STATE(1704)] = 38162, - [SMALL_STATE(1705)] = 38176, - [SMALL_STATE(1706)] = 38186, - [SMALL_STATE(1707)] = 38200, - [SMALL_STATE(1708)] = 38214, - [SMALL_STATE(1709)] = 38228, - [SMALL_STATE(1710)] = 38242, - [SMALL_STATE(1711)] = 38256, - [SMALL_STATE(1712)] = 38270, - [SMALL_STATE(1713)] = 38284, - [SMALL_STATE(1714)] = 38298, - [SMALL_STATE(1715)] = 38312, - [SMALL_STATE(1716)] = 38322, - [SMALL_STATE(1717)] = 38336, - [SMALL_STATE(1718)] = 38350, - [SMALL_STATE(1719)] = 38364, - [SMALL_STATE(1720)] = 38378, - [SMALL_STATE(1721)] = 38392, - [SMALL_STATE(1722)] = 38406, - [SMALL_STATE(1723)] = 38418, - [SMALL_STATE(1724)] = 38430, - [SMALL_STATE(1725)] = 38444, - [SMALL_STATE(1726)] = 38458, - [SMALL_STATE(1727)] = 38472, - [SMALL_STATE(1728)] = 38484, - [SMALL_STATE(1729)] = 38498, - [SMALL_STATE(1730)] = 38512, - [SMALL_STATE(1731)] = 38524, - [SMALL_STATE(1732)] = 38538, - [SMALL_STATE(1733)] = 38552, - [SMALL_STATE(1734)] = 38566, - [SMALL_STATE(1735)] = 38580, - [SMALL_STATE(1736)] = 38594, - [SMALL_STATE(1737)] = 38608, - [SMALL_STATE(1738)] = 38622, - [SMALL_STATE(1739)] = 38636, - [SMALL_STATE(1740)] = 38650, - [SMALL_STATE(1741)] = 38664, - [SMALL_STATE(1742)] = 38678, - [SMALL_STATE(1743)] = 38692, - [SMALL_STATE(1744)] = 38706, - [SMALL_STATE(1745)] = 38720, - [SMALL_STATE(1746)] = 38734, - [SMALL_STATE(1747)] = 38748, - [SMALL_STATE(1748)] = 38762, - [SMALL_STATE(1749)] = 38776, - [SMALL_STATE(1750)] = 38790, - [SMALL_STATE(1751)] = 38804, - [SMALL_STATE(1752)] = 38818, - [SMALL_STATE(1753)] = 38832, - [SMALL_STATE(1754)] = 38846, - [SMALL_STATE(1755)] = 38860, - [SMALL_STATE(1756)] = 38874, - [SMALL_STATE(1757)] = 38888, - [SMALL_STATE(1758)] = 38902, - [SMALL_STATE(1759)] = 38916, - [SMALL_STATE(1760)] = 38930, - [SMALL_STATE(1761)] = 38944, - [SMALL_STATE(1762)] = 38958, - [SMALL_STATE(1763)] = 38972, - [SMALL_STATE(1764)] = 38986, - [SMALL_STATE(1765)] = 39000, - [SMALL_STATE(1766)] = 39014, - [SMALL_STATE(1767)] = 39028, - [SMALL_STATE(1768)] = 39042, - [SMALL_STATE(1769)] = 39056, - [SMALL_STATE(1770)] = 39070, - [SMALL_STATE(1771)] = 39084, - [SMALL_STATE(1772)] = 39098, - [SMALL_STATE(1773)] = 39112, - [SMALL_STATE(1774)] = 39126, - [SMALL_STATE(1775)] = 39140, - [SMALL_STATE(1776)] = 39154, - [SMALL_STATE(1777)] = 39168, - [SMALL_STATE(1778)] = 39182, - [SMALL_STATE(1779)] = 39196, - [SMALL_STATE(1780)] = 39210, - [SMALL_STATE(1781)] = 39224, - [SMALL_STATE(1782)] = 39238, - [SMALL_STATE(1783)] = 39252, - [SMALL_STATE(1784)] = 39266, - [SMALL_STATE(1785)] = 39280, - [SMALL_STATE(1786)] = 39294, - [SMALL_STATE(1787)] = 39308, - [SMALL_STATE(1788)] = 39322, - [SMALL_STATE(1789)] = 39336, - [SMALL_STATE(1790)] = 39350, - [SMALL_STATE(1791)] = 39364, - [SMALL_STATE(1792)] = 39378, - [SMALL_STATE(1793)] = 39392, - [SMALL_STATE(1794)] = 39406, - [SMALL_STATE(1795)] = 39420, - [SMALL_STATE(1796)] = 39434, - [SMALL_STATE(1797)] = 39448, - [SMALL_STATE(1798)] = 39462, - [SMALL_STATE(1799)] = 39476, - [SMALL_STATE(1800)] = 39490, - [SMALL_STATE(1801)] = 39504, - [SMALL_STATE(1802)] = 39518, - [SMALL_STATE(1803)] = 39532, - [SMALL_STATE(1804)] = 39546, - [SMALL_STATE(1805)] = 39560, - [SMALL_STATE(1806)] = 39574, - [SMALL_STATE(1807)] = 39588, - [SMALL_STATE(1808)] = 39602, - [SMALL_STATE(1809)] = 39612, - [SMALL_STATE(1810)] = 39626, - [SMALL_STATE(1811)] = 39640, - [SMALL_STATE(1812)] = 39654, - [SMALL_STATE(1813)] = 39668, - [SMALL_STATE(1814)] = 39682, - [SMALL_STATE(1815)] = 39696, - [SMALL_STATE(1816)] = 39710, - [SMALL_STATE(1817)] = 39724, - [SMALL_STATE(1818)] = 39738, - [SMALL_STATE(1819)] = 39752, - [SMALL_STATE(1820)] = 39766, - [SMALL_STATE(1821)] = 39780, - [SMALL_STATE(1822)] = 39794, - [SMALL_STATE(1823)] = 39808, - [SMALL_STATE(1824)] = 39822, - [SMALL_STATE(1825)] = 39836, - [SMALL_STATE(1826)] = 39850, - [SMALL_STATE(1827)] = 39864, - [SMALL_STATE(1828)] = 39876, - [SMALL_STATE(1829)] = 39890, - [SMALL_STATE(1830)] = 39904, - [SMALL_STATE(1831)] = 39914, - [SMALL_STATE(1832)] = 39928, - [SMALL_STATE(1833)] = 39942, - [SMALL_STATE(1834)] = 39954, - [SMALL_STATE(1835)] = 39968, - [SMALL_STATE(1836)] = 39982, - [SMALL_STATE(1837)] = 39996, - [SMALL_STATE(1838)] = 40010, - [SMALL_STATE(1839)] = 40024, - [SMALL_STATE(1840)] = 40038, - [SMALL_STATE(1841)] = 40052, - [SMALL_STATE(1842)] = 40066, - [SMALL_STATE(1843)] = 40080, - [SMALL_STATE(1844)] = 40094, - [SMALL_STATE(1845)] = 40108, - [SMALL_STATE(1846)] = 40122, - [SMALL_STATE(1847)] = 40136, - [SMALL_STATE(1848)] = 40150, - [SMALL_STATE(1849)] = 40164, - [SMALL_STATE(1850)] = 40178, - [SMALL_STATE(1851)] = 40192, - [SMALL_STATE(1852)] = 40206, - [SMALL_STATE(1853)] = 40220, - [SMALL_STATE(1854)] = 40232, - [SMALL_STATE(1855)] = 40246, - [SMALL_STATE(1856)] = 40260, - [SMALL_STATE(1857)] = 40274, - [SMALL_STATE(1858)] = 40288, - [SMALL_STATE(1859)] = 40302, - [SMALL_STATE(1860)] = 40316, - [SMALL_STATE(1861)] = 40330, - [SMALL_STATE(1862)] = 40344, - [SMALL_STATE(1863)] = 40356, - [SMALL_STATE(1864)] = 40370, - [SMALL_STATE(1865)] = 40384, - [SMALL_STATE(1866)] = 40394, - [SMALL_STATE(1867)] = 40408, - [SMALL_STATE(1868)] = 40422, - [SMALL_STATE(1869)] = 40436, - [SMALL_STATE(1870)] = 40450, - [SMALL_STATE(1871)] = 40464, - [SMALL_STATE(1872)] = 40478, - [SMALL_STATE(1873)] = 40492, - [SMALL_STATE(1874)] = 40506, - [SMALL_STATE(1875)] = 40520, - [SMALL_STATE(1876)] = 40534, - [SMALL_STATE(1877)] = 40548, - [SMALL_STATE(1878)] = 40562, - [SMALL_STATE(1879)] = 40576, - [SMALL_STATE(1880)] = 40590, - [SMALL_STATE(1881)] = 40604, - [SMALL_STATE(1882)] = 40618, - [SMALL_STATE(1883)] = 40632, - [SMALL_STATE(1884)] = 40646, - [SMALL_STATE(1885)] = 40660, - [SMALL_STATE(1886)] = 40674, - [SMALL_STATE(1887)] = 40688, - [SMALL_STATE(1888)] = 40702, - [SMALL_STATE(1889)] = 40716, - [SMALL_STATE(1890)] = 40730, - [SMALL_STATE(1891)] = 40744, - [SMALL_STATE(1892)] = 40758, - [SMALL_STATE(1893)] = 40772, - [SMALL_STATE(1894)] = 40786, - [SMALL_STATE(1895)] = 40800, - [SMALL_STATE(1896)] = 40814, - [SMALL_STATE(1897)] = 40828, - [SMALL_STATE(1898)] = 40842, - [SMALL_STATE(1899)] = 40856, - [SMALL_STATE(1900)] = 40870, - [SMALL_STATE(1901)] = 40884, - [SMALL_STATE(1902)] = 40898, - [SMALL_STATE(1903)] = 40912, - [SMALL_STATE(1904)] = 40926, - [SMALL_STATE(1905)] = 40940, - [SMALL_STATE(1906)] = 40954, - [SMALL_STATE(1907)] = 40968, - [SMALL_STATE(1908)] = 40982, - [SMALL_STATE(1909)] = 40996, - [SMALL_STATE(1910)] = 41010, - [SMALL_STATE(1911)] = 41024, - [SMALL_STATE(1912)] = 41034, - [SMALL_STATE(1913)] = 41045, - [SMALL_STATE(1914)] = 41056, - [SMALL_STATE(1915)] = 41065, - [SMALL_STATE(1916)] = 41076, - [SMALL_STATE(1917)] = 41085, - [SMALL_STATE(1918)] = 41094, - [SMALL_STATE(1919)] = 41103, - [SMALL_STATE(1920)] = 41114, - [SMALL_STATE(1921)] = 41125, - [SMALL_STATE(1922)] = 41136, - [SMALL_STATE(1923)] = 41147, - [SMALL_STATE(1924)] = 41158, - [SMALL_STATE(1925)] = 41169, - [SMALL_STATE(1926)] = 41180, - [SMALL_STATE(1927)] = 41189, - [SMALL_STATE(1928)] = 41200, - [SMALL_STATE(1929)] = 41209, - [SMALL_STATE(1930)] = 41220, - [SMALL_STATE(1931)] = 41229, - [SMALL_STATE(1932)] = 41240, - [SMALL_STATE(1933)] = 41249, - [SMALL_STATE(1934)] = 41258, - [SMALL_STATE(1935)] = 41269, - [SMALL_STATE(1936)] = 41280, - [SMALL_STATE(1937)] = 41291, - [SMALL_STATE(1938)] = 41300, - [SMALL_STATE(1939)] = 41311, - [SMALL_STATE(1940)] = 41320, - [SMALL_STATE(1941)] = 41331, - [SMALL_STATE(1942)] = 41340, - [SMALL_STATE(1943)] = 41351, - [SMALL_STATE(1944)] = 41362, - [SMALL_STATE(1945)] = 41371, - [SMALL_STATE(1946)] = 41382, - [SMALL_STATE(1947)] = 41391, - [SMALL_STATE(1948)] = 41400, - [SMALL_STATE(1949)] = 41409, - [SMALL_STATE(1950)] = 41420, - [SMALL_STATE(1951)] = 41431, - [SMALL_STATE(1952)] = 41442, - [SMALL_STATE(1953)] = 41451, - [SMALL_STATE(1954)] = 41460, - [SMALL_STATE(1955)] = 41471, - [SMALL_STATE(1956)] = 41482, - [SMALL_STATE(1957)] = 41493, - [SMALL_STATE(1958)] = 41502, - [SMALL_STATE(1959)] = 41513, - [SMALL_STATE(1960)] = 41522, - [SMALL_STATE(1961)] = 41533, - [SMALL_STATE(1962)] = 41542, - [SMALL_STATE(1963)] = 41551, - [SMALL_STATE(1964)] = 41562, - [SMALL_STATE(1965)] = 41573, - [SMALL_STATE(1966)] = 41582, - [SMALL_STATE(1967)] = 41593, - [SMALL_STATE(1968)] = 41604, - [SMALL_STATE(1969)] = 41615, - [SMALL_STATE(1970)] = 41626, - [SMALL_STATE(1971)] = 41637, - [SMALL_STATE(1972)] = 41648, - [SMALL_STATE(1973)] = 41659, - [SMALL_STATE(1974)] = 41670, - [SMALL_STATE(1975)] = 41681, - [SMALL_STATE(1976)] = 41692, - [SMALL_STATE(1977)] = 41701, - [SMALL_STATE(1978)] = 41712, - [SMALL_STATE(1979)] = 41723, - [SMALL_STATE(1980)] = 41734, - [SMALL_STATE(1981)] = 41743, - [SMALL_STATE(1982)] = 41754, - [SMALL_STATE(1983)] = 41765, - [SMALL_STATE(1984)] = 41776, - [SMALL_STATE(1985)] = 41787, - [SMALL_STATE(1986)] = 41798, - [SMALL_STATE(1987)] = 41809, - [SMALL_STATE(1988)] = 41820, - [SMALL_STATE(1989)] = 41831, - [SMALL_STATE(1990)] = 41842, - [SMALL_STATE(1991)] = 41851, - [SMALL_STATE(1992)] = 41862, - [SMALL_STATE(1993)] = 41873, - [SMALL_STATE(1994)] = 41884, - [SMALL_STATE(1995)] = 41895, - [SMALL_STATE(1996)] = 41906, - [SMALL_STATE(1997)] = 41915, - [SMALL_STATE(1998)] = 41926, - [SMALL_STATE(1999)] = 41937, - [SMALL_STATE(2000)] = 41948, - [SMALL_STATE(2001)] = 41959, - [SMALL_STATE(2002)] = 41970, - [SMALL_STATE(2003)] = 41981, - [SMALL_STATE(2004)] = 41992, - [SMALL_STATE(2005)] = 42001, - [SMALL_STATE(2006)] = 42012, - [SMALL_STATE(2007)] = 42023, - [SMALL_STATE(2008)] = 42032, - [SMALL_STATE(2009)] = 42043, - [SMALL_STATE(2010)] = 42052, - [SMALL_STATE(2011)] = 42063, - [SMALL_STATE(2012)] = 42074, - [SMALL_STATE(2013)] = 42085, - [SMALL_STATE(2014)] = 42096, - [SMALL_STATE(2015)] = 42107, - [SMALL_STATE(2016)] = 42118, - [SMALL_STATE(2017)] = 42127, - [SMALL_STATE(2018)] = 42138, - [SMALL_STATE(2019)] = 42149, - [SMALL_STATE(2020)] = 42160, - [SMALL_STATE(2021)] = 42171, - [SMALL_STATE(2022)] = 42182, - [SMALL_STATE(2023)] = 42193, - [SMALL_STATE(2024)] = 42204, - [SMALL_STATE(2025)] = 42215, - [SMALL_STATE(2026)] = 42224, - [SMALL_STATE(2027)] = 42235, - [SMALL_STATE(2028)] = 42246, - [SMALL_STATE(2029)] = 42257, - [SMALL_STATE(2030)] = 42268, - [SMALL_STATE(2031)] = 42279, - [SMALL_STATE(2032)] = 42290, - [SMALL_STATE(2033)] = 42301, - [SMALL_STATE(2034)] = 42312, - [SMALL_STATE(2035)] = 42323, - [SMALL_STATE(2036)] = 42332, - [SMALL_STATE(2037)] = 42343, - [SMALL_STATE(2038)] = 42354, - [SMALL_STATE(2039)] = 42365, - [SMALL_STATE(2040)] = 42374, - [SMALL_STATE(2041)] = 42383, - [SMALL_STATE(2042)] = 42394, - [SMALL_STATE(2043)] = 42405, - [SMALL_STATE(2044)] = 42416, - [SMALL_STATE(2045)] = 42425, - [SMALL_STATE(2046)] = 42436, - [SMALL_STATE(2047)] = 42447, - [SMALL_STATE(2048)] = 42456, - [SMALL_STATE(2049)] = 42467, - [SMALL_STATE(2050)] = 42476, - [SMALL_STATE(2051)] = 42485, - [SMALL_STATE(2052)] = 42496, - [SMALL_STATE(2053)] = 42507, - [SMALL_STATE(2054)] = 42520, - [SMALL_STATE(2055)] = 42531, - [SMALL_STATE(2056)] = 42542, - [SMALL_STATE(2057)] = 42553, - [SMALL_STATE(2058)] = 42564, - [SMALL_STATE(2059)] = 42575, - [SMALL_STATE(2060)] = 42586, - [SMALL_STATE(2061)] = 42595, - [SMALL_STATE(2062)] = 42606, - [SMALL_STATE(2063)] = 42615, - [SMALL_STATE(2064)] = 42626, - [SMALL_STATE(2065)] = 42635, - [SMALL_STATE(2066)] = 42646, - [SMALL_STATE(2067)] = 42657, - [SMALL_STATE(2068)] = 42670, - [SMALL_STATE(2069)] = 42678, - [SMALL_STATE(2070)] = 42686, - [SMALL_STATE(2071)] = 42694, - [SMALL_STATE(2072)] = 42702, - [SMALL_STATE(2073)] = 42710, - [SMALL_STATE(2074)] = 42718, - [SMALL_STATE(2075)] = 42726, - [SMALL_STATE(2076)] = 42734, - [SMALL_STATE(2077)] = 42742, - [SMALL_STATE(2078)] = 42750, - [SMALL_STATE(2079)] = 42758, - [SMALL_STATE(2080)] = 42766, - [SMALL_STATE(2081)] = 42774, - [SMALL_STATE(2082)] = 42782, - [SMALL_STATE(2083)] = 42790, - [SMALL_STATE(2084)] = 42798, - [SMALL_STATE(2085)] = 42806, - [SMALL_STATE(2086)] = 42814, - [SMALL_STATE(2087)] = 42822, - [SMALL_STATE(2088)] = 42830, - [SMALL_STATE(2089)] = 42838, - [SMALL_STATE(2090)] = 42846, - [SMALL_STATE(2091)] = 42854, - [SMALL_STATE(2092)] = 42862, - [SMALL_STATE(2093)] = 42870, - [SMALL_STATE(2094)] = 42878, - [SMALL_STATE(2095)] = 42886, - [SMALL_STATE(2096)] = 42894, - [SMALL_STATE(2097)] = 42902, - [SMALL_STATE(2098)] = 42910, - [SMALL_STATE(2099)] = 42918, - [SMALL_STATE(2100)] = 42926, - [SMALL_STATE(2101)] = 42934, - [SMALL_STATE(2102)] = 42942, - [SMALL_STATE(2103)] = 42950, - [SMALL_STATE(2104)] = 42958, - [SMALL_STATE(2105)] = 42966, - [SMALL_STATE(2106)] = 42974, - [SMALL_STATE(2107)] = 42982, - [SMALL_STATE(2108)] = 42990, - [SMALL_STATE(2109)] = 42998, - [SMALL_STATE(2110)] = 43006, - [SMALL_STATE(2111)] = 43014, - [SMALL_STATE(2112)] = 43022, - [SMALL_STATE(2113)] = 43030, - [SMALL_STATE(2114)] = 43038, - [SMALL_STATE(2115)] = 43046, - [SMALL_STATE(2116)] = 43054, - [SMALL_STATE(2117)] = 43062, - [SMALL_STATE(2118)] = 43070, - [SMALL_STATE(2119)] = 43078, - [SMALL_STATE(2120)] = 43086, - [SMALL_STATE(2121)] = 43094, - [SMALL_STATE(2122)] = 43102, - [SMALL_STATE(2123)] = 43110, - [SMALL_STATE(2124)] = 43118, - [SMALL_STATE(2125)] = 43126, - [SMALL_STATE(2126)] = 43134, - [SMALL_STATE(2127)] = 43142, - [SMALL_STATE(2128)] = 43150, - [SMALL_STATE(2129)] = 43158, - [SMALL_STATE(2130)] = 43166, - [SMALL_STATE(2131)] = 43174, - [SMALL_STATE(2132)] = 43182, - [SMALL_STATE(2133)] = 43190, - [SMALL_STATE(2134)] = 43198, - [SMALL_STATE(2135)] = 43206, - [SMALL_STATE(2136)] = 43214, - [SMALL_STATE(2137)] = 43222, - [SMALL_STATE(2138)] = 43230, - [SMALL_STATE(2139)] = 43238, - [SMALL_STATE(2140)] = 43246, - [SMALL_STATE(2141)] = 43254, - [SMALL_STATE(2142)] = 43262, - [SMALL_STATE(2143)] = 43270, - [SMALL_STATE(2144)] = 43278, - [SMALL_STATE(2145)] = 43286, - [SMALL_STATE(2146)] = 43294, - [SMALL_STATE(2147)] = 43302, - [SMALL_STATE(2148)] = 43310, - [SMALL_STATE(2149)] = 43318, - [SMALL_STATE(2150)] = 43326, - [SMALL_STATE(2151)] = 43334, - [SMALL_STATE(2152)] = 43342, - [SMALL_STATE(2153)] = 43350, - [SMALL_STATE(2154)] = 43358, - [SMALL_STATE(2155)] = 43366, - [SMALL_STATE(2156)] = 43374, - [SMALL_STATE(2157)] = 43382, - [SMALL_STATE(2158)] = 43390, - [SMALL_STATE(2159)] = 43398, - [SMALL_STATE(2160)] = 43406, - [SMALL_STATE(2161)] = 43414, - [SMALL_STATE(2162)] = 43422, - [SMALL_STATE(2163)] = 43430, - [SMALL_STATE(2164)] = 43438, - [SMALL_STATE(2165)] = 43446, - [SMALL_STATE(2166)] = 43454, - [SMALL_STATE(2167)] = 43462, - [SMALL_STATE(2168)] = 43470, - [SMALL_STATE(2169)] = 43478, - [SMALL_STATE(2170)] = 43486, - [SMALL_STATE(2171)] = 43494, - [SMALL_STATE(2172)] = 43502, - [SMALL_STATE(2173)] = 43510, - [SMALL_STATE(2174)] = 43518, - [SMALL_STATE(2175)] = 43526, - [SMALL_STATE(2176)] = 43534, - [SMALL_STATE(2177)] = 43542, - [SMALL_STATE(2178)] = 43550, - [SMALL_STATE(2179)] = 43558, - [SMALL_STATE(2180)] = 43566, - [SMALL_STATE(2181)] = 43574, - [SMALL_STATE(2182)] = 43582, - [SMALL_STATE(2183)] = 43590, - [SMALL_STATE(2184)] = 43598, - [SMALL_STATE(2185)] = 43606, - [SMALL_STATE(2186)] = 43614, - [SMALL_STATE(2187)] = 43622, - [SMALL_STATE(2188)] = 43630, - [SMALL_STATE(2189)] = 43638, - [SMALL_STATE(2190)] = 43646, - [SMALL_STATE(2191)] = 43654, - [SMALL_STATE(2192)] = 43662, - [SMALL_STATE(2193)] = 43670, - [SMALL_STATE(2194)] = 43678, - [SMALL_STATE(2195)] = 43686, - [SMALL_STATE(2196)] = 43694, - [SMALL_STATE(2197)] = 43702, - [SMALL_STATE(2198)] = 43710, - [SMALL_STATE(2199)] = 43718, - [SMALL_STATE(2200)] = 43726, - [SMALL_STATE(2201)] = 43734, - [SMALL_STATE(2202)] = 43742, - [SMALL_STATE(2203)] = 43750, - [SMALL_STATE(2204)] = 43758, - [SMALL_STATE(2205)] = 43766, - [SMALL_STATE(2206)] = 43774, - [SMALL_STATE(2207)] = 43782, - [SMALL_STATE(2208)] = 43790, - [SMALL_STATE(2209)] = 43798, - [SMALL_STATE(2210)] = 43806, - [SMALL_STATE(2211)] = 43814, - [SMALL_STATE(2212)] = 43822, - [SMALL_STATE(2213)] = 43830, - [SMALL_STATE(2214)] = 43838, - [SMALL_STATE(2215)] = 43846, - [SMALL_STATE(2216)] = 43854, - [SMALL_STATE(2217)] = 43862, - [SMALL_STATE(2218)] = 43870, - [SMALL_STATE(2219)] = 43878, - [SMALL_STATE(2220)] = 43886, - [SMALL_STATE(2221)] = 43894, - [SMALL_STATE(2222)] = 43902, - [SMALL_STATE(2223)] = 43910, - [SMALL_STATE(2224)] = 43918, - [SMALL_STATE(2225)] = 43926, - [SMALL_STATE(2226)] = 43934, - [SMALL_STATE(2227)] = 43942, - [SMALL_STATE(2228)] = 43950, - [SMALL_STATE(2229)] = 43958, - [SMALL_STATE(2230)] = 43966, - [SMALL_STATE(2231)] = 43974, - [SMALL_STATE(2232)] = 43982, - [SMALL_STATE(2233)] = 43990, - [SMALL_STATE(2234)] = 43998, - [SMALL_STATE(2235)] = 44006, - [SMALL_STATE(2236)] = 44014, - [SMALL_STATE(2237)] = 44022, - [SMALL_STATE(2238)] = 44030, - [SMALL_STATE(2239)] = 44038, - [SMALL_STATE(2240)] = 44046, - [SMALL_STATE(2241)] = 44054, - [SMALL_STATE(2242)] = 44062, - [SMALL_STATE(2243)] = 44070, - [SMALL_STATE(2244)] = 44078, - [SMALL_STATE(2245)] = 44086, - [SMALL_STATE(2246)] = 44094, - [SMALL_STATE(2247)] = 44102, - [SMALL_STATE(2248)] = 44110, - [SMALL_STATE(2249)] = 44118, - [SMALL_STATE(2250)] = 44126, - [SMALL_STATE(2251)] = 44134, - [SMALL_STATE(2252)] = 44142, - [SMALL_STATE(2253)] = 44150, - [SMALL_STATE(2254)] = 44158, - [SMALL_STATE(2255)] = 44166, - [SMALL_STATE(2256)] = 44174, - [SMALL_STATE(2257)] = 44182, - [SMALL_STATE(2258)] = 44190, - [SMALL_STATE(2259)] = 44198, - [SMALL_STATE(2260)] = 44206, - [SMALL_STATE(2261)] = 44214, - [SMALL_STATE(2262)] = 44222, - [SMALL_STATE(2263)] = 44230, - [SMALL_STATE(2264)] = 44238, - [SMALL_STATE(2265)] = 44246, - [SMALL_STATE(2266)] = 44254, - [SMALL_STATE(2267)] = 44262, - [SMALL_STATE(2268)] = 44270, - [SMALL_STATE(2269)] = 44278, - [SMALL_STATE(2270)] = 44286, - [SMALL_STATE(2271)] = 44294, - [SMALL_STATE(2272)] = 44302, - [SMALL_STATE(2273)] = 44310, - [SMALL_STATE(2274)] = 44318, - [SMALL_STATE(2275)] = 44326, - [SMALL_STATE(2276)] = 44334, - [SMALL_STATE(2277)] = 44342, - [SMALL_STATE(2278)] = 44350, - [SMALL_STATE(2279)] = 44358, - [SMALL_STATE(2280)] = 44366, - [SMALL_STATE(2281)] = 44374, - [SMALL_STATE(2282)] = 44382, - [SMALL_STATE(2283)] = 44390, - [SMALL_STATE(2284)] = 44398, - [SMALL_STATE(2285)] = 44406, - [SMALL_STATE(2286)] = 44414, - [SMALL_STATE(2287)] = 44422, - [SMALL_STATE(2288)] = 44430, - [SMALL_STATE(2289)] = 44438, - [SMALL_STATE(2290)] = 44446, - [SMALL_STATE(2291)] = 44454, - [SMALL_STATE(2292)] = 44462, - [SMALL_STATE(2293)] = 44470, - [SMALL_STATE(2294)] = 44478, - [SMALL_STATE(2295)] = 44486, - [SMALL_STATE(2296)] = 44494, - [SMALL_STATE(2297)] = 44502, - [SMALL_STATE(2298)] = 44510, - [SMALL_STATE(2299)] = 44518, - [SMALL_STATE(2300)] = 44526, - [SMALL_STATE(2301)] = 44534, - [SMALL_STATE(2302)] = 44542, - [SMALL_STATE(2303)] = 44550, - [SMALL_STATE(2304)] = 44558, - [SMALL_STATE(2305)] = 44566, - [SMALL_STATE(2306)] = 44574, - [SMALL_STATE(2307)] = 44582, - [SMALL_STATE(2308)] = 44590, - [SMALL_STATE(2309)] = 44598, - [SMALL_STATE(2310)] = 44606, - [SMALL_STATE(2311)] = 44614, - [SMALL_STATE(2312)] = 44622, - [SMALL_STATE(2313)] = 44630, - [SMALL_STATE(2314)] = 44638, - [SMALL_STATE(2315)] = 44646, - [SMALL_STATE(2316)] = 44654, - [SMALL_STATE(2317)] = 44662, - [SMALL_STATE(2318)] = 44670, - [SMALL_STATE(2319)] = 44678, - [SMALL_STATE(2320)] = 44686, - [SMALL_STATE(2321)] = 44694, - [SMALL_STATE(2322)] = 44702, - [SMALL_STATE(2323)] = 44710, - [SMALL_STATE(2324)] = 44718, - [SMALL_STATE(2325)] = 44726, - [SMALL_STATE(2326)] = 44734, - [SMALL_STATE(2327)] = 44742, - [SMALL_STATE(2328)] = 44750, - [SMALL_STATE(2329)] = 44758, - [SMALL_STATE(2330)] = 44766, - [SMALL_STATE(2331)] = 44774, - [SMALL_STATE(2332)] = 44782, - [SMALL_STATE(2333)] = 44790, - [SMALL_STATE(2334)] = 44798, - [SMALL_STATE(2335)] = 44806, - [SMALL_STATE(2336)] = 44814, - [SMALL_STATE(2337)] = 44822, - [SMALL_STATE(2338)] = 44830, - [SMALL_STATE(2339)] = 44838, - [SMALL_STATE(2340)] = 44846, - [SMALL_STATE(2341)] = 44854, - [SMALL_STATE(2342)] = 44862, - [SMALL_STATE(2343)] = 44870, - [SMALL_STATE(2344)] = 44878, - [SMALL_STATE(2345)] = 44886, - [SMALL_STATE(2346)] = 44894, - [SMALL_STATE(2347)] = 44902, - [SMALL_STATE(2348)] = 44910, - [SMALL_STATE(2349)] = 44918, - [SMALL_STATE(2350)] = 44926, - [SMALL_STATE(2351)] = 44934, - [SMALL_STATE(2352)] = 44942, - [SMALL_STATE(2353)] = 44950, - [SMALL_STATE(2354)] = 44958, - [SMALL_STATE(2355)] = 44966, - [SMALL_STATE(2356)] = 44974, - [SMALL_STATE(2357)] = 44982, - [SMALL_STATE(2358)] = 44990, - [SMALL_STATE(2359)] = 44998, - [SMALL_STATE(2360)] = 45006, - [SMALL_STATE(2361)] = 45014, - [SMALL_STATE(2362)] = 45022, - [SMALL_STATE(2363)] = 45030, - [SMALL_STATE(2364)] = 45038, - [SMALL_STATE(2365)] = 45046, - [SMALL_STATE(2366)] = 45054, - [SMALL_STATE(2367)] = 45062, - [SMALL_STATE(2368)] = 45070, - [SMALL_STATE(2369)] = 45078, - [SMALL_STATE(2370)] = 45086, - [SMALL_STATE(2371)] = 45094, - [SMALL_STATE(2372)] = 45102, - [SMALL_STATE(2373)] = 45110, - [SMALL_STATE(2374)] = 45118, - [SMALL_STATE(2375)] = 45126, - [SMALL_STATE(2376)] = 45134, - [SMALL_STATE(2377)] = 45142, - [SMALL_STATE(2378)] = 45150, - [SMALL_STATE(2379)] = 45158, - [SMALL_STATE(2380)] = 45166, - [SMALL_STATE(2381)] = 45174, - [SMALL_STATE(2382)] = 45182, - [SMALL_STATE(2383)] = 45190, - [SMALL_STATE(2384)] = 45198, - [SMALL_STATE(2385)] = 45206, - [SMALL_STATE(2386)] = 45214, - [SMALL_STATE(2387)] = 45222, - [SMALL_STATE(2388)] = 45230, - [SMALL_STATE(2389)] = 45238, - [SMALL_STATE(2390)] = 45246, - [SMALL_STATE(2391)] = 45254, - [SMALL_STATE(2392)] = 45262, - [SMALL_STATE(2393)] = 45270, - [SMALL_STATE(2394)] = 45278, - [SMALL_STATE(2395)] = 45286, - [SMALL_STATE(2396)] = 45294, - [SMALL_STATE(2397)] = 45302, - [SMALL_STATE(2398)] = 45310, - [SMALL_STATE(2399)] = 45318, - [SMALL_STATE(2400)] = 45326, - [SMALL_STATE(2401)] = 45334, - [SMALL_STATE(2402)] = 45342, - [SMALL_STATE(2403)] = 45350, - [SMALL_STATE(2404)] = 45358, - [SMALL_STATE(2405)] = 45366, - [SMALL_STATE(2406)] = 45374, - [SMALL_STATE(2407)] = 45382, - [SMALL_STATE(2408)] = 45390, - [SMALL_STATE(2409)] = 45398, - [SMALL_STATE(2410)] = 45406, - [SMALL_STATE(2411)] = 45414, - [SMALL_STATE(2412)] = 45422, - [SMALL_STATE(2413)] = 45430, - [SMALL_STATE(2414)] = 45438, - [SMALL_STATE(2415)] = 45446, - [SMALL_STATE(2416)] = 45454, - [SMALL_STATE(2417)] = 45462, - [SMALL_STATE(2418)] = 45470, - [SMALL_STATE(2419)] = 45478, - [SMALL_STATE(2420)] = 45486, - [SMALL_STATE(2421)] = 45494, - [SMALL_STATE(2422)] = 45502, - [SMALL_STATE(2423)] = 45510, - [SMALL_STATE(2424)] = 45518, - [SMALL_STATE(2425)] = 45526, - [SMALL_STATE(2426)] = 45534, - [SMALL_STATE(2427)] = 45542, - [SMALL_STATE(2428)] = 45550, - [SMALL_STATE(2429)] = 45558, - [SMALL_STATE(2430)] = 45566, - [SMALL_STATE(2431)] = 45574, - [SMALL_STATE(2432)] = 45582, - [SMALL_STATE(2433)] = 45590, - [SMALL_STATE(2434)] = 45598, - [SMALL_STATE(2435)] = 45606, - [SMALL_STATE(2436)] = 45614, - [SMALL_STATE(2437)] = 45622, - [SMALL_STATE(2438)] = 45630, - [SMALL_STATE(2439)] = 45638, - [SMALL_STATE(2440)] = 45646, - [SMALL_STATE(2441)] = 45654, - [SMALL_STATE(2442)] = 45662, - [SMALL_STATE(2443)] = 45670, - [SMALL_STATE(2444)] = 45678, - [SMALL_STATE(2445)] = 45686, - [SMALL_STATE(2446)] = 45694, - [SMALL_STATE(2447)] = 45702, - [SMALL_STATE(2448)] = 45710, - [SMALL_STATE(2449)] = 45718, - [SMALL_STATE(2450)] = 45726, - [SMALL_STATE(2451)] = 45734, - [SMALL_STATE(2452)] = 45742, - [SMALL_STATE(2453)] = 45750, - [SMALL_STATE(2454)] = 45758, - [SMALL_STATE(2455)] = 45766, - [SMALL_STATE(2456)] = 45774, - [SMALL_STATE(2457)] = 45782, - [SMALL_STATE(2458)] = 45790, - [SMALL_STATE(2459)] = 45798, - [SMALL_STATE(2460)] = 45806, - [SMALL_STATE(2461)] = 45814, - [SMALL_STATE(2462)] = 45822, - [SMALL_STATE(2463)] = 45830, - [SMALL_STATE(2464)] = 45838, - [SMALL_STATE(2465)] = 45846, - [SMALL_STATE(2466)] = 45854, - [SMALL_STATE(2467)] = 45862, - [SMALL_STATE(2468)] = 45870, - [SMALL_STATE(2469)] = 45878, - [SMALL_STATE(2470)] = 45886, - [SMALL_STATE(2471)] = 45894, - [SMALL_STATE(2472)] = 45902, - [SMALL_STATE(2473)] = 45910, - [SMALL_STATE(2474)] = 45918, - [SMALL_STATE(2475)] = 45926, - [SMALL_STATE(2476)] = 45934, - [SMALL_STATE(2477)] = 45942, - [SMALL_STATE(2478)] = 45950, - [SMALL_STATE(2479)] = 45958, - [SMALL_STATE(2480)] = 45966, - [SMALL_STATE(2481)] = 45974, - [SMALL_STATE(2482)] = 45982, - [SMALL_STATE(2483)] = 45990, - [SMALL_STATE(2484)] = 45998, - [SMALL_STATE(2485)] = 46006, - [SMALL_STATE(2486)] = 46014, - [SMALL_STATE(2487)] = 46022, - [SMALL_STATE(2488)] = 46030, - [SMALL_STATE(2489)] = 46038, - [SMALL_STATE(2490)] = 46046, - [SMALL_STATE(2491)] = 46054, - [SMALL_STATE(2492)] = 46062, - [SMALL_STATE(2493)] = 46070, - [SMALL_STATE(2494)] = 46078, - [SMALL_STATE(2495)] = 46086, - [SMALL_STATE(2496)] = 46094, - [SMALL_STATE(2497)] = 46102, - [SMALL_STATE(2498)] = 46110, - [SMALL_STATE(2499)] = 46118, - [SMALL_STATE(2500)] = 46126, - [SMALL_STATE(2501)] = 46134, - [SMALL_STATE(2502)] = 46142, - [SMALL_STATE(2503)] = 46150, - [SMALL_STATE(2504)] = 46158, - [SMALL_STATE(2505)] = 46166, - [SMALL_STATE(2506)] = 46174, - [SMALL_STATE(2507)] = 46182, - [SMALL_STATE(2508)] = 46190, - [SMALL_STATE(2509)] = 46198, - [SMALL_STATE(2510)] = 46206, - [SMALL_STATE(2511)] = 46214, - [SMALL_STATE(2512)] = 46222, - [SMALL_STATE(2513)] = 46230, - [SMALL_STATE(2514)] = 46238, - [SMALL_STATE(2515)] = 46246, - [SMALL_STATE(2516)] = 46254, - [SMALL_STATE(2517)] = 46262, - [SMALL_STATE(2518)] = 46270, - [SMALL_STATE(2519)] = 46278, - [SMALL_STATE(2520)] = 46286, - [SMALL_STATE(2521)] = 46294, - [SMALL_STATE(2522)] = 46302, - [SMALL_STATE(2523)] = 46310, - [SMALL_STATE(2524)] = 46318, - [SMALL_STATE(2525)] = 46326, - [SMALL_STATE(2526)] = 46334, - [SMALL_STATE(2527)] = 46342, - [SMALL_STATE(2528)] = 46350, - [SMALL_STATE(2529)] = 46358, - [SMALL_STATE(2530)] = 46366, - [SMALL_STATE(2531)] = 46374, - [SMALL_STATE(2532)] = 46382, - [SMALL_STATE(2533)] = 46390, - [SMALL_STATE(2534)] = 46398, - [SMALL_STATE(2535)] = 46406, - [SMALL_STATE(2536)] = 46414, - [SMALL_STATE(2537)] = 46422, - [SMALL_STATE(2538)] = 46430, - [SMALL_STATE(2539)] = 46438, - [SMALL_STATE(2540)] = 46446, - [SMALL_STATE(2541)] = 46454, - [SMALL_STATE(2542)] = 46462, - [SMALL_STATE(2543)] = 46470, - [SMALL_STATE(2544)] = 46478, - [SMALL_STATE(2545)] = 46486, - [SMALL_STATE(2546)] = 46494, - [SMALL_STATE(2547)] = 46502, - [SMALL_STATE(2548)] = 46510, - [SMALL_STATE(2549)] = 46518, - [SMALL_STATE(2550)] = 46526, - [SMALL_STATE(2551)] = 46534, - [SMALL_STATE(2552)] = 46542, - [SMALL_STATE(2553)] = 46550, - [SMALL_STATE(2554)] = 46558, - [SMALL_STATE(2555)] = 46566, - [SMALL_STATE(2556)] = 46574, - [SMALL_STATE(2557)] = 46582, - [SMALL_STATE(2558)] = 46590, - [SMALL_STATE(2559)] = 46598, - [SMALL_STATE(2560)] = 46606, - [SMALL_STATE(2561)] = 46614, - [SMALL_STATE(2562)] = 46622, - [SMALL_STATE(2563)] = 46630, - [SMALL_STATE(2564)] = 46638, - [SMALL_STATE(2565)] = 46646, - [SMALL_STATE(2566)] = 46654, - [SMALL_STATE(2567)] = 46662, - [SMALL_STATE(2568)] = 46670, - [SMALL_STATE(2569)] = 46678, - [SMALL_STATE(2570)] = 46686, - [SMALL_STATE(2571)] = 46694, - [SMALL_STATE(2572)] = 46702, - [SMALL_STATE(2573)] = 46710, - [SMALL_STATE(2574)] = 46718, - [SMALL_STATE(2575)] = 46726, - [SMALL_STATE(2576)] = 46734, - [SMALL_STATE(2577)] = 46742, - [SMALL_STATE(2578)] = 46750, - [SMALL_STATE(2579)] = 46758, - [SMALL_STATE(2580)] = 46766, - [SMALL_STATE(2581)] = 46774, - [SMALL_STATE(2582)] = 46782, - [SMALL_STATE(2583)] = 46790, - [SMALL_STATE(2584)] = 46798, - [SMALL_STATE(2585)] = 46806, - [SMALL_STATE(2586)] = 46814, - [SMALL_STATE(2587)] = 46822, - [SMALL_STATE(2588)] = 46830, - [SMALL_STATE(2589)] = 46838, - [SMALL_STATE(2590)] = 46846, - [SMALL_STATE(2591)] = 46854, - [SMALL_STATE(2592)] = 46862, - [SMALL_STATE(2593)] = 46870, - [SMALL_STATE(2594)] = 46878, - [SMALL_STATE(2595)] = 46886, - [SMALL_STATE(2596)] = 46894, - [SMALL_STATE(2597)] = 46902, - [SMALL_STATE(2598)] = 46910, - [SMALL_STATE(2599)] = 46918, - [SMALL_STATE(2600)] = 46926, - [SMALL_STATE(2601)] = 46934, - [SMALL_STATE(2602)] = 46942, - [SMALL_STATE(2603)] = 46950, - [SMALL_STATE(2604)] = 46958, - [SMALL_STATE(2605)] = 46966, - [SMALL_STATE(2606)] = 46974, - [SMALL_STATE(2607)] = 46982, - [SMALL_STATE(2608)] = 46990, - [SMALL_STATE(2609)] = 46998, - [SMALL_STATE(2610)] = 47006, - [SMALL_STATE(2611)] = 47014, - [SMALL_STATE(2612)] = 47022, - [SMALL_STATE(2613)] = 47030, - [SMALL_STATE(2614)] = 47038, - [SMALL_STATE(2615)] = 47046, - [SMALL_STATE(2616)] = 47054, - [SMALL_STATE(2617)] = 47062, - [SMALL_STATE(2618)] = 47070, - [SMALL_STATE(2619)] = 47078, - [SMALL_STATE(2620)] = 47086, - [SMALL_STATE(2621)] = 47094, - [SMALL_STATE(2622)] = 47102, - [SMALL_STATE(2623)] = 47110, - [SMALL_STATE(2624)] = 47118, - [SMALL_STATE(2625)] = 47126, - [SMALL_STATE(2626)] = 47134, - [SMALL_STATE(2627)] = 47142, - [SMALL_STATE(2628)] = 47150, - [SMALL_STATE(2629)] = 47158, - [SMALL_STATE(2630)] = 47166, - [SMALL_STATE(2631)] = 47174, - [SMALL_STATE(2632)] = 47182, - [SMALL_STATE(2633)] = 47190, - [SMALL_STATE(2634)] = 47198, - [SMALL_STATE(2635)] = 47206, - [SMALL_STATE(2636)] = 47214, - [SMALL_STATE(2637)] = 47222, - [SMALL_STATE(2638)] = 47230, - [SMALL_STATE(2639)] = 47238, - [SMALL_STATE(2640)] = 47246, - [SMALL_STATE(2641)] = 47254, - [SMALL_STATE(2642)] = 47262, - [SMALL_STATE(2643)] = 47270, - [SMALL_STATE(2644)] = 47278, - [SMALL_STATE(2645)] = 47286, - [SMALL_STATE(2646)] = 47294, - [SMALL_STATE(2647)] = 47302, - [SMALL_STATE(2648)] = 47310, - [SMALL_STATE(2649)] = 47318, - [SMALL_STATE(2650)] = 47326, - [SMALL_STATE(2651)] = 47334, - [SMALL_STATE(2652)] = 47342, - [SMALL_STATE(2653)] = 47350, - [SMALL_STATE(2654)] = 47358, - [SMALL_STATE(2655)] = 47366, - [SMALL_STATE(2656)] = 47374, - [SMALL_STATE(2657)] = 47382, - [SMALL_STATE(2658)] = 47390, - [SMALL_STATE(2659)] = 47398, - [SMALL_STATE(2660)] = 47406, - [SMALL_STATE(2661)] = 47414, - [SMALL_STATE(2662)] = 47422, - [SMALL_STATE(2663)] = 47430, - [SMALL_STATE(2664)] = 47438, - [SMALL_STATE(2665)] = 47446, - [SMALL_STATE(2666)] = 47454, - [SMALL_STATE(2667)] = 47462, - [SMALL_STATE(2668)] = 47470, - [SMALL_STATE(2669)] = 47478, - [SMALL_STATE(2670)] = 47486, - [SMALL_STATE(2671)] = 47494, - [SMALL_STATE(2672)] = 47502, - [SMALL_STATE(2673)] = 47510, - [SMALL_STATE(2674)] = 47518, - [SMALL_STATE(2675)] = 47526, - [SMALL_STATE(2676)] = 47534, - [SMALL_STATE(2677)] = 47542, - [SMALL_STATE(2678)] = 47550, - [SMALL_STATE(2679)] = 47558, - [SMALL_STATE(2680)] = 47566, - [SMALL_STATE(2681)] = 47574, - [SMALL_STATE(2682)] = 47582, - [SMALL_STATE(2683)] = 47590, - [SMALL_STATE(2684)] = 47598, - [SMALL_STATE(2685)] = 47606, - [SMALL_STATE(2686)] = 47614, - [SMALL_STATE(2687)] = 47622, - [SMALL_STATE(2688)] = 47630, - [SMALL_STATE(2689)] = 47638, - [SMALL_STATE(2690)] = 47646, - [SMALL_STATE(2691)] = 47654, - [SMALL_STATE(2692)] = 47662, - [SMALL_STATE(2693)] = 47670, - [SMALL_STATE(2694)] = 47678, - [SMALL_STATE(2695)] = 47686, - [SMALL_STATE(2696)] = 47694, - [SMALL_STATE(2697)] = 47702, - [SMALL_STATE(2698)] = 47710, - [SMALL_STATE(2699)] = 47718, - [SMALL_STATE(2700)] = 47726, - [SMALL_STATE(2701)] = 47734, - [SMALL_STATE(2702)] = 47742, - [SMALL_STATE(2703)] = 47750, - [SMALL_STATE(2704)] = 47758, - [SMALL_STATE(2705)] = 47766, - [SMALL_STATE(2706)] = 47774, - [SMALL_STATE(2707)] = 47782, - [SMALL_STATE(2708)] = 47790, - [SMALL_STATE(2709)] = 47798, - [SMALL_STATE(2710)] = 47806, - [SMALL_STATE(2711)] = 47814, - [SMALL_STATE(2712)] = 47822, - [SMALL_STATE(2713)] = 47830, - [SMALL_STATE(2714)] = 47838, - [SMALL_STATE(2715)] = 47846, - [SMALL_STATE(2716)] = 47854, - [SMALL_STATE(2717)] = 47862, - [SMALL_STATE(2718)] = 47870, - [SMALL_STATE(2719)] = 47878, - [SMALL_STATE(2720)] = 47886, - [SMALL_STATE(2721)] = 47894, - [SMALL_STATE(2722)] = 47902, - [SMALL_STATE(2723)] = 47910, - [SMALL_STATE(2724)] = 47918, - [SMALL_STATE(2725)] = 47926, - [SMALL_STATE(2726)] = 47934, - [SMALL_STATE(2727)] = 47942, - [SMALL_STATE(2728)] = 47950, - [SMALL_STATE(2729)] = 47958, - [SMALL_STATE(2730)] = 47966, - [SMALL_STATE(2731)] = 47974, - [SMALL_STATE(2732)] = 47982, - [SMALL_STATE(2733)] = 47990, - [SMALL_STATE(2734)] = 47998, - [SMALL_STATE(2735)] = 48006, - [SMALL_STATE(2736)] = 48014, - [SMALL_STATE(2737)] = 48022, - [SMALL_STATE(2738)] = 48030, - [SMALL_STATE(2739)] = 48038, - [SMALL_STATE(2740)] = 48046, - [SMALL_STATE(2741)] = 48054, - [SMALL_STATE(2742)] = 48062, - [SMALL_STATE(2743)] = 48070, - [SMALL_STATE(2744)] = 48078, - [SMALL_STATE(2745)] = 48086, - [SMALL_STATE(2746)] = 48094, - [SMALL_STATE(2747)] = 48102, - [SMALL_STATE(2748)] = 48110, - [SMALL_STATE(2749)] = 48118, - [SMALL_STATE(2750)] = 48126, - [SMALL_STATE(2751)] = 48134, - [SMALL_STATE(2752)] = 48142, - [SMALL_STATE(2753)] = 48150, - [SMALL_STATE(2754)] = 48158, - [SMALL_STATE(2755)] = 48166, - [SMALL_STATE(2756)] = 48174, - [SMALL_STATE(2757)] = 48182, - [SMALL_STATE(2758)] = 48190, - [SMALL_STATE(2759)] = 48198, - [SMALL_STATE(2760)] = 48206, - [SMALL_STATE(2761)] = 48214, - [SMALL_STATE(2762)] = 48222, - [SMALL_STATE(2763)] = 48230, - [SMALL_STATE(2764)] = 48238, - [SMALL_STATE(2765)] = 48246, - [SMALL_STATE(2766)] = 48254, - [SMALL_STATE(2767)] = 48262, - [SMALL_STATE(2768)] = 48270, - [SMALL_STATE(2769)] = 48278, - [SMALL_STATE(2770)] = 48286, - [SMALL_STATE(2771)] = 48294, - [SMALL_STATE(2772)] = 48302, - [SMALL_STATE(2773)] = 48310, - [SMALL_STATE(2774)] = 48318, - [SMALL_STATE(2775)] = 48326, - [SMALL_STATE(2776)] = 48334, - [SMALL_STATE(2777)] = 48342, - [SMALL_STATE(2778)] = 48350, - [SMALL_STATE(2779)] = 48358, - [SMALL_STATE(2780)] = 48366, - [SMALL_STATE(2781)] = 48374, - [SMALL_STATE(2782)] = 48382, - [SMALL_STATE(2783)] = 48390, - [SMALL_STATE(2784)] = 48398, - [SMALL_STATE(2785)] = 48406, - [SMALL_STATE(2786)] = 48414, - [SMALL_STATE(2787)] = 48422, - [SMALL_STATE(2788)] = 48430, - [SMALL_STATE(2789)] = 48438, - [SMALL_STATE(2790)] = 48446, - [SMALL_STATE(2791)] = 48454, - [SMALL_STATE(2792)] = 48462, - [SMALL_STATE(2793)] = 48470, - [SMALL_STATE(2794)] = 48478, - [SMALL_STATE(2795)] = 48486, - [SMALL_STATE(2796)] = 48494, - [SMALL_STATE(2797)] = 48502, - [SMALL_STATE(2798)] = 48510, - [SMALL_STATE(2799)] = 48518, - [SMALL_STATE(2800)] = 48526, - [SMALL_STATE(2801)] = 48534, - [SMALL_STATE(2802)] = 48542, - [SMALL_STATE(2803)] = 48550, - [SMALL_STATE(2804)] = 48558, - [SMALL_STATE(2805)] = 48566, - [SMALL_STATE(2806)] = 48574, - [SMALL_STATE(2807)] = 48582, - [SMALL_STATE(2808)] = 48590, - [SMALL_STATE(2809)] = 48598, - [SMALL_STATE(2810)] = 48606, - [SMALL_STATE(2811)] = 48614, - [SMALL_STATE(2812)] = 48622, - [SMALL_STATE(2813)] = 48630, - [SMALL_STATE(2814)] = 48638, - [SMALL_STATE(2815)] = 48646, - [SMALL_STATE(2816)] = 48654, - [SMALL_STATE(2817)] = 48662, - [SMALL_STATE(2818)] = 48670, - [SMALL_STATE(2819)] = 48678, - [SMALL_STATE(2820)] = 48686, - [SMALL_STATE(2821)] = 48694, - [SMALL_STATE(2822)] = 48702, - [SMALL_STATE(2823)] = 48710, - [SMALL_STATE(2824)] = 48718, - [SMALL_STATE(2825)] = 48726, - [SMALL_STATE(2826)] = 48734, - [SMALL_STATE(2827)] = 48742, - [SMALL_STATE(2828)] = 48750, - [SMALL_STATE(2829)] = 48758, - [SMALL_STATE(2830)] = 48766, - [SMALL_STATE(2831)] = 48774, - [SMALL_STATE(2832)] = 48782, - [SMALL_STATE(2833)] = 48790, - [SMALL_STATE(2834)] = 48798, - [SMALL_STATE(2835)] = 48806, - [SMALL_STATE(2836)] = 48814, - [SMALL_STATE(2837)] = 48822, - [SMALL_STATE(2838)] = 48830, - [SMALL_STATE(2839)] = 48838, - [SMALL_STATE(2840)] = 48846, - [SMALL_STATE(2841)] = 48854, - [SMALL_STATE(2842)] = 48862, - [SMALL_STATE(2843)] = 48870, - [SMALL_STATE(2844)] = 48878, - [SMALL_STATE(2845)] = 48886, - [SMALL_STATE(2846)] = 48894, - [SMALL_STATE(2847)] = 48902, - [SMALL_STATE(2848)] = 48910, - [SMALL_STATE(2849)] = 48918, - [SMALL_STATE(2850)] = 48926, - [SMALL_STATE(2851)] = 48934, - [SMALL_STATE(2852)] = 48942, - [SMALL_STATE(2853)] = 48950, - [SMALL_STATE(2854)] = 48958, - [SMALL_STATE(2855)] = 48966, - [SMALL_STATE(2856)] = 48974, - [SMALL_STATE(2857)] = 48982, - [SMALL_STATE(2858)] = 48990, - [SMALL_STATE(2859)] = 48998, - [SMALL_STATE(2860)] = 49006, - [SMALL_STATE(2861)] = 49014, - [SMALL_STATE(2862)] = 49022, - [SMALL_STATE(2863)] = 49030, - [SMALL_STATE(2864)] = 49038, - [SMALL_STATE(2865)] = 49046, - [SMALL_STATE(2866)] = 49054, - [SMALL_STATE(2867)] = 49062, - [SMALL_STATE(2868)] = 49070, - [SMALL_STATE(2869)] = 49078, - [SMALL_STATE(2870)] = 49086, - [SMALL_STATE(2871)] = 49094, - [SMALL_STATE(2872)] = 49102, - [SMALL_STATE(2873)] = 49110, - [SMALL_STATE(2874)] = 49118, - [SMALL_STATE(2875)] = 49126, - [SMALL_STATE(2876)] = 49134, - [SMALL_STATE(2877)] = 49142, - [SMALL_STATE(2878)] = 49150, - [SMALL_STATE(2879)] = 49158, - [SMALL_STATE(2880)] = 49166, - [SMALL_STATE(2881)] = 49174, - [SMALL_STATE(2882)] = 49182, - [SMALL_STATE(2883)] = 49190, - [SMALL_STATE(2884)] = 49198, - [SMALL_STATE(2885)] = 49206, - [SMALL_STATE(2886)] = 49214, - [SMALL_STATE(2887)] = 49222, - [SMALL_STATE(2888)] = 49230, - [SMALL_STATE(2889)] = 49238, - [SMALL_STATE(2890)] = 49246, - [SMALL_STATE(2891)] = 49254, - [SMALL_STATE(2892)] = 49262, - [SMALL_STATE(2893)] = 49270, - [SMALL_STATE(2894)] = 49278, - [SMALL_STATE(2895)] = 49286, - [SMALL_STATE(2896)] = 49294, - [SMALL_STATE(2897)] = 49302, - [SMALL_STATE(2898)] = 49310, - [SMALL_STATE(2899)] = 49318, - [SMALL_STATE(2900)] = 49326, - [SMALL_STATE(2901)] = 49334, - [SMALL_STATE(2902)] = 49342, - [SMALL_STATE(2903)] = 49350, - [SMALL_STATE(2904)] = 49358, - [SMALL_STATE(2905)] = 49366, - [SMALL_STATE(2906)] = 49374, - [SMALL_STATE(2907)] = 49382, - [SMALL_STATE(2908)] = 49390, - [SMALL_STATE(2909)] = 49398, - [SMALL_STATE(2910)] = 49406, - [SMALL_STATE(2911)] = 49414, - [SMALL_STATE(2912)] = 49422, - [SMALL_STATE(2913)] = 49430, - [SMALL_STATE(2914)] = 49438, - [SMALL_STATE(2915)] = 49446, - [SMALL_STATE(2916)] = 49454, - [SMALL_STATE(2917)] = 49462, - [SMALL_STATE(2918)] = 49470, - [SMALL_STATE(2919)] = 49478, - [SMALL_STATE(2920)] = 49486, - [SMALL_STATE(2921)] = 49494, - [SMALL_STATE(2922)] = 49502, - [SMALL_STATE(2923)] = 49510, - [SMALL_STATE(2924)] = 49518, - [SMALL_STATE(2925)] = 49526, - [SMALL_STATE(2926)] = 49534, - [SMALL_STATE(2927)] = 49542, - [SMALL_STATE(2928)] = 49550, - [SMALL_STATE(2929)] = 49558, - [SMALL_STATE(2930)] = 49566, - [SMALL_STATE(2931)] = 49574, - [SMALL_STATE(2932)] = 49582, - [SMALL_STATE(2933)] = 49590, - [SMALL_STATE(2934)] = 49598, - [SMALL_STATE(2935)] = 49606, - [SMALL_STATE(2936)] = 49614, - [SMALL_STATE(2937)] = 49622, - [SMALL_STATE(2938)] = 49630, - [SMALL_STATE(2939)] = 49638, - [SMALL_STATE(2940)] = 49646, - [SMALL_STATE(2941)] = 49654, - [SMALL_STATE(2942)] = 49662, - [SMALL_STATE(2943)] = 49670, - [SMALL_STATE(2944)] = 49678, - [SMALL_STATE(2945)] = 49686, - [SMALL_STATE(2946)] = 49694, - [SMALL_STATE(2947)] = 49702, - [SMALL_STATE(2948)] = 49710, - [SMALL_STATE(2949)] = 49718, - [SMALL_STATE(2950)] = 49726, - [SMALL_STATE(2951)] = 49734, - [SMALL_STATE(2952)] = 49742, - [SMALL_STATE(2953)] = 49750, - [SMALL_STATE(2954)] = 49758, - [SMALL_STATE(2955)] = 49766, - [SMALL_STATE(2956)] = 49774, - [SMALL_STATE(2957)] = 49782, - [SMALL_STATE(2958)] = 49790, - [SMALL_STATE(2959)] = 49798, - [SMALL_STATE(2960)] = 49806, - [SMALL_STATE(2961)] = 49814, - [SMALL_STATE(2962)] = 49822, - [SMALL_STATE(2963)] = 49830, - [SMALL_STATE(2964)] = 49838, - [SMALL_STATE(2965)] = 49846, - [SMALL_STATE(2966)] = 49854, - [SMALL_STATE(2967)] = 49862, - [SMALL_STATE(2968)] = 49870, - [SMALL_STATE(2969)] = 49878, - [SMALL_STATE(2970)] = 49886, - [SMALL_STATE(2971)] = 49894, - [SMALL_STATE(2972)] = 49902, - [SMALL_STATE(2973)] = 49910, - [SMALL_STATE(2974)] = 49918, - [SMALL_STATE(2975)] = 49926, - [SMALL_STATE(2976)] = 49934, - [SMALL_STATE(2977)] = 49942, - [SMALL_STATE(2978)] = 49950, - [SMALL_STATE(2979)] = 49958, - [SMALL_STATE(2980)] = 49966, - [SMALL_STATE(2981)] = 49974, - [SMALL_STATE(2982)] = 49982, - [SMALL_STATE(2983)] = 49990, - [SMALL_STATE(2984)] = 49998, - [SMALL_STATE(2985)] = 50006, - [SMALL_STATE(2986)] = 50014, - [SMALL_STATE(2987)] = 50022, - [SMALL_STATE(2988)] = 50030, - [SMALL_STATE(2989)] = 50038, - [SMALL_STATE(2990)] = 50046, - [SMALL_STATE(2991)] = 50054, - [SMALL_STATE(2992)] = 50062, - [SMALL_STATE(2993)] = 50070, - [SMALL_STATE(2994)] = 50078, - [SMALL_STATE(2995)] = 50086, - [SMALL_STATE(2996)] = 50094, - [SMALL_STATE(2997)] = 50102, - [SMALL_STATE(2998)] = 50110, - [SMALL_STATE(2999)] = 50118, - [SMALL_STATE(3000)] = 50126, - [SMALL_STATE(3001)] = 50134, - [SMALL_STATE(3002)] = 50142, - [SMALL_STATE(3003)] = 50150, - [SMALL_STATE(3004)] = 50158, - [SMALL_STATE(3005)] = 50166, - [SMALL_STATE(3006)] = 50174, - [SMALL_STATE(3007)] = 50182, - [SMALL_STATE(3008)] = 50190, - [SMALL_STATE(3009)] = 50198, - [SMALL_STATE(3010)] = 50206, - [SMALL_STATE(3011)] = 50214, - [SMALL_STATE(3012)] = 50222, - [SMALL_STATE(3013)] = 50230, - [SMALL_STATE(3014)] = 50238, - [SMALL_STATE(3015)] = 50246, - [SMALL_STATE(3016)] = 50254, - [SMALL_STATE(3017)] = 50262, - [SMALL_STATE(3018)] = 50270, - [SMALL_STATE(3019)] = 50278, - [SMALL_STATE(3020)] = 50286, - [SMALL_STATE(3021)] = 50294, - [SMALL_STATE(3022)] = 50302, - [SMALL_STATE(3023)] = 50310, - [SMALL_STATE(3024)] = 50318, - [SMALL_STATE(3025)] = 50326, - [SMALL_STATE(3026)] = 50334, - [SMALL_STATE(3027)] = 50342, - [SMALL_STATE(3028)] = 50350, - [SMALL_STATE(3029)] = 50358, - [SMALL_STATE(3030)] = 50366, - [SMALL_STATE(3031)] = 50374, - [SMALL_STATE(3032)] = 50382, - [SMALL_STATE(3033)] = 50390, - [SMALL_STATE(3034)] = 50398, - [SMALL_STATE(3035)] = 50406, - [SMALL_STATE(3036)] = 50414, - [SMALL_STATE(3037)] = 50422, - [SMALL_STATE(3038)] = 50430, - [SMALL_STATE(3039)] = 50438, - [SMALL_STATE(3040)] = 50446, - [SMALL_STATE(3041)] = 50454, - [SMALL_STATE(3042)] = 50462, - [SMALL_STATE(3043)] = 50470, - [SMALL_STATE(3044)] = 50478, - [SMALL_STATE(3045)] = 50486, - [SMALL_STATE(3046)] = 50494, - [SMALL_STATE(3047)] = 50502, - [SMALL_STATE(3048)] = 50510, - [SMALL_STATE(3049)] = 50518, - [SMALL_STATE(3050)] = 50526, - [SMALL_STATE(3051)] = 50534, - [SMALL_STATE(3052)] = 50542, - [SMALL_STATE(3053)] = 50550, - [SMALL_STATE(3054)] = 50558, - [SMALL_STATE(3055)] = 50566, - [SMALL_STATE(3056)] = 50574, - [SMALL_STATE(3057)] = 50582, - [SMALL_STATE(3058)] = 50590, - [SMALL_STATE(3059)] = 50598, - [SMALL_STATE(3060)] = 50606, - [SMALL_STATE(3061)] = 50614, - [SMALL_STATE(3062)] = 50622, - [SMALL_STATE(3063)] = 50630, - [SMALL_STATE(3064)] = 50638, - [SMALL_STATE(3065)] = 50646, - [SMALL_STATE(3066)] = 50654, - [SMALL_STATE(3067)] = 50662, - [SMALL_STATE(3068)] = 50670, - [SMALL_STATE(3069)] = 50678, - [SMALL_STATE(3070)] = 50686, - [SMALL_STATE(3071)] = 50694, - [SMALL_STATE(3072)] = 50702, - [SMALL_STATE(3073)] = 50710, - [SMALL_STATE(3074)] = 50718, - [SMALL_STATE(3075)] = 50726, - [SMALL_STATE(3076)] = 50734, - [SMALL_STATE(3077)] = 50742, - [SMALL_STATE(3078)] = 50750, - [SMALL_STATE(3079)] = 50758, - [SMALL_STATE(3080)] = 50766, - [SMALL_STATE(3081)] = 50774, - [SMALL_STATE(3082)] = 50782, - [SMALL_STATE(3083)] = 50790, - [SMALL_STATE(3084)] = 50798, - [SMALL_STATE(3085)] = 50806, - [SMALL_STATE(3086)] = 50814, - [SMALL_STATE(3087)] = 50822, - [SMALL_STATE(3088)] = 50830, - [SMALL_STATE(3089)] = 50838, - [SMALL_STATE(3090)] = 50846, - [SMALL_STATE(3091)] = 50854, - [SMALL_STATE(3092)] = 50862, - [SMALL_STATE(3093)] = 50870, - [SMALL_STATE(3094)] = 50878, - [SMALL_STATE(3095)] = 50886, - [SMALL_STATE(3096)] = 50894, - [SMALL_STATE(3097)] = 50902, - [SMALL_STATE(3098)] = 50910, - [SMALL_STATE(3099)] = 50918, - [SMALL_STATE(3100)] = 50926, - [SMALL_STATE(3101)] = 50934, - [SMALL_STATE(3102)] = 50942, - [SMALL_STATE(3103)] = 50950, - [SMALL_STATE(3104)] = 50958, - [SMALL_STATE(3105)] = 50966, - [SMALL_STATE(3106)] = 50974, - [SMALL_STATE(3107)] = 50982, - [SMALL_STATE(3108)] = 50990, - [SMALL_STATE(3109)] = 50998, - [SMALL_STATE(3110)] = 51006, - [SMALL_STATE(3111)] = 51014, - [SMALL_STATE(3112)] = 51022, - [SMALL_STATE(3113)] = 51030, - [SMALL_STATE(3114)] = 51038, - [SMALL_STATE(3115)] = 51046, - [SMALL_STATE(3116)] = 51054, - [SMALL_STATE(3117)] = 51062, - [SMALL_STATE(3118)] = 51070, - [SMALL_STATE(3119)] = 51078, - [SMALL_STATE(3120)] = 51086, - [SMALL_STATE(3121)] = 51094, - [SMALL_STATE(3122)] = 51102, - [SMALL_STATE(3123)] = 51110, - [SMALL_STATE(3124)] = 51118, - [SMALL_STATE(3125)] = 51126, - [SMALL_STATE(3126)] = 51134, - [SMALL_STATE(3127)] = 51142, - [SMALL_STATE(3128)] = 51150, - [SMALL_STATE(3129)] = 51158, - [SMALL_STATE(3130)] = 51166, - [SMALL_STATE(3131)] = 51174, - [SMALL_STATE(3132)] = 51182, - [SMALL_STATE(3133)] = 51190, - [SMALL_STATE(3134)] = 51198, - [SMALL_STATE(3135)] = 51206, - [SMALL_STATE(3136)] = 51214, - [SMALL_STATE(3137)] = 51222, - [SMALL_STATE(3138)] = 51230, - [SMALL_STATE(3139)] = 51238, - [SMALL_STATE(3140)] = 51246, - [SMALL_STATE(3141)] = 51254, - [SMALL_STATE(3142)] = 51262, - [SMALL_STATE(3143)] = 51270, - [SMALL_STATE(3144)] = 51278, - [SMALL_STATE(3145)] = 51286, - [SMALL_STATE(3146)] = 51294, - [SMALL_STATE(3147)] = 51302, - [SMALL_STATE(3148)] = 51310, - [SMALL_STATE(3149)] = 51318, - [SMALL_STATE(3150)] = 51326, - [SMALL_STATE(3151)] = 51334, - [SMALL_STATE(3152)] = 51342, - [SMALL_STATE(3153)] = 51350, + [SMALL_STATE(53)] = 1395, + [SMALL_STATE(54)] = 1435, + [SMALL_STATE(55)] = 1475, + [SMALL_STATE(56)] = 1515, + [SMALL_STATE(57)] = 1555, + [SMALL_STATE(58)] = 1595, + [SMALL_STATE(59)] = 1635, + [SMALL_STATE(60)] = 1675, + [SMALL_STATE(61)] = 1715, + [SMALL_STATE(62)] = 1755, + [SMALL_STATE(63)] = 1795, + [SMALL_STATE(64)] = 1835, + [SMALL_STATE(65)] = 1875, + [SMALL_STATE(66)] = 1915, + [SMALL_STATE(67)] = 1955, + [SMALL_STATE(68)] = 1995, + [SMALL_STATE(69)] = 2035, + [SMALL_STATE(70)] = 2075, + [SMALL_STATE(71)] = 2115, + [SMALL_STATE(72)] = 2155, + [SMALL_STATE(73)] = 2195, + [SMALL_STATE(74)] = 2235, + [SMALL_STATE(75)] = 2275, + [SMALL_STATE(76)] = 2315, + [SMALL_STATE(77)] = 2355, + [SMALL_STATE(78)] = 2395, + [SMALL_STATE(79)] = 2435, + [SMALL_STATE(80)] = 2475, + [SMALL_STATE(81)] = 2515, + [SMALL_STATE(82)] = 2555, + [SMALL_STATE(83)] = 2595, + [SMALL_STATE(84)] = 2635, + [SMALL_STATE(85)] = 2675, + [SMALL_STATE(86)] = 2715, + [SMALL_STATE(87)] = 2755, + [SMALL_STATE(88)] = 2795, + [SMALL_STATE(89)] = 2835, + [SMALL_STATE(90)] = 2875, + [SMALL_STATE(91)] = 2915, + [SMALL_STATE(92)] = 2955, + [SMALL_STATE(93)] = 2995, + [SMALL_STATE(94)] = 3035, + [SMALL_STATE(95)] = 3075, + [SMALL_STATE(96)] = 3115, + [SMALL_STATE(97)] = 3155, + [SMALL_STATE(98)] = 3195, + [SMALL_STATE(99)] = 3235, + [SMALL_STATE(100)] = 3275, + [SMALL_STATE(101)] = 3314, + [SMALL_STATE(102)] = 3352, + [SMALL_STATE(103)] = 3390, + [SMALL_STATE(104)] = 3428, + [SMALL_STATE(105)] = 3466, + [SMALL_STATE(106)] = 3504, + [SMALL_STATE(107)] = 3542, + [SMALL_STATE(108)] = 3580, + [SMALL_STATE(109)] = 3618, + [SMALL_STATE(110)] = 3656, + [SMALL_STATE(111)] = 3694, + [SMALL_STATE(112)] = 3732, + [SMALL_STATE(113)] = 3770, + [SMALL_STATE(114)] = 3808, + [SMALL_STATE(115)] = 3846, + [SMALL_STATE(116)] = 3884, + [SMALL_STATE(117)] = 3922, + [SMALL_STATE(118)] = 3960, + [SMALL_STATE(119)] = 3998, + [SMALL_STATE(120)] = 4036, + [SMALL_STATE(121)] = 4074, + [SMALL_STATE(122)] = 4112, + [SMALL_STATE(123)] = 4150, + [SMALL_STATE(124)] = 4188, + [SMALL_STATE(125)] = 4226, + [SMALL_STATE(126)] = 4264, + [SMALL_STATE(127)] = 4302, + [SMALL_STATE(128)] = 4340, + [SMALL_STATE(129)] = 4378, + [SMALL_STATE(130)] = 4416, + [SMALL_STATE(131)] = 4454, + [SMALL_STATE(132)] = 4492, + [SMALL_STATE(133)] = 4530, + [SMALL_STATE(134)] = 4568, + [SMALL_STATE(135)] = 4606, + [SMALL_STATE(136)] = 4644, + [SMALL_STATE(137)] = 4682, + [SMALL_STATE(138)] = 4720, + [SMALL_STATE(139)] = 4758, + [SMALL_STATE(140)] = 4796, + [SMALL_STATE(141)] = 4834, + [SMALL_STATE(142)] = 4872, + [SMALL_STATE(143)] = 4914, + [SMALL_STATE(144)] = 4952, + [SMALL_STATE(145)] = 4990, + [SMALL_STATE(146)] = 5028, + [SMALL_STATE(147)] = 5066, + [SMALL_STATE(148)] = 5104, + [SMALL_STATE(149)] = 5142, + [SMALL_STATE(150)] = 5180, + [SMALL_STATE(151)] = 5218, + [SMALL_STATE(152)] = 5256, + [SMALL_STATE(153)] = 5298, + [SMALL_STATE(154)] = 5336, + [SMALL_STATE(155)] = 5374, + [SMALL_STATE(156)] = 5412, + [SMALL_STATE(157)] = 5450, + [SMALL_STATE(158)] = 5488, + [SMALL_STATE(159)] = 5526, + [SMALL_STATE(160)] = 5564, + [SMALL_STATE(161)] = 5602, + [SMALL_STATE(162)] = 5640, + [SMALL_STATE(163)] = 5678, + [SMALL_STATE(164)] = 5716, + [SMALL_STATE(165)] = 5754, + [SMALL_STATE(166)] = 5792, + [SMALL_STATE(167)] = 5830, + [SMALL_STATE(168)] = 5868, + [SMALL_STATE(169)] = 5906, + [SMALL_STATE(170)] = 5944, + [SMALL_STATE(171)] = 5982, + [SMALL_STATE(172)] = 6020, + [SMALL_STATE(173)] = 6058, + [SMALL_STATE(174)] = 6096, + [SMALL_STATE(175)] = 6134, + [SMALL_STATE(176)] = 6172, + [SMALL_STATE(177)] = 6210, + [SMALL_STATE(178)] = 6248, + [SMALL_STATE(179)] = 6286, + [SMALL_STATE(180)] = 6324, + [SMALL_STATE(181)] = 6362, + [SMALL_STATE(182)] = 6400, + [SMALL_STATE(183)] = 6438, + [SMALL_STATE(184)] = 6476, + [SMALL_STATE(185)] = 6514, + [SMALL_STATE(186)] = 6552, + [SMALL_STATE(187)] = 6590, + [SMALL_STATE(188)] = 6628, + [SMALL_STATE(189)] = 6666, + [SMALL_STATE(190)] = 6704, + [SMALL_STATE(191)] = 6742, + [SMALL_STATE(192)] = 6780, + [SMALL_STATE(193)] = 6818, + [SMALL_STATE(194)] = 6856, + [SMALL_STATE(195)] = 6894, + [SMALL_STATE(196)] = 6932, + [SMALL_STATE(197)] = 6974, + [SMALL_STATE(198)] = 7012, + [SMALL_STATE(199)] = 7050, + [SMALL_STATE(200)] = 7088, + [SMALL_STATE(201)] = 7126, + [SMALL_STATE(202)] = 7164, + [SMALL_STATE(203)] = 7202, + [SMALL_STATE(204)] = 7240, + [SMALL_STATE(205)] = 7278, + [SMALL_STATE(206)] = 7316, + [SMALL_STATE(207)] = 7354, + [SMALL_STATE(208)] = 7392, + [SMALL_STATE(209)] = 7430, + [SMALL_STATE(210)] = 7468, + [SMALL_STATE(211)] = 7506, + [SMALL_STATE(212)] = 7544, + [SMALL_STATE(213)] = 7582, + [SMALL_STATE(214)] = 7620, + [SMALL_STATE(215)] = 7658, + [SMALL_STATE(216)] = 7696, + [SMALL_STATE(217)] = 7734, + [SMALL_STATE(218)] = 7772, + [SMALL_STATE(219)] = 7810, + [SMALL_STATE(220)] = 7848, + [SMALL_STATE(221)] = 7886, + [SMALL_STATE(222)] = 7924, + [SMALL_STATE(223)] = 7962, + [SMALL_STATE(224)] = 8000, + [SMALL_STATE(225)] = 8038, + [SMALL_STATE(226)] = 8076, + [SMALL_STATE(227)] = 8114, + [SMALL_STATE(228)] = 8152, + [SMALL_STATE(229)] = 8190, + [SMALL_STATE(230)] = 8228, + [SMALL_STATE(231)] = 8266, + [SMALL_STATE(232)] = 8304, + [SMALL_STATE(233)] = 8342, + [SMALL_STATE(234)] = 8380, + [SMALL_STATE(235)] = 8418, + [SMALL_STATE(236)] = 8456, + [SMALL_STATE(237)] = 8494, + [SMALL_STATE(238)] = 8532, + [SMALL_STATE(239)] = 8570, + [SMALL_STATE(240)] = 8608, + [SMALL_STATE(241)] = 8646, + [SMALL_STATE(242)] = 8684, + [SMALL_STATE(243)] = 8722, + [SMALL_STATE(244)] = 8760, + [SMALL_STATE(245)] = 8798, + [SMALL_STATE(246)] = 8835, + [SMALL_STATE(247)] = 8871, + [SMALL_STATE(248)] = 8906, + [SMALL_STATE(249)] = 8941, + [SMALL_STATE(250)] = 8976, + [SMALL_STATE(251)] = 9011, + [SMALL_STATE(252)] = 9046, + [SMALL_STATE(253)] = 9081, + [SMALL_STATE(254)] = 9116, + [SMALL_STATE(255)] = 9151, + [SMALL_STATE(256)] = 9186, + [SMALL_STATE(257)] = 9221, + [SMALL_STATE(258)] = 9256, + [SMALL_STATE(259)] = 9291, + [SMALL_STATE(260)] = 9326, + [SMALL_STATE(261)] = 9361, + [SMALL_STATE(262)] = 9396, + [SMALL_STATE(263)] = 9431, + [SMALL_STATE(264)] = 9466, + [SMALL_STATE(265)] = 9501, + [SMALL_STATE(266)] = 9536, + [SMALL_STATE(267)] = 9571, + [SMALL_STATE(268)] = 9606, + [SMALL_STATE(269)] = 9641, + [SMALL_STATE(270)] = 9676, + [SMALL_STATE(271)] = 9711, + [SMALL_STATE(272)] = 9746, + [SMALL_STATE(273)] = 9781, + [SMALL_STATE(274)] = 9816, + [SMALL_STATE(275)] = 9851, + [SMALL_STATE(276)] = 9886, + [SMALL_STATE(277)] = 9921, + [SMALL_STATE(278)] = 9956, + [SMALL_STATE(279)] = 9991, + [SMALL_STATE(280)] = 10026, + [SMALL_STATE(281)] = 10061, + [SMALL_STATE(282)] = 10096, + [SMALL_STATE(283)] = 10131, + [SMALL_STATE(284)] = 10166, + [SMALL_STATE(285)] = 10201, + [SMALL_STATE(286)] = 10236, + [SMALL_STATE(287)] = 10271, + [SMALL_STATE(288)] = 10312, + [SMALL_STATE(289)] = 10347, + [SMALL_STATE(290)] = 10382, + [SMALL_STATE(291)] = 10417, + [SMALL_STATE(292)] = 10452, + [SMALL_STATE(293)] = 10487, + [SMALL_STATE(294)] = 10522, + [SMALL_STATE(295)] = 10557, + [SMALL_STATE(296)] = 10592, + [SMALL_STATE(297)] = 10627, + [SMALL_STATE(298)] = 10662, + [SMALL_STATE(299)] = 10697, + [SMALL_STATE(300)] = 10732, + [SMALL_STATE(301)] = 10767, + [SMALL_STATE(302)] = 10802, + [SMALL_STATE(303)] = 10837, + [SMALL_STATE(304)] = 10872, + [SMALL_STATE(305)] = 10907, + [SMALL_STATE(306)] = 10942, + [SMALL_STATE(307)] = 10977, + [SMALL_STATE(308)] = 11012, + [SMALL_STATE(309)] = 11047, + [SMALL_STATE(310)] = 11082, + [SMALL_STATE(311)] = 11117, + [SMALL_STATE(312)] = 11152, + [SMALL_STATE(313)] = 11187, + [SMALL_STATE(314)] = 11222, + [SMALL_STATE(315)] = 11257, + [SMALL_STATE(316)] = 11292, + [SMALL_STATE(317)] = 11327, + [SMALL_STATE(318)] = 11362, + [SMALL_STATE(319)] = 11397, + [SMALL_STATE(320)] = 11432, + [SMALL_STATE(321)] = 11467, + [SMALL_STATE(322)] = 11502, + [SMALL_STATE(323)] = 11537, + [SMALL_STATE(324)] = 11572, + [SMALL_STATE(325)] = 11607, + [SMALL_STATE(326)] = 11642, + [SMALL_STATE(327)] = 11677, + [SMALL_STATE(328)] = 11712, + [SMALL_STATE(329)] = 11747, + [SMALL_STATE(330)] = 11782, + [SMALL_STATE(331)] = 11817, + [SMALL_STATE(332)] = 11852, + [SMALL_STATE(333)] = 11887, + [SMALL_STATE(334)] = 11922, + [SMALL_STATE(335)] = 11957, + [SMALL_STATE(336)] = 11992, + [SMALL_STATE(337)] = 12027, + [SMALL_STATE(338)] = 12062, + [SMALL_STATE(339)] = 12097, + [SMALL_STATE(340)] = 12132, + [SMALL_STATE(341)] = 12167, + [SMALL_STATE(342)] = 12202, + [SMALL_STATE(343)] = 12237, + [SMALL_STATE(344)] = 12272, + [SMALL_STATE(345)] = 12307, + [SMALL_STATE(346)] = 12342, + [SMALL_STATE(347)] = 12377, + [SMALL_STATE(348)] = 12412, + [SMALL_STATE(349)] = 12447, + [SMALL_STATE(350)] = 12482, + [SMALL_STATE(351)] = 12517, + [SMALL_STATE(352)] = 12552, + [SMALL_STATE(353)] = 12587, + [SMALL_STATE(354)] = 12622, + [SMALL_STATE(355)] = 12657, + [SMALL_STATE(356)] = 12692, + [SMALL_STATE(357)] = 12727, + [SMALL_STATE(358)] = 12762, + [SMALL_STATE(359)] = 12797, + [SMALL_STATE(360)] = 12832, + [SMALL_STATE(361)] = 12867, + [SMALL_STATE(362)] = 12902, + [SMALL_STATE(363)] = 12937, + [SMALL_STATE(364)] = 12972, + [SMALL_STATE(365)] = 13007, + [SMALL_STATE(366)] = 13042, + [SMALL_STATE(367)] = 13077, + [SMALL_STATE(368)] = 13112, + [SMALL_STATE(369)] = 13147, + [SMALL_STATE(370)] = 13182, + [SMALL_STATE(371)] = 13217, + [SMALL_STATE(372)] = 13252, + [SMALL_STATE(373)] = 13287, + [SMALL_STATE(374)] = 13322, + [SMALL_STATE(375)] = 13357, + [SMALL_STATE(376)] = 13392, + [SMALL_STATE(377)] = 13427, + [SMALL_STATE(378)] = 13462, + [SMALL_STATE(379)] = 13497, + [SMALL_STATE(380)] = 13532, + [SMALL_STATE(381)] = 13567, + [SMALL_STATE(382)] = 13602, + [SMALL_STATE(383)] = 13637, + [SMALL_STATE(384)] = 13672, + [SMALL_STATE(385)] = 13707, + [SMALL_STATE(386)] = 13742, + [SMALL_STATE(387)] = 13777, + [SMALL_STATE(388)] = 13812, + [SMALL_STATE(389)] = 13847, + [SMALL_STATE(390)] = 13882, + [SMALL_STATE(391)] = 13917, + [SMALL_STATE(392)] = 13952, + [SMALL_STATE(393)] = 13987, + [SMALL_STATE(394)] = 14022, + [SMALL_STATE(395)] = 14057, + [SMALL_STATE(396)] = 14092, + [SMALL_STATE(397)] = 14127, + [SMALL_STATE(398)] = 14162, + [SMALL_STATE(399)] = 14197, + [SMALL_STATE(400)] = 14232, + [SMALL_STATE(401)] = 14267, + [SMALL_STATE(402)] = 14302, + [SMALL_STATE(403)] = 14337, + [SMALL_STATE(404)] = 14372, + [SMALL_STATE(405)] = 14407, + [SMALL_STATE(406)] = 14442, + [SMALL_STATE(407)] = 14477, + [SMALL_STATE(408)] = 14512, + [SMALL_STATE(409)] = 14547, + [SMALL_STATE(410)] = 14582, + [SMALL_STATE(411)] = 14617, + [SMALL_STATE(412)] = 14652, + [SMALL_STATE(413)] = 14687, + [SMALL_STATE(414)] = 14722, + [SMALL_STATE(415)] = 14757, + [SMALL_STATE(416)] = 14792, + [SMALL_STATE(417)] = 14827, + [SMALL_STATE(418)] = 14862, + [SMALL_STATE(419)] = 14897, + [SMALL_STATE(420)] = 14932, + [SMALL_STATE(421)] = 14967, + [SMALL_STATE(422)] = 15002, + [SMALL_STATE(423)] = 15037, + [SMALL_STATE(424)] = 15072, + [SMALL_STATE(425)] = 15107, + [SMALL_STATE(426)] = 15142, + [SMALL_STATE(427)] = 15177, + [SMALL_STATE(428)] = 15212, + [SMALL_STATE(429)] = 15247, + [SMALL_STATE(430)] = 15282, + [SMALL_STATE(431)] = 15317, + [SMALL_STATE(432)] = 15352, + [SMALL_STATE(433)] = 15387, + [SMALL_STATE(434)] = 15422, + [SMALL_STATE(435)] = 15457, + [SMALL_STATE(436)] = 15492, + [SMALL_STATE(437)] = 15527, + [SMALL_STATE(438)] = 15562, + [SMALL_STATE(439)] = 15597, + [SMALL_STATE(440)] = 15632, + [SMALL_STATE(441)] = 15667, + [SMALL_STATE(442)] = 15702, + [SMALL_STATE(443)] = 15737, + [SMALL_STATE(444)] = 15772, + [SMALL_STATE(445)] = 15807, + [SMALL_STATE(446)] = 15842, + [SMALL_STATE(447)] = 15877, + [SMALL_STATE(448)] = 15912, + [SMALL_STATE(449)] = 15947, + [SMALL_STATE(450)] = 15982, + [SMALL_STATE(451)] = 16017, + [SMALL_STATE(452)] = 16055, + [SMALL_STATE(453)] = 16093, + [SMALL_STATE(454)] = 16131, + [SMALL_STATE(455)] = 16170, + [SMALL_STATE(456)] = 16203, + [SMALL_STATE(457)] = 16235, + [SMALL_STATE(458)] = 16281, + [SMALL_STATE(459)] = 16313, + [SMALL_STATE(460)] = 16359, + [SMALL_STATE(461)] = 16405, + [SMALL_STATE(462)] = 16451, + [SMALL_STATE(463)] = 16497, + [SMALL_STATE(464)] = 16543, + [SMALL_STATE(465)] = 16577, + [SMALL_STATE(466)] = 16608, + [SMALL_STATE(467)] = 16643, + [SMALL_STATE(468)] = 16694, + [SMALL_STATE(469)] = 16745, + [SMALL_STATE(470)] = 16779, + [SMALL_STATE(471)] = 16820, + [SMALL_STATE(472)] = 16858, + [SMALL_STATE(473)] = 16892, + [SMALL_STATE(474)] = 16930, + [SMALL_STATE(475)] = 16964, + [SMALL_STATE(476)] = 17002, + [SMALL_STATE(477)] = 17040, + [SMALL_STATE(478)] = 17078, + [SMALL_STATE(479)] = 17116, + [SMALL_STATE(480)] = 17150, + [SMALL_STATE(481)] = 17188, + [SMALL_STATE(482)] = 17242, + [SMALL_STATE(483)] = 17275, + [SMALL_STATE(484)] = 17308, + [SMALL_STATE(485)] = 17341, + [SMALL_STATE(486)] = 17374, + [SMALL_STATE(487)] = 17406, + [SMALL_STATE(488)] = 17438, + [SMALL_STATE(489)] = 17470, + [SMALL_STATE(490)] = 17518, + [SMALL_STATE(491)] = 17566, + [SMALL_STATE(492)] = 17592, + [SMALL_STATE(493)] = 17624, + [SMALL_STATE(494)] = 17672, + [SMALL_STATE(495)] = 17717, + [SMALL_STATE(496)] = 17762, + [SMALL_STATE(497)] = 17807, + [SMALL_STATE(498)] = 17838, + [SMALL_STATE(499)] = 17861, + [SMALL_STATE(500)] = 17884, + [SMALL_STATE(501)] = 17907, + [SMALL_STATE(502)] = 17930, + [SMALL_STATE(503)] = 17975, + [SMALL_STATE(504)] = 18005, + [SMALL_STATE(505)] = 18047, + [SMALL_STATE(506)] = 18071, + [SMALL_STATE(507)] = 18097, + [SMALL_STATE(508)] = 18125, + [SMALL_STATE(509)] = 18155, + [SMALL_STATE(510)] = 18185, + [SMALL_STATE(511)] = 18215, + [SMALL_STATE(512)] = 18245, + [SMALL_STATE(513)] = 18271, + [SMALL_STATE(514)] = 18301, + [SMALL_STATE(515)] = 18323, + [SMALL_STATE(516)] = 18353, + [SMALL_STATE(517)] = 18383, + [SMALL_STATE(518)] = 18413, + [SMALL_STATE(519)] = 18455, + [SMALL_STATE(520)] = 18483, + [SMALL_STATE(521)] = 18513, + [SMALL_STATE(522)] = 18543, + [SMALL_STATE(523)] = 18582, + [SMALL_STATE(524)] = 18609, + [SMALL_STATE(525)] = 18632, + [SMALL_STATE(526)] = 18671, + [SMALL_STATE(527)] = 18698, + [SMALL_STATE(528)] = 18737, + [SMALL_STATE(529)] = 18776, + [SMALL_STATE(530)] = 18807, + [SMALL_STATE(531)] = 18832, + [SMALL_STATE(532)] = 18871, + [SMALL_STATE(533)] = 18910, + [SMALL_STATE(534)] = 18937, + [SMALL_STATE(535)] = 18976, + [SMALL_STATE(536)] = 19000, + [SMALL_STATE(537)] = 19030, + [SMALL_STATE(538)] = 19054, + [SMALL_STATE(539)] = 19078, + [SMALL_STATE(540)] = 19102, + [SMALL_STATE(541)] = 19126, + [SMALL_STATE(542)] = 19150, + [SMALL_STATE(543)] = 19174, + [SMALL_STATE(544)] = 19198, + [SMALL_STATE(545)] = 19222, + [SMALL_STATE(546)] = 19246, + [SMALL_STATE(547)] = 19270, + [SMALL_STATE(548)] = 19300, + [SMALL_STATE(549)] = 19324, + [SMALL_STATE(550)] = 19348, + [SMALL_STATE(551)] = 19372, + [SMALL_STATE(552)] = 19396, + [SMALL_STATE(553)] = 19420, + [SMALL_STATE(554)] = 19440, + [SMALL_STATE(555)] = 19470, + [SMALL_STATE(556)] = 19494, + [SMALL_STATE(557)] = 19524, + [SMALL_STATE(558)] = 19554, + [SMALL_STATE(559)] = 19578, + [SMALL_STATE(560)] = 19602, + [SMALL_STATE(561)] = 19624, + [SMALL_STATE(562)] = 19648, + [SMALL_STATE(563)] = 19672, + [SMALL_STATE(564)] = 19696, + [SMALL_STATE(565)] = 19726, + [SMALL_STATE(566)] = 19750, + [SMALL_STATE(567)] = 19770, + [SMALL_STATE(568)] = 19794, + [SMALL_STATE(569)] = 19818, + [SMALL_STATE(570)] = 19842, + [SMALL_STATE(571)] = 19866, + [SMALL_STATE(572)] = 19888, + [SMALL_STATE(573)] = 19912, + [SMALL_STATE(574)] = 19936, + [SMALL_STATE(575)] = 19960, + [SMALL_STATE(576)] = 19984, + [SMALL_STATE(577)] = 20008, + [SMALL_STATE(578)] = 20032, + [SMALL_STATE(579)] = 20056, + [SMALL_STATE(580)] = 20080, + [SMALL_STATE(581)] = 20100, + [SMALL_STATE(582)] = 20126, + [SMALL_STATE(583)] = 20146, + [SMALL_STATE(584)] = 20170, + [SMALL_STATE(585)] = 20194, + [SMALL_STATE(586)] = 20218, + [SMALL_STATE(587)] = 20251, + [SMALL_STATE(588)] = 20276, + [SMALL_STATE(589)] = 20309, + [SMALL_STATE(590)] = 20334, + [SMALL_STATE(591)] = 20367, + [SMALL_STATE(592)] = 20400, + [SMALL_STATE(593)] = 20433, + [SMALL_STATE(594)] = 20466, + [SMALL_STATE(595)] = 20499, + [SMALL_STATE(596)] = 20532, + [SMALL_STATE(597)] = 20559, + [SMALL_STATE(598)] = 20592, + [SMALL_STATE(599)] = 20619, + [SMALL_STATE(600)] = 20652, + [SMALL_STATE(601)] = 20677, + [SMALL_STATE(602)] = 20710, + [SMALL_STATE(603)] = 20735, + [SMALL_STATE(604)] = 20768, + [SMALL_STATE(605)] = 20795, + [SMALL_STATE(606)] = 20828, + [SMALL_STATE(607)] = 20861, + [SMALL_STATE(608)] = 20886, + [SMALL_STATE(609)] = 20919, + [SMALL_STATE(610)] = 20944, + [SMALL_STATE(611)] = 20969, + [SMALL_STATE(612)] = 20994, + [SMALL_STATE(613)] = 21019, + [SMALL_STATE(614)] = 21046, + [SMALL_STATE(615)] = 21079, + [SMALL_STATE(616)] = 21104, + [SMALL_STATE(617)] = 21131, + [SMALL_STATE(618)] = 21151, + [SMALL_STATE(619)] = 21175, + [SMALL_STATE(620)] = 21195, + [SMALL_STATE(621)] = 21219, + [SMALL_STATE(622)] = 21235, + [SMALL_STATE(623)] = 21265, + [SMALL_STATE(624)] = 21295, + [SMALL_STATE(625)] = 21319, + [SMALL_STATE(626)] = 21343, + [SMALL_STATE(627)] = 21367, + [SMALL_STATE(628)] = 21391, + [SMALL_STATE(629)] = 21415, + [SMALL_STATE(630)] = 21439, + [SMALL_STATE(631)] = 21463, + [SMALL_STATE(632)] = 21487, + [SMALL_STATE(633)] = 21517, + [SMALL_STATE(634)] = 21541, + [SMALL_STATE(635)] = 21565, + [SMALL_STATE(636)] = 21589, + [SMALL_STATE(637)] = 21613, + [SMALL_STATE(638)] = 21637, + [SMALL_STATE(639)] = 21667, + [SMALL_STATE(640)] = 21691, + [SMALL_STATE(641)] = 21715, + [SMALL_STATE(642)] = 21739, + [SMALL_STATE(643)] = 21769, + [SMALL_STATE(644)] = 21793, + [SMALL_STATE(645)] = 21817, + [SMALL_STATE(646)] = 21841, + [SMALL_STATE(647)] = 21865, + [SMALL_STATE(648)] = 21889, + [SMALL_STATE(649)] = 21913, + [SMALL_STATE(650)] = 21928, + [SMALL_STATE(651)] = 21943, + [SMALL_STATE(652)] = 21970, + [SMALL_STATE(653)] = 21997, + [SMALL_STATE(654)] = 22024, + [SMALL_STATE(655)] = 22051, + [SMALL_STATE(656)] = 22078, + [SMALL_STATE(657)] = 22105, + [SMALL_STATE(658)] = 22132, + [SMALL_STATE(659)] = 22147, + [SMALL_STATE(660)] = 22174, + [SMALL_STATE(661)] = 22201, + [SMALL_STATE(662)] = 22216, + [SMALL_STATE(663)] = 22231, + [SMALL_STATE(664)] = 22258, + [SMALL_STATE(665)] = 22285, + [SMALL_STATE(666)] = 22300, + [SMALL_STATE(667)] = 22327, + [SMALL_STATE(668)] = 22342, + [SMALL_STATE(669)] = 22369, + [SMALL_STATE(670)] = 22396, + [SMALL_STATE(671)] = 22423, + [SMALL_STATE(672)] = 22450, + [SMALL_STATE(673)] = 22465, + [SMALL_STATE(674)] = 22492, + [SMALL_STATE(675)] = 22507, + [SMALL_STATE(676)] = 22534, + [SMALL_STATE(677)] = 22561, + [SMALL_STATE(678)] = 22576, + [SMALL_STATE(679)] = 22603, + [SMALL_STATE(680)] = 22630, + [SMALL_STATE(681)] = 22655, + [SMALL_STATE(682)] = 22670, + [SMALL_STATE(683)] = 22697, + [SMALL_STATE(684)] = 22724, + [SMALL_STATE(685)] = 22749, + [SMALL_STATE(686)] = 22764, + [SMALL_STATE(687)] = 22779, + [SMALL_STATE(688)] = 22806, + [SMALL_STATE(689)] = 22821, + [SMALL_STATE(690)] = 22848, + [SMALL_STATE(691)] = 22863, + [SMALL_STATE(692)] = 22890, + [SMALL_STATE(693)] = 22917, + [SMALL_STATE(694)] = 22932, + [SMALL_STATE(695)] = 22947, + [SMALL_STATE(696)] = 22962, + [SMALL_STATE(697)] = 22977, + [SMALL_STATE(698)] = 23004, + [SMALL_STATE(699)] = 23019, + [SMALL_STATE(700)] = 23034, + [SMALL_STATE(701)] = 23061, + [SMALL_STATE(702)] = 23088, + [SMALL_STATE(703)] = 23113, + [SMALL_STATE(704)] = 23140, + [SMALL_STATE(705)] = 23167, + [SMALL_STATE(706)] = 23194, + [SMALL_STATE(707)] = 23221, + [SMALL_STATE(708)] = 23248, + [SMALL_STATE(709)] = 23275, + [SMALL_STATE(710)] = 23302, + [SMALL_STATE(711)] = 23329, + [SMALL_STATE(712)] = 23356, + [SMALL_STATE(713)] = 23371, + [SMALL_STATE(714)] = 23386, + [SMALL_STATE(715)] = 23401, + [SMALL_STATE(716)] = 23416, + [SMALL_STATE(717)] = 23431, + [SMALL_STATE(718)] = 23446, + [SMALL_STATE(719)] = 23473, + [SMALL_STATE(720)] = 23488, + [SMALL_STATE(721)] = 23515, + [SMALL_STATE(722)] = 23542, + [SMALL_STATE(723)] = 23569, + [SMALL_STATE(724)] = 23592, + [SMALL_STATE(725)] = 23619, + [SMALL_STATE(726)] = 23646, + [SMALL_STATE(727)] = 23673, + [SMALL_STATE(728)] = 23700, + [SMALL_STATE(729)] = 23727, + [SMALL_STATE(730)] = 23754, + [SMALL_STATE(731)] = 23769, + [SMALL_STATE(732)] = 23784, + [SMALL_STATE(733)] = 23811, + [SMALL_STATE(734)] = 23826, + [SMALL_STATE(735)] = 23853, + [SMALL_STATE(736)] = 23868, + [SMALL_STATE(737)] = 23883, + [SMALL_STATE(738)] = 23898, + [SMALL_STATE(739)] = 23925, + [SMALL_STATE(740)] = 23940, + [SMALL_STATE(741)] = 23967, + [SMALL_STATE(742)] = 23994, + [SMALL_STATE(743)] = 24021, + [SMALL_STATE(744)] = 24048, + [SMALL_STATE(745)] = 24075, + [SMALL_STATE(746)] = 24090, + [SMALL_STATE(747)] = 24105, + [SMALL_STATE(748)] = 24132, + [SMALL_STATE(749)] = 24147, + [SMALL_STATE(750)] = 24162, + [SMALL_STATE(751)] = 24177, + [SMALL_STATE(752)] = 24204, + [SMALL_STATE(753)] = 24219, + [SMALL_STATE(754)] = 24234, + [SMALL_STATE(755)] = 24249, + [SMALL_STATE(756)] = 24264, + [SMALL_STATE(757)] = 24279, + [SMALL_STATE(758)] = 24294, + [SMALL_STATE(759)] = 24309, + [SMALL_STATE(760)] = 24324, + [SMALL_STATE(761)] = 24339, + [SMALL_STATE(762)] = 24366, + [SMALL_STATE(763)] = 24393, + [SMALL_STATE(764)] = 24408, + [SMALL_STATE(765)] = 24423, + [SMALL_STATE(766)] = 24438, + [SMALL_STATE(767)] = 24453, + [SMALL_STATE(768)] = 24468, + [SMALL_STATE(769)] = 24483, + [SMALL_STATE(770)] = 24498, + [SMALL_STATE(771)] = 24525, + [SMALL_STATE(772)] = 24540, + [SMALL_STATE(773)] = 24555, + [SMALL_STATE(774)] = 24570, + [SMALL_STATE(775)] = 24585, + [SMALL_STATE(776)] = 24600, + [SMALL_STATE(777)] = 24615, + [SMALL_STATE(778)] = 24630, + [SMALL_STATE(779)] = 24645, + [SMALL_STATE(780)] = 24660, + [SMALL_STATE(781)] = 24675, + [SMALL_STATE(782)] = 24690, + [SMALL_STATE(783)] = 24717, + [SMALL_STATE(784)] = 24732, + [SMALL_STATE(785)] = 24759, + [SMALL_STATE(786)] = 24786, + [SMALL_STATE(787)] = 24801, + [SMALL_STATE(788)] = 24828, + [SMALL_STATE(789)] = 24855, + [SMALL_STATE(790)] = 24870, + [SMALL_STATE(791)] = 24897, + [SMALL_STATE(792)] = 24924, + [SMALL_STATE(793)] = 24939, + [SMALL_STATE(794)] = 24964, + [SMALL_STATE(795)] = 24979, + [SMALL_STATE(796)] = 24994, + [SMALL_STATE(797)] = 25021, + [SMALL_STATE(798)] = 25036, + [SMALL_STATE(799)] = 25051, + [SMALL_STATE(800)] = 25066, + [SMALL_STATE(801)] = 25093, + [SMALL_STATE(802)] = 25120, + [SMALL_STATE(803)] = 25147, + [SMALL_STATE(804)] = 25162, + [SMALL_STATE(805)] = 25189, + [SMALL_STATE(806)] = 25204, + [SMALL_STATE(807)] = 25231, + [SMALL_STATE(808)] = 25246, + [SMALL_STATE(809)] = 25261, + [SMALL_STATE(810)] = 25276, + [SMALL_STATE(811)] = 25303, + [SMALL_STATE(812)] = 25318, + [SMALL_STATE(813)] = 25345, + [SMALL_STATE(814)] = 25372, + [SMALL_STATE(815)] = 25399, + [SMALL_STATE(816)] = 25426, + [SMALL_STATE(817)] = 25453, + [SMALL_STATE(818)] = 25480, + [SMALL_STATE(819)] = 25495, + [SMALL_STATE(820)] = 25510, + [SMALL_STATE(821)] = 25525, + [SMALL_STATE(822)] = 25540, + [SMALL_STATE(823)] = 25555, + [SMALL_STATE(824)] = 25570, + [SMALL_STATE(825)] = 25585, + [SMALL_STATE(826)] = 25600, + [SMALL_STATE(827)] = 25615, + [SMALL_STATE(828)] = 25630, + [SMALL_STATE(829)] = 25645, + [SMALL_STATE(830)] = 25660, + [SMALL_STATE(831)] = 25675, + [SMALL_STATE(832)] = 25690, + [SMALL_STATE(833)] = 25705, + [SMALL_STATE(834)] = 25720, + [SMALL_STATE(835)] = 25735, + [SMALL_STATE(836)] = 25750, + [SMALL_STATE(837)] = 25765, + [SMALL_STATE(838)] = 25780, + [SMALL_STATE(839)] = 25795, + [SMALL_STATE(840)] = 25810, + [SMALL_STATE(841)] = 25825, + [SMALL_STATE(842)] = 25840, + [SMALL_STATE(843)] = 25855, + [SMALL_STATE(844)] = 25870, + [SMALL_STATE(845)] = 25885, + [SMALL_STATE(846)] = 25900, + [SMALL_STATE(847)] = 25915, + [SMALL_STATE(848)] = 25930, + [SMALL_STATE(849)] = 25945, + [SMALL_STATE(850)] = 25960, + [SMALL_STATE(851)] = 25975, + [SMALL_STATE(852)] = 25990, + [SMALL_STATE(853)] = 26005, + [SMALL_STATE(854)] = 26020, + [SMALL_STATE(855)] = 26035, + [SMALL_STATE(856)] = 26050, + [SMALL_STATE(857)] = 26065, + [SMALL_STATE(858)] = 26080, + [SMALL_STATE(859)] = 26095, + [SMALL_STATE(860)] = 26110, + [SMALL_STATE(861)] = 26125, + [SMALL_STATE(862)] = 26140, + [SMALL_STATE(863)] = 26155, + [SMALL_STATE(864)] = 26170, + [SMALL_STATE(865)] = 26185, + [SMALL_STATE(866)] = 26200, + [SMALL_STATE(867)] = 26215, + [SMALL_STATE(868)] = 26242, + [SMALL_STATE(869)] = 26257, + [SMALL_STATE(870)] = 26272, + [SMALL_STATE(871)] = 26287, + [SMALL_STATE(872)] = 26302, + [SMALL_STATE(873)] = 26329, + [SMALL_STATE(874)] = 26344, + [SMALL_STATE(875)] = 26359, + [SMALL_STATE(876)] = 26374, + [SMALL_STATE(877)] = 26389, + [SMALL_STATE(878)] = 26404, + [SMALL_STATE(879)] = 26419, + [SMALL_STATE(880)] = 26434, + [SMALL_STATE(881)] = 26461, + [SMALL_STATE(882)] = 26476, + [SMALL_STATE(883)] = 26491, + [SMALL_STATE(884)] = 26506, + [SMALL_STATE(885)] = 26533, + [SMALL_STATE(886)] = 26548, + [SMALL_STATE(887)] = 26575, + [SMALL_STATE(888)] = 26602, + [SMALL_STATE(889)] = 26629, + [SMALL_STATE(890)] = 26644, + [SMALL_STATE(891)] = 26659, + [SMALL_STATE(892)] = 26686, + [SMALL_STATE(893)] = 26713, + [SMALL_STATE(894)] = 26740, + [SMALL_STATE(895)] = 26767, + [SMALL_STATE(896)] = 26794, + [SMALL_STATE(897)] = 26821, + [SMALL_STATE(898)] = 26848, + [SMALL_STATE(899)] = 26875, + [SMALL_STATE(900)] = 26902, + [SMALL_STATE(901)] = 26929, + [SMALL_STATE(902)] = 26956, + [SMALL_STATE(903)] = 26983, + [SMALL_STATE(904)] = 27010, + [SMALL_STATE(905)] = 27037, + [SMALL_STATE(906)] = 27064, + [SMALL_STATE(907)] = 27079, + [SMALL_STATE(908)] = 27094, + [SMALL_STATE(909)] = 27109, + [SMALL_STATE(910)] = 27124, + [SMALL_STATE(911)] = 27139, + [SMALL_STATE(912)] = 27154, + [SMALL_STATE(913)] = 27169, + [SMALL_STATE(914)] = 27184, + [SMALL_STATE(915)] = 27199, + [SMALL_STATE(916)] = 27214, + [SMALL_STATE(917)] = 27229, + [SMALL_STATE(918)] = 27244, + [SMALL_STATE(919)] = 27271, + [SMALL_STATE(920)] = 27286, + [SMALL_STATE(921)] = 27301, + [SMALL_STATE(922)] = 27316, + [SMALL_STATE(923)] = 27331, + [SMALL_STATE(924)] = 27346, + [SMALL_STATE(925)] = 27361, + [SMALL_STATE(926)] = 27388, + [SMALL_STATE(927)] = 27403, + [SMALL_STATE(928)] = 27418, + [SMALL_STATE(929)] = 27433, + [SMALL_STATE(930)] = 27448, + [SMALL_STATE(931)] = 27463, + [SMALL_STATE(932)] = 27478, + [SMALL_STATE(933)] = 27505, + [SMALL_STATE(934)] = 27532, + [SMALL_STATE(935)] = 27559, + [SMALL_STATE(936)] = 27586, + [SMALL_STATE(937)] = 27601, + [SMALL_STATE(938)] = 27616, + [SMALL_STATE(939)] = 27631, + [SMALL_STATE(940)] = 27646, + [SMALL_STATE(941)] = 27661, + [SMALL_STATE(942)] = 27688, + [SMALL_STATE(943)] = 27703, + [SMALL_STATE(944)] = 27718, + [SMALL_STATE(945)] = 27733, + [SMALL_STATE(946)] = 27760, + [SMALL_STATE(947)] = 27775, + [SMALL_STATE(948)] = 27790, + [SMALL_STATE(949)] = 27805, + [SMALL_STATE(950)] = 27820, + [SMALL_STATE(951)] = 27835, + [SMALL_STATE(952)] = 27850, + [SMALL_STATE(953)] = 27865, + [SMALL_STATE(954)] = 27880, + [SMALL_STATE(955)] = 27907, + [SMALL_STATE(956)] = 27934, + [SMALL_STATE(957)] = 27949, + [SMALL_STATE(958)] = 27964, + [SMALL_STATE(959)] = 27991, + [SMALL_STATE(960)] = 28018, + [SMALL_STATE(961)] = 28033, + [SMALL_STATE(962)] = 28060, + [SMALL_STATE(963)] = 28075, + [SMALL_STATE(964)] = 28090, + [SMALL_STATE(965)] = 28117, + [SMALL_STATE(966)] = 28132, + [SMALL_STATE(967)] = 28147, + [SMALL_STATE(968)] = 28162, + [SMALL_STATE(969)] = 28177, + [SMALL_STATE(970)] = 28204, + [SMALL_STATE(971)] = 28231, + [SMALL_STATE(972)] = 28246, + [SMALL_STATE(973)] = 28261, + [SMALL_STATE(974)] = 28276, + [SMALL_STATE(975)] = 28291, + [SMALL_STATE(976)] = 28318, + [SMALL_STATE(977)] = 28333, + [SMALL_STATE(978)] = 28360, + [SMALL_STATE(979)] = 28375, + [SMALL_STATE(980)] = 28390, + [SMALL_STATE(981)] = 28417, + [SMALL_STATE(982)] = 28432, + [SMALL_STATE(983)] = 28459, + [SMALL_STATE(984)] = 28474, + [SMALL_STATE(985)] = 28489, + [SMALL_STATE(986)] = 28504, + [SMALL_STATE(987)] = 28519, + [SMALL_STATE(988)] = 28546, + [SMALL_STATE(989)] = 28573, + [SMALL_STATE(990)] = 28600, + [SMALL_STATE(991)] = 28627, + [SMALL_STATE(992)] = 28654, + [SMALL_STATE(993)] = 28681, + [SMALL_STATE(994)] = 28708, + [SMALL_STATE(995)] = 28732, + [SMALL_STATE(996)] = 28756, + [SMALL_STATE(997)] = 28780, + [SMALL_STATE(998)] = 28804, + [SMALL_STATE(999)] = 28828, + [SMALL_STATE(1000)] = 28852, + [SMALL_STATE(1001)] = 28872, + [SMALL_STATE(1002)] = 28892, + [SMALL_STATE(1003)] = 28916, + [SMALL_STATE(1004)] = 28940, + [SMALL_STATE(1005)] = 28964, + [SMALL_STATE(1006)] = 28984, + [SMALL_STATE(1007)] = 29004, + [SMALL_STATE(1008)] = 29028, + [SMALL_STATE(1009)] = 29044, + [SMALL_STATE(1010)] = 29062, + [SMALL_STATE(1011)] = 29082, + [SMALL_STATE(1012)] = 29106, + [SMALL_STATE(1013)] = 29126, + [SMALL_STATE(1014)] = 29146, + [SMALL_STATE(1015)] = 29170, + [SMALL_STATE(1016)] = 29194, + [SMALL_STATE(1017)] = 29214, + [SMALL_STATE(1018)] = 29238, + [SMALL_STATE(1019)] = 29259, + [SMALL_STATE(1020)] = 29276, + [SMALL_STATE(1021)] = 29297, + [SMALL_STATE(1022)] = 29318, + [SMALL_STATE(1023)] = 29339, + [SMALL_STATE(1024)] = 29360, + [SMALL_STATE(1025)] = 29381, + [SMALL_STATE(1026)] = 29402, + [SMALL_STATE(1027)] = 29423, + [SMALL_STATE(1028)] = 29444, + [SMALL_STATE(1029)] = 29465, + [SMALL_STATE(1030)] = 29482, + [SMALL_STATE(1031)] = 29503, + [SMALL_STATE(1032)] = 29524, + [SMALL_STATE(1033)] = 29545, + [SMALL_STATE(1034)] = 29566, + [SMALL_STATE(1035)] = 29587, + [SMALL_STATE(1036)] = 29608, + [SMALL_STATE(1037)] = 29629, + [SMALL_STATE(1038)] = 29650, + [SMALL_STATE(1039)] = 29671, + [SMALL_STATE(1040)] = 29692, + [SMALL_STATE(1041)] = 29713, + [SMALL_STATE(1042)] = 29734, + [SMALL_STATE(1043)] = 29755, + [SMALL_STATE(1044)] = 29776, + [SMALL_STATE(1045)] = 29797, + [SMALL_STATE(1046)] = 29818, + [SMALL_STATE(1047)] = 29839, + [SMALL_STATE(1048)] = 29860, + [SMALL_STATE(1049)] = 29881, + [SMALL_STATE(1050)] = 29902, + [SMALL_STATE(1051)] = 29923, + [SMALL_STATE(1052)] = 29944, + [SMALL_STATE(1053)] = 29965, + [SMALL_STATE(1054)] = 29986, + [SMALL_STATE(1055)] = 30007, + [SMALL_STATE(1056)] = 30028, + [SMALL_STATE(1057)] = 30049, + [SMALL_STATE(1058)] = 30070, + [SMALL_STATE(1059)] = 30091, + [SMALL_STATE(1060)] = 30112, + [SMALL_STATE(1061)] = 30133, + [SMALL_STATE(1062)] = 30154, + [SMALL_STATE(1063)] = 30175, + [SMALL_STATE(1064)] = 30196, + [SMALL_STATE(1065)] = 30217, + [SMALL_STATE(1066)] = 30238, + [SMALL_STATE(1067)] = 30259, + [SMALL_STATE(1068)] = 30280, + [SMALL_STATE(1069)] = 30301, + [SMALL_STATE(1070)] = 30318, + [SMALL_STATE(1071)] = 30337, + [SMALL_STATE(1072)] = 30358, + [SMALL_STATE(1073)] = 30379, + [SMALL_STATE(1074)] = 30400, + [SMALL_STATE(1075)] = 30421, + [SMALL_STATE(1076)] = 30442, + [SMALL_STATE(1077)] = 30463, + [SMALL_STATE(1078)] = 30484, + [SMALL_STATE(1079)] = 30505, + [SMALL_STATE(1080)] = 30526, + [SMALL_STATE(1081)] = 30547, + [SMALL_STATE(1082)] = 30568, + [SMALL_STATE(1083)] = 30589, + [SMALL_STATE(1084)] = 30610, + [SMALL_STATE(1085)] = 30631, + [SMALL_STATE(1086)] = 30652, + [SMALL_STATE(1087)] = 30673, + [SMALL_STATE(1088)] = 30694, + [SMALL_STATE(1089)] = 30715, + [SMALL_STATE(1090)] = 30736, + [SMALL_STATE(1091)] = 30757, + [SMALL_STATE(1092)] = 30778, + [SMALL_STATE(1093)] = 30799, + [SMALL_STATE(1094)] = 30820, + [SMALL_STATE(1095)] = 30841, + [SMALL_STATE(1096)] = 30862, + [SMALL_STATE(1097)] = 30883, + [SMALL_STATE(1098)] = 30904, + [SMALL_STATE(1099)] = 30925, + [SMALL_STATE(1100)] = 30946, + [SMALL_STATE(1101)] = 30967, + [SMALL_STATE(1102)] = 30988, + [SMALL_STATE(1103)] = 31009, + [SMALL_STATE(1104)] = 31030, + [SMALL_STATE(1105)] = 31051, + [SMALL_STATE(1106)] = 31068, + [SMALL_STATE(1107)] = 31089, + [SMALL_STATE(1108)] = 31110, + [SMALL_STATE(1109)] = 31131, + [SMALL_STATE(1110)] = 31152, + [SMALL_STATE(1111)] = 31173, + [SMALL_STATE(1112)] = 31194, + [SMALL_STATE(1113)] = 31215, + [SMALL_STATE(1114)] = 31236, + [SMALL_STATE(1115)] = 31257, + [SMALL_STATE(1116)] = 31278, + [SMALL_STATE(1117)] = 31299, + [SMALL_STATE(1118)] = 31320, + [SMALL_STATE(1119)] = 31341, + [SMALL_STATE(1120)] = 31362, + [SMALL_STATE(1121)] = 31383, + [SMALL_STATE(1122)] = 31404, + [SMALL_STATE(1123)] = 31425, + [SMALL_STATE(1124)] = 31446, + [SMALL_STATE(1125)] = 31467, + [SMALL_STATE(1126)] = 31488, + [SMALL_STATE(1127)] = 31509, + [SMALL_STATE(1128)] = 31522, + [SMALL_STATE(1129)] = 31543, + [SMALL_STATE(1130)] = 31564, + [SMALL_STATE(1131)] = 31577, + [SMALL_STATE(1132)] = 31598, + [SMALL_STATE(1133)] = 31619, + [SMALL_STATE(1134)] = 31640, + [SMALL_STATE(1135)] = 31661, + [SMALL_STATE(1136)] = 31682, + [SMALL_STATE(1137)] = 31703, + [SMALL_STATE(1138)] = 31724, + [SMALL_STATE(1139)] = 31745, + [SMALL_STATE(1140)] = 31766, + [SMALL_STATE(1141)] = 31787, + [SMALL_STATE(1142)] = 31808, + [SMALL_STATE(1143)] = 31829, + [SMALL_STATE(1144)] = 31850, + [SMALL_STATE(1145)] = 31871, + [SMALL_STATE(1146)] = 31892, + [SMALL_STATE(1147)] = 31913, + [SMALL_STATE(1148)] = 31930, + [SMALL_STATE(1149)] = 31951, + [SMALL_STATE(1150)] = 31972, + [SMALL_STATE(1151)] = 31993, + [SMALL_STATE(1152)] = 32014, + [SMALL_STATE(1153)] = 32035, + [SMALL_STATE(1154)] = 32056, + [SMALL_STATE(1155)] = 32077, + [SMALL_STATE(1156)] = 32098, + [SMALL_STATE(1157)] = 32119, + [SMALL_STATE(1158)] = 32140, + [SMALL_STATE(1159)] = 32161, + [SMALL_STATE(1160)] = 32182, + [SMALL_STATE(1161)] = 32203, + [SMALL_STATE(1162)] = 32224, + [SMALL_STATE(1163)] = 32245, + [SMALL_STATE(1164)] = 32262, + [SMALL_STATE(1165)] = 32283, + [SMALL_STATE(1166)] = 32304, + [SMALL_STATE(1167)] = 32321, + [SMALL_STATE(1168)] = 32342, + [SMALL_STATE(1169)] = 32363, + [SMALL_STATE(1170)] = 32384, + [SMALL_STATE(1171)] = 32405, + [SMALL_STATE(1172)] = 32426, + [SMALL_STATE(1173)] = 32443, + [SMALL_STATE(1174)] = 32464, + [SMALL_STATE(1175)] = 32485, + [SMALL_STATE(1176)] = 32506, + [SMALL_STATE(1177)] = 32527, + [SMALL_STATE(1178)] = 32548, + [SMALL_STATE(1179)] = 32569, + [SMALL_STATE(1180)] = 32586, + [SMALL_STATE(1181)] = 32605, + [SMALL_STATE(1182)] = 32626, + [SMALL_STATE(1183)] = 32647, + [SMALL_STATE(1184)] = 32668, + [SMALL_STATE(1185)] = 32689, + [SMALL_STATE(1186)] = 32710, + [SMALL_STATE(1187)] = 32731, + [SMALL_STATE(1188)] = 32752, + [SMALL_STATE(1189)] = 32773, + [SMALL_STATE(1190)] = 32785, + [SMALL_STATE(1191)] = 32797, + [SMALL_STATE(1192)] = 32815, + [SMALL_STATE(1193)] = 32833, + [SMALL_STATE(1194)] = 32851, + [SMALL_STATE(1195)] = 32869, + [SMALL_STATE(1196)] = 32887, + [SMALL_STATE(1197)] = 32905, + [SMALL_STATE(1198)] = 32923, + [SMALL_STATE(1199)] = 32941, + [SMALL_STATE(1200)] = 32959, + [SMALL_STATE(1201)] = 32977, + [SMALL_STATE(1202)] = 32995, + [SMALL_STATE(1203)] = 33013, + [SMALL_STATE(1204)] = 33031, + [SMALL_STATE(1205)] = 33049, + [SMALL_STATE(1206)] = 33065, + [SMALL_STATE(1207)] = 33081, + [SMALL_STATE(1208)] = 33099, + [SMALL_STATE(1209)] = 33115, + [SMALL_STATE(1210)] = 33133, + [SMALL_STATE(1211)] = 33149, + [SMALL_STATE(1212)] = 33165, + [SMALL_STATE(1213)] = 33181, + [SMALL_STATE(1214)] = 33197, + [SMALL_STATE(1215)] = 33213, + [SMALL_STATE(1216)] = 33229, + [SMALL_STATE(1217)] = 33245, + [SMALL_STATE(1218)] = 33261, + [SMALL_STATE(1219)] = 33277, + [SMALL_STATE(1220)] = 33295, + [SMALL_STATE(1221)] = 33311, + [SMALL_STATE(1222)] = 33327, + [SMALL_STATE(1223)] = 33343, + [SMALL_STATE(1224)] = 33361, + [SMALL_STATE(1225)] = 33377, + [SMALL_STATE(1226)] = 33393, + [SMALL_STATE(1227)] = 33409, + [SMALL_STATE(1228)] = 33421, + [SMALL_STATE(1229)] = 33437, + [SMALL_STATE(1230)] = 33455, + [SMALL_STATE(1231)] = 33473, + [SMALL_STATE(1232)] = 33489, + [SMALL_STATE(1233)] = 33505, + [SMALL_STATE(1234)] = 33523, + [SMALL_STATE(1235)] = 33539, + [SMALL_STATE(1236)] = 33551, + [SMALL_STATE(1237)] = 33563, + [SMALL_STATE(1238)] = 33579, + [SMALL_STATE(1239)] = 33595, + [SMALL_STATE(1240)] = 33611, + [SMALL_STATE(1241)] = 33627, + [SMALL_STATE(1242)] = 33639, + [SMALL_STATE(1243)] = 33655, + [SMALL_STATE(1244)] = 33673, + [SMALL_STATE(1245)] = 33691, + [SMALL_STATE(1246)] = 33703, + [SMALL_STATE(1247)] = 33715, + [SMALL_STATE(1248)] = 33727, + [SMALL_STATE(1249)] = 33739, + [SMALL_STATE(1250)] = 33751, + [SMALL_STATE(1251)] = 33763, + [SMALL_STATE(1252)] = 33775, + [SMALL_STATE(1253)] = 33787, + [SMALL_STATE(1254)] = 33799, + [SMALL_STATE(1255)] = 33811, + [SMALL_STATE(1256)] = 33823, + [SMALL_STATE(1257)] = 33841, + [SMALL_STATE(1258)] = 33853, + [SMALL_STATE(1259)] = 33871, + [SMALL_STATE(1260)] = 33889, + [SMALL_STATE(1261)] = 33901, + [SMALL_STATE(1262)] = 33913, + [SMALL_STATE(1263)] = 33925, + [SMALL_STATE(1264)] = 33937, + [SMALL_STATE(1265)] = 33949, + [SMALL_STATE(1266)] = 33961, + [SMALL_STATE(1267)] = 33973, + [SMALL_STATE(1268)] = 33985, + [SMALL_STATE(1269)] = 33997, + [SMALL_STATE(1270)] = 34009, + [SMALL_STATE(1271)] = 34021, + [SMALL_STATE(1272)] = 34033, + [SMALL_STATE(1273)] = 34045, + [SMALL_STATE(1274)] = 34057, + [SMALL_STATE(1275)] = 34069, + [SMALL_STATE(1276)] = 34081, + [SMALL_STATE(1277)] = 34093, + [SMALL_STATE(1278)] = 34105, + [SMALL_STATE(1279)] = 34117, + [SMALL_STATE(1280)] = 34129, + [SMALL_STATE(1281)] = 34141, + [SMALL_STATE(1282)] = 34153, + [SMALL_STATE(1283)] = 34165, + [SMALL_STATE(1284)] = 34177, + [SMALL_STATE(1285)] = 34189, + [SMALL_STATE(1286)] = 34201, + [SMALL_STATE(1287)] = 34213, + [SMALL_STATE(1288)] = 34225, + [SMALL_STATE(1289)] = 34237, + [SMALL_STATE(1290)] = 34249, + [SMALL_STATE(1291)] = 34261, + [SMALL_STATE(1292)] = 34273, + [SMALL_STATE(1293)] = 34285, + [SMALL_STATE(1294)] = 34297, + [SMALL_STATE(1295)] = 34309, + [SMALL_STATE(1296)] = 34321, + [SMALL_STATE(1297)] = 34333, + [SMALL_STATE(1298)] = 34345, + [SMALL_STATE(1299)] = 34357, + [SMALL_STATE(1300)] = 34369, + [SMALL_STATE(1301)] = 34381, + [SMALL_STATE(1302)] = 34393, + [SMALL_STATE(1303)] = 34405, + [SMALL_STATE(1304)] = 34417, + [SMALL_STATE(1305)] = 34429, + [SMALL_STATE(1306)] = 34441, + [SMALL_STATE(1307)] = 34453, + [SMALL_STATE(1308)] = 34465, + [SMALL_STATE(1309)] = 34477, + [SMALL_STATE(1310)] = 34489, + [SMALL_STATE(1311)] = 34501, + [SMALL_STATE(1312)] = 34513, + [SMALL_STATE(1313)] = 34525, + [SMALL_STATE(1314)] = 34537, + [SMALL_STATE(1315)] = 34549, + [SMALL_STATE(1316)] = 34561, + [SMALL_STATE(1317)] = 34573, + [SMALL_STATE(1318)] = 34585, + [SMALL_STATE(1319)] = 34597, + [SMALL_STATE(1320)] = 34609, + [SMALL_STATE(1321)] = 34621, + [SMALL_STATE(1322)] = 34633, + [SMALL_STATE(1323)] = 34645, + [SMALL_STATE(1324)] = 34657, + [SMALL_STATE(1325)] = 34669, + [SMALL_STATE(1326)] = 34681, + [SMALL_STATE(1327)] = 34693, + [SMALL_STATE(1328)] = 34705, + [SMALL_STATE(1329)] = 34717, + [SMALL_STATE(1330)] = 34729, + [SMALL_STATE(1331)] = 34747, + [SMALL_STATE(1332)] = 34759, + [SMALL_STATE(1333)] = 34777, + [SMALL_STATE(1334)] = 34789, + [SMALL_STATE(1335)] = 34801, + [SMALL_STATE(1336)] = 34819, + [SMALL_STATE(1337)] = 34837, + [SMALL_STATE(1338)] = 34849, + [SMALL_STATE(1339)] = 34861, + [SMALL_STATE(1340)] = 34873, + [SMALL_STATE(1341)] = 34885, + [SMALL_STATE(1342)] = 34897, + [SMALL_STATE(1343)] = 34909, + [SMALL_STATE(1344)] = 34921, + [SMALL_STATE(1345)] = 34933, + [SMALL_STATE(1346)] = 34945, + [SMALL_STATE(1347)] = 34957, + [SMALL_STATE(1348)] = 34969, + [SMALL_STATE(1349)] = 34981, + [SMALL_STATE(1350)] = 34993, + [SMALL_STATE(1351)] = 35005, + [SMALL_STATE(1352)] = 35017, + [SMALL_STATE(1353)] = 35029, + [SMALL_STATE(1354)] = 35041, + [SMALL_STATE(1355)] = 35053, + [SMALL_STATE(1356)] = 35065, + [SMALL_STATE(1357)] = 35077, + [SMALL_STATE(1358)] = 35089, + [SMALL_STATE(1359)] = 35101, + [SMALL_STATE(1360)] = 35113, + [SMALL_STATE(1361)] = 35125, + [SMALL_STATE(1362)] = 35137, + [SMALL_STATE(1363)] = 35149, + [SMALL_STATE(1364)] = 35161, + [SMALL_STATE(1365)] = 35173, + [SMALL_STATE(1366)] = 35185, + [SMALL_STATE(1367)] = 35197, + [SMALL_STATE(1368)] = 35209, + [SMALL_STATE(1369)] = 35221, + [SMALL_STATE(1370)] = 35233, + [SMALL_STATE(1371)] = 35245, + [SMALL_STATE(1372)] = 35257, + [SMALL_STATE(1373)] = 35269, + [SMALL_STATE(1374)] = 35281, + [SMALL_STATE(1375)] = 35293, + [SMALL_STATE(1376)] = 35305, + [SMALL_STATE(1377)] = 35317, + [SMALL_STATE(1378)] = 35329, + [SMALL_STATE(1379)] = 35341, + [SMALL_STATE(1380)] = 35353, + [SMALL_STATE(1381)] = 35365, + [SMALL_STATE(1382)] = 35377, + [SMALL_STATE(1383)] = 35389, + [SMALL_STATE(1384)] = 35401, + [SMALL_STATE(1385)] = 35413, + [SMALL_STATE(1386)] = 35425, + [SMALL_STATE(1387)] = 35437, + [SMALL_STATE(1388)] = 35449, + [SMALL_STATE(1389)] = 35461, + [SMALL_STATE(1390)] = 35473, + [SMALL_STATE(1391)] = 35485, + [SMALL_STATE(1392)] = 35497, + [SMALL_STATE(1393)] = 35509, + [SMALL_STATE(1394)] = 35521, + [SMALL_STATE(1395)] = 35533, + [SMALL_STATE(1396)] = 35545, + [SMALL_STATE(1397)] = 35557, + [SMALL_STATE(1398)] = 35569, + [SMALL_STATE(1399)] = 35581, + [SMALL_STATE(1400)] = 35593, + [SMALL_STATE(1401)] = 35605, + [SMALL_STATE(1402)] = 35617, + [SMALL_STATE(1403)] = 35629, + [SMALL_STATE(1404)] = 35641, + [SMALL_STATE(1405)] = 35653, + [SMALL_STATE(1406)] = 35665, + [SMALL_STATE(1407)] = 35677, + [SMALL_STATE(1408)] = 35689, + [SMALL_STATE(1409)] = 35701, + [SMALL_STATE(1410)] = 35713, + [SMALL_STATE(1411)] = 35725, + [SMALL_STATE(1412)] = 35737, + [SMALL_STATE(1413)] = 35749, + [SMALL_STATE(1414)] = 35761, + [SMALL_STATE(1415)] = 35773, + [SMALL_STATE(1416)] = 35785, + [SMALL_STATE(1417)] = 35797, + [SMALL_STATE(1418)] = 35809, + [SMALL_STATE(1419)] = 35821, + [SMALL_STATE(1420)] = 35833, + [SMALL_STATE(1421)] = 35845, + [SMALL_STATE(1422)] = 35857, + [SMALL_STATE(1423)] = 35869, + [SMALL_STATE(1424)] = 35881, + [SMALL_STATE(1425)] = 35893, + [SMALL_STATE(1426)] = 35905, + [SMALL_STATE(1427)] = 35917, + [SMALL_STATE(1428)] = 35929, + [SMALL_STATE(1429)] = 35941, + [SMALL_STATE(1430)] = 35953, + [SMALL_STATE(1431)] = 35965, + [SMALL_STATE(1432)] = 35977, + [SMALL_STATE(1433)] = 35989, + [SMALL_STATE(1434)] = 36001, + [SMALL_STATE(1435)] = 36013, + [SMALL_STATE(1436)] = 36025, + [SMALL_STATE(1437)] = 36043, + [SMALL_STATE(1438)] = 36055, + [SMALL_STATE(1439)] = 36069, + [SMALL_STATE(1440)] = 36081, + [SMALL_STATE(1441)] = 36093, + [SMALL_STATE(1442)] = 36105, + [SMALL_STATE(1443)] = 36117, + [SMALL_STATE(1444)] = 36129, + [SMALL_STATE(1445)] = 36141, + [SMALL_STATE(1446)] = 36153, + [SMALL_STATE(1447)] = 36165, + [SMALL_STATE(1448)] = 36177, + [SMALL_STATE(1449)] = 36189, + [SMALL_STATE(1450)] = 36201, + [SMALL_STATE(1451)] = 36213, + [SMALL_STATE(1452)] = 36225, + [SMALL_STATE(1453)] = 36237, + [SMALL_STATE(1454)] = 36249, + [SMALL_STATE(1455)] = 36261, + [SMALL_STATE(1456)] = 36273, + [SMALL_STATE(1457)] = 36285, + [SMALL_STATE(1458)] = 36297, + [SMALL_STATE(1459)] = 36309, + [SMALL_STATE(1460)] = 36321, + [SMALL_STATE(1461)] = 36333, + [SMALL_STATE(1462)] = 36345, + [SMALL_STATE(1463)] = 36357, + [SMALL_STATE(1464)] = 36369, + [SMALL_STATE(1465)] = 36381, + [SMALL_STATE(1466)] = 36393, + [SMALL_STATE(1467)] = 36405, + [SMALL_STATE(1468)] = 36417, + [SMALL_STATE(1469)] = 36429, + [SMALL_STATE(1470)] = 36441, + [SMALL_STATE(1471)] = 36453, + [SMALL_STATE(1472)] = 36465, + [SMALL_STATE(1473)] = 36477, + [SMALL_STATE(1474)] = 36489, + [SMALL_STATE(1475)] = 36501, + [SMALL_STATE(1476)] = 36513, + [SMALL_STATE(1477)] = 36525, + [SMALL_STATE(1478)] = 36537, + [SMALL_STATE(1479)] = 36549, + [SMALL_STATE(1480)] = 36561, + [SMALL_STATE(1481)] = 36573, + [SMALL_STATE(1482)] = 36585, + [SMALL_STATE(1483)] = 36597, + [SMALL_STATE(1484)] = 36609, + [SMALL_STATE(1485)] = 36621, + [SMALL_STATE(1486)] = 36633, + [SMALL_STATE(1487)] = 36645, + [SMALL_STATE(1488)] = 36657, + [SMALL_STATE(1489)] = 36669, + [SMALL_STATE(1490)] = 36681, + [SMALL_STATE(1491)] = 36693, + [SMALL_STATE(1492)] = 36705, + [SMALL_STATE(1493)] = 36717, + [SMALL_STATE(1494)] = 36729, + [SMALL_STATE(1495)] = 36741, + [SMALL_STATE(1496)] = 36753, + [SMALL_STATE(1497)] = 36765, + [SMALL_STATE(1498)] = 36777, + [SMALL_STATE(1499)] = 36789, + [SMALL_STATE(1500)] = 36801, + [SMALL_STATE(1501)] = 36813, + [SMALL_STATE(1502)] = 36825, + [SMALL_STATE(1503)] = 36837, + [SMALL_STATE(1504)] = 36849, + [SMALL_STATE(1505)] = 36861, + [SMALL_STATE(1506)] = 36876, + [SMALL_STATE(1507)] = 36891, + [SMALL_STATE(1508)] = 36906, + [SMALL_STATE(1509)] = 36921, + [SMALL_STATE(1510)] = 36936, + [SMALL_STATE(1511)] = 36951, + [SMALL_STATE(1512)] = 36966, + [SMALL_STATE(1513)] = 36981, + [SMALL_STATE(1514)] = 36996, + [SMALL_STATE(1515)] = 37011, + [SMALL_STATE(1516)] = 37026, + [SMALL_STATE(1517)] = 37041, + [SMALL_STATE(1518)] = 37052, + [SMALL_STATE(1519)] = 37067, + [SMALL_STATE(1520)] = 37082, + [SMALL_STATE(1521)] = 37095, + [SMALL_STATE(1522)] = 37110, + [SMALL_STATE(1523)] = 37125, + [SMALL_STATE(1524)] = 37140, + [SMALL_STATE(1525)] = 37155, + [SMALL_STATE(1526)] = 37170, + [SMALL_STATE(1527)] = 37185, + [SMALL_STATE(1528)] = 37200, + [SMALL_STATE(1529)] = 37215, + [SMALL_STATE(1530)] = 37230, + [SMALL_STATE(1531)] = 37245, + [SMALL_STATE(1532)] = 37260, + [SMALL_STATE(1533)] = 37275, + [SMALL_STATE(1534)] = 37290, + [SMALL_STATE(1535)] = 37305, + [SMALL_STATE(1536)] = 37318, + [SMALL_STATE(1537)] = 37333, + [SMALL_STATE(1538)] = 37348, + [SMALL_STATE(1539)] = 37363, + [SMALL_STATE(1540)] = 37378, + [SMALL_STATE(1541)] = 37393, + [SMALL_STATE(1542)] = 37408, + [SMALL_STATE(1543)] = 37423, + [SMALL_STATE(1544)] = 37438, + [SMALL_STATE(1545)] = 37453, + [SMALL_STATE(1546)] = 37468, + [SMALL_STATE(1547)] = 37483, + [SMALL_STATE(1548)] = 37498, + [SMALL_STATE(1549)] = 37513, + [SMALL_STATE(1550)] = 37524, + [SMALL_STATE(1551)] = 37539, + [SMALL_STATE(1552)] = 37554, + [SMALL_STATE(1553)] = 37569, + [SMALL_STATE(1554)] = 37584, + [SMALL_STATE(1555)] = 37599, + [SMALL_STATE(1556)] = 37614, + [SMALL_STATE(1557)] = 37629, + [SMALL_STATE(1558)] = 37644, + [SMALL_STATE(1559)] = 37659, + [SMALL_STATE(1560)] = 37674, + [SMALL_STATE(1561)] = 37689, + [SMALL_STATE(1562)] = 37704, + [SMALL_STATE(1563)] = 37719, + [SMALL_STATE(1564)] = 37734, + [SMALL_STATE(1565)] = 37749, + [SMALL_STATE(1566)] = 37764, + [SMALL_STATE(1567)] = 37779, + [SMALL_STATE(1568)] = 37794, + [SMALL_STATE(1569)] = 37809, + [SMALL_STATE(1570)] = 37824, + [SMALL_STATE(1571)] = 37839, + [SMALL_STATE(1572)] = 37854, + [SMALL_STATE(1573)] = 37869, + [SMALL_STATE(1574)] = 37884, + [SMALL_STATE(1575)] = 37899, + [SMALL_STATE(1576)] = 37914, + [SMALL_STATE(1577)] = 37929, + [SMALL_STATE(1578)] = 37944, + [SMALL_STATE(1579)] = 37959, + [SMALL_STATE(1580)] = 37974, + [SMALL_STATE(1581)] = 37989, + [SMALL_STATE(1582)] = 38004, + [SMALL_STATE(1583)] = 38019, + [SMALL_STATE(1584)] = 38034, + [SMALL_STATE(1585)] = 38049, + [SMALL_STATE(1586)] = 38064, + [SMALL_STATE(1587)] = 38079, + [SMALL_STATE(1588)] = 38094, + [SMALL_STATE(1589)] = 38109, + [SMALL_STATE(1590)] = 38124, + [SMALL_STATE(1591)] = 38139, + [SMALL_STATE(1592)] = 38154, + [SMALL_STATE(1593)] = 38169, + [SMALL_STATE(1594)] = 38184, + [SMALL_STATE(1595)] = 38199, + [SMALL_STATE(1596)] = 38214, + [SMALL_STATE(1597)] = 38229, + [SMALL_STATE(1598)] = 38244, + [SMALL_STATE(1599)] = 38259, + [SMALL_STATE(1600)] = 38274, + [SMALL_STATE(1601)] = 38289, + [SMALL_STATE(1602)] = 38304, + [SMALL_STATE(1603)] = 38319, + [SMALL_STATE(1604)] = 38334, + [SMALL_STATE(1605)] = 38349, + [SMALL_STATE(1606)] = 38364, + [SMALL_STATE(1607)] = 38379, + [SMALL_STATE(1608)] = 38394, + [SMALL_STATE(1609)] = 38409, + [SMALL_STATE(1610)] = 38424, + [SMALL_STATE(1611)] = 38439, + [SMALL_STATE(1612)] = 38454, + [SMALL_STATE(1613)] = 38469, + [SMALL_STATE(1614)] = 38484, + [SMALL_STATE(1615)] = 38499, + [SMALL_STATE(1616)] = 38514, + [SMALL_STATE(1617)] = 38529, + [SMALL_STATE(1618)] = 38544, + [SMALL_STATE(1619)] = 38559, + [SMALL_STATE(1620)] = 38574, + [SMALL_STATE(1621)] = 38589, + [SMALL_STATE(1622)] = 38604, + [SMALL_STATE(1623)] = 38619, + [SMALL_STATE(1624)] = 38634, + [SMALL_STATE(1625)] = 38649, + [SMALL_STATE(1626)] = 38664, + [SMALL_STATE(1627)] = 38679, + [SMALL_STATE(1628)] = 38694, + [SMALL_STATE(1629)] = 38709, + [SMALL_STATE(1630)] = 38724, + [SMALL_STATE(1631)] = 38739, + [SMALL_STATE(1632)] = 38754, + [SMALL_STATE(1633)] = 38769, + [SMALL_STATE(1634)] = 38784, + [SMALL_STATE(1635)] = 38799, + [SMALL_STATE(1636)] = 38814, + [SMALL_STATE(1637)] = 38829, + [SMALL_STATE(1638)] = 38840, + [SMALL_STATE(1639)] = 38855, + [SMALL_STATE(1640)] = 38870, + [SMALL_STATE(1641)] = 38885, + [SMALL_STATE(1642)] = 38900, + [SMALL_STATE(1643)] = 38915, + [SMALL_STATE(1644)] = 38930, + [SMALL_STATE(1645)] = 38945, + [SMALL_STATE(1646)] = 38960, + [SMALL_STATE(1647)] = 38975, + [SMALL_STATE(1648)] = 38990, + [SMALL_STATE(1649)] = 39005, + [SMALL_STATE(1650)] = 39020, + [SMALL_STATE(1651)] = 39035, + [SMALL_STATE(1652)] = 39050, + [SMALL_STATE(1653)] = 39065, + [SMALL_STATE(1654)] = 39080, + [SMALL_STATE(1655)] = 39095, + [SMALL_STATE(1656)] = 39110, + [SMALL_STATE(1657)] = 39125, + [SMALL_STATE(1658)] = 39140, + [SMALL_STATE(1659)] = 39155, + [SMALL_STATE(1660)] = 39170, + [SMALL_STATE(1661)] = 39185, + [SMALL_STATE(1662)] = 39200, + [SMALL_STATE(1663)] = 39215, + [SMALL_STATE(1664)] = 39230, + [SMALL_STATE(1665)] = 39245, + [SMALL_STATE(1666)] = 39260, + [SMALL_STATE(1667)] = 39275, + [SMALL_STATE(1668)] = 39290, + [SMALL_STATE(1669)] = 39305, + [SMALL_STATE(1670)] = 39320, + [SMALL_STATE(1671)] = 39335, + [SMALL_STATE(1672)] = 39350, + [SMALL_STATE(1673)] = 39365, + [SMALL_STATE(1674)] = 39380, + [SMALL_STATE(1675)] = 39395, + [SMALL_STATE(1676)] = 39410, + [SMALL_STATE(1677)] = 39425, + [SMALL_STATE(1678)] = 39440, + [SMALL_STATE(1679)] = 39455, + [SMALL_STATE(1680)] = 39470, + [SMALL_STATE(1681)] = 39485, + [SMALL_STATE(1682)] = 39500, + [SMALL_STATE(1683)] = 39515, + [SMALL_STATE(1684)] = 39530, + [SMALL_STATE(1685)] = 39545, + [SMALL_STATE(1686)] = 39560, + [SMALL_STATE(1687)] = 39575, + [SMALL_STATE(1688)] = 39590, + [SMALL_STATE(1689)] = 39605, + [SMALL_STATE(1690)] = 39620, + [SMALL_STATE(1691)] = 39635, + [SMALL_STATE(1692)] = 39650, + [SMALL_STATE(1693)] = 39665, + [SMALL_STATE(1694)] = 39680, + [SMALL_STATE(1695)] = 39695, + [SMALL_STATE(1696)] = 39710, + [SMALL_STATE(1697)] = 39725, + [SMALL_STATE(1698)] = 39740, + [SMALL_STATE(1699)] = 39755, + [SMALL_STATE(1700)] = 39770, + [SMALL_STATE(1701)] = 39785, + [SMALL_STATE(1702)] = 39800, + [SMALL_STATE(1703)] = 39815, + [SMALL_STATE(1704)] = 39830, + [SMALL_STATE(1705)] = 39845, + [SMALL_STATE(1706)] = 39860, + [SMALL_STATE(1707)] = 39875, + [SMALL_STATE(1708)] = 39890, + [SMALL_STATE(1709)] = 39905, + [SMALL_STATE(1710)] = 39920, + [SMALL_STATE(1711)] = 39931, + [SMALL_STATE(1712)] = 39946, + [SMALL_STATE(1713)] = 39961, + [SMALL_STATE(1714)] = 39976, + [SMALL_STATE(1715)] = 39991, + [SMALL_STATE(1716)] = 40006, + [SMALL_STATE(1717)] = 40021, + [SMALL_STATE(1718)] = 40036, + [SMALL_STATE(1719)] = 40047, + [SMALL_STATE(1720)] = 40058, + [SMALL_STATE(1721)] = 40073, + [SMALL_STATE(1722)] = 40084, + [SMALL_STATE(1723)] = 40099, + [SMALL_STATE(1724)] = 40112, + [SMALL_STATE(1725)] = 40125, + [SMALL_STATE(1726)] = 40140, + [SMALL_STATE(1727)] = 40153, + [SMALL_STATE(1728)] = 40168, + [SMALL_STATE(1729)] = 40183, + [SMALL_STATE(1730)] = 40198, + [SMALL_STATE(1731)] = 40211, + [SMALL_STATE(1732)] = 40224, + [SMALL_STATE(1733)] = 40239, + [SMALL_STATE(1734)] = 40252, + [SMALL_STATE(1735)] = 40267, + [SMALL_STATE(1736)] = 40282, + [SMALL_STATE(1737)] = 40297, + [SMALL_STATE(1738)] = 40312, + [SMALL_STATE(1739)] = 40327, + [SMALL_STATE(1740)] = 40342, + [SMALL_STATE(1741)] = 40357, + [SMALL_STATE(1742)] = 40372, + [SMALL_STATE(1743)] = 40387, + [SMALL_STATE(1744)] = 40402, + [SMALL_STATE(1745)] = 40417, + [SMALL_STATE(1746)] = 40432, + [SMALL_STATE(1747)] = 40447, + [SMALL_STATE(1748)] = 40462, + [SMALL_STATE(1749)] = 40477, + [SMALL_STATE(1750)] = 40492, + [SMALL_STATE(1751)] = 40507, + [SMALL_STATE(1752)] = 40522, + [SMALL_STATE(1753)] = 40537, + [SMALL_STATE(1754)] = 40552, + [SMALL_STATE(1755)] = 40567, + [SMALL_STATE(1756)] = 40582, + [SMALL_STATE(1757)] = 40597, + [SMALL_STATE(1758)] = 40612, + [SMALL_STATE(1759)] = 40627, + [SMALL_STATE(1760)] = 40642, + [SMALL_STATE(1761)] = 40657, + [SMALL_STATE(1762)] = 40672, + [SMALL_STATE(1763)] = 40687, + [SMALL_STATE(1764)] = 40702, + [SMALL_STATE(1765)] = 40717, + [SMALL_STATE(1766)] = 40728, + [SMALL_STATE(1767)] = 40743, + [SMALL_STATE(1768)] = 40758, + [SMALL_STATE(1769)] = 40773, + [SMALL_STATE(1770)] = 40788, + [SMALL_STATE(1771)] = 40803, + [SMALL_STATE(1772)] = 40818, + [SMALL_STATE(1773)] = 40833, + [SMALL_STATE(1774)] = 40848, + [SMALL_STATE(1775)] = 40863, + [SMALL_STATE(1776)] = 40878, + [SMALL_STATE(1777)] = 40893, + [SMALL_STATE(1778)] = 40908, + [SMALL_STATE(1779)] = 40923, + [SMALL_STATE(1780)] = 40938, + [SMALL_STATE(1781)] = 40953, + [SMALL_STATE(1782)] = 40968, + [SMALL_STATE(1783)] = 40983, + [SMALL_STATE(1784)] = 40998, + [SMALL_STATE(1785)] = 41013, + [SMALL_STATE(1786)] = 41028, + [SMALL_STATE(1787)] = 41043, + [SMALL_STATE(1788)] = 41058, + [SMALL_STATE(1789)] = 41073, + [SMALL_STATE(1790)] = 41088, + [SMALL_STATE(1791)] = 41103, + [SMALL_STATE(1792)] = 41118, + [SMALL_STATE(1793)] = 41133, + [SMALL_STATE(1794)] = 41148, + [SMALL_STATE(1795)] = 41163, + [SMALL_STATE(1796)] = 41178, + [SMALL_STATE(1797)] = 41193, + [SMALL_STATE(1798)] = 41208, + [SMALL_STATE(1799)] = 41223, + [SMALL_STATE(1800)] = 41238, + [SMALL_STATE(1801)] = 41253, + [SMALL_STATE(1802)] = 41268, + [SMALL_STATE(1803)] = 41283, + [SMALL_STATE(1804)] = 41298, + [SMALL_STATE(1805)] = 41313, + [SMALL_STATE(1806)] = 41328, + [SMALL_STATE(1807)] = 41343, + [SMALL_STATE(1808)] = 41358, + [SMALL_STATE(1809)] = 41371, + [SMALL_STATE(1810)] = 41386, + [SMALL_STATE(1811)] = 41401, + [SMALL_STATE(1812)] = 41416, + [SMALL_STATE(1813)] = 41427, + [SMALL_STATE(1814)] = 41438, + [SMALL_STATE(1815)] = 41453, + [SMALL_STATE(1816)] = 41468, + [SMALL_STATE(1817)] = 41483, + [SMALL_STATE(1818)] = 41498, + [SMALL_STATE(1819)] = 41513, + [SMALL_STATE(1820)] = 41528, + [SMALL_STATE(1821)] = 41539, + [SMALL_STATE(1822)] = 41554, + [SMALL_STATE(1823)] = 41569, + [SMALL_STATE(1824)] = 41584, + [SMALL_STATE(1825)] = 41599, + [SMALL_STATE(1826)] = 41614, + [SMALL_STATE(1827)] = 41629, + [SMALL_STATE(1828)] = 41644, + [SMALL_STATE(1829)] = 41659, + [SMALL_STATE(1830)] = 41674, + [SMALL_STATE(1831)] = 41689, + [SMALL_STATE(1832)] = 41704, + [SMALL_STATE(1833)] = 41717, + [SMALL_STATE(1834)] = 41732, + [SMALL_STATE(1835)] = 41747, + [SMALL_STATE(1836)] = 41762, + [SMALL_STATE(1837)] = 41777, + [SMALL_STATE(1838)] = 41792, + [SMALL_STATE(1839)] = 41807, + [SMALL_STATE(1840)] = 41822, + [SMALL_STATE(1841)] = 41837, + [SMALL_STATE(1842)] = 41852, + [SMALL_STATE(1843)] = 41867, + [SMALL_STATE(1844)] = 41882, + [SMALL_STATE(1845)] = 41897, + [SMALL_STATE(1846)] = 41912, + [SMALL_STATE(1847)] = 41927, + [SMALL_STATE(1848)] = 41942, + [SMALL_STATE(1849)] = 41957, + [SMALL_STATE(1850)] = 41972, + [SMALL_STATE(1851)] = 41987, + [SMALL_STATE(1852)] = 42002, + [SMALL_STATE(1853)] = 42017, + [SMALL_STATE(1854)] = 42032, + [SMALL_STATE(1855)] = 42047, + [SMALL_STATE(1856)] = 42062, + [SMALL_STATE(1857)] = 42077, + [SMALL_STATE(1858)] = 42092, + [SMALL_STATE(1859)] = 42107, + [SMALL_STATE(1860)] = 42122, + [SMALL_STATE(1861)] = 42137, + [SMALL_STATE(1862)] = 42152, + [SMALL_STATE(1863)] = 42167, + [SMALL_STATE(1864)] = 42182, + [SMALL_STATE(1865)] = 42197, + [SMALL_STATE(1866)] = 42212, + [SMALL_STATE(1867)] = 42227, + [SMALL_STATE(1868)] = 42242, + [SMALL_STATE(1869)] = 42257, + [SMALL_STATE(1870)] = 42272, + [SMALL_STATE(1871)] = 42287, + [SMALL_STATE(1872)] = 42302, + [SMALL_STATE(1873)] = 42317, + [SMALL_STATE(1874)] = 42328, + [SMALL_STATE(1875)] = 42341, + [SMALL_STATE(1876)] = 42356, + [SMALL_STATE(1877)] = 42371, + [SMALL_STATE(1878)] = 42386, + [SMALL_STATE(1879)] = 42401, + [SMALL_STATE(1880)] = 42416, + [SMALL_STATE(1881)] = 42431, + [SMALL_STATE(1882)] = 42446, + [SMALL_STATE(1883)] = 42461, + [SMALL_STATE(1884)] = 42476, + [SMALL_STATE(1885)] = 42491, + [SMALL_STATE(1886)] = 42504, + [SMALL_STATE(1887)] = 42519, + [SMALL_STATE(1888)] = 42534, + [SMALL_STATE(1889)] = 42549, + [SMALL_STATE(1890)] = 42564, + [SMALL_STATE(1891)] = 42579, + [SMALL_STATE(1892)] = 42594, + [SMALL_STATE(1893)] = 42609, + [SMALL_STATE(1894)] = 42624, + [SMALL_STATE(1895)] = 42639, + [SMALL_STATE(1896)] = 42654, + [SMALL_STATE(1897)] = 42669, + [SMALL_STATE(1898)] = 42684, + [SMALL_STATE(1899)] = 42699, + [SMALL_STATE(1900)] = 42714, + [SMALL_STATE(1901)] = 42729, + [SMALL_STATE(1902)] = 42744, + [SMALL_STATE(1903)] = 42759, + [SMALL_STATE(1904)] = 42774, + [SMALL_STATE(1905)] = 42789, + [SMALL_STATE(1906)] = 42804, + [SMALL_STATE(1907)] = 42819, + [SMALL_STATE(1908)] = 42834, + [SMALL_STATE(1909)] = 42849, + [SMALL_STATE(1910)] = 42864, + [SMALL_STATE(1911)] = 42879, + [SMALL_STATE(1912)] = 42894, + [SMALL_STATE(1913)] = 42909, + [SMALL_STATE(1914)] = 42921, + [SMALL_STATE(1915)] = 42933, + [SMALL_STATE(1916)] = 42943, + [SMALL_STATE(1917)] = 42955, + [SMALL_STATE(1918)] = 42965, + [SMALL_STATE(1919)] = 42975, + [SMALL_STATE(1920)] = 42987, + [SMALL_STATE(1921)] = 42997, + [SMALL_STATE(1922)] = 43007, + [SMALL_STATE(1923)] = 43017, + [SMALL_STATE(1924)] = 43029, + [SMALL_STATE(1925)] = 43041, + [SMALL_STATE(1926)] = 43051, + [SMALL_STATE(1927)] = 43063, + [SMALL_STATE(1928)] = 43075, + [SMALL_STATE(1929)] = 43087, + [SMALL_STATE(1930)] = 43099, + [SMALL_STATE(1931)] = 43109, + [SMALL_STATE(1932)] = 43121, + [SMALL_STATE(1933)] = 43133, + [SMALL_STATE(1934)] = 43145, + [SMALL_STATE(1935)] = 43155, + [SMALL_STATE(1936)] = 43167, + [SMALL_STATE(1937)] = 43179, + [SMALL_STATE(1938)] = 43189, + [SMALL_STATE(1939)] = 43201, + [SMALL_STATE(1940)] = 43213, + [SMALL_STATE(1941)] = 43223, + [SMALL_STATE(1942)] = 43235, + [SMALL_STATE(1943)] = 43247, + [SMALL_STATE(1944)] = 43259, + [SMALL_STATE(1945)] = 43271, + [SMALL_STATE(1946)] = 43281, + [SMALL_STATE(1947)] = 43293, + [SMALL_STATE(1948)] = 43305, + [SMALL_STATE(1949)] = 43317, + [SMALL_STATE(1950)] = 43329, + [SMALL_STATE(1951)] = 43341, + [SMALL_STATE(1952)] = 43353, + [SMALL_STATE(1953)] = 43365, + [SMALL_STATE(1954)] = 43377, + [SMALL_STATE(1955)] = 43387, + [SMALL_STATE(1956)] = 43399, + [SMALL_STATE(1957)] = 43411, + [SMALL_STATE(1958)] = 43423, + [SMALL_STATE(1959)] = 43435, + [SMALL_STATE(1960)] = 43447, + [SMALL_STATE(1961)] = 43459, + [SMALL_STATE(1962)] = 43471, + [SMALL_STATE(1963)] = 43483, + [SMALL_STATE(1964)] = 43493, + [SMALL_STATE(1965)] = 43503, + [SMALL_STATE(1966)] = 43515, + [SMALL_STATE(1967)] = 43525, + [SMALL_STATE(1968)] = 43535, + [SMALL_STATE(1969)] = 43547, + [SMALL_STATE(1970)] = 43557, + [SMALL_STATE(1971)] = 43569, + [SMALL_STATE(1972)] = 43579, + [SMALL_STATE(1973)] = 43591, + [SMALL_STATE(1974)] = 43603, + [SMALL_STATE(1975)] = 43613, + [SMALL_STATE(1976)] = 43625, + [SMALL_STATE(1977)] = 43637, + [SMALL_STATE(1978)] = 43649, + [SMALL_STATE(1979)] = 43661, + [SMALL_STATE(1980)] = 43671, + [SMALL_STATE(1981)] = 43683, + [SMALL_STATE(1982)] = 43695, + [SMALL_STATE(1983)] = 43705, + [SMALL_STATE(1984)] = 43715, + [SMALL_STATE(1985)] = 43725, + [SMALL_STATE(1986)] = 43737, + [SMALL_STATE(1987)] = 43747, + [SMALL_STATE(1988)] = 43757, + [SMALL_STATE(1989)] = 43769, + [SMALL_STATE(1990)] = 43779, + [SMALL_STATE(1991)] = 43789, + [SMALL_STATE(1992)] = 43799, + [SMALL_STATE(1993)] = 43809, + [SMALL_STATE(1994)] = 43821, + [SMALL_STATE(1995)] = 43831, + [SMALL_STATE(1996)] = 43843, + [SMALL_STATE(1997)] = 43853, + [SMALL_STATE(1998)] = 43865, + [SMALL_STATE(1999)] = 43877, + [SMALL_STATE(2000)] = 43889, + [SMALL_STATE(2001)] = 43901, + [SMALL_STATE(2002)] = 43913, + [SMALL_STATE(2003)] = 43925, + [SMALL_STATE(2004)] = 43937, + [SMALL_STATE(2005)] = 43949, + [SMALL_STATE(2006)] = 43961, + [SMALL_STATE(2007)] = 43973, + [SMALL_STATE(2008)] = 43985, + [SMALL_STATE(2009)] = 43997, + [SMALL_STATE(2010)] = 44007, + [SMALL_STATE(2011)] = 44019, + [SMALL_STATE(2012)] = 44031, + [SMALL_STATE(2013)] = 44043, + [SMALL_STATE(2014)] = 44055, + [SMALL_STATE(2015)] = 44067, + [SMALL_STATE(2016)] = 44079, + [SMALL_STATE(2017)] = 44091, + [SMALL_STATE(2018)] = 44103, + [SMALL_STATE(2019)] = 44113, + [SMALL_STATE(2020)] = 44125, + [SMALL_STATE(2021)] = 44137, + [SMALL_STATE(2022)] = 44149, + [SMALL_STATE(2023)] = 44161, + [SMALL_STATE(2024)] = 44171, + [SMALL_STATE(2025)] = 44181, + [SMALL_STATE(2026)] = 44193, + [SMALL_STATE(2027)] = 44203, + [SMALL_STATE(2028)] = 44213, + [SMALL_STATE(2029)] = 44225, + [SMALL_STATE(2030)] = 44237, + [SMALL_STATE(2031)] = 44249, + [SMALL_STATE(2032)] = 44261, + [SMALL_STATE(2033)] = 44273, + [SMALL_STATE(2034)] = 44285, + [SMALL_STATE(2035)] = 44297, + [SMALL_STATE(2036)] = 44309, + [SMALL_STATE(2037)] = 44321, + [SMALL_STATE(2038)] = 44333, + [SMALL_STATE(2039)] = 44345, + [SMALL_STATE(2040)] = 44357, + [SMALL_STATE(2041)] = 44369, + [SMALL_STATE(2042)] = 44381, + [SMALL_STATE(2043)] = 44393, + [SMALL_STATE(2044)] = 44405, + [SMALL_STATE(2045)] = 44415, + [SMALL_STATE(2046)] = 44427, + [SMALL_STATE(2047)] = 44439, + [SMALL_STATE(2048)] = 44451, + [SMALL_STATE(2049)] = 44461, + [SMALL_STATE(2050)] = 44473, + [SMALL_STATE(2051)] = 44485, + [SMALL_STATE(2052)] = 44497, + [SMALL_STATE(2053)] = 44509, + [SMALL_STATE(2054)] = 44521, + [SMALL_STATE(2055)] = 44531, + [SMALL_STATE(2056)] = 44543, + [SMALL_STATE(2057)] = 44555, + [SMALL_STATE(2058)] = 44567, + [SMALL_STATE(2059)] = 44579, + [SMALL_STATE(2060)] = 44591, + [SMALL_STATE(2061)] = 44603, + [SMALL_STATE(2062)] = 44615, + [SMALL_STATE(2063)] = 44627, + [SMALL_STATE(2064)] = 44637, + [SMALL_STATE(2065)] = 44649, + [SMALL_STATE(2066)] = 44661, + [SMALL_STATE(2067)] = 44673, + [SMALL_STATE(2068)] = 44685, + [SMALL_STATE(2069)] = 44697, + [SMALL_STATE(2070)] = 44706, + [SMALL_STATE(2071)] = 44715, + [SMALL_STATE(2072)] = 44724, + [SMALL_STATE(2073)] = 44733, + [SMALL_STATE(2074)] = 44742, + [SMALL_STATE(2075)] = 44751, + [SMALL_STATE(2076)] = 44760, + [SMALL_STATE(2077)] = 44769, + [SMALL_STATE(2078)] = 44778, + [SMALL_STATE(2079)] = 44787, + [SMALL_STATE(2080)] = 44796, + [SMALL_STATE(2081)] = 44805, + [SMALL_STATE(2082)] = 44814, + [SMALL_STATE(2083)] = 44823, + [SMALL_STATE(2084)] = 44832, + [SMALL_STATE(2085)] = 44841, + [SMALL_STATE(2086)] = 44850, + [SMALL_STATE(2087)] = 44859, + [SMALL_STATE(2088)] = 44868, + [SMALL_STATE(2089)] = 44877, + [SMALL_STATE(2090)] = 44886, + [SMALL_STATE(2091)] = 44895, + [SMALL_STATE(2092)] = 44904, + [SMALL_STATE(2093)] = 44913, + [SMALL_STATE(2094)] = 44922, + [SMALL_STATE(2095)] = 44931, + [SMALL_STATE(2096)] = 44940, + [SMALL_STATE(2097)] = 44949, + [SMALL_STATE(2098)] = 44958, + [SMALL_STATE(2099)] = 44967, + [SMALL_STATE(2100)] = 44976, + [SMALL_STATE(2101)] = 44985, + [SMALL_STATE(2102)] = 44994, + [SMALL_STATE(2103)] = 45003, + [SMALL_STATE(2104)] = 45012, + [SMALL_STATE(2105)] = 45021, + [SMALL_STATE(2106)] = 45030, + [SMALL_STATE(2107)] = 45039, + [SMALL_STATE(2108)] = 45048, + [SMALL_STATE(2109)] = 45057, + [SMALL_STATE(2110)] = 45066, + [SMALL_STATE(2111)] = 45075, + [SMALL_STATE(2112)] = 45084, + [SMALL_STATE(2113)] = 45093, + [SMALL_STATE(2114)] = 45102, + [SMALL_STATE(2115)] = 45111, + [SMALL_STATE(2116)] = 45120, + [SMALL_STATE(2117)] = 45129, + [SMALL_STATE(2118)] = 45138, + [SMALL_STATE(2119)] = 45147, + [SMALL_STATE(2120)] = 45156, + [SMALL_STATE(2121)] = 45165, + [SMALL_STATE(2122)] = 45174, + [SMALL_STATE(2123)] = 45183, + [SMALL_STATE(2124)] = 45192, + [SMALL_STATE(2125)] = 45201, + [SMALL_STATE(2126)] = 45210, + [SMALL_STATE(2127)] = 45219, + [SMALL_STATE(2128)] = 45228, + [SMALL_STATE(2129)] = 45237, + [SMALL_STATE(2130)] = 45246, + [SMALL_STATE(2131)] = 45255, + [SMALL_STATE(2132)] = 45264, + [SMALL_STATE(2133)] = 45273, + [SMALL_STATE(2134)] = 45282, + [SMALL_STATE(2135)] = 45291, + [SMALL_STATE(2136)] = 45300, + [SMALL_STATE(2137)] = 45309, + [SMALL_STATE(2138)] = 45318, + [SMALL_STATE(2139)] = 45327, + [SMALL_STATE(2140)] = 45336, + [SMALL_STATE(2141)] = 45345, + [SMALL_STATE(2142)] = 45354, + [SMALL_STATE(2143)] = 45363, + [SMALL_STATE(2144)] = 45372, + [SMALL_STATE(2145)] = 45381, + [SMALL_STATE(2146)] = 45390, + [SMALL_STATE(2147)] = 45399, + [SMALL_STATE(2148)] = 45408, + [SMALL_STATE(2149)] = 45417, + [SMALL_STATE(2150)] = 45426, + [SMALL_STATE(2151)] = 45435, + [SMALL_STATE(2152)] = 45444, + [SMALL_STATE(2153)] = 45453, + [SMALL_STATE(2154)] = 45462, + [SMALL_STATE(2155)] = 45471, + [SMALL_STATE(2156)] = 45480, + [SMALL_STATE(2157)] = 45489, + [SMALL_STATE(2158)] = 45498, + [SMALL_STATE(2159)] = 45507, + [SMALL_STATE(2160)] = 45516, + [SMALL_STATE(2161)] = 45525, + [SMALL_STATE(2162)] = 45534, + [SMALL_STATE(2163)] = 45543, + [SMALL_STATE(2164)] = 45552, + [SMALL_STATE(2165)] = 45561, + [SMALL_STATE(2166)] = 45570, + [SMALL_STATE(2167)] = 45579, + [SMALL_STATE(2168)] = 45588, + [SMALL_STATE(2169)] = 45597, + [SMALL_STATE(2170)] = 45606, + [SMALL_STATE(2171)] = 45615, + [SMALL_STATE(2172)] = 45624, + [SMALL_STATE(2173)] = 45633, + [SMALL_STATE(2174)] = 45642, + [SMALL_STATE(2175)] = 45651, + [SMALL_STATE(2176)] = 45660, + [SMALL_STATE(2177)] = 45669, + [SMALL_STATE(2178)] = 45678, + [SMALL_STATE(2179)] = 45687, + [SMALL_STATE(2180)] = 45696, + [SMALL_STATE(2181)] = 45705, + [SMALL_STATE(2182)] = 45714, + [SMALL_STATE(2183)] = 45723, + [SMALL_STATE(2184)] = 45732, + [SMALL_STATE(2185)] = 45741, + [SMALL_STATE(2186)] = 45750, + [SMALL_STATE(2187)] = 45759, + [SMALL_STATE(2188)] = 45768, + [SMALL_STATE(2189)] = 45777, + [SMALL_STATE(2190)] = 45786, + [SMALL_STATE(2191)] = 45795, + [SMALL_STATE(2192)] = 45804, + [SMALL_STATE(2193)] = 45813, + [SMALL_STATE(2194)] = 45822, + [SMALL_STATE(2195)] = 45831, + [SMALL_STATE(2196)] = 45840, + [SMALL_STATE(2197)] = 45849, + [SMALL_STATE(2198)] = 45858, + [SMALL_STATE(2199)] = 45867, + [SMALL_STATE(2200)] = 45876, + [SMALL_STATE(2201)] = 45885, + [SMALL_STATE(2202)] = 45894, + [SMALL_STATE(2203)] = 45903, + [SMALL_STATE(2204)] = 45912, + [SMALL_STATE(2205)] = 45921, + [SMALL_STATE(2206)] = 45930, + [SMALL_STATE(2207)] = 45939, + [SMALL_STATE(2208)] = 45948, + [SMALL_STATE(2209)] = 45957, + [SMALL_STATE(2210)] = 45966, + [SMALL_STATE(2211)] = 45975, + [SMALL_STATE(2212)] = 45984, + [SMALL_STATE(2213)] = 45993, + [SMALL_STATE(2214)] = 46002, + [SMALL_STATE(2215)] = 46011, + [SMALL_STATE(2216)] = 46020, + [SMALL_STATE(2217)] = 46029, + [SMALL_STATE(2218)] = 46038, + [SMALL_STATE(2219)] = 46047, + [SMALL_STATE(2220)] = 46056, + [SMALL_STATE(2221)] = 46065, + [SMALL_STATE(2222)] = 46074, + [SMALL_STATE(2223)] = 46083, + [SMALL_STATE(2224)] = 46092, + [SMALL_STATE(2225)] = 46101, + [SMALL_STATE(2226)] = 46110, + [SMALL_STATE(2227)] = 46119, + [SMALL_STATE(2228)] = 46128, + [SMALL_STATE(2229)] = 46137, + [SMALL_STATE(2230)] = 46146, + [SMALL_STATE(2231)] = 46155, + [SMALL_STATE(2232)] = 46164, + [SMALL_STATE(2233)] = 46173, + [SMALL_STATE(2234)] = 46182, + [SMALL_STATE(2235)] = 46191, + [SMALL_STATE(2236)] = 46200, + [SMALL_STATE(2237)] = 46209, + [SMALL_STATE(2238)] = 46218, + [SMALL_STATE(2239)] = 46227, + [SMALL_STATE(2240)] = 46236, + [SMALL_STATE(2241)] = 46245, + [SMALL_STATE(2242)] = 46254, + [SMALL_STATE(2243)] = 46263, + [SMALL_STATE(2244)] = 46272, + [SMALL_STATE(2245)] = 46281, + [SMALL_STATE(2246)] = 46290, + [SMALL_STATE(2247)] = 46299, + [SMALL_STATE(2248)] = 46308, + [SMALL_STATE(2249)] = 46317, + [SMALL_STATE(2250)] = 46326, + [SMALL_STATE(2251)] = 46335, + [SMALL_STATE(2252)] = 46344, + [SMALL_STATE(2253)] = 46353, + [SMALL_STATE(2254)] = 46362, + [SMALL_STATE(2255)] = 46371, + [SMALL_STATE(2256)] = 46380, + [SMALL_STATE(2257)] = 46389, + [SMALL_STATE(2258)] = 46398, + [SMALL_STATE(2259)] = 46407, + [SMALL_STATE(2260)] = 46416, + [SMALL_STATE(2261)] = 46425, + [SMALL_STATE(2262)] = 46434, + [SMALL_STATE(2263)] = 46443, + [SMALL_STATE(2264)] = 46452, + [SMALL_STATE(2265)] = 46461, + [SMALL_STATE(2266)] = 46470, + [SMALL_STATE(2267)] = 46479, + [SMALL_STATE(2268)] = 46488, + [SMALL_STATE(2269)] = 46497, + [SMALL_STATE(2270)] = 46506, + [SMALL_STATE(2271)] = 46515, + [SMALL_STATE(2272)] = 46524, + [SMALL_STATE(2273)] = 46533, + [SMALL_STATE(2274)] = 46542, + [SMALL_STATE(2275)] = 46551, + [SMALL_STATE(2276)] = 46560, + [SMALL_STATE(2277)] = 46569, + [SMALL_STATE(2278)] = 46578, + [SMALL_STATE(2279)] = 46587, + [SMALL_STATE(2280)] = 46596, + [SMALL_STATE(2281)] = 46605, + [SMALL_STATE(2282)] = 46614, + [SMALL_STATE(2283)] = 46623, + [SMALL_STATE(2284)] = 46632, + [SMALL_STATE(2285)] = 46641, + [SMALL_STATE(2286)] = 46650, + [SMALL_STATE(2287)] = 46659, + [SMALL_STATE(2288)] = 46668, + [SMALL_STATE(2289)] = 46677, + [SMALL_STATE(2290)] = 46686, + [SMALL_STATE(2291)] = 46695, + [SMALL_STATE(2292)] = 46704, + [SMALL_STATE(2293)] = 46713, + [SMALL_STATE(2294)] = 46722, + [SMALL_STATE(2295)] = 46731, + [SMALL_STATE(2296)] = 46740, + [SMALL_STATE(2297)] = 46749, + [SMALL_STATE(2298)] = 46758, + [SMALL_STATE(2299)] = 46767, + [SMALL_STATE(2300)] = 46776, + [SMALL_STATE(2301)] = 46785, + [SMALL_STATE(2302)] = 46794, + [SMALL_STATE(2303)] = 46803, + [SMALL_STATE(2304)] = 46812, + [SMALL_STATE(2305)] = 46821, + [SMALL_STATE(2306)] = 46830, + [SMALL_STATE(2307)] = 46839, + [SMALL_STATE(2308)] = 46848, + [SMALL_STATE(2309)] = 46857, + [SMALL_STATE(2310)] = 46866, + [SMALL_STATE(2311)] = 46875, + [SMALL_STATE(2312)] = 46884, + [SMALL_STATE(2313)] = 46893, + [SMALL_STATE(2314)] = 46902, + [SMALL_STATE(2315)] = 46911, + [SMALL_STATE(2316)] = 46920, + [SMALL_STATE(2317)] = 46929, + [SMALL_STATE(2318)] = 46938, + [SMALL_STATE(2319)] = 46947, + [SMALL_STATE(2320)] = 46956, + [SMALL_STATE(2321)] = 46965, + [SMALL_STATE(2322)] = 46974, + [SMALL_STATE(2323)] = 46983, + [SMALL_STATE(2324)] = 46992, + [SMALL_STATE(2325)] = 47001, + [SMALL_STATE(2326)] = 47010, + [SMALL_STATE(2327)] = 47019, + [SMALL_STATE(2328)] = 47028, + [SMALL_STATE(2329)] = 47037, + [SMALL_STATE(2330)] = 47046, + [SMALL_STATE(2331)] = 47055, + [SMALL_STATE(2332)] = 47064, + [SMALL_STATE(2333)] = 47073, + [SMALL_STATE(2334)] = 47082, + [SMALL_STATE(2335)] = 47091, + [SMALL_STATE(2336)] = 47100, + [SMALL_STATE(2337)] = 47109, + [SMALL_STATE(2338)] = 47118, + [SMALL_STATE(2339)] = 47127, + [SMALL_STATE(2340)] = 47136, + [SMALL_STATE(2341)] = 47145, + [SMALL_STATE(2342)] = 47154, + [SMALL_STATE(2343)] = 47163, + [SMALL_STATE(2344)] = 47172, + [SMALL_STATE(2345)] = 47181, + [SMALL_STATE(2346)] = 47190, + [SMALL_STATE(2347)] = 47199, + [SMALL_STATE(2348)] = 47208, + [SMALL_STATE(2349)] = 47217, + [SMALL_STATE(2350)] = 47226, + [SMALL_STATE(2351)] = 47235, + [SMALL_STATE(2352)] = 47244, + [SMALL_STATE(2353)] = 47253, + [SMALL_STATE(2354)] = 47262, + [SMALL_STATE(2355)] = 47271, + [SMALL_STATE(2356)] = 47280, + [SMALL_STATE(2357)] = 47289, + [SMALL_STATE(2358)] = 47298, + [SMALL_STATE(2359)] = 47307, + [SMALL_STATE(2360)] = 47316, + [SMALL_STATE(2361)] = 47325, + [SMALL_STATE(2362)] = 47334, + [SMALL_STATE(2363)] = 47343, + [SMALL_STATE(2364)] = 47352, + [SMALL_STATE(2365)] = 47361, + [SMALL_STATE(2366)] = 47370, + [SMALL_STATE(2367)] = 47379, + [SMALL_STATE(2368)] = 47388, + [SMALL_STATE(2369)] = 47397, + [SMALL_STATE(2370)] = 47406, + [SMALL_STATE(2371)] = 47415, + [SMALL_STATE(2372)] = 47424, + [SMALL_STATE(2373)] = 47433, + [SMALL_STATE(2374)] = 47442, + [SMALL_STATE(2375)] = 47451, + [SMALL_STATE(2376)] = 47460, + [SMALL_STATE(2377)] = 47469, + [SMALL_STATE(2378)] = 47478, + [SMALL_STATE(2379)] = 47487, + [SMALL_STATE(2380)] = 47496, + [SMALL_STATE(2381)] = 47505, + [SMALL_STATE(2382)] = 47514, + [SMALL_STATE(2383)] = 47523, + [SMALL_STATE(2384)] = 47532, + [SMALL_STATE(2385)] = 47541, + [SMALL_STATE(2386)] = 47550, + [SMALL_STATE(2387)] = 47559, + [SMALL_STATE(2388)] = 47568, + [SMALL_STATE(2389)] = 47577, + [SMALL_STATE(2390)] = 47586, + [SMALL_STATE(2391)] = 47595, + [SMALL_STATE(2392)] = 47604, + [SMALL_STATE(2393)] = 47613, + [SMALL_STATE(2394)] = 47622, + [SMALL_STATE(2395)] = 47631, + [SMALL_STATE(2396)] = 47640, + [SMALL_STATE(2397)] = 47649, + [SMALL_STATE(2398)] = 47658, + [SMALL_STATE(2399)] = 47667, + [SMALL_STATE(2400)] = 47676, + [SMALL_STATE(2401)] = 47685, + [SMALL_STATE(2402)] = 47694, + [SMALL_STATE(2403)] = 47703, + [SMALL_STATE(2404)] = 47712, + [SMALL_STATE(2405)] = 47721, + [SMALL_STATE(2406)] = 47730, + [SMALL_STATE(2407)] = 47739, + [SMALL_STATE(2408)] = 47748, + [SMALL_STATE(2409)] = 47757, + [SMALL_STATE(2410)] = 47766, + [SMALL_STATE(2411)] = 47775, + [SMALL_STATE(2412)] = 47784, + [SMALL_STATE(2413)] = 47793, + [SMALL_STATE(2414)] = 47802, + [SMALL_STATE(2415)] = 47811, + [SMALL_STATE(2416)] = 47820, + [SMALL_STATE(2417)] = 47829, + [SMALL_STATE(2418)] = 47838, + [SMALL_STATE(2419)] = 47847, + [SMALL_STATE(2420)] = 47856, + [SMALL_STATE(2421)] = 47865, + [SMALL_STATE(2422)] = 47874, + [SMALL_STATE(2423)] = 47883, + [SMALL_STATE(2424)] = 47892, + [SMALL_STATE(2425)] = 47901, + [SMALL_STATE(2426)] = 47910, + [SMALL_STATE(2427)] = 47919, + [SMALL_STATE(2428)] = 47928, + [SMALL_STATE(2429)] = 47937, + [SMALL_STATE(2430)] = 47946, + [SMALL_STATE(2431)] = 47955, + [SMALL_STATE(2432)] = 47964, + [SMALL_STATE(2433)] = 47973, + [SMALL_STATE(2434)] = 47982, + [SMALL_STATE(2435)] = 47991, + [SMALL_STATE(2436)] = 48000, + [SMALL_STATE(2437)] = 48009, + [SMALL_STATE(2438)] = 48018, + [SMALL_STATE(2439)] = 48027, + [SMALL_STATE(2440)] = 48036, + [SMALL_STATE(2441)] = 48045, + [SMALL_STATE(2442)] = 48054, + [SMALL_STATE(2443)] = 48063, + [SMALL_STATE(2444)] = 48072, + [SMALL_STATE(2445)] = 48081, + [SMALL_STATE(2446)] = 48090, + [SMALL_STATE(2447)] = 48099, + [SMALL_STATE(2448)] = 48108, + [SMALL_STATE(2449)] = 48117, + [SMALL_STATE(2450)] = 48126, + [SMALL_STATE(2451)] = 48135, + [SMALL_STATE(2452)] = 48144, + [SMALL_STATE(2453)] = 48153, + [SMALL_STATE(2454)] = 48162, + [SMALL_STATE(2455)] = 48171, + [SMALL_STATE(2456)] = 48180, + [SMALL_STATE(2457)] = 48189, + [SMALL_STATE(2458)] = 48198, + [SMALL_STATE(2459)] = 48207, + [SMALL_STATE(2460)] = 48216, + [SMALL_STATE(2461)] = 48225, + [SMALL_STATE(2462)] = 48234, + [SMALL_STATE(2463)] = 48243, + [SMALL_STATE(2464)] = 48252, + [SMALL_STATE(2465)] = 48261, + [SMALL_STATE(2466)] = 48270, + [SMALL_STATE(2467)] = 48279, + [SMALL_STATE(2468)] = 48288, + [SMALL_STATE(2469)] = 48297, + [SMALL_STATE(2470)] = 48306, + [SMALL_STATE(2471)] = 48315, + [SMALL_STATE(2472)] = 48324, + [SMALL_STATE(2473)] = 48333, + [SMALL_STATE(2474)] = 48342, + [SMALL_STATE(2475)] = 48351, + [SMALL_STATE(2476)] = 48360, + [SMALL_STATE(2477)] = 48369, + [SMALL_STATE(2478)] = 48378, + [SMALL_STATE(2479)] = 48387, + [SMALL_STATE(2480)] = 48396, + [SMALL_STATE(2481)] = 48405, + [SMALL_STATE(2482)] = 48414, + [SMALL_STATE(2483)] = 48423, + [SMALL_STATE(2484)] = 48432, + [SMALL_STATE(2485)] = 48441, + [SMALL_STATE(2486)] = 48450, + [SMALL_STATE(2487)] = 48459, + [SMALL_STATE(2488)] = 48468, + [SMALL_STATE(2489)] = 48477, + [SMALL_STATE(2490)] = 48486, + [SMALL_STATE(2491)] = 48495, + [SMALL_STATE(2492)] = 48504, + [SMALL_STATE(2493)] = 48513, + [SMALL_STATE(2494)] = 48522, + [SMALL_STATE(2495)] = 48531, + [SMALL_STATE(2496)] = 48540, + [SMALL_STATE(2497)] = 48549, + [SMALL_STATE(2498)] = 48558, + [SMALL_STATE(2499)] = 48567, + [SMALL_STATE(2500)] = 48576, + [SMALL_STATE(2501)] = 48585, + [SMALL_STATE(2502)] = 48594, + [SMALL_STATE(2503)] = 48603, + [SMALL_STATE(2504)] = 48612, + [SMALL_STATE(2505)] = 48621, + [SMALL_STATE(2506)] = 48630, + [SMALL_STATE(2507)] = 48639, + [SMALL_STATE(2508)] = 48648, + [SMALL_STATE(2509)] = 48657, + [SMALL_STATE(2510)] = 48666, + [SMALL_STATE(2511)] = 48675, + [SMALL_STATE(2512)] = 48684, + [SMALL_STATE(2513)] = 48693, + [SMALL_STATE(2514)] = 48702, + [SMALL_STATE(2515)] = 48711, + [SMALL_STATE(2516)] = 48720, + [SMALL_STATE(2517)] = 48729, + [SMALL_STATE(2518)] = 48738, + [SMALL_STATE(2519)] = 48747, + [SMALL_STATE(2520)] = 48756, + [SMALL_STATE(2521)] = 48765, + [SMALL_STATE(2522)] = 48774, + [SMALL_STATE(2523)] = 48783, + [SMALL_STATE(2524)] = 48792, + [SMALL_STATE(2525)] = 48801, + [SMALL_STATE(2526)] = 48810, + [SMALL_STATE(2527)] = 48819, + [SMALL_STATE(2528)] = 48828, + [SMALL_STATE(2529)] = 48837, + [SMALL_STATE(2530)] = 48846, + [SMALL_STATE(2531)] = 48855, + [SMALL_STATE(2532)] = 48864, + [SMALL_STATE(2533)] = 48873, + [SMALL_STATE(2534)] = 48882, + [SMALL_STATE(2535)] = 48891, + [SMALL_STATE(2536)] = 48900, + [SMALL_STATE(2537)] = 48909, + [SMALL_STATE(2538)] = 48918, + [SMALL_STATE(2539)] = 48927, + [SMALL_STATE(2540)] = 48936, + [SMALL_STATE(2541)] = 48945, + [SMALL_STATE(2542)] = 48954, + [SMALL_STATE(2543)] = 48963, + [SMALL_STATE(2544)] = 48972, + [SMALL_STATE(2545)] = 48981, + [SMALL_STATE(2546)] = 48990, + [SMALL_STATE(2547)] = 48999, + [SMALL_STATE(2548)] = 49008, + [SMALL_STATE(2549)] = 49017, + [SMALL_STATE(2550)] = 49026, + [SMALL_STATE(2551)] = 49035, + [SMALL_STATE(2552)] = 49044, + [SMALL_STATE(2553)] = 49053, + [SMALL_STATE(2554)] = 49062, + [SMALL_STATE(2555)] = 49071, + [SMALL_STATE(2556)] = 49080, + [SMALL_STATE(2557)] = 49089, + [SMALL_STATE(2558)] = 49098, + [SMALL_STATE(2559)] = 49107, + [SMALL_STATE(2560)] = 49116, + [SMALL_STATE(2561)] = 49125, + [SMALL_STATE(2562)] = 49134, + [SMALL_STATE(2563)] = 49143, + [SMALL_STATE(2564)] = 49152, + [SMALL_STATE(2565)] = 49161, + [SMALL_STATE(2566)] = 49170, + [SMALL_STATE(2567)] = 49179, + [SMALL_STATE(2568)] = 49188, + [SMALL_STATE(2569)] = 49197, + [SMALL_STATE(2570)] = 49206, + [SMALL_STATE(2571)] = 49215, + [SMALL_STATE(2572)] = 49224, + [SMALL_STATE(2573)] = 49233, + [SMALL_STATE(2574)] = 49242, + [SMALL_STATE(2575)] = 49251, + [SMALL_STATE(2576)] = 49260, + [SMALL_STATE(2577)] = 49269, + [SMALL_STATE(2578)] = 49278, + [SMALL_STATE(2579)] = 49287, + [SMALL_STATE(2580)] = 49296, + [SMALL_STATE(2581)] = 49305, + [SMALL_STATE(2582)] = 49314, + [SMALL_STATE(2583)] = 49323, + [SMALL_STATE(2584)] = 49332, + [SMALL_STATE(2585)] = 49341, + [SMALL_STATE(2586)] = 49350, + [SMALL_STATE(2587)] = 49359, + [SMALL_STATE(2588)] = 49368, + [SMALL_STATE(2589)] = 49377, + [SMALL_STATE(2590)] = 49386, + [SMALL_STATE(2591)] = 49395, + [SMALL_STATE(2592)] = 49404, + [SMALL_STATE(2593)] = 49413, + [SMALL_STATE(2594)] = 49422, + [SMALL_STATE(2595)] = 49431, + [SMALL_STATE(2596)] = 49440, + [SMALL_STATE(2597)] = 49449, + [SMALL_STATE(2598)] = 49458, + [SMALL_STATE(2599)] = 49467, + [SMALL_STATE(2600)] = 49476, + [SMALL_STATE(2601)] = 49485, + [SMALL_STATE(2602)] = 49494, + [SMALL_STATE(2603)] = 49503, + [SMALL_STATE(2604)] = 49512, + [SMALL_STATE(2605)] = 49521, + [SMALL_STATE(2606)] = 49530, + [SMALL_STATE(2607)] = 49539, + [SMALL_STATE(2608)] = 49548, + [SMALL_STATE(2609)] = 49557, + [SMALL_STATE(2610)] = 49566, + [SMALL_STATE(2611)] = 49575, + [SMALL_STATE(2612)] = 49584, + [SMALL_STATE(2613)] = 49593, + [SMALL_STATE(2614)] = 49602, + [SMALL_STATE(2615)] = 49611, + [SMALL_STATE(2616)] = 49620, + [SMALL_STATE(2617)] = 49629, + [SMALL_STATE(2618)] = 49638, + [SMALL_STATE(2619)] = 49647, + [SMALL_STATE(2620)] = 49656, + [SMALL_STATE(2621)] = 49665, + [SMALL_STATE(2622)] = 49674, + [SMALL_STATE(2623)] = 49683, + [SMALL_STATE(2624)] = 49692, + [SMALL_STATE(2625)] = 49701, + [SMALL_STATE(2626)] = 49710, + [SMALL_STATE(2627)] = 49719, + [SMALL_STATE(2628)] = 49728, + [SMALL_STATE(2629)] = 49737, + [SMALL_STATE(2630)] = 49746, + [SMALL_STATE(2631)] = 49755, + [SMALL_STATE(2632)] = 49764, + [SMALL_STATE(2633)] = 49773, + [SMALL_STATE(2634)] = 49782, + [SMALL_STATE(2635)] = 49791, + [SMALL_STATE(2636)] = 49800, + [SMALL_STATE(2637)] = 49809, + [SMALL_STATE(2638)] = 49818, + [SMALL_STATE(2639)] = 49827, + [SMALL_STATE(2640)] = 49836, + [SMALL_STATE(2641)] = 49845, + [SMALL_STATE(2642)] = 49854, + [SMALL_STATE(2643)] = 49863, + [SMALL_STATE(2644)] = 49872, + [SMALL_STATE(2645)] = 49881, + [SMALL_STATE(2646)] = 49890, + [SMALL_STATE(2647)] = 49899, + [SMALL_STATE(2648)] = 49908, + [SMALL_STATE(2649)] = 49917, + [SMALL_STATE(2650)] = 49926, + [SMALL_STATE(2651)] = 49935, + [SMALL_STATE(2652)] = 49944, + [SMALL_STATE(2653)] = 49953, + [SMALL_STATE(2654)] = 49962, + [SMALL_STATE(2655)] = 49971, + [SMALL_STATE(2656)] = 49980, + [SMALL_STATE(2657)] = 49989, + [SMALL_STATE(2658)] = 49998, + [SMALL_STATE(2659)] = 50007, + [SMALL_STATE(2660)] = 50016, + [SMALL_STATE(2661)] = 50025, + [SMALL_STATE(2662)] = 50034, + [SMALL_STATE(2663)] = 50043, + [SMALL_STATE(2664)] = 50052, + [SMALL_STATE(2665)] = 50061, + [SMALL_STATE(2666)] = 50070, + [SMALL_STATE(2667)] = 50079, + [SMALL_STATE(2668)] = 50088, + [SMALL_STATE(2669)] = 50097, + [SMALL_STATE(2670)] = 50106, + [SMALL_STATE(2671)] = 50115, + [SMALL_STATE(2672)] = 50124, + [SMALL_STATE(2673)] = 50133, + [SMALL_STATE(2674)] = 50142, + [SMALL_STATE(2675)] = 50151, + [SMALL_STATE(2676)] = 50160, + [SMALL_STATE(2677)] = 50169, + [SMALL_STATE(2678)] = 50178, + [SMALL_STATE(2679)] = 50187, + [SMALL_STATE(2680)] = 50196, + [SMALL_STATE(2681)] = 50205, + [SMALL_STATE(2682)] = 50214, + [SMALL_STATE(2683)] = 50223, + [SMALL_STATE(2684)] = 50232, + [SMALL_STATE(2685)] = 50241, + [SMALL_STATE(2686)] = 50250, + [SMALL_STATE(2687)] = 50259, + [SMALL_STATE(2688)] = 50268, + [SMALL_STATE(2689)] = 50277, + [SMALL_STATE(2690)] = 50286, + [SMALL_STATE(2691)] = 50295, + [SMALL_STATE(2692)] = 50304, + [SMALL_STATE(2693)] = 50313, + [SMALL_STATE(2694)] = 50322, + [SMALL_STATE(2695)] = 50331, + [SMALL_STATE(2696)] = 50340, + [SMALL_STATE(2697)] = 50349, + [SMALL_STATE(2698)] = 50358, + [SMALL_STATE(2699)] = 50367, + [SMALL_STATE(2700)] = 50376, + [SMALL_STATE(2701)] = 50385, + [SMALL_STATE(2702)] = 50394, + [SMALL_STATE(2703)] = 50403, + [SMALL_STATE(2704)] = 50412, + [SMALL_STATE(2705)] = 50421, + [SMALL_STATE(2706)] = 50430, + [SMALL_STATE(2707)] = 50439, + [SMALL_STATE(2708)] = 50448, + [SMALL_STATE(2709)] = 50457, + [SMALL_STATE(2710)] = 50466, + [SMALL_STATE(2711)] = 50475, + [SMALL_STATE(2712)] = 50484, + [SMALL_STATE(2713)] = 50493, + [SMALL_STATE(2714)] = 50502, + [SMALL_STATE(2715)] = 50511, + [SMALL_STATE(2716)] = 50520, + [SMALL_STATE(2717)] = 50529, + [SMALL_STATE(2718)] = 50538, + [SMALL_STATE(2719)] = 50547, + [SMALL_STATE(2720)] = 50556, + [SMALL_STATE(2721)] = 50565, + [SMALL_STATE(2722)] = 50574, + [SMALL_STATE(2723)] = 50583, + [SMALL_STATE(2724)] = 50592, + [SMALL_STATE(2725)] = 50601, + [SMALL_STATE(2726)] = 50610, + [SMALL_STATE(2727)] = 50619, + [SMALL_STATE(2728)] = 50628, + [SMALL_STATE(2729)] = 50637, + [SMALL_STATE(2730)] = 50646, + [SMALL_STATE(2731)] = 50655, + [SMALL_STATE(2732)] = 50664, + [SMALL_STATE(2733)] = 50673, + [SMALL_STATE(2734)] = 50682, + [SMALL_STATE(2735)] = 50691, + [SMALL_STATE(2736)] = 50700, + [SMALL_STATE(2737)] = 50709, + [SMALL_STATE(2738)] = 50718, + [SMALL_STATE(2739)] = 50727, + [SMALL_STATE(2740)] = 50736, + [SMALL_STATE(2741)] = 50745, + [SMALL_STATE(2742)] = 50754, + [SMALL_STATE(2743)] = 50763, + [SMALL_STATE(2744)] = 50772, + [SMALL_STATE(2745)] = 50781, + [SMALL_STATE(2746)] = 50790, + [SMALL_STATE(2747)] = 50799, + [SMALL_STATE(2748)] = 50808, + [SMALL_STATE(2749)] = 50817, + [SMALL_STATE(2750)] = 50826, + [SMALL_STATE(2751)] = 50835, + [SMALL_STATE(2752)] = 50844, + [SMALL_STATE(2753)] = 50853, + [SMALL_STATE(2754)] = 50862, + [SMALL_STATE(2755)] = 50871, + [SMALL_STATE(2756)] = 50880, + [SMALL_STATE(2757)] = 50889, + [SMALL_STATE(2758)] = 50898, + [SMALL_STATE(2759)] = 50907, + [SMALL_STATE(2760)] = 50916, + [SMALL_STATE(2761)] = 50925, + [SMALL_STATE(2762)] = 50934, + [SMALL_STATE(2763)] = 50943, + [SMALL_STATE(2764)] = 50952, + [SMALL_STATE(2765)] = 50961, + [SMALL_STATE(2766)] = 50970, + [SMALL_STATE(2767)] = 50979, + [SMALL_STATE(2768)] = 50988, + [SMALL_STATE(2769)] = 50997, + [SMALL_STATE(2770)] = 51006, + [SMALL_STATE(2771)] = 51015, + [SMALL_STATE(2772)] = 51024, + [SMALL_STATE(2773)] = 51033, + [SMALL_STATE(2774)] = 51042, + [SMALL_STATE(2775)] = 51051, + [SMALL_STATE(2776)] = 51060, + [SMALL_STATE(2777)] = 51069, + [SMALL_STATE(2778)] = 51078, + [SMALL_STATE(2779)] = 51087, + [SMALL_STATE(2780)] = 51096, + [SMALL_STATE(2781)] = 51105, + [SMALL_STATE(2782)] = 51114, + [SMALL_STATE(2783)] = 51123, + [SMALL_STATE(2784)] = 51132, + [SMALL_STATE(2785)] = 51141, + [SMALL_STATE(2786)] = 51150, + [SMALL_STATE(2787)] = 51159, + [SMALL_STATE(2788)] = 51168, + [SMALL_STATE(2789)] = 51177, + [SMALL_STATE(2790)] = 51186, + [SMALL_STATE(2791)] = 51195, + [SMALL_STATE(2792)] = 51204, + [SMALL_STATE(2793)] = 51213, + [SMALL_STATE(2794)] = 51222, + [SMALL_STATE(2795)] = 51231, + [SMALL_STATE(2796)] = 51240, + [SMALL_STATE(2797)] = 51249, + [SMALL_STATE(2798)] = 51258, + [SMALL_STATE(2799)] = 51267, + [SMALL_STATE(2800)] = 51276, + [SMALL_STATE(2801)] = 51285, + [SMALL_STATE(2802)] = 51294, + [SMALL_STATE(2803)] = 51303, + [SMALL_STATE(2804)] = 51312, + [SMALL_STATE(2805)] = 51321, + [SMALL_STATE(2806)] = 51330, + [SMALL_STATE(2807)] = 51339, + [SMALL_STATE(2808)] = 51348, + [SMALL_STATE(2809)] = 51357, + [SMALL_STATE(2810)] = 51366, + [SMALL_STATE(2811)] = 51375, + [SMALL_STATE(2812)] = 51384, + [SMALL_STATE(2813)] = 51393, + [SMALL_STATE(2814)] = 51402, + [SMALL_STATE(2815)] = 51411, + [SMALL_STATE(2816)] = 51420, + [SMALL_STATE(2817)] = 51429, + [SMALL_STATE(2818)] = 51438, + [SMALL_STATE(2819)] = 51447, + [SMALL_STATE(2820)] = 51456, + [SMALL_STATE(2821)] = 51465, + [SMALL_STATE(2822)] = 51474, + [SMALL_STATE(2823)] = 51483, + [SMALL_STATE(2824)] = 51492, + [SMALL_STATE(2825)] = 51501, + [SMALL_STATE(2826)] = 51510, + [SMALL_STATE(2827)] = 51519, + [SMALL_STATE(2828)] = 51528, + [SMALL_STATE(2829)] = 51537, + [SMALL_STATE(2830)] = 51546, + [SMALL_STATE(2831)] = 51555, + [SMALL_STATE(2832)] = 51564, + [SMALL_STATE(2833)] = 51573, + [SMALL_STATE(2834)] = 51582, + [SMALL_STATE(2835)] = 51591, + [SMALL_STATE(2836)] = 51600, + [SMALL_STATE(2837)] = 51609, + [SMALL_STATE(2838)] = 51618, + [SMALL_STATE(2839)] = 51627, + [SMALL_STATE(2840)] = 51636, + [SMALL_STATE(2841)] = 51645, + [SMALL_STATE(2842)] = 51654, + [SMALL_STATE(2843)] = 51663, + [SMALL_STATE(2844)] = 51672, + [SMALL_STATE(2845)] = 51681, + [SMALL_STATE(2846)] = 51690, + [SMALL_STATE(2847)] = 51699, + [SMALL_STATE(2848)] = 51708, + [SMALL_STATE(2849)] = 51717, + [SMALL_STATE(2850)] = 51726, + [SMALL_STATE(2851)] = 51735, + [SMALL_STATE(2852)] = 51744, + [SMALL_STATE(2853)] = 51753, + [SMALL_STATE(2854)] = 51762, + [SMALL_STATE(2855)] = 51771, + [SMALL_STATE(2856)] = 51780, + [SMALL_STATE(2857)] = 51789, + [SMALL_STATE(2858)] = 51798, + [SMALL_STATE(2859)] = 51807, + [SMALL_STATE(2860)] = 51816, + [SMALL_STATE(2861)] = 51825, + [SMALL_STATE(2862)] = 51834, + [SMALL_STATE(2863)] = 51843, + [SMALL_STATE(2864)] = 51852, + [SMALL_STATE(2865)] = 51861, + [SMALL_STATE(2866)] = 51870, + [SMALL_STATE(2867)] = 51879, + [SMALL_STATE(2868)] = 51888, + [SMALL_STATE(2869)] = 51897, + [SMALL_STATE(2870)] = 51906, + [SMALL_STATE(2871)] = 51915, + [SMALL_STATE(2872)] = 51924, + [SMALL_STATE(2873)] = 51933, + [SMALL_STATE(2874)] = 51942, + [SMALL_STATE(2875)] = 51951, + [SMALL_STATE(2876)] = 51960, + [SMALL_STATE(2877)] = 51969, + [SMALL_STATE(2878)] = 51978, + [SMALL_STATE(2879)] = 51987, + [SMALL_STATE(2880)] = 51996, + [SMALL_STATE(2881)] = 52005, + [SMALL_STATE(2882)] = 52014, + [SMALL_STATE(2883)] = 52023, + [SMALL_STATE(2884)] = 52032, + [SMALL_STATE(2885)] = 52041, + [SMALL_STATE(2886)] = 52050, + [SMALL_STATE(2887)] = 52059, + [SMALL_STATE(2888)] = 52068, + [SMALL_STATE(2889)] = 52077, + [SMALL_STATE(2890)] = 52086, + [SMALL_STATE(2891)] = 52095, + [SMALL_STATE(2892)] = 52104, + [SMALL_STATE(2893)] = 52113, + [SMALL_STATE(2894)] = 52122, + [SMALL_STATE(2895)] = 52131, + [SMALL_STATE(2896)] = 52140, + [SMALL_STATE(2897)] = 52149, + [SMALL_STATE(2898)] = 52158, + [SMALL_STATE(2899)] = 52167, + [SMALL_STATE(2900)] = 52176, + [SMALL_STATE(2901)] = 52185, + [SMALL_STATE(2902)] = 52194, + [SMALL_STATE(2903)] = 52203, + [SMALL_STATE(2904)] = 52212, + [SMALL_STATE(2905)] = 52221, + [SMALL_STATE(2906)] = 52230, + [SMALL_STATE(2907)] = 52239, + [SMALL_STATE(2908)] = 52248, + [SMALL_STATE(2909)] = 52257, + [SMALL_STATE(2910)] = 52266, + [SMALL_STATE(2911)] = 52275, + [SMALL_STATE(2912)] = 52284, + [SMALL_STATE(2913)] = 52293, + [SMALL_STATE(2914)] = 52302, + [SMALL_STATE(2915)] = 52311, + [SMALL_STATE(2916)] = 52320, + [SMALL_STATE(2917)] = 52329, + [SMALL_STATE(2918)] = 52338, + [SMALL_STATE(2919)] = 52347, + [SMALL_STATE(2920)] = 52356, + [SMALL_STATE(2921)] = 52365, + [SMALL_STATE(2922)] = 52374, + [SMALL_STATE(2923)] = 52383, + [SMALL_STATE(2924)] = 52392, + [SMALL_STATE(2925)] = 52401, + [SMALL_STATE(2926)] = 52410, + [SMALL_STATE(2927)] = 52419, + [SMALL_STATE(2928)] = 52428, + [SMALL_STATE(2929)] = 52437, + [SMALL_STATE(2930)] = 52446, + [SMALL_STATE(2931)] = 52455, + [SMALL_STATE(2932)] = 52464, + [SMALL_STATE(2933)] = 52473, + [SMALL_STATE(2934)] = 52482, + [SMALL_STATE(2935)] = 52491, + [SMALL_STATE(2936)] = 52500, + [SMALL_STATE(2937)] = 52509, + [SMALL_STATE(2938)] = 52518, + [SMALL_STATE(2939)] = 52527, + [SMALL_STATE(2940)] = 52536, + [SMALL_STATE(2941)] = 52545, + [SMALL_STATE(2942)] = 52554, + [SMALL_STATE(2943)] = 52563, + [SMALL_STATE(2944)] = 52572, + [SMALL_STATE(2945)] = 52581, + [SMALL_STATE(2946)] = 52590, + [SMALL_STATE(2947)] = 52599, + [SMALL_STATE(2948)] = 52608, + [SMALL_STATE(2949)] = 52617, + [SMALL_STATE(2950)] = 52626, + [SMALL_STATE(2951)] = 52635, + [SMALL_STATE(2952)] = 52644, + [SMALL_STATE(2953)] = 52653, + [SMALL_STATE(2954)] = 52662, + [SMALL_STATE(2955)] = 52671, + [SMALL_STATE(2956)] = 52680, + [SMALL_STATE(2957)] = 52689, + [SMALL_STATE(2958)] = 52698, + [SMALL_STATE(2959)] = 52707, + [SMALL_STATE(2960)] = 52716, + [SMALL_STATE(2961)] = 52725, + [SMALL_STATE(2962)] = 52734, + [SMALL_STATE(2963)] = 52743, + [SMALL_STATE(2964)] = 52752, + [SMALL_STATE(2965)] = 52761, + [SMALL_STATE(2966)] = 52770, + [SMALL_STATE(2967)] = 52779, + [SMALL_STATE(2968)] = 52788, + [SMALL_STATE(2969)] = 52797, + [SMALL_STATE(2970)] = 52806, + [SMALL_STATE(2971)] = 52815, + [SMALL_STATE(2972)] = 52824, + [SMALL_STATE(2973)] = 52833, + [SMALL_STATE(2974)] = 52842, + [SMALL_STATE(2975)] = 52851, + [SMALL_STATE(2976)] = 52860, + [SMALL_STATE(2977)] = 52869, + [SMALL_STATE(2978)] = 52878, + [SMALL_STATE(2979)] = 52887, + [SMALL_STATE(2980)] = 52896, + [SMALL_STATE(2981)] = 52905, + [SMALL_STATE(2982)] = 52914, + [SMALL_STATE(2983)] = 52923, + [SMALL_STATE(2984)] = 52932, + [SMALL_STATE(2985)] = 52941, + [SMALL_STATE(2986)] = 52950, + [SMALL_STATE(2987)] = 52959, + [SMALL_STATE(2988)] = 52968, + [SMALL_STATE(2989)] = 52977, + [SMALL_STATE(2990)] = 52986, + [SMALL_STATE(2991)] = 52995, + [SMALL_STATE(2992)] = 53004, + [SMALL_STATE(2993)] = 53013, + [SMALL_STATE(2994)] = 53022, + [SMALL_STATE(2995)] = 53031, + [SMALL_STATE(2996)] = 53040, + [SMALL_STATE(2997)] = 53049, + [SMALL_STATE(2998)] = 53058, + [SMALL_STATE(2999)] = 53067, + [SMALL_STATE(3000)] = 53076, + [SMALL_STATE(3001)] = 53085, + [SMALL_STATE(3002)] = 53094, + [SMALL_STATE(3003)] = 53103, + [SMALL_STATE(3004)] = 53112, + [SMALL_STATE(3005)] = 53121, + [SMALL_STATE(3006)] = 53130, + [SMALL_STATE(3007)] = 53139, + [SMALL_STATE(3008)] = 53148, + [SMALL_STATE(3009)] = 53157, + [SMALL_STATE(3010)] = 53166, + [SMALL_STATE(3011)] = 53175, + [SMALL_STATE(3012)] = 53184, + [SMALL_STATE(3013)] = 53193, + [SMALL_STATE(3014)] = 53202, + [SMALL_STATE(3015)] = 53211, + [SMALL_STATE(3016)] = 53220, + [SMALL_STATE(3017)] = 53229, + [SMALL_STATE(3018)] = 53238, + [SMALL_STATE(3019)] = 53247, + [SMALL_STATE(3020)] = 53256, + [SMALL_STATE(3021)] = 53265, + [SMALL_STATE(3022)] = 53274, + [SMALL_STATE(3023)] = 53283, + [SMALL_STATE(3024)] = 53292, + [SMALL_STATE(3025)] = 53301, + [SMALL_STATE(3026)] = 53310, + [SMALL_STATE(3027)] = 53319, + [SMALL_STATE(3028)] = 53328, + [SMALL_STATE(3029)] = 53337, + [SMALL_STATE(3030)] = 53346, + [SMALL_STATE(3031)] = 53355, + [SMALL_STATE(3032)] = 53364, + [SMALL_STATE(3033)] = 53373, + [SMALL_STATE(3034)] = 53382, + [SMALL_STATE(3035)] = 53391, + [SMALL_STATE(3036)] = 53400, + [SMALL_STATE(3037)] = 53409, + [SMALL_STATE(3038)] = 53418, + [SMALL_STATE(3039)] = 53427, + [SMALL_STATE(3040)] = 53436, + [SMALL_STATE(3041)] = 53445, + [SMALL_STATE(3042)] = 53454, + [SMALL_STATE(3043)] = 53463, + [SMALL_STATE(3044)] = 53472, + [SMALL_STATE(3045)] = 53481, + [SMALL_STATE(3046)] = 53490, + [SMALL_STATE(3047)] = 53499, + [SMALL_STATE(3048)] = 53508, + [SMALL_STATE(3049)] = 53517, + [SMALL_STATE(3050)] = 53526, + [SMALL_STATE(3051)] = 53535, + [SMALL_STATE(3052)] = 53544, + [SMALL_STATE(3053)] = 53553, + [SMALL_STATE(3054)] = 53562, + [SMALL_STATE(3055)] = 53571, + [SMALL_STATE(3056)] = 53580, + [SMALL_STATE(3057)] = 53589, + [SMALL_STATE(3058)] = 53598, + [SMALL_STATE(3059)] = 53607, + [SMALL_STATE(3060)] = 53616, + [SMALL_STATE(3061)] = 53625, + [SMALL_STATE(3062)] = 53634, + [SMALL_STATE(3063)] = 53643, + [SMALL_STATE(3064)] = 53652, + [SMALL_STATE(3065)] = 53661, + [SMALL_STATE(3066)] = 53670, + [SMALL_STATE(3067)] = 53679, + [SMALL_STATE(3068)] = 53688, + [SMALL_STATE(3069)] = 53697, + [SMALL_STATE(3070)] = 53706, + [SMALL_STATE(3071)] = 53715, + [SMALL_STATE(3072)] = 53724, + [SMALL_STATE(3073)] = 53733, + [SMALL_STATE(3074)] = 53742, + [SMALL_STATE(3075)] = 53751, + [SMALL_STATE(3076)] = 53760, + [SMALL_STATE(3077)] = 53769, + [SMALL_STATE(3078)] = 53778, + [SMALL_STATE(3079)] = 53787, + [SMALL_STATE(3080)] = 53796, + [SMALL_STATE(3081)] = 53805, + [SMALL_STATE(3082)] = 53814, + [SMALL_STATE(3083)] = 53823, + [SMALL_STATE(3084)] = 53832, + [SMALL_STATE(3085)] = 53841, + [SMALL_STATE(3086)] = 53850, + [SMALL_STATE(3087)] = 53859, + [SMALL_STATE(3088)] = 53868, + [SMALL_STATE(3089)] = 53877, + [SMALL_STATE(3090)] = 53886, + [SMALL_STATE(3091)] = 53895, + [SMALL_STATE(3092)] = 53904, + [SMALL_STATE(3093)] = 53913, + [SMALL_STATE(3094)] = 53922, + [SMALL_STATE(3095)] = 53931, + [SMALL_STATE(3096)] = 53940, + [SMALL_STATE(3097)] = 53949, + [SMALL_STATE(3098)] = 53958, + [SMALL_STATE(3099)] = 53967, + [SMALL_STATE(3100)] = 53976, + [SMALL_STATE(3101)] = 53985, + [SMALL_STATE(3102)] = 53994, + [SMALL_STATE(3103)] = 54003, + [SMALL_STATE(3104)] = 54012, + [SMALL_STATE(3105)] = 54021, + [SMALL_STATE(3106)] = 54030, + [SMALL_STATE(3107)] = 54039, + [SMALL_STATE(3108)] = 54048, + [SMALL_STATE(3109)] = 54057, + [SMALL_STATE(3110)] = 54066, + [SMALL_STATE(3111)] = 54075, + [SMALL_STATE(3112)] = 54084, + [SMALL_STATE(3113)] = 54093, + [SMALL_STATE(3114)] = 54102, + [SMALL_STATE(3115)] = 54111, + [SMALL_STATE(3116)] = 54120, + [SMALL_STATE(3117)] = 54129, + [SMALL_STATE(3118)] = 54138, + [SMALL_STATE(3119)] = 54147, + [SMALL_STATE(3120)] = 54156, + [SMALL_STATE(3121)] = 54165, + [SMALL_STATE(3122)] = 54174, + [SMALL_STATE(3123)] = 54183, + [SMALL_STATE(3124)] = 54192, + [SMALL_STATE(3125)] = 54201, + [SMALL_STATE(3126)] = 54210, + [SMALL_STATE(3127)] = 54219, + [SMALL_STATE(3128)] = 54228, + [SMALL_STATE(3129)] = 54237, + [SMALL_STATE(3130)] = 54246, + [SMALL_STATE(3131)] = 54255, + [SMALL_STATE(3132)] = 54264, + [SMALL_STATE(3133)] = 54273, + [SMALL_STATE(3134)] = 54282, + [SMALL_STATE(3135)] = 54291, + [SMALL_STATE(3136)] = 54300, + [SMALL_STATE(3137)] = 54309, + [SMALL_STATE(3138)] = 54318, + [SMALL_STATE(3139)] = 54327, + [SMALL_STATE(3140)] = 54336, + [SMALL_STATE(3141)] = 54345, + [SMALL_STATE(3142)] = 54354, + [SMALL_STATE(3143)] = 54363, + [SMALL_STATE(3144)] = 54372, + [SMALL_STATE(3145)] = 54381, + [SMALL_STATE(3146)] = 54390, + [SMALL_STATE(3147)] = 54399, + [SMALL_STATE(3148)] = 54408, + [SMALL_STATE(3149)] = 54417, + [SMALL_STATE(3150)] = 54426, + [SMALL_STATE(3151)] = 54435, + [SMALL_STATE(3152)] = 54444, + [SMALL_STATE(3153)] = 54453, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), - [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 0), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), - [109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(460), - [112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3044), - [115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2955), - [118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3045), - [121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2021), - [124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2019), - [127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3150), - [130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), - [132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2408), - [135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2409), - [138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2410), - [141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2618), - [144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(463), - [147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(465), - [150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2053), - [153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3104), - [156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2958), - [159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(512), - [162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2959), - [165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3047), - [168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1993), - [171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1166), - [174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2623), - [177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1996), - [180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(655), - [183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 3, .production_id = 17), - [185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 5, .production_id = 38), - [187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_block, 1), - [189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_block, 1), - [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), - [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), - [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), - [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), - [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), - [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), - [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), - [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), - [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), - [213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(459), - [216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3029), - [219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3147), - [222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3112), - [225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2000), - [228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1972), - [231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3075), - [234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3063), - [237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3062), - [240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3061), - [243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3046), - [246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(467), - [249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(464), - [252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2067), - [255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3016), - [258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3015), - [261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(504), - [264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3006), - [267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3002), - [270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1974), - [273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1176), - [276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2997), - [279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1976), - [282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), - [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), - [286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), - [288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), - [292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), - [294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), - [296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), - [298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), - [300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), - [302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_method_body_repeat1, 2), SHIFT_REPEAT(460), - [307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_method_body_repeat1, 2), SHIFT_REPEAT(2955), - [310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_method_body_repeat1, 2), - [312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_method_body_repeat1, 2), SHIFT_REPEAT(2021), - [315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_method_body_repeat1, 2), SHIFT_REPEAT(2019), - [318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_method_body_repeat1, 2), SHIFT_REPEAT(3150), - [321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_method_body_repeat1, 2), SHIFT_REPEAT(2408), - [324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_method_body_repeat1, 2), SHIFT_REPEAT(2409), - [327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_method_body_repeat1, 2), SHIFT_REPEAT(2410), - [330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_method_body_repeat1, 2), SHIFT_REPEAT(2618), - [333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_method_body_repeat1, 2), SHIFT_REPEAT(463), - [336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_method_body_repeat1, 2), SHIFT_REPEAT(465), - [339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_method_body_repeat1, 2), SHIFT_REPEAT(2053), - [342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_method_body_repeat1, 2), SHIFT_REPEAT(3104), - [345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_method_body_repeat1, 2), SHIFT_REPEAT(2958), - [348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_method_body_repeat1, 2), SHIFT_REPEAT(512), - [351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_method_body_repeat1, 2), SHIFT_REPEAT(2959), - [354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_method_body_repeat1, 2), SHIFT_REPEAT(1993), - [357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_method_body_repeat1, 2), SHIFT_REPEAT(1166), - [360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_method_body_repeat1, 2), SHIFT_REPEAT(2623), - [363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_method_body_repeat1, 2), SHIFT_REPEAT(1996), - [366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_method_body_repeat1, 2), SHIFT_REPEAT(655), - [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), - [373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_body, 1), - [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), - [379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__data_object, 1), - [381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object, 1), - [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), - [385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_structured_data_object_repeat1, 2), - [387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_structured_data_object_repeat1, 2), - [389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_structured_data_object_repeat1, 2), SHIFT_REPEAT(2420), - [392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_structured_data_object, 2, .production_id = 2), - [394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structured_data_object, 2, .production_id = 2), - [396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 12, .production_id = 57), - [398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 12, .production_id = 57), - [400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_chained_structure_declaration, 11, .production_id = 139), - [402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chained_structure_declaration, 11, .production_id = 139), - [404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_symbol_declaration, 4, .production_id = 11), - [406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_symbol_declaration, 4, .production_id = 11), - [408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_catch_statement, 4), - [410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_catch_statement, 4), - [412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_chained_write_statement, 4), - [414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chained_write_statement, 4), - [416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_write_statement, 4), - [418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_write_statement, 4), - [420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_function, 4, .production_id = 12), - [422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_function, 4, .production_id = 12), - [424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raise_exception_statement, 4, .production_id = 13), - [426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_exception_statement, 4, .production_id = 13), - [428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_method, 4, .production_id = 1), - [430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_method, 4, .production_id = 1), - [432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 4), - [434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 4), - [436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), - [438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), - [440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), - [442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_chained_variable_declaration, 5), - [446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chained_variable_declaration, 5), - [448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_chained_field_symbol_declaration, 5), - [450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chained_field_symbol_declaration, 5), - [452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5), - [454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5), - [456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_catch_statement, 5), - [458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_catch_statement, 5), - [460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_chained_write_statement, 5), - [462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chained_write_statement, 5), - [464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_function, 5, .production_id = 18), - [466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_function, 5, .production_id = 18), - [468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_function, 5, .production_id = 19), - [470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_function, 5, .production_id = 19), - [472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_include, 2, .production_id = 1), - [474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_include, 2, .production_id = 1), - [476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raise_exception_statement, 5, .production_id = 20), - [478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_exception_statement, 5, .production_id = 20), - [480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_append_statement, 5, .production_id = 21), - [482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_append_statement, 5, .production_id = 21), - [484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_statement, 5), - [486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_statement, 5), - [488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_report_statement, 3), - [490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_report_statement, 3), - [492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_method, 5, .production_id = 24), - [494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_method, 5, .production_id = 24), - [496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_check_statement, 3), - [498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_check_statement, 3), - [500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_write_statement, 3), - [502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_write_statement, 3), - [504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raise_statement, 3), - [506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 3), - [508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_create_object_statement, 6, .production_id = 25), - [510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_object_statement, 6, .production_id = 25), - [512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_clear_statement, 3), - [514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_clear_statement, 3), - [516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6), - [518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6), - [520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_statement_obsolete, 6, .production_id = 27), - [522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement_obsolete, 6, .production_id = 27), - [524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_read_table_statement, 6), - [526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_read_table_statement, 6), - [528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_catch_statement, 6), - [530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_catch_statement, 6), - [532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_chained_write_statement, 6), - [534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chained_write_statement, 6), - [536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_function, 6, .production_id = 28), - [538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_function, 6, .production_id = 28), - [540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_append_statement_obsolete, 3, .production_id = 3), - [542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_append_statement_obsolete, 3, .production_id = 3), - [544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_method_static, 6, .production_id = 29), - [546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_method_static, 6, .production_id = 29), - [548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_method_instance, 6, .production_id = 30), - [550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_method_instance, 6, .production_id = 30), - [552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_statement, 3), - [554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_statement, 3), - [556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_structured_data_object_repeat1, 2, .production_id = 4), - [558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_structured_data_object_repeat1, 2, .production_id = 4), - [560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_statement_obsolete, 7, .production_id = 27), - [562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement_obsolete, 7, .production_id = 27), - [564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raise_exception_statement, 7, .production_id = 40), - [566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_exception_statement, 7, .production_id = 40), - [568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_method_static, 7, .production_id = 41), - [570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_method_static, 7, .production_id = 41), - [572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_method_instance, 7, .production_id = 42), - [574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_method_instance, 7, .production_id = 42), - [576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_include, 3, .production_id = 6), - [578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_include, 3, .production_id = 6), - [580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 15, .production_id = 57), - [582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 15, .production_id = 57), - [584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 8, .production_id = 57), - [586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 8, .production_id = 57), - [588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_statement_obsolete, 8, .production_id = 27), - [590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement_obsolete, 8, .production_id = 27), - [592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_create_object_statement, 4), - [594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_object_statement, 4), - [596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_chained_field_symbol_declaration, 4), - [598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chained_field_symbol_declaration, 4), - [600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_chained_variable_declaration, 4), - [602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chained_variable_declaration, 4), - [604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 14, .production_id = 57), - [606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 14, .production_id = 57), - [608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 9, .production_id = 57), - [610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 9, .production_id = 57), - [612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, .production_id = 9), - [614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, .production_id = 9), - [616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 11, .production_id = 57), - [618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 11, .production_id = 57), - [620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_statement_obsolete, 11, .production_id = 110), - [622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement_obsolete, 11, .production_id = 110), - [624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 13, .production_id = 57), - [626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 13, .production_id = 57), - [628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 2), - [630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 2), - [632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_chained_structure_declaration, 12, .production_id = 167), - [634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chained_structure_declaration, 12, .production_id = 167), - [636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 10, .production_id = 57), - [638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 10, .production_id = 57), - [640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_statement_obsolete, 10, .production_id = 110), - [642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement_obsolete, 10, .production_id = 110), - [644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_statement_obsolete, 12, .production_id = 110), - [646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement_obsolete, 12, .production_id = 110), - [648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arithmetic_expression, 3), - [650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arithmetic_expression, 3), - [652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_access_static, 3, .production_id = 5), - [654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_access_static, 3, .production_id = 5), - [656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 9, .production_id = 31), - [658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 9, .production_id = 31), - [660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 16, .production_id = 211), - [662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 16, .production_id = 211), - [664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 10, .production_id = 83), - [666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 10, .production_id = 83), - [668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 10, .production_id = 31), - [670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 10, .production_id = 31), - [672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 10, .production_id = 58), - [674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 10, .production_id = 58), - [676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 10, .production_id = 43), - [678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 10, .production_id = 43), - [680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 11, .production_id = 82), - [682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 11, .production_id = 82), - [684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 11, .production_id = 111), - [686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 11, .production_id = 111), - [688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 11, .production_id = 16), - [690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 11, .production_id = 16), - [692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 11, .production_id = 83), - [694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 11, .production_id = 83), - [696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 11, .production_id = 31), - [698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 11, .production_id = 31), - [700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 11, .production_id = 58), - [702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 11, .production_id = 58), - [704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 11, .production_id = 112), - [706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 11, .production_id = 112), - [708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 11, .production_id = 43), - [710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 11, .production_id = 43), - [712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 12, .production_id = 82), - [714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 12, .production_id = 82), - [716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 12, .production_id = 140), - [718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 12, .production_id = 140), - [720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 12, .production_id = 16), - [722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 12, .production_id = 16), - [724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 12, .production_id = 141), - [726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 12, .production_id = 141), - [728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 12, .production_id = 111), - [730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 12, .production_id = 111), - [732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 12, .production_id = 83), - [734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 12, .production_id = 83), - [736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 12, .production_id = 31), - [738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 12, .production_id = 31), - [740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 12, .production_id = 58), - [742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 12, .production_id = 58), - [744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 12, .production_id = 142), - [746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 12, .production_id = 142), - [748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 12, .production_id = 112), - [750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 12, .production_id = 112), - [752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 13, .production_id = 82), - [754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 13, .production_id = 82), - [756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 13, .production_id = 168), - [758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 13, .production_id = 168), - [760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 13, .production_id = 140), - [762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 13, .production_id = 140), - [764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 13, .production_id = 16), - [766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 13, .production_id = 16), - [768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 13, .production_id = 141), - [770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 13, .production_id = 141), - [772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 13, .production_id = 111), - [774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 13, .production_id = 111), - [776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 13, .production_id = 169), - [778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 13, .production_id = 169), - [780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 13, .production_id = 83), - [782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 13, .production_id = 83), - [784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 13, .production_id = 170), - [786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 13, .production_id = 170), - [788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 13, .production_id = 58), - [790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 13, .production_id = 58), - [792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 13, .production_id = 142), - [794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 13, .production_id = 142), - [796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 13, .production_id = 112), - [798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 13, .production_id = 112), - [800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 14, .production_id = 190), - [802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 14, .production_id = 190), - [804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 14, .production_id = 82), - [806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 14, .production_id = 82), - [808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 14, .production_id = 168), - [810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 14, .production_id = 168), - [812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 14, .production_id = 140), - [814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 14, .production_id = 140), - [816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 14, .production_id = 191), - [818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 14, .production_id = 191), - [820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 14, .production_id = 16), - [822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 14, .production_id = 16), - [824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 14, .production_id = 141), - [826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 14, .production_id = 141), - [828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 14, .production_id = 111), - [830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 14, .production_id = 111), - [832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 14, .production_id = 169), - [834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 14, .production_id = 169), - [836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 14, .production_id = 58), - [838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 14, .production_id = 58), - [840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 14, .production_id = 192), - [842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 14, .production_id = 192), - [844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_publication, 5, .production_id = 16), - [846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_publication, 5, .production_id = 16), - [848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 14, .production_id = 170), - [850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 14, .production_id = 170), - [852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 14, .production_id = 142), - [854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 14, .production_id = 142), - [856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 14, .production_id = 112), - [858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 14, .production_id = 112), - [860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 10, .production_id = 82), - [862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 10, .production_id = 82), - [864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 15, .production_id = 82), - [866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 15, .production_id = 82), - [868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 15, .production_id = 211), - [870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 15, .production_id = 211), - [872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 15, .production_id = 190), - [874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 15, .production_id = 190), - [876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 15, .production_id = 168), - [878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 15, .production_id = 168), - [880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 15, .production_id = 140), - [882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 15, .production_id = 140), - [884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 15, .production_id = 212), - [886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 15, .production_id = 212), - [888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 9, .production_id = 43), - [890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 9, .production_id = 43), - [892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 15, .production_id = 191), - [894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 15, .production_id = 191), - [896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 15, .production_id = 16), - [898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 15, .production_id = 16), - [900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 9, .production_id = 58), - [902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 9, .production_id = 58), - [904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 15, .production_id = 141), - [906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 15, .production_id = 141), - [908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 15, .production_id = 169), - [910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 15, .production_id = 169), - [912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 15, .production_id = 58), - [914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 15, .production_id = 58), - [916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 15, .production_id = 192), - [918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 15, .production_id = 192), - [920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 15, .production_id = 170), - [922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 15, .production_id = 170), - [924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 15, .production_id = 213), - [926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 15, .production_id = 213), - [928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 15, .production_id = 142), - [930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 15, .production_id = 142), - [932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 9, .production_id = 16), - [934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 9, .production_id = 16), - [936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 16, .production_id = 82), - [938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 16, .production_id = 82), - [940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 10, .production_id = 16), - [942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 10, .production_id = 16), - [944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 43), - [946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 43), - [948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 16, .production_id = 190), - [950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 16, .production_id = 190), - [952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 16, .production_id = 228), - [954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 16, .production_id = 228), - [956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 16, .production_id = 168), - [958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 16, .production_id = 168), - [960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 16, .production_id = 212), - [962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 16, .production_id = 212), - [964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 16, .production_id = 191), - [966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 16, .production_id = 191), - [968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 16, .production_id = 229), - [970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 16, .production_id = 229), - [972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 16, .production_id = 16), - [974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 16, .production_id = 16), - [976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 16, .production_id = 169), - [978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 16, .production_id = 169), - [980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 16, .production_id = 230), - [982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 16, .production_id = 230), - [984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 16, .production_id = 58), - [986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 16, .production_id = 58), - [988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 16, .production_id = 192), - [990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 16, .production_id = 192), - [992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 16, .production_id = 170), - [994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 16, .production_id = 170), - [996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 16, .production_id = 213), - [998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 16, .production_id = 213), - [1000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 17, .production_id = 237), - [1002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 17, .production_id = 237), - [1004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 17, .production_id = 82), - [1006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 17, .production_id = 82), - [1008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 16), - [1010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 16), - [1012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 7, .production_id = 16), - [1014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 7, .production_id = 16), - [1016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_implementation, 7, .production_id = 16), - [1018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_implementation, 7, .production_id = 16), - [1020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 17, .production_id = 211), - [1022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 17, .production_id = 211), - [1024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 17, .production_id = 190), - [1026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 17, .production_id = 190), - [1028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 17, .production_id = 228), - [1030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 17, .production_id = 228), - [1032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 17, .production_id = 212), - [1034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 17, .production_id = 212), - [1036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 17, .production_id = 191), - [1038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 17, .production_id = 191), - [1040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_local_friend_publication, 7, .production_id = 31), - [1042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_local_friend_publication, 7, .production_id = 31), - [1044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 17, .production_id = 229), - [1046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 17, .production_id = 229), - [1048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 17, .production_id = 238), - [1050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 17, .production_id = 238), - [1052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 17, .production_id = 230), - [1054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 17, .production_id = 230), - [1056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 17, .production_id = 58), - [1058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 17, .production_id = 58), - [1060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 17, .production_id = 192), - [1062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 17, .production_id = 192), - [1064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 17, .production_id = 213), - [1066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 17, .production_id = 213), - [1068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 16), - [1070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 16), - [1072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 18, .production_id = 240), - [1074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 18, .production_id = 240), - [1076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 18, .production_id = 237), - [1078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 18, .production_id = 237), - [1080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 18, .production_id = 82), - [1082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 18, .production_id = 82), - [1084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 18, .production_id = 211), - [1086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 18, .production_id = 211), - [1088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 18, .production_id = 228), - [1090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 18, .production_id = 228), - [1092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 18, .production_id = 212), - [1094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 18, .production_id = 212), - [1096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 18, .production_id = 229), - [1098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 18, .production_id = 229), - [1100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 18, .production_id = 238), - [1102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 18, .production_id = 238), - [1104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 18, .production_id = 230), - [1106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 18, .production_id = 230), - [1108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_implementation, 6, .production_id = 16), - [1110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_implementation, 6, .production_id = 16), - [1112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 18, .production_id = 241), - [1114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 18, .production_id = 241), - [1116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 18, .production_id = 58), - [1118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 18, .production_id = 58), - [1120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 18, .production_id = 213), - [1122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 18, .production_id = 213), - [1124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 19, .production_id = 240), - [1126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 19, .production_id = 240), - [1128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 19, .production_id = 237), - [1130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 19, .production_id = 237), - [1132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 19, .production_id = 242), - [1134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 19, .production_id = 242), - [1136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, .production_id = 16), - [1138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, .production_id = 16), - [1140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 19, .production_id = 82), - [1142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 19, .production_id = 82), - [1144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_implementation, 6, .production_id = 16), - [1146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_implementation, 6, .production_id = 16), - [1148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 19, .production_id = 228), - [1150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 19, .production_id = 228), - [1152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 19, .production_id = 229), - [1154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 19, .production_id = 229), - [1156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 19, .production_id = 238), - [1158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 19, .production_id = 238), - [1160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 19, .production_id = 230), - [1162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 19, .production_id = 230), - [1164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 19, .production_id = 241), - [1166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 19, .production_id = 241), - [1168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 20, .production_id = 240), - [1170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 20, .production_id = 240), - [1172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 20, .production_id = 237), - [1174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 20, .production_id = 237), - [1176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_publication, 6, .production_id = 16), - [1178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_publication, 6, .production_id = 16), - [1180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 16), - [1182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 16), - [1184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 20, .production_id = 242), - [1186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 20, .production_id = 242), - [1188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), - [1190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 20, .production_id = 238), - [1192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 20, .production_id = 238), - [1194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 20, .production_id = 241), - [1196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 20, .production_id = 241), - [1198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 21, .production_id = 240), - [1200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 21, .production_id = 240), - [1202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 21, .production_id = 242), - [1204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 21, .production_id = 242), - [1206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 21, .production_id = 241), - [1208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 21, .production_id = 241), - [1210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 22, .production_id = 242), - [1212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 22, .production_id = 242), - [1214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_implementation, 5, .production_id = 16), - [1216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_implementation, 5, .production_id = 16), - [1218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 16), - [1220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 16), - [1222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [1224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [1226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [1228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), - [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [1232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [1234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [1238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [1240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), - [1242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [1246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), - [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), - [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), - [1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [1266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2896), - [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), - [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), - [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), - [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [1284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), - [1286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), - [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), - [1292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_section, 3), - [1296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), - [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), - [1324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_public_section_repeat1, 2), - [1326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_public_section_repeat1, 2), SHIFT_REPEAT(1981), - [1329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_public_section_repeat1, 2), SHIFT_REPEAT(1983), - [1332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_public_section_repeat1, 2), SHIFT_REPEAT(2199), - [1335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_public_section_repeat1, 2), SHIFT_REPEAT(2755), - [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_section, 4), - [1340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_binding, 3, .production_id = 23), - [1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_binding, 3, .production_id = 23), - [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), - [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_section, 3), - [1352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__operand, 1), - [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_section, 4), - [1356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_structured_data_object_repeat1, 2), SHIFT_REPEAT(2615), - [1359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_section, 3), - [1361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 1), - [1363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 1), - [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [1371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), - [1373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_declaration_importing, 2), - [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), - [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), - [1385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_section, 4), - [1387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__method_declaration_importing_repeat1, 2), SHIFT_REPEAT(1067), - [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__method_declaration_importing_repeat1, 2), - [1392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__method_declaration_importing_repeat1, 2), SHIFT_REPEAT(2294), - [1395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__method_declaration_importing_repeat1, 2), SHIFT_REPEAT(2973), - [1398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complete_typing, 4, .production_id = 26), - [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complete_typing, 4, .production_id = 26), - [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [1408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_typing, 2), - [1410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_typing, 2), - [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_declaration_exporting, 2), - [1414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2), - [1416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2), - [1418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complete_typing, 2, .production_id = 8), - [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complete_typing, 2, .production_id = 8), - [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [1424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [1428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), - [1430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_parameters, 2), - [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_parameters, 2), - [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), - [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [1442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), - [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), - [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), - [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), - [1468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), - [1470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), - [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [1474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), - [1476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_declaration_changing, 2), - [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [1484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_line_spec_repeat1, 3), - [1486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_line_spec_repeat1, 3), - [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), - [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), - [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), - [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [1502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [1504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), - [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), - [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [1510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_macro_include_repeat1, 1), - [1512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_include_repeat1, 1), - [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [1516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_parameters, 5), - [1518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_parameters, 5), - [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [1522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), - [1524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_include_repeat1, 2), SHIFT_REPEAT(474), - [1527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_include_repeat1, 2), - [1529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_include_repeat1, 2), SHIFT_REPEAT(516), - [1532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_include_repeat1, 2), SHIFT_REPEAT(484), - [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), - [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), - [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), - [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), - [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), - [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), - [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), - [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [1579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_parameters, 6), - [1581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_parameters, 6), - [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [1595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_parameters, 7), - [1597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_parameters, 7), - [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [1631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_parameters, 3), - [1633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_parameters, 3), - [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2654), - [1657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 1), - [1659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(2654), - [1662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), - [1664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_expression, 3), - [1666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [1670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [1672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [1674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [1678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [1682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [1684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [1686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [1690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_parameters, 4), - [1692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_parameters, 4), - [1694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [1696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), - [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), - [1700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), - [1702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [1704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [1706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), - [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), - [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [1724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), - [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), - [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [1730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), - [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), - [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), - [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), + [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 0), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), + [107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(468), + [110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3044), + [113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2955), + [116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3045), + [119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2010), + [122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2011), + [125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3150), + [128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), + [130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2408), + [133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2409), + [136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2410), + [139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2618), + [142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(473), + [145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(475), + [148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2065), + [151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3104), + [154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2958), + [157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(521), + [160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2959), + [163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3047), + [166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1944), + [169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1166), + [172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2623), + [175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1945), + [178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(152), + [181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 3, .production_id = 17), + [183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 5, .production_id = 38), + [185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_block, 1), + [187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_block, 1), + [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), + [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), + [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), + [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), + [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(467), + [206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3029), + [209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3147), + [212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3112), + [215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2050), + [218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2041), + [221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3075), + [224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3063), + [227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3062), + [230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3061), + [233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3046), + [236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(471), + [239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(480), + [242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2002), + [245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3016), + [248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3015), + [251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(520), + [254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3006), + [257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3002), + [260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2025), + [263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1179), + [266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2997), + [269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2024), + [272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), + [282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), + [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), + [286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), + [288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), + [290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), + [292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), + [294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), + [296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), + [298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), + [300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_method_body_repeat1, 2), SHIFT_REPEAT(468), + [305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_method_body_repeat1, 2), SHIFT_REPEAT(2955), + [308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_method_body_repeat1, 2), + [310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_method_body_repeat1, 2), SHIFT_REPEAT(2010), + [313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_method_body_repeat1, 2), SHIFT_REPEAT(2011), + [316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_method_body_repeat1, 2), SHIFT_REPEAT(3150), + [319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_method_body_repeat1, 2), SHIFT_REPEAT(2408), + [322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_method_body_repeat1, 2), SHIFT_REPEAT(2409), + [325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_method_body_repeat1, 2), SHIFT_REPEAT(2410), + [328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_method_body_repeat1, 2), SHIFT_REPEAT(2618), + [331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_method_body_repeat1, 2), SHIFT_REPEAT(473), + [334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_method_body_repeat1, 2), SHIFT_REPEAT(475), + [337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_method_body_repeat1, 2), SHIFT_REPEAT(2065), + [340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_method_body_repeat1, 2), SHIFT_REPEAT(3104), + [343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_method_body_repeat1, 2), SHIFT_REPEAT(2958), + [346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_method_body_repeat1, 2), SHIFT_REPEAT(521), + [349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_method_body_repeat1, 2), SHIFT_REPEAT(2959), + [352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_method_body_repeat1, 2), SHIFT_REPEAT(1944), + [355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_method_body_repeat1, 2), SHIFT_REPEAT(1166), + [358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_method_body_repeat1, 2), SHIFT_REPEAT(2623), + [361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_method_body_repeat1, 2), SHIFT_REPEAT(1945), + [364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_method_body_repeat1, 2), SHIFT_REPEAT(152), + [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), + [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_body, 1), + [377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 12, .production_id = 57), + [379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 12, .production_id = 57), + [381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_statement_obsolete, 10, .production_id = 110), + [383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement_obsolete, 10, .production_id = 110), + [385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_catch_statement, 4), + [387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_catch_statement, 4), + [389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_chained_write_statement, 4), + [391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chained_write_statement, 4), + [393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_write_statement, 4), + [395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_write_statement, 4), + [397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_function, 4, .production_id = 12), + [399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_function, 4, .production_id = 12), + [401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raise_exception_statement, 4, .production_id = 13), + [403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_exception_statement, 4, .production_id = 13), + [405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_method, 4, .production_id = 1), + [407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_method, 4, .production_id = 1), + [409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 4), + [411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 4), + [413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), + [415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), + [417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), + [419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), + [421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_include, 2, .production_id = 1), + [423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_include, 2, .production_id = 1), + [425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_chained_variable_declaration, 5), + [427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chained_variable_declaration, 5), + [429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_chained_field_symbol_declaration, 5), + [431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chained_field_symbol_declaration, 5), + [433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5), + [435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5), + [437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_catch_statement, 5), + [439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_catch_statement, 5), + [441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_chained_write_statement, 5), + [443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chained_write_statement, 5), + [445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_function, 5, .production_id = 18), + [447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_function, 5, .production_id = 18), + [449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_function, 5, .production_id = 19), + [451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_function, 5, .production_id = 19), + [453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_report_statement, 3), + [455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_report_statement, 3), + [457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raise_exception_statement, 5, .production_id = 20), + [459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_exception_statement, 5, .production_id = 20), + [461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_append_statement, 5, .production_id = 21), + [463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_append_statement, 5, .production_id = 21), + [465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_statement, 5), + [467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_statement, 5), + [469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_method, 5, .production_id = 24), + [471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_method, 5, .production_id = 24), + [473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_check_statement, 3), + [475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_check_statement, 3), + [477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_write_statement, 3), + [479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_write_statement, 3), + [481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raise_statement, 3), + [483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_statement, 3), + [485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_create_object_statement, 6, .production_id = 25), + [487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_object_statement, 6, .production_id = 25), + [489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_clear_statement, 3), + [491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_clear_statement, 3), + [493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6), + [495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6), + [497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_statement_obsolete, 6, .production_id = 27), + [499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement_obsolete, 6, .production_id = 27), + [501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_read_table_statement, 6), + [503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_read_table_statement, 6), + [505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_catch_statement, 6), + [507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_catch_statement, 6), + [509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_chained_write_statement, 6), + [511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chained_write_statement, 6), + [513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_function, 6, .production_id = 28), + [515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_function, 6, .production_id = 28), + [517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_append_statement_obsolete, 3, .production_id = 3), + [519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_append_statement_obsolete, 3, .production_id = 3), + [521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_method_static, 6, .production_id = 29), + [523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_method_static, 6, .production_id = 29), + [525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_method_instance, 6, .production_id = 30), + [527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_method_instance, 6, .production_id = 30), + [529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_statement, 3), + [531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_statement, 3), + [533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_include, 3, .production_id = 6), + [535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_include, 3, .production_id = 6), + [537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_create_object_statement, 4), + [539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_create_object_statement, 4), + [541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 15, .production_id = 57), + [543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 15, .production_id = 57), + [545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_statement_obsolete, 7, .production_id = 27), + [547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement_obsolete, 7, .production_id = 27), + [549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raise_exception_statement, 7, .production_id = 40), + [551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raise_exception_statement, 7, .production_id = 40), + [553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_method_static, 7, .production_id = 41), + [555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_method_static, 7, .production_id = 41), + [557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_method_instance, 7, .production_id = 42), + [559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_method_instance, 7, .production_id = 42), + [561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_chained_variable_declaration, 4), + [563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chained_variable_declaration, 4), + [565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, .production_id = 9), + [567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, .production_id = 9), + [569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 8, .production_id = 57), + [571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 8, .production_id = 57), + [573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_statement_obsolete, 8, .production_id = 27), + [575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement_obsolete, 8, .production_id = 27), + [577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 14, .production_id = 57), + [579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 14, .production_id = 57), + [581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_chained_field_symbol_declaration, 4), + [583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chained_field_symbol_declaration, 4), + [585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_symbol_declaration, 4, .production_id = 11), + [587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_symbol_declaration, 4, .production_id = 11), + [589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_statement_obsolete, 12, .production_id = 110), + [591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement_obsolete, 12, .production_id = 110), + [593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 9, .production_id = 57), + [595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 9, .production_id = 57), + [597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_chained_structure_declaration, 11, .production_id = 139), + [599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chained_structure_declaration, 11, .production_id = 139), + [601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 11, .production_id = 57), + [603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 11, .production_id = 57), + [605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_statement_obsolete, 11, .production_id = 110), + [607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_statement_obsolete, 11, .production_id = 110), + [609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exit_statement, 2), + [611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exit_statement, 2), + [613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 13, .production_id = 57), + [615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 13, .production_id = 57), + [617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_chained_structure_declaration, 12, .production_id = 167), + [619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chained_structure_declaration, 12, .production_id = 167), + [621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_statement, 10, .production_id = 57), + [623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_statement, 10, .production_id = 57), + [625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arithmetic_expression, 3), + [627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arithmetic_expression, 3), + [629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 9, .production_id = 58), + [631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 9, .production_id = 58), + [633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 16), + [635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 16), + [637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 10, .production_id = 82), + [639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 10, .production_id = 82), + [641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 10, .production_id = 16), + [643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 10, .production_id = 16), + [645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 10, .production_id = 83), + [647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 10, .production_id = 83), + [649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 10, .production_id = 31), + [651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 10, .production_id = 31), + [653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 10, .production_id = 58), + [655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 10, .production_id = 58), + [657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 10, .production_id = 43), + [659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 10, .production_id = 43), + [661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 11, .production_id = 82), + [663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 11, .production_id = 82), + [665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 11, .production_id = 111), + [667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 11, .production_id = 111), + [669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 11, .production_id = 16), + [671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 11, .production_id = 16), + [673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 11, .production_id = 83), + [675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 11, .production_id = 83), + [677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 11, .production_id = 31), + [679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 11, .production_id = 31), + [681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 11, .production_id = 58), + [683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 11, .production_id = 58), + [685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 11, .production_id = 112), + [687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 11, .production_id = 112), + [689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 11, .production_id = 43), + [691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 11, .production_id = 43), + [693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 12, .production_id = 82), + [695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 12, .production_id = 82), + [697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 12, .production_id = 140), + [699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 12, .production_id = 140), + [701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 12, .production_id = 16), + [703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 12, .production_id = 16), + [705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 12, .production_id = 141), + [707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 12, .production_id = 141), + [709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 12, .production_id = 111), + [711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 12, .production_id = 111), + [713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 12, .production_id = 83), + [715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 12, .production_id = 83), + [717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 12, .production_id = 31), + [719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 12, .production_id = 31), + [721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 12, .production_id = 58), + [723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 12, .production_id = 58), + [725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 12, .production_id = 142), + [727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 12, .production_id = 142), + [729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 12, .production_id = 112), + [731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 12, .production_id = 112), + [733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 13, .production_id = 82), + [735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 13, .production_id = 82), + [737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 13, .production_id = 168), + [739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 13, .production_id = 168), + [741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 13, .production_id = 140), + [743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 13, .production_id = 140), + [745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 13, .production_id = 16), + [747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 13, .production_id = 16), + [749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 13, .production_id = 141), + [751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 13, .production_id = 141), + [753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 13, .production_id = 111), + [755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 13, .production_id = 111), + [757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_publication, 5, .production_id = 16), + [759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_publication, 5, .production_id = 16), + [761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 13, .production_id = 169), + [763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 13, .production_id = 169), + [765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 13, .production_id = 83), + [767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 13, .production_id = 83), + [769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 13, .production_id = 170), + [771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 13, .production_id = 170), + [773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 13, .production_id = 58), + [775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 13, .production_id = 58), + [777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 13, .production_id = 142), + [779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 13, .production_id = 142), + [781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 13, .production_id = 112), + [783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 13, .production_id = 112), + [785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 14, .production_id = 190), + [787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 14, .production_id = 190), + [789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 14, .production_id = 82), + [791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 14, .production_id = 82), + [793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_structured_data_object_repeat1, 2), + [795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_structured_data_object_repeat1, 2), + [797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_structured_data_object_repeat1, 2), SHIFT_REPEAT(2896), + [800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 14, .production_id = 168), + [802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 14, .production_id = 168), + [804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 14, .production_id = 140), + [806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 14, .production_id = 140), + [808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 14, .production_id = 191), + [810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 14, .production_id = 191), + [812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 14, .production_id = 16), + [814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 14, .production_id = 16), + [816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 14, .production_id = 141), + [818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 14, .production_id = 141), + [820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 14, .production_id = 111), + [822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 14, .production_id = 111), + [824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 14, .production_id = 169), + [826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 14, .production_id = 169), + [828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 14, .production_id = 58), + [830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 14, .production_id = 58), + [832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 14, .production_id = 192), + [834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 14, .production_id = 192), + [836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object, 1), + [838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__data_object, 1), + [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), + [842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 14, .production_id = 170), + [844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 14, .production_id = 170), + [846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 14, .production_id = 142), + [848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 14, .production_id = 142), + [850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 14, .production_id = 112), + [852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 14, .production_id = 112), + [854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 9, .production_id = 31), + [856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 9, .production_id = 31), + [858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 15, .production_id = 82), + [860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 15, .production_id = 82), + [862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 15, .production_id = 211), + [864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 15, .production_id = 211), + [866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 15, .production_id = 190), + [868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 15, .production_id = 190), + [870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 15, .production_id = 168), + [872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 15, .production_id = 168), + [874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 15, .production_id = 140), + [876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 15, .production_id = 140), + [878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 15, .production_id = 212), + [880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 15, .production_id = 212), + [882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 15, .production_id = 191), + [884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 15, .production_id = 191), + [886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 9, .production_id = 16), + [888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 9, .production_id = 16), + [890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 15, .production_id = 16), + [892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 15, .production_id = 16), + [894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, .production_id = 43), + [896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, .production_id = 43), + [898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 15, .production_id = 141), + [900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 15, .production_id = 141), + [902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 15, .production_id = 169), + [904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 15, .production_id = 169), + [906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 15, .production_id = 58), + [908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 15, .production_id = 58), + [910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 15, .production_id = 192), + [912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 15, .production_id = 192), + [914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 15, .production_id = 170), + [916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 15, .production_id = 170), + [918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 15, .production_id = 213), + [920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 15, .production_id = 213), + [922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 15, .production_id = 142), + [924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 15, .production_id = 142), + [926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 9, .production_id = 43), + [928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 9, .production_id = 43), + [930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 16, .production_id = 82), + [932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 16, .production_id = 82), + [934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 16, .production_id = 211), + [936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 16, .production_id = 211), + [938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 16, .production_id = 190), + [940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 16, .production_id = 190), + [942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 7, .production_id = 16), + [944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 7, .production_id = 16), + [946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 16, .production_id = 228), + [948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 16, .production_id = 228), + [950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 16, .production_id = 168), + [952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 16, .production_id = 168), + [954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 16, .production_id = 212), + [956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 16, .production_id = 212), + [958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 16, .production_id = 191), + [960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 16, .production_id = 191), + [962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 16, .production_id = 229), + [964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 16, .production_id = 229), + [966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 16, .production_id = 16), + [968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 16, .production_id = 16), + [970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 16, .production_id = 169), + [972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 16, .production_id = 169), + [974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 16, .production_id = 230), + [976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 16, .production_id = 230), + [978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 16, .production_id = 58), + [980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 16, .production_id = 58), + [982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 16, .production_id = 192), + [984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 16, .production_id = 192), + [986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 16, .production_id = 170), + [988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 16, .production_id = 170), + [990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 16, .production_id = 213), + [992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 16, .production_id = 213), + [994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 17, .production_id = 237), + [996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 17, .production_id = 237), + [998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 17, .production_id = 82), + [1000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 17, .production_id = 82), + [1002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 17, .production_id = 211), + [1004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 17, .production_id = 211), + [1006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 16), + [1008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 16), + [1010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_implementation, 7, .production_id = 16), + [1012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_implementation, 7, .production_id = 16), + [1014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structured_data_object, 2, .production_id = 2), + [1016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_structured_data_object, 2, .production_id = 2), + [1018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 17, .production_id = 190), + [1020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 17, .production_id = 190), + [1022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 17, .production_id = 228), + [1024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 17, .production_id = 228), + [1026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 17, .production_id = 212), + [1028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 17, .production_id = 212), + [1030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 17, .production_id = 191), + [1032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 17, .production_id = 191), + [1034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 17, .production_id = 229), + [1036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 17, .production_id = 229), + [1038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_local_friend_publication, 7, .production_id = 31), + [1040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_local_friend_publication, 7, .production_id = 31), + [1042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 17, .production_id = 238), + [1044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 17, .production_id = 238), + [1046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 17, .production_id = 230), + [1048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 17, .production_id = 230), + [1050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 17, .production_id = 58), + [1052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 17, .production_id = 58), + [1054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 17, .production_id = 192), + [1056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 17, .production_id = 192), + [1058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 17, .production_id = 213), + [1060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 17, .production_id = 213), + [1062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 18, .production_id = 240), + [1064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 18, .production_id = 240), + [1066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 16), + [1068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 16), + [1070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 18, .production_id = 237), + [1072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 18, .production_id = 237), + [1074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 18, .production_id = 82), + [1076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 18, .production_id = 82), + [1078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 18, .production_id = 211), + [1080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 18, .production_id = 211), + [1082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 18, .production_id = 228), + [1084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 18, .production_id = 228), + [1086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 18, .production_id = 212), + [1088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 18, .production_id = 212), + [1090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 18, .production_id = 229), + [1092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 18, .production_id = 229), + [1094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 18, .production_id = 238), + [1096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 18, .production_id = 238), + [1098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 18, .production_id = 230), + [1100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 18, .production_id = 230), + [1102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 18, .production_id = 241), + [1104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 18, .production_id = 241), + [1106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_implementation, 6, .production_id = 16), + [1108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_implementation, 6, .production_id = 16), + [1110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 18, .production_id = 58), + [1112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 18, .production_id = 58), + [1114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 18, .production_id = 213), + [1116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 18, .production_id = 213), + [1118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 19, .production_id = 240), + [1120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 19, .production_id = 240), + [1122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 19, .production_id = 237), + [1124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 19, .production_id = 237), + [1126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 19, .production_id = 242), + [1128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 19, .production_id = 242), + [1130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, .production_id = 16), + [1132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, .production_id = 16), + [1134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 19, .production_id = 82), + [1136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 19, .production_id = 82), + [1138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 19, .production_id = 228), + [1140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 19, .production_id = 228), + [1142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_implementation, 6, .production_id = 16), + [1144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_implementation, 6, .production_id = 16), + [1146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 19, .production_id = 229), + [1148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 19, .production_id = 229), + [1150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 19, .production_id = 238), + [1152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 19, .production_id = 238), + [1154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 19, .production_id = 230), + [1156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 19, .production_id = 230), + [1158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 19, .production_id = 241), + [1160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 19, .production_id = 241), + [1162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 20, .production_id = 240), + [1164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 20, .production_id = 240), + [1166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 20, .production_id = 237), + [1168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 20, .production_id = 237), + [1170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 20, .production_id = 242), + [1172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 20, .production_id = 242), + [1174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_publication, 6, .production_id = 16), + [1176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_publication, 6, .production_id = 16), + [1178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 16), + [1180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 16), + [1182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_implementation, 5, .production_id = 16), + [1184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_implementation, 5, .production_id = 16), + [1186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 20, .production_id = 238), + [1188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 20, .production_id = 238), + [1190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 20, .production_id = 241), + [1192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 20, .production_id = 241), + [1194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 21, .production_id = 240), + [1196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 21, .production_id = 240), + [1198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 21, .production_id = 242), + [1200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 21, .production_id = 242), + [1202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 21, .production_id = 241), + [1204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 21, .production_id = 241), + [1206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 22, .production_id = 242), + [1208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 22, .production_id = 242), + [1210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_structured_data_object_repeat1, 2, .production_id = 4), + [1212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_structured_data_object_repeat1, 2, .production_id = 4), + [1214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_access_static, 3, .production_id = 5), + [1216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_access_static, 3, .production_id = 5), + [1218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [1220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), + [1222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_structured_data_object_repeat1, 2), SHIFT_REPEAT(2420), + [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), + [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), + [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), + [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), + [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), + [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [1259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [1273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2896), + [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), + [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), + [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), + [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), + [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), + [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), + [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [1303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_public_section_repeat1, 2), + [1305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_public_section_repeat1, 2), SHIFT_REPEAT(2014), + [1308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_public_section_repeat1, 2), SHIFT_REPEAT(2016), + [1311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_public_section_repeat1, 2), SHIFT_REPEAT(2201), + [1314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_public_section_repeat1, 2), SHIFT_REPEAT(2755), + [1317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_section, 3), + [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), + [1327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_section, 4), + [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [1333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), + [1349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__operand, 1), + [1351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_section, 3), + [1353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_binding, 3, .production_id = 23), + [1355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_binding, 3, .production_id = 23), + [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [1359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_protected_section, 4), + [1361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_section, 3), + [1363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), + [1365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_declaration_importing, 2), + [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), + [1369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__method_declaration_importing_repeat1, 2), SHIFT_REPEAT(1069), + [1372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__method_declaration_importing_repeat1, 2), + [1374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__method_declaration_importing_repeat1, 2), SHIFT_REPEAT(2295), + [1377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__method_declaration_importing_repeat1, 2), SHIFT_REPEAT(2973), + [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [1388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 1), + [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 1), + [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_private_section, 4), + [1396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [1398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [1400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [1402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [1406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_declaration_exporting, 2), + [1408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complete_typing, 4, .production_id = 26), + [1410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complete_typing, 4, .production_id = 26), + [1412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2), + [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2), + [1416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_typing, 2), + [1418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_typing, 2), + [1420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_complete_typing, 2, .production_id = 8), + [1422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_complete_typing, 2, .production_id = 8), + [1424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), + [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), + [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), + [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [1442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), + [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [1450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_parameters, 5), + [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_parameters, 5), + [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), + [1458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [1466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_line_spec_repeat1, 3), + [1468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_line_spec_repeat1, 3), + [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [1474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_parameters, 2), + [1476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_parameters, 2), + [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), + [1482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_macro_include_repeat1, 1), + [1484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_include_repeat1, 1), + [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [1488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_declaration_changing, 2), + [1490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [1492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_include_repeat1, 2), SHIFT_REPEAT(287), + [1495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_include_repeat1, 2), + [1497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_include_repeat1, 2), SHIFT_REPEAT(513), + [1500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_include_repeat1, 2), SHIFT_REPEAT(451), + [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), + [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), + [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), + [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), + [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), + [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), + [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), + [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), + [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [1619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_parameters, 3), + [1621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_parameters, 3), + [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2654), + [1639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 1), + [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [1655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_parameters, 7), + [1657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_parameters, 7), + [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [1667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(2654), + [1670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), + [1672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [1674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [1678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [1682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [1684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [1686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [1688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_parameters, 6), + [1690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_parameters, 6), + [1692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_expression, 3), + [1694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_parameters, 4), + [1696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_parameters, 4), + [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [1700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [1702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [1704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), + [1706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [1708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), + [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), + [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), + [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), + [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [1724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [1730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), + [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), + [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), + [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), [1758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comp_spec, 3, .production_id = 22), [1760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comp_spec, 3, .production_id = 22), - [1762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_declaration_repeat1, 2), SHIFT_REPEAT(2761), - [1765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_declaration_repeat1, 2), SHIFT_REPEAT(2760), - [1768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_declaration_repeat1, 2), - [1770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_declaration_repeat1, 2), SHIFT_REPEAT(2755), - [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), - [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), - [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), - [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [1787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_chained_write_statement_repeat1, 2), - [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [1797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2386), - [1799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list_exporting, 1), - [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), - [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), - [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), - [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), - [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), - [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), - [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), - [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), - [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), - [1839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_parameter_list_exporting_repeat1, 2), SHIFT_REPEAT(2386), - [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_exporting_repeat1, 2), + [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), + [1766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [1772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [1776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_chained_write_statement_repeat1, 2), + [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [1780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), + [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), + [1784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_declaration_repeat1, 2), SHIFT_REPEAT(2761), + [1787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_declaration_repeat1, 2), SHIFT_REPEAT(2760), + [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_declaration_repeat1, 2), + [1792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_declaration_repeat1, 2), SHIFT_REPEAT(2755), + [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [1801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), + [1803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list_exporting, 1), + [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [1807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_parameter_list_exporting_repeat1, 2), SHIFT_REPEAT(2387), + [1810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_exporting_repeat1, 2), + [1812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), + [1820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [1828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), + [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), + [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), + [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [1842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), - [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [1852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), - [1854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), - [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [1858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [1860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [1862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [1866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), - [1868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), - [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [1872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [1874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [1876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [1878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [1880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), - [1882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [1884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), - [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 9, .production_id = 232), - [1888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 6, .production_id = 70), - [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), - [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), - [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), - [1896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), - [1898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [1900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), - [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), - [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 4), - [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [1920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 4, .production_id = 114), - [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), - [1924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [1926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), - [1928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), - [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 4, .production_id = 16), - [1936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), - [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [1940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), - [1942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), - [1944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [1946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [1948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 4, .production_id = 113), - [1950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 4, .production_id = 115), - [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), - [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), - [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), - [1958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), - [1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), - [1966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), - [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [1972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_redefinition, 4), - [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 4, .production_id = 32), - [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [1986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 4, .production_id = 33), - [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [1996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 4, .production_id = 34), - [1998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), - [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [2004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 4, .production_id = 35), - [2006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 4, .production_id = 36), - [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [2010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [2016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [2018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [2020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 4, .production_id = 32), - [2022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [2024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 4, .production_id = 33), - [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [2028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), - [2030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 4, .production_id = 34), - [2032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 4, .production_id = 35), - [2034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 4, .production_id = 36), + [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [1848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [1852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), + [1854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), + [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [1858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [1860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [1862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), + [1866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [1868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), + [1870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [1872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [1874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), + [1876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), + [1878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [1880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [1882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), + [1884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), + [1886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [1888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [1892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [1894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), + [1896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 9, .production_id = 232), + [1898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 6, .production_id = 69), + [1900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), + [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), + [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), + [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), + [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), + [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), + [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [1920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [1924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [1926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [1928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 4), + [1930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), + [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [1934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [1936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), + [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [1940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 4, .production_id = 114), + [1944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 4, .production_id = 16), + [1946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [1948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), + [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), + [1952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), + [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 4, .production_id = 113), + [1960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), + [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 4, .production_id = 115), + [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), + [1966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), + [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), + [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [1980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_redefinition, 4), + [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), + [1984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 4, .production_id = 32), + [1986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [1988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 4, .production_id = 33), + [1990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [1998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [2000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [2002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 4, .production_id = 34), + [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [2010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 4, .production_id = 35), + [2012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 4, .production_id = 36), + [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), + [2016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 4, .production_id = 32), + [2018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [2020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 4, .production_id = 33), + [2022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [2028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [2032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [2034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 4, .production_id = 34), [2036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 10, .production_id = 239), - [2038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 4, .production_id = 16), - [2040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chained_interface_declaration, 4), - [2042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), - [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), - [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), - [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), - [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), - [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), - [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), - [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), - [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), - [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), - [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), - [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), - [2070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 9, .production_id = 166), - [2072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 9, .production_id = 166), - [2074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 9, .production_id = 236), - [2076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 9, .production_id = 235), - [2078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 9, .production_id = 234), - [2080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 9, .production_id = 233), - [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), - [2084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 9, .production_id = 231), - [2086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), - [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), - [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), - [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), - [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), - [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), - [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), - [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), - [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), - [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), - [2110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 5, .production_id = 143), - [2112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 5, .production_id = 144), - [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), - [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), - [2118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 5, .production_id = 145), - [2120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 5, .production_id = 146), - [2122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 5, .production_id = 147), - [2124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 5, .production_id = 148), - [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [2128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 5, .production_id = 149), - [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), - [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), - [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [2140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 5, .production_id = 150), - [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [2144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 8, .production_id = 138), - [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [2148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 8, .production_id = 137), - [2150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 8, .production_id = 136), - [2152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 5, .production_id = 151), - [2154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 8, .production_id = 135), - [2156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 8, .production_id = 134), - [2158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 8, .production_id = 133), - [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), - [2162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 8, .production_id = 138), - [2164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 8, .production_id = 137), - [2166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 8, .production_id = 136), - [2168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 8, .production_id = 135), - [2170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 5, .production_id = 54), - [2172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 8, .production_id = 134), - [2174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 8, .production_id = 133), - [2176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 8, .production_id = 227), - [2178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 8, .production_id = 226), - [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), - [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), - [2184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 8, .production_id = 225), - [2186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 8, .production_id = 224), - [2188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 8, .production_id = 223), - [2190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 8, .production_id = 222), - [2192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 8, .production_id = 221), - [2194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 5, .production_id = 55), - [2196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 8, .production_id = 220), - [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), - [2200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 8, .production_id = 219), - [2202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 5, .production_id = 16), - [2204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 8, .production_id = 218), - [2206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 8, .production_id = 217), - [2208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_redefinition, 5), - [2210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 8, .production_id = 216), - [2212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 8, .production_id = 194), - [2214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 8, .production_id = 215), - [2216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 8, .production_id = 214), - [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), - [2220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 5, .production_id = 44), - [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), - [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [2230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 5, .production_id = 45), - [2232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 5, .production_id = 46), - [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [2236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 5, .production_id = 47), - [2238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 5, .production_id = 32), - [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), - [2242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 5, .production_id = 48), - [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), - [2248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 5, .production_id = 49), - [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), - [2252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 5, .production_id = 50), - [2254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 5, .production_id = 33), - [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), - [2258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 5, .production_id = 51), - [2260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 5, .production_id = 52), - [2262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 5, .production_id = 34), - [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), - [2266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 5, .production_id = 53), - [2268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 5, .production_id = 44), - [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), - [2274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 5, .production_id = 45), - [2276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 5, .production_id = 46), - [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), - [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [2292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 5, .production_id = 47), - [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), - [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 7, .production_id = 109), - [2300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 7, .production_id = 108), - [2302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 5, .production_id = 32), - [2304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 7, .production_id = 107), - [2306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 7, .production_id = 106), - [2308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 7, .production_id = 105), - [2310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 5, .production_id = 48), - [2312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 7, .production_id = 104), - [2314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 7, .production_id = 103), - [2316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 7, .production_id = 102), - [2318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 7, .production_id = 101), - [2320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 7, .production_id = 100), - [2322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 7, .production_id = 99), - [2324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 7, .production_id = 98), - [2326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 7, .production_id = 64), - [2328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 7, .production_id = 97), - [2330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 7, .production_id = 96), - [2332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 5, .production_id = 49), - [2334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 109), - [2336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 108), - [2338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 107), - [2340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 106), - [2342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 105), - [2344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 104), - [2346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 103), - [2348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 102), - [2350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 101), - [2352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 100), - [2354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 99), - [2356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 98), - [2358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 64), - [2360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 97), - [2362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 96), - [2364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 93), - [2366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 209), - [2368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 208), - [2370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 207), - [2372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 206), - [2374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 205), - [2376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 204), - [2378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 179), - [2380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 203), - [2382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 202), - [2384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 201), - [2386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 200), - [2388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 199), - [2390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 176), - [2392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 198), - [2394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 197), - [2396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 175), - [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), - [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [2402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 196), - [2404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 195), - [2406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 5, .production_id = 50), - [2408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 5, .production_id = 33), - [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [2412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 194), - [2414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 7, .production_id = 193), - [2416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 5, .production_id = 51), - [2418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 5, .production_id = 52), - [2420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 5, .production_id = 34), - [2422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 5, .production_id = 53), - [2424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 5, .production_id = 54), - [2426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 5, .production_id = 55), - [2428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_structured_data_object_repeat1, 2), SHIFT_REPEAT(2896), - [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [2433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chained_interface_declaration, 5), - [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), - [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), - [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), - [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), - [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), - [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), - [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), - [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), - [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), - [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), - [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), - [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), - [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), - [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), - [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [2473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 6, .production_id = 80), - [2475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 6, .production_id = 79), - [2477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 6, .production_id = 78), - [2479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 6, .production_id = 77), - [2481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 6, .production_id = 76), - [2483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 6, .production_id = 75), - [2485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 6, .production_id = 74), - [2487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 6, .production_id = 48), - [2489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 6, .production_id = 73), - [2491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 6, .production_id = 72), - [2493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 6, .production_id = 71), - [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), - [2497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 6, .production_id = 69), - [2499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 6, .production_id = 45), - [2501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 6, .production_id = 68), - [2503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 6, .production_id = 67), - [2505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 6, .production_id = 44), - [2507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 6, .production_id = 66), - [2509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 6, .production_id = 65), - [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [2513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 6, .production_id = 64), - [2515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 79), - [2517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 78), - [2519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 77), - [2521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 76), - [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 75), - [2525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 74), - [2527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 48), - [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), - [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), - [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [2537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 73), - [2539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 72), - [2541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 71), - [2543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 70), - [2545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 69), - [2547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 3, .production_id = 16), - [2549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 45), - [2551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 68), - [2553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 67), - [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), - [2557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 44), - [2559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 66), - [2561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 65), - [2563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_constructor_declaration, 3), - [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), - [2567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 64), - [2569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 63), - [2571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 62), - [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), - [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [2577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 80), - [2579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 151), - [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), - [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), - [2585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 183), - [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), - [2589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 182), - [2591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 150), - [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), - [2595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 181), - [2597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 180), - [2599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 3, .production_id = 16), - [2601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 179), - [2603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 149), - [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), - [2609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 178), - [2611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 177), - [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), - [2615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 3), - [2617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 176), - [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [2623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 175), - [2625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 6, .production_id = 174), - [2627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 6, .production_id = 173), - [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), - [2631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 6, .production_id = 172), - [2633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 6, .production_id = 171), - [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), - [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), - [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), - [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), - [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), - [2647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__explicit_parameter_list, 1), - [2649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), - [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), - [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), - [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [2669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__explicit_parameter_list_repeat1, 2), SHIFT_REPEAT(1435), - [2672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__explicit_parameter_list_repeat1, 2), - [2674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__explicit_parameter_list_repeat1, 2), SHIFT_REPEAT(2052), - [2677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_binding_exporting, 3, .production_id = 23), - [2679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_binding_exporting, 3, .production_id = 23), - [2681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_line_spec_repeat1, 2), SHIFT_REPEAT(2321), - [2684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_line_spec_repeat1, 2), - [2686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__function_parameter_list, 2), - [2688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_parameter_list, 2), SHIFT_REPEAT(1425), - [2691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_parameter_list, 2), SHIFT_REPEAT(1424), - [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), - [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), - [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [2702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), - [2704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_spec, 3), - [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), - [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), - [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), - [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), - [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), - [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), - [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), - [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [2736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), - [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), - [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), - [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), - [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), - [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), - [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), - [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), - [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), - [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), - [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), - [2816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), - [2818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_declaration_raising, 2), - [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), - [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), - [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), - [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), - [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), - [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), - [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), - [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), - [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), - [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), - [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), - [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), - [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), - [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), - [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), - [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), - [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), - [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), - [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), - [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), - [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), - [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), - [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), - [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), - [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), - [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), - [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), - [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), - [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), - [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), - [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), - [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), - [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), - [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [2978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__method_declaration_raising_repeat1, 2), SHIFT_REPEAT(1177), - [2981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__method_declaration_raising_repeat1, 2), - [2983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__method_declaration_raising_repeat1, 2), SHIFT_REPEAT(2293), - [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), - [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [2996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 9, .production_id = 161), - [2998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 93), - [3000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 5, .production_id = 53), - [3002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chained_structure_declaration_repeat1, 2), SHIFT_REPEAT(1098), - [3005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_chained_structure_declaration_repeat1, 2), - [3007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 5, .production_id = 54), - [3009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), - [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), - [3013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 5, .production_id = 55), - [3015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 5, .production_id = 34), - [3017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 5, .production_id = 52), - [3019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 5, .production_id = 51), - [3021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 5, .production_id = 33), - [3023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 5, .production_id = 50), - [3025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 5, .production_id = 49), - [3027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 5, .production_id = 48), - [3029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 5, .production_id = 32), - [3031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 5, .production_id = 47), - [3033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 5, .production_id = 46), - [3035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 5, .production_id = 45), - [3037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 5, .production_id = 44), - [3039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 5, .production_id = 16), - [3041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 5, .production_id = 55), - [3043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 5, .production_id = 54), - [3045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 5, .production_id = 53), - [3047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 5, .production_id = 34), - [3049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 5, .production_id = 52), - [3051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 5, .production_id = 51), - [3053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 5, .production_id = 33), - [3055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 5, .production_id = 50), - [3057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 5, .production_id = 49), - [3059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 5, .production_id = 48), - [3061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 5, .production_id = 32), - [3063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 5, .production_id = 47), - [3065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 5, .production_id = 46), - [3067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 5, .production_id = 45), - [3069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 5, .production_id = 44), - [3071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 5, .production_id = 16), - [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), - [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), - [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), - [3083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 4, .production_id = 32), - [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), - [3087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, .production_id = 59), - [3089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 4, .production_id = 16), - [3091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 4, .production_id = 36), - [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), - [3095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 4, .production_id = 35), - [3097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, .production_id = 60), - [3099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 11, .production_id = 210), - [3101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 11, .production_id = 210), - [3103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 4, .production_id = 34), - [3105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, .production_id = 61), - [3107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 4, .production_id = 33), - [3109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, .production_id = 62), - [3111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, .production_id = 63), - [3113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, .production_id = 16), - [3115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 4, .production_id = 16), - [3117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 4, .production_id = 36), - [3119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, .production_id = 64), - [3121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 4, .production_id = 35), - [3123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 4, .production_id = 34), - [3125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, .production_id = 65), - [3127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, .production_id = 66), - [3129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, .production_id = 44), - [3131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 4, .production_id = 33), - [3133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, .production_id = 67), - [3135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 4, .production_id = 32), - [3137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, .production_id = 68), - [3139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, .production_id = 45), - [3141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 109), - [3143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 108), - [3145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, .production_id = 69), - [3147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 107), - [3149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, .production_id = 70), - [3151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, .production_id = 71), - [3153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, .production_id = 72), - [3155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 106), - [3157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 105), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [3167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 104), - [3169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 103), - [3171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, .production_id = 73), - [3173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, .production_id = 48), - [3175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exception_list_repeat1, 2), SHIFT_REPEAT(2385), - [3178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exception_list_repeat1, 2), - [3180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, .production_id = 75), - [3182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, .production_id = 76), - [3184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 102), - [3186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, .production_id = 116), - [3188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, .production_id = 77), - [3190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, .production_id = 78), - [3192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 101), - [3194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, .production_id = 117), - [3196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_normal, 4), - [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [3202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, .production_id = 118), - [3204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, .production_id = 84), - [3206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, .production_id = 79), - [3208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, .production_id = 80), - [3210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, .production_id = 119), - [3212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_reference, 4), - [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), - [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [3218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, .production_id = 120), - [3220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, .production_id = 85), - [3222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, .production_id = 59), - [3224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_normal, 4, .production_id = 26), - [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [3228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [3230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, .production_id = 121), - [3232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, .production_id = 122), - [3234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, .production_id = 60), - [3236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, .production_id = 123), - [3238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, .production_id = 124), - [3240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_reference, 4, .production_id = 26), - [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), - [3244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [3246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, .production_id = 125), - [3248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, .production_id = 88), - [3250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, .production_id = 61), - [3252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, .production_id = 62), - [3254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, .production_id = 126), - [3256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, .production_id = 127), - [3258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 3, .production_id = 16), - [3260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, .production_id = 128), - [3262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, .production_id = 129), - [3264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, .production_id = 130), - [3266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, .production_id = 63), - [3268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, .production_id = 131), - [3270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, .production_id = 132), - [3272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 3, .production_id = 16), - [3274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_implementation_repeat1, 2), - [3276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_implementation_repeat1, 2), SHIFT_REPEAT(2488), - [3279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, .production_id = 133), - [3281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, .production_id = 134), - [3283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, .production_id = 16), - [3285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, .production_id = 135), - [3287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, .production_id = 136), - [3289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, .production_id = 137), - [3291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, .production_id = 138), - [3293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, .production_id = 116), - [3295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, .production_id = 64), - [3297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 100), - [3299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, .production_id = 117), - [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), - [3303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, .production_id = 118), - [3305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, .production_id = 84), - [3307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, .production_id = 65), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [3311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_list, 2), - [3313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, .production_id = 119), - [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), - [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), - [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [3323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, .production_id = 120), - [3325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, .production_id = 85), - [3327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, .production_id = 66), - [3329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, .production_id = 44), - [3331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, .production_id = 121), - [3333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, .production_id = 122), - [3335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), - [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), - [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), - [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), - [3343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, .production_id = 123), - [3345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, .production_id = 124), - [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), - [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), - [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [3355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, .production_id = 125), - [3357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, .production_id = 88), - [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [3367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, .production_id = 67), - [3369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, .production_id = 126), - [3371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, .production_id = 127), - [3373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, .production_id = 74), - [3375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, .production_id = 128), - [3377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, .production_id = 129), - [3379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, .production_id = 130), - [3381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, .production_id = 45), - [3383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, .production_id = 131), - [3385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, .production_id = 132), - [3387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, .production_id = 133), - [3389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, .production_id = 134), - [3391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, .production_id = 135), - [3393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, .production_id = 136), - [3395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, .production_id = 137), - [3397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, .production_id = 138), - [3399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 98), - [3401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, .production_id = 69), - [3403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 99), - [3405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 98), - [3407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, .production_id = 70), - [3409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 10, .production_id = 189), - [3411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 10, .production_id = 188), - [3413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 10, .production_id = 187), - [3415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 10, .production_id = 186), - [3417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 64), - [3419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 97), - [3421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 10, .production_id = 185), - [3423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 10, .production_id = 184), - [3425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 10, .production_id = 189), - [3427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 10, .production_id = 188), - [3429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 10, .production_id = 187), - [3431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 96), - [3433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 10, .production_id = 186), - [3435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 95), - [3437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 10, .production_id = 185), - [3439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 10, .production_id = 184), - [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), - [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), - [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [3449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, .production_id = 71), - [3451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, .production_id = 72), - [3453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, .production_id = 73), - [3455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, .production_id = 48), - [3457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 94), - [3459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 93), - [3461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, .production_id = 74), - [3463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, .production_id = 75), - [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), - [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), - [3469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, .production_id = 76), - [3471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, .production_id = 77), - [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [3481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, .production_id = 78), - [3483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, .production_id = 68), - [3485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, .production_id = 79), - [3487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 61), - [3489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 92), - [3491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, .production_id = 80), - [3493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__create_addition, 2), - [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), - [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), - [3499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 91), - [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), - [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [3505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), - [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [3511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 60), - [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), - [3515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__table_expression_free_key, 2), SHIFT_REPEAT(2660), - [3518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__table_expression_free_key, 2), - [3520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 90), - [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), - [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), - [3526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_catch_statement_repeat1, 2), - [3528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_catch_statement_repeat1, 2), SHIFT_REPEAT(2821), - [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), - [3533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 89), - [3535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_normal, 2), - [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [3541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_normal, 2, .production_id = 8), - [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [3547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__method_declaration_raising_repeat1, 4), - [3549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__method_declaration_raising_repeat1, 4), - [3551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 85), - [3553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 86), - [3555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 87), - [3557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 88), - [3559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 9, .production_id = 166), - [3561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 9, .production_id = 165), - [3563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 9, .production_id = 164), - [3565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 9, .production_id = 163), - [3567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 59), - [3569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 87), - [3571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 9, .production_id = 162), - [3573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 86), - [3575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 59), - [3577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 9, .production_id = 160), - [3579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 9, .production_id = 159), - [3581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 9, .production_id = 158), - [3583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 85), - [3585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 9, .production_id = 157), - [3587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 9, .production_id = 156), - [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), - [3591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), - [3593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 9, .production_id = 155), - [3595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 84), - [3597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 9, .production_id = 154), - [3599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 9, .production_id = 116), - [3601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 109), - [3603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 108), - [3605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 9, .production_id = 153), - [3607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 107), - [3609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 9, .production_id = 152), - [3611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 9, .production_id = 166), - [3613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 9, .production_id = 165), - [3615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 106), - [3617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 105), - [3619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 104), - [3621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 9, .production_id = 164), - [3623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 9, .production_id = 163), - [3625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 103), - [3627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 9, .production_id = 162), - [3629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 9, .production_id = 153), - [3631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 89), - [3633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 102), - [3635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 101), - [3637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 9, .production_id = 116), - [3639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 100), - [3641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 9, .production_id = 160), - [3643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), - [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), - [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [3649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 61), - [3651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 99), - [3653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 92), - [3655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 9, .production_id = 161), - [3657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 84), - [3659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 9, .production_id = 154), - [3661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 9, .production_id = 155), - [3663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 88), - [3665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 64), - [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), - [3669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 91), - [3671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 97), - [3673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 9, .production_id = 156), - [3675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 9, .production_id = 157), - [3677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 96), - [3679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 9, .production_id = 158), - [3681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 60), - [3683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 95), - [3685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 9, .production_id = 152), - [3687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 90), - [3689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 9, .production_id = 159), - [3691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 94), - [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), - [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), - [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), - [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), - [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), - [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), - [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [3745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__logical_expression, 2), - [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [3751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__escaped_operand, 2), - [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), - [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), - [3763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_chained_interface_declaration_repeat1, 2), - [3765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chained_interface_declaration_repeat1, 2), SHIFT_REPEAT(1925), - [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), - [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), - [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), - [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), - [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), - [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), - [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), - [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), - [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), - [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), - [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [3822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_normal, 6, .production_id = 26), - [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), - [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), - [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), - [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), - [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), - [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [3864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_normal, 6), - [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), - [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), - [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), - [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), - [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), - [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [3890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), - [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), - [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), - [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [3904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__select_target, 4), - [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [3912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__logical_expression, 3), - [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), - [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), - [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), - [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), - [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), - [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), - [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), - [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), - [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [3984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_spec, 5), - [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), - [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [3996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__select_target_repeat1, 2), - [3998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__select_target_repeat1, 2), SHIFT_REPEAT(2129), - [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [4005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__select_target, 5), - [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [4017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_normal, 7), - [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [4021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_reference, 7), - [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), - [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [4033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_normal, 7, .production_id = 26), - [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [4039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_reference, 7, .production_id = 26), - [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [4045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), - [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), - [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), - [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), - [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), - [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), - [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), - [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [4103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_chained_variable_declaration_repeat1, 2), - [4105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chained_variable_declaration_repeat1, 2), SHIFT_REPEAT(2038), - [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), - [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), - [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), - [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), - [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), - [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), - [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [4168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_chained_field_symbol_declaration_repeat1, 2), - [4170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chained_field_symbol_declaration_repeat1, 2), SHIFT_REPEAT(2034), - [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [4181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sql_condition, 1), - [4183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__select_target, 3), - [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), - [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [4189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chained_write_statement_repeat1, 2), SHIFT_REPEAT(537), - [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), - [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [4214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_declaration_repeat1, 2), SHIFT_REPEAT(1824), - [4217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_declaration_repeat1, 2), - [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [4221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_normal, 5), - [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [4229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returning_parameter, 6), - [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [4233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), - [4235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_normal, 5, .production_id = 8), - [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), - [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), - [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [4277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_normal, 4, .production_id = 8), - [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), - [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), - [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [4307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__select_target, 2), - [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), - [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), - [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), - [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [4359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_declaration_exceptions, 2), - [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [4399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__select_target, 6), - [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [4405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_normal, 8), - [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [4409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_reference, 8), - [4411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_normal, 8, .production_id = 26), - [4413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_reference, 8, .production_id = 26), - [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [4427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 4, .production_id = 17), - [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [4431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__read_table_result, 3), - [4433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_itabs, 4), - [4435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), - [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [4439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_itabs, 4, .production_id = 26), - [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [4443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_chained_structure_declaration_repeat1, 1), - [4445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_chained_structure_declaration_repeat1, 1), - [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [4455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_reference, 5, .production_id = 26), - [4457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), - [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), - [4461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_normal, 5, .production_id = 26), - [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), - [4469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_itabs, 5, .production_id = 37), - [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [4473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_implementation, 5, .production_id = 16), - [4475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_reference, 5), - [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [4479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_itabs, 5), - [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [4487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__read_table_result, 2), - [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), - [4491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_code_binding, 3, .production_id = 39), - [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [4495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_normal, 3), - [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [4499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), - [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [4503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_normal, 3, .production_id = 8), - [4505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), - [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), - [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), - [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), - [4517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), - [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [4533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2917), - [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), - [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), - [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), - [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [4551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [4557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), - [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), - [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [4575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), - [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), - [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [4585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), - [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [4591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_structure_component, 3), - [4593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structure_component, 3), - [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), - [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), - [4615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_itabs, 7, .production_id = 81), - [4617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), - [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), - [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), - [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), - [4641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 6, .production_id = 38), - [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [4659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), - [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), - [4663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_list, 1), - [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [4681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_symbol, 2, .production_id = 10), - [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [4687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable, 2, .production_id = 7), - [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), - [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), - [4695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__table_expression_free_key, 1), - [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), - [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [4703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_implementation, 6, .production_id = 16), - [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [4707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_normal, 6, .production_id = 8), - [4709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface, 1, .production_id = 1), - [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [4713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), - [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [4717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2814), - [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), - [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), - [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), - [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), - [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), - [4735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_itabs, 6, .production_id = 56), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), - [4743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing, 1), - [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), - [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), - [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), - [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), - [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), - [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), - [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), - [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [5019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_clause, 2), - [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), - [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), - [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), - [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), - [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), - [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), - [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), - [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), - [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), - [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), - [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), - [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), - [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), - [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), - [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), - [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), - [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), - [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), - [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), - [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), - [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [5611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [5663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [5667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [5673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [5679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [5681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [5683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [5685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [5687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [5689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [5697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [5705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [5709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [5713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [5715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [5717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [5719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [5721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [5729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), - [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [5747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [5757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), - [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), - [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), - [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), - [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), - [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), - [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), - [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [5819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_expression, 4, .production_id = 15), - [5821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_expression, 4, .production_id = 14), - [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [5839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [5851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [5853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [5857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [5859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [5861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [5863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [5867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [5869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [5871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), - [5873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [5875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [5879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), - [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), - [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), - [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), - [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), - [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), - [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), - [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), - [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), - [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [5961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), - [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), - [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), - [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), - [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [5991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), - [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), - [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), - [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), - [6007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [6025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [6031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), - [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), - [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [6045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [6047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [6051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [6057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [6061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [6065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [6069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [6071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [6073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [6075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [6079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), - [6081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [6083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [6085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [6087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [6089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), - [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), - [6093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [6095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [6099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), - [6101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), - [6103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [6105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [6107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [6109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [6111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [6113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), - [6115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), - [6119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [6121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [6123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), - [6125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [6127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [6129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [6131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [6133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [6135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), - [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [6141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [6143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), - [6149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [6151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [6153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), - [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [6161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [6163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [6165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), - [6167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), - [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), - [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), - [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), - [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), - [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), - [6193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), - [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [6199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), - [6201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), - [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), - [6207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), - [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), - [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [6221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [6223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [6225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [6227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [6229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [6233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [6235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [6237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), - [6239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [6243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [6245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), - [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), - [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [6271] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), - [6287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), - [6293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), - [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [6301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), - [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), - [6315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [6319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [6333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [6345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [6361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), - [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), - [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), - [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), - [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [6385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [6387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_all_entries, 5), - [6389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [6391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [6393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [6395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [6397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [6399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [6401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [6403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [6405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), - [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [6411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [6415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [6417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [6419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [6421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [6423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [6425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), - [6427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [6429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [6431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [6433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [6435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [6443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [6449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), - [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [6469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [6471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), - [6473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), - [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), - [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [6479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), - [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), - [6485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), - [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), - [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), - [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), - [6495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), - [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), - [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), - [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), - [6503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), - [6505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), - [6507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [6509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [6511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [6513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [6515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), - [6517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [6519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), - [6523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [6525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [6527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), + [2038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 4, .production_id = 35), + [2040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 4, .production_id = 36), + [2042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), + [2044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 4, .production_id = 16), + [2046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chained_interface_declaration, 4), + [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), + [2052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), + [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), + [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), + [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), + [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), + [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), + [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), + [2072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 9, .production_id = 166), + [2074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 9, .production_id = 166), + [2076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 9, .production_id = 236), + [2078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 9, .production_id = 235), + [2080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 9, .production_id = 234), + [2082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 9, .production_id = 233), + [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), + [2086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 9, .production_id = 231), + [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), + [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [2092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [2094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), + [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), + [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), + [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), + [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), + [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), + [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), + [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), + [2116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 5, .production_id = 143), + [2118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 5, .production_id = 144), + [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), + [2122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 5, .production_id = 145), + [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), + [2126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 5, .production_id = 146), + [2128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 5, .production_id = 147), + [2130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 5, .production_id = 148), + [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [2134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 5, .production_id = 149), + [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), + [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), + [2146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 5, .production_id = 150), + [2148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 8, .production_id = 138), + [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [2152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 8, .production_id = 137), + [2154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 8, .production_id = 136), + [2156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 8, .production_id = 135), + [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), + [2160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 8, .production_id = 134), + [2162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 8, .production_id = 133), + [2164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 8, .production_id = 138), + [2166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 8, .production_id = 137), + [2168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 5, .production_id = 151), + [2170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 8, .production_id = 136), + [2172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 8, .production_id = 135), + [2174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 8, .production_id = 134), + [2176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 8, .production_id = 133), + [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), + [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [2182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 8, .production_id = 227), + [2184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 8, .production_id = 226), + [2186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 8, .production_id = 225), + [2188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 8, .production_id = 224), + [2190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 8, .production_id = 223), + [2192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 5, .production_id = 54), + [2194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 8, .production_id = 222), + [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), + [2198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 8, .production_id = 221), + [2200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 5, .production_id = 55), + [2202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 8, .production_id = 220), + [2204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 8, .production_id = 219), + [2206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 5, .production_id = 16), + [2208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 8, .production_id = 218), + [2210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 8, .production_id = 217), + [2212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 8, .production_id = 216), + [2214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 8, .production_id = 194), + [2216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 8, .production_id = 215), + [2218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 8, .production_id = 214), + [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), + [2222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_redefinition, 5), + [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), + [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), + [2228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 5, .production_id = 44), + [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [2234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 5, .production_id = 45), + [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), + [2240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 5, .production_id = 46), + [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [2244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 5, .production_id = 47), + [2246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 5, .production_id = 32), + [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [2250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 5, .production_id = 48), + [2252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 5, .production_id = 49), + [2254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 5, .production_id = 50), + [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), + [2258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), + [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), + [2262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 5, .production_id = 33), + [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [2266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 5, .production_id = 51), + [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), + [2270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 5, .production_id = 52), + [2272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 5, .production_id = 34), + [2274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 5, .production_id = 53), + [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [2278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 5, .production_id = 44), + [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), + [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), + [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [2300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 5, .production_id = 45), + [2302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 7, .production_id = 109), + [2304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 7, .production_id = 108), + [2306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 7, .production_id = 107), + [2308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 5, .production_id = 46), + [2310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 7, .production_id = 106), + [2312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 7, .production_id = 105), + [2314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 7, .production_id = 104), + [2316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 7, .production_id = 103), + [2318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 7, .production_id = 102), + [2320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 7, .production_id = 101), + [2322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 7, .production_id = 100), + [2324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 7, .production_id = 99), + [2326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 7, .production_id = 98), + [2328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 7, .production_id = 64), + [2330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 5, .production_id = 47), + [2332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 7, .production_id = 97), + [2334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 7, .production_id = 96), + [2336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 109), + [2338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 108), + [2340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 107), + [2342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 106), + [2344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 105), + [2346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 104), + [2348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 103), + [2350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 102), + [2352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 101), + [2354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 100), + [2356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 99), + [2358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 98), + [2360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 64), + [2362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 97), + [2364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 96), + [2366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 93), + [2368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 209), + [2370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 208), + [2372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 207), + [2374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 206), + [2376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 205), + [2378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 204), + [2380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 179), + [2382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 203), + [2384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 202), + [2386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 201), + [2388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 200), + [2390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 199), + [2392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 176), + [2394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 198), + [2396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 5, .production_id = 32), + [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [2400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 197), + [2402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 175), + [2404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 5, .production_id = 48), + [2406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 196), + [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [2410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 195), + [2412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 5, .production_id = 49), + [2414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 5, .production_id = 50), + [2416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 7, .production_id = 194), + [2418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 7, .production_id = 193), + [2420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 5, .production_id = 33), + [2422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 5, .production_id = 51), + [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), + [2426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 5, .production_id = 52), + [2428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 5, .production_id = 34), + [2430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 5, .production_id = 53), + [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [2434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 5, .production_id = 54), + [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), + [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), + [2440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 5, .production_id = 55), + [2442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chained_interface_declaration, 5), + [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), + [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), + [2448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), + [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [2452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), + [2454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), + [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), + [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [2474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 6, .production_id = 80), + [2476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 6, .production_id = 79), + [2478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 6, .production_id = 78), + [2480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 6, .production_id = 77), + [2482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 6, .production_id = 76), + [2484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 6, .production_id = 75), + [2486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 6, .production_id = 74), + [2488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 6, .production_id = 48), + [2490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 6, .production_id = 73), + [2492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 6, .production_id = 72), + [2494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 6, .production_id = 71), + [2496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 6, .production_id = 70), + [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), + [2500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 6, .production_id = 45), + [2502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 6, .production_id = 68), + [2504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 6, .production_id = 67), + [2506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 6, .production_id = 44), + [2508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 6, .production_id = 66), + [2510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 6, .production_id = 65), + [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [2514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 6, .production_id = 64), + [2516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 79), + [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 78), + [2520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 77), + [2522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 76), + [2524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 75), + [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), + [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), + [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [2534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 74), + [2536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 48), + [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 73), + [2540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 72), + [2542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 71), + [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [2546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 70), + [2548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 69), + [2550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 45), + [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [2554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 68), + [2556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 67), + [2558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 44), + [2560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 66), + [2562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_class, 3, .production_id = 16), + [2564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 65), + [2566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_constructor_declaration, 3), + [2568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 64), + [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), + [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [2574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 63), + [2576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 62), + [2578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), + [2580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), + [2582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 80), + [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), + [2586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 151), + [2588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 183), + [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), + [2592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 182), + [2594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 150), + [2596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 181), + [2598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 180), + [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [2604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 3, .production_id = 16), + [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 179), + [2608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 149), + [2610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 178), + [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 177), + [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [2618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 176), + [2620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 3), + [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [2624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_class, 6, .production_id = 175), + [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [2628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 6, .production_id = 174), + [2630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 6, .production_id = 173), + [2632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 6, .production_id = 172), + [2634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 6, .production_id = 171), + [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), + [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), + [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), + [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), + [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), + [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), + [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), + [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), + [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), + [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [2678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__explicit_parameter_list_repeat1, 2), SHIFT_REPEAT(1208), + [2681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__explicit_parameter_list_repeat1, 2), + [2683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__explicit_parameter_list_repeat1, 2), SHIFT_REPEAT(1977), + [2686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_binding_exporting, 3, .production_id = 23), + [2688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_binding_exporting, 3, .production_id = 23), + [2690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_line_spec_repeat1, 2), SHIFT_REPEAT(2322), + [2693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_line_spec_repeat1, 2), + [2695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__function_parameter_list, 2), + [2697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_parameter_list, 2), SHIFT_REPEAT(1215), + [2700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_parameter_list, 2), SHIFT_REPEAT(1216), + [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), + [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [2711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), + [2713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_spec, 3), + [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), + [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), + [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), + [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), + [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), + [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [2733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__explicit_parameter_list, 1), + [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), + [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), + [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), + [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), + [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), + [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), + [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), + [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), + [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), + [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), + [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), + [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [2825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), + [2827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_declaration_raising, 2), + [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), + [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), + [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), + [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), + [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), + [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), + [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), + [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), + [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), + [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), + [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), + [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), + [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), + [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), + [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), + [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), + [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), + [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), + [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), + [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), + [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), + [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), + [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), + [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), + [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), + [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), + [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), + [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), + [2979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__method_declaration_raising_repeat1, 2), SHIFT_REPEAT(1180), + [2982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__method_declaration_raising_repeat1, 2), + [2984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__method_declaration_raising_repeat1, 2), SHIFT_REPEAT(2294), + [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [2997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 9, .production_id = 161), + [2999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 61), + [3001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), + [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), + [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), + [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), + [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), + [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), + [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), + [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), + [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [3039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), + [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), + [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), + [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), + [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), + [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), + [3053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_normal, 2, .production_id = 8), + [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [3059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_normal, 2), + [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), + [3067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_catch_statement_repeat1, 2), + [3069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_catch_statement_repeat1, 2), SHIFT_REPEAT(2821), + [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), + [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [3078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__table_expression_free_key, 2), SHIFT_REPEAT(2660), + [3081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__table_expression_free_key, 2), + [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), + [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), + [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), + [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [3091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__create_addition, 2), + [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [3103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), + [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [3113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_list, 2), + [3115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_implementation_repeat1, 2), + [3117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_implementation_repeat1, 2), SHIFT_REPEAT(2490), + [3120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 3, .production_id = 16), + [3122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 3, .production_id = 16), + [3124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_reference, 4, .production_id = 26), + [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), + [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [3130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_normal, 4, .production_id = 26), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [3136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_reference, 4), + [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [3142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_normal, 4), + [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [3148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 101), + [3150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_exception_list_repeat1, 2), SHIFT_REPEAT(2386), + [3153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_exception_list_repeat1, 2), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [3163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 4, .production_id = 32), + [3165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 4, .production_id = 33), + [3167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 4, .production_id = 34), + [3169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 4, .production_id = 35), + [3171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 4, .production_id = 36), + [3173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 4, .production_id = 16), + [3175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 4, .production_id = 33), + [3177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 4, .production_id = 34), + [3179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 4, .production_id = 35), + [3181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 4, .production_id = 36), + [3183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 4, .production_id = 16), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [3187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 4, .production_id = 32), + [3189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 5, .production_id = 16), + [3191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 5, .production_id = 44), + [3193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 109), + [3195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 108), + [3197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 5, .production_id = 45), + [3199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 5, .production_id = 46), + [3201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 107), + [3203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 5, .production_id = 47), + [3205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 5, .production_id = 32), + [3207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 106), + [3209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 105), + [3211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 5, .production_id = 48), + [3213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 5, .production_id = 49), + [3215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 104), + [3217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 5, .production_id = 50), + [3219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 5, .production_id = 33), + [3221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 103), + [3223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, .production_id = 116), + [3225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 5, .production_id = 51), + [3227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 5, .production_id = 52), + [3229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 5, .production_id = 34), + [3231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, .production_id = 117), + [3233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 5, .production_id = 53), + [3235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, .production_id = 118), + [3237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, .production_id = 84), + [3239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 5, .production_id = 54), + [3241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 5, .production_id = 55), + [3243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, .production_id = 119), + [3245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 5, .production_id = 16), + [3247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, .production_id = 120), + [3249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, .production_id = 85), + [3251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 5, .production_id = 44), + [3253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 5, .production_id = 45), + [3255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, .production_id = 121), + [3257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, .production_id = 122), + [3259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 5, .production_id = 46), + [3261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, .production_id = 123), + [3263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, .production_id = 124), + [3265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 5, .production_id = 47), + [3267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, .production_id = 125), + [3269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, .production_id = 88), + [3271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 5, .production_id = 32), + [3273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 5, .production_id = 48), + [3275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, .production_id = 126), + [3277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, .production_id = 127), + [3279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 5, .production_id = 49), + [3281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, .production_id = 128), + [3283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, .production_id = 129), + [3285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, .production_id = 130), + [3287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 5, .production_id = 50), + [3289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, .production_id = 131), + [3291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, .production_id = 132), + [3293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 5, .production_id = 33), + [3295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 5, .production_id = 51), + [3297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, .production_id = 133), + [3299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, .production_id = 134), + [3301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 5, .production_id = 52), + [3303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, .production_id = 135), + [3305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, .production_id = 136), + [3307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, .production_id = 137), + [3309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 8, .production_id = 138), + [3311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, .production_id = 116), + [3313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 5, .production_id = 34), + [3315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 5, .production_id = 53), + [3317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 102), + [3319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, .production_id = 117), + [3321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 5, .production_id = 54), + [3323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, .production_id = 118), + [3325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, .production_id = 84), + [3327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 5, .production_id = 55), + [3329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_chained_structure_declaration_repeat1, 2), SHIFT_REPEAT(1105), + [3332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_chained_structure_declaration_repeat1, 2), + [3334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, .production_id = 119), + [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), + [3338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, .production_id = 120), + [3340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, .production_id = 85), + [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), + [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), + [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [3350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, .production_id = 121), + [3352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, .production_id = 122), + [3354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, .production_id = 59), + [3356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, .production_id = 123), + [3358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, .production_id = 124), + [3360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, .production_id = 60), + [3362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, .production_id = 125), + [3364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, .production_id = 88), + [3366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, .production_id = 61), + [3368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 11, .production_id = 210), + [3370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, .production_id = 126), + [3372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, .production_id = 127), + [3374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 11, .production_id = 210), + [3376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, .production_id = 128), + [3378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, .production_id = 129), + [3380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, .production_id = 130), + [3382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, .production_id = 62), + [3384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, .production_id = 131), + [3386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, .production_id = 132), + [3388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, .production_id = 133), + [3390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, .production_id = 134), + [3392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, .production_id = 63), + [3394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, .production_id = 135), + [3396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, .production_id = 136), + [3398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, .production_id = 137), + [3400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 8, .production_id = 138), + [3402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, .production_id = 16), + [3404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, .production_id = 64), + [3406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 100), + [3408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, .production_id = 65), + [3410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, .production_id = 66), + [3412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 99), + [3414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, .production_id = 44), + [3416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 98), + [3418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, .production_id = 67), + [3420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, .production_id = 68), + [3422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, .production_id = 45), + [3424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, .production_id = 69), + [3426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, .production_id = 70), + [3428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, .production_id = 71), + [3430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, .production_id = 72), + [3432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, .production_id = 73), + [3434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, .production_id = 48), + [3436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 64), + [3438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, .production_id = 74), + [3440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 97), + [3442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, .production_id = 75), + [3444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, .production_id = 76), + [3446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, .production_id = 77), + [3448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, .production_id = 78), + [3450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 96), + [3452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, .production_id = 79), + [3454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 6, .production_id = 80), + [3456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, .production_id = 59), + [3458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, .production_id = 60), + [3460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 95), + [3462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, .production_id = 61), + [3464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, .production_id = 62), + [3466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, .production_id = 63), + [3468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, .production_id = 16), + [3470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 94), + [3472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, .production_id = 64), + [3474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, .production_id = 65), + [3476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, .production_id = 66), + [3478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 93), + [3480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, .production_id = 44), + [3482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, .production_id = 67), + [3484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, .production_id = 45), + [3486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, .production_id = 69), + [3488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, .production_id = 70), + [3490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, .production_id = 71), + [3492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 10, .production_id = 189), + [3494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 10, .production_id = 188), + [3496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 61), + [3498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 10, .production_id = 187), + [3500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 92), + [3502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 10, .production_id = 186), + [3504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 10, .production_id = 185), + [3506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 10, .production_id = 184), + [3508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 91), + [3510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 10, .production_id = 189), + [3512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 10, .production_id = 188), + [3514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 10, .production_id = 187), + [3516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 10, .production_id = 186), + [3518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 10, .production_id = 185), + [3520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 10, .production_id = 184), + [3522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, .production_id = 72), + [3524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, .production_id = 73), + [3526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, .production_id = 48), + [3528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, .production_id = 74), + [3530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 60), + [3532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 90), + [3534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, .production_id = 75), + [3536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, .production_id = 76), + [3538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, .production_id = 77), + [3540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, .production_id = 78), + [3542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, .production_id = 79), + [3544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, .production_id = 68), + [3546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 89), + [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [3556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 6, .production_id = 80), + [3558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__method_declaration_raising_repeat1, 4), + [3560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__method_declaration_raising_repeat1, 4), + [3562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 85), + [3564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 86), + [3566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 88), + [3568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 87), + [3570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 59), + [3572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 9, .production_id = 166), + [3574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 59), + [3576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 87), + [3578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 9, .production_id = 165), + [3580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 9, .production_id = 164), + [3582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 9, .production_id = 163), + [3584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 86), + [3586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 9, .production_id = 162), + [3588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 9, .production_id = 160), + [3590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 9, .production_id = 159), + [3592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 9, .production_id = 158), + [3594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 85), + [3596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 9, .production_id = 157), + [3598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 9, .production_id = 156), + [3600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 9, .production_id = 155), + [3602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 9, .production_id = 154), + [3604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 7, .production_id = 84), + [3606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 9, .production_id = 116), + [3608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 109), + [3610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 108), + [3612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 9, .production_id = 153), + [3614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_method_declaration_interface, 9, .production_id = 152), + [3616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 107), + [3618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 9, .production_id = 166), + [3620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 106), + [3622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 9, .production_id = 165), + [3624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 9, .production_id = 164), + [3626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 105), + [3628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 104), + [3630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 9, .production_id = 163), + [3632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 9, .production_id = 162), + [3634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 103), + [3636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 9, .production_id = 161), + [3638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 9, .production_id = 160), + [3640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 102), + [3642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 101), + [3644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 9, .production_id = 159), + [3646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 9, .production_id = 158), + [3648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 100), + [3650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 9, .production_id = 157), + [3652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 9, .production_id = 156), + [3654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 84), + [3656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 99), + [3658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 9, .production_id = 155), + [3660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 98), + [3662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 9, .production_id = 154), + [3664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 9, .production_id = 116), + [3666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 9, .production_id = 153), + [3668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 9, .production_id = 152), + [3670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 89), + [3672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 64), + [3674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 97), + [3676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 94), + [3678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 93), + [3680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 60), + [3682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 96), + [3684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 92), + [3686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 90), + [3688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 88), + [3690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 95), + [3692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_declaration_interface, 7, .production_id = 91), + [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [3716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returning_parameter, 6), + [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [3722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_normal, 6, .production_id = 26), + [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [3750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_normal, 6), + [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [3756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_chained_interface_declaration_repeat1, 2), + [3758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chained_interface_declaration_repeat1, 2), SHIFT_REPEAT(2028), + [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [3781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__select_target, 4), + [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), + [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), + [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), + [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), + [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), + [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), + [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), + [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), + [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), + [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), + [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), + [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [3949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), + [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), + [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [3979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), + [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), + [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [3985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_spec, 5), + [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), + [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), + [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), + [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), + [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), + [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), + [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), + [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), + [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), + [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), + [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), + [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), + [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), + [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), + [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), + [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), + [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), + [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), + [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), + [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), + [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), + [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), + [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [4105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sql_condition, 1), + [4107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__select_target, 3), + [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [4117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__select_target_repeat1, 2), + [4119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__select_target_repeat1, 2), SHIFT_REPEAT(2159), + [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [4124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__logical_expression, 2), + [4126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__select_target, 5), + [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), + [4130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__escaped_operand, 2), + [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [4134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_normal, 5), + [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [4138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_normal, 7), + [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [4142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_reference, 7), + [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [4150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_normal, 5, .production_id = 8), + [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [4154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_normal, 7, .production_id = 26), + [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), + [4160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_reference, 7, .production_id = 26), + [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), + [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), + [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), + [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), + [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), + [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), + [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), + [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), + [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), + [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [4246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__logical_expression, 3), + [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), + [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), + [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [4254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__select_target, 6), + [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), + [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), + [4276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__method_declaration_exceptions, 2), + [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), + [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), + [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [4320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__select_target, 2), + [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [4324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_chained_variable_declaration_repeat1, 2), + [4326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chained_variable_declaration_repeat1, 2), SHIFT_REPEAT(1965), + [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [4343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_normal, 4, .production_id = 8), + [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [4361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_chained_field_symbol_declaration_repeat1, 2), + [4363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chained_field_symbol_declaration_repeat1, 2), SHIFT_REPEAT(1962), + [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), + [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [4382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_chained_write_statement_repeat1, 2), SHIFT_REPEAT(535), + [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [4393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_declaration_repeat1, 2), SHIFT_REPEAT(1909), + [4396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_declaration_repeat1, 2), + [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [4400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), + [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [4412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__read_table_result, 2), + [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [4416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_itabs, 4, .production_id = 26), + [4418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_normal, 3), + [4420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), + [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [4424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), + [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), + [4428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_normal, 3, .production_id = 8), + [4430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), + [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), + [4444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_itabs, 4), + [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [4452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), + [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [4460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__read_table_result, 3), + [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [4468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 4, .production_id = 17), + [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [4478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), + [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [4488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), + [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [4498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_implementation, 5, .production_id = 16), + [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), + [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [4514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_normal, 8), + [4516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_symbol, 2, .production_id = 10), + [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [4520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable, 2, .production_id = 7), + [4522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_reference, 8), + [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [4526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_normal, 8, .production_id = 26), + [4528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__table_expression_free_key, 1), + [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [4532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_chained_structure_declaration_repeat1, 1), + [4534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_chained_structure_declaration_repeat1, 1), + [4536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_reference, 8, .production_id = 26), + [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), + [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), + [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [4548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_reference, 5, .production_id = 26), + [4550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_structure_component, 3), + [4552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structure_component, 3), + [4554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), + [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [4558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_normal, 5, .production_id = 26), + [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [4562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_reference, 5), + [4564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_itabs, 7, .production_id = 81), + [4566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), + [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [4570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_itabs, 5), + [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), + [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), + [4576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing, 1), + [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [4580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_code_binding, 3, .production_id = 39), + [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [4590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), + [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), + [4604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2814), + [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), + [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), + [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), + [4616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_list, 1), + [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), + [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), + [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [4634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), + [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [4640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), + [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [4646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 6, .production_id = 38), + [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), + [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), + [4658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_itabs, 5, .production_id = 37), + [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [4662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2917), + [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [4666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface, 1, .production_id = 1), + [4668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_implementation, 6, .production_id = 16), + [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [4672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), + [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), + [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), + [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), + [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [4724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_normal, 6, .production_id = 8), + [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [4740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__data_object_typing_itabs, 6, .production_id = 56), + [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), + [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), + [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), + [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), + [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), + [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), + [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), + [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), + [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [5036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_clause, 2), + [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), + [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), + [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), + [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), + [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [5118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_all_entries, 5), + [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), + [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), + [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), + [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), + [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), + [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), + [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), + [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), + [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), + [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), + [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [5788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), + [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), + [5802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [5804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [5808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [5812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [5824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_expression, 4, .production_id = 15), + [5826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table_expression, 4, .production_id = 14), + [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), + [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [5850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), + [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), + [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), + [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), + [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), + [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), + [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), + [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), + [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), + [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), + [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), + [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), + [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), + [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [5988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [5990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [5992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [5994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [5998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [6000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [6002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [6004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [6006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [6008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), + [6010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), + [6012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [6016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [6018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), + [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), + [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [6040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), + [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), + [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [6048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [6054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [6056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [6062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [6082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), + [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), + [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [6100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [6102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), + [6104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), + [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), + [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), + [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), + [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), + [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [6152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), + [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), + [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), + [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [6168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), + [6170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), + [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), + [6174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [6176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), + [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [6184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), + [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), + [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), + [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), + [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), + [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), + [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), + [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), + [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), + [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [6236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [6240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [6252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [6254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [6256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [6258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [6264] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [6270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [6272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [6274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [6276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), + [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), + [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), + [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), + [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), + [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), + [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), + [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), + [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), + [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), + [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), + [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), + [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), + [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), + [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), + [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), + [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), + [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), + [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), + [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), + [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), + [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), + [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), + [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), + [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), + [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), + [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), + [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), + [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), + [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), }; #ifdef __cplusplus extern "C" { #endif +void *tree_sitter_abap_external_scanner_create(void); +void tree_sitter_abap_external_scanner_destroy(void *); +bool tree_sitter_abap_external_scanner_scan(void *, TSLexer *, const bool *); +unsigned tree_sitter_abap_external_scanner_serialize(void *, char *); +void tree_sitter_abap_external_scanner_deserialize(void *, const char *, unsigned); + #ifdef _WIN32 #define extern __declspec(dllexport) #endif @@ -61960,6 +65037,15 @@ extern const TSLanguage *tree_sitter_abap(void) { .lex_fn = ts_lex, .keyword_lex_fn = ts_lex_keywords, .keyword_capture_token = sym_name, + .external_scanner = { + &ts_external_scanner_states[0][0], + ts_external_scanner_symbol_map, + tree_sitter_abap_external_scanner_create, + tree_sitter_abap_external_scanner_destroy, + tree_sitter_abap_external_scanner_scan, + tree_sitter_abap_external_scanner_serialize, + tree_sitter_abap_external_scanner_deserialize, + }, .primary_state_ids = ts_primary_state_ids, }; return &language; diff --git a/src/scanner.c b/src/scanner.c new file mode 100644 index 0000000..35b33d0 --- /dev/null +++ b/src/scanner.c @@ -0,0 +1,105 @@ +#include +#include +#include + +enum TokenType { + WHITESPACE, + BOL_COMMENT, + ERROR_SENTINEL, +}; + +typedef struct { + bool pending_bol_comment; +} ScannerState; + +void *tree_sitter_abap_external_scanner_create() { + ScannerState *state = (ScannerState *)ts_calloc(1, sizeof(ScannerState)); + state->pending_bol_comment = false; + return state; +} + +void tree_sitter_abap_external_scanner_destroy(void *payload) { + ts_free(payload); +} + +unsigned tree_sitter_abap_external_scanner_serialize(void *payload, char *buffer) { + ScannerState *state = (ScannerState *)payload; + buffer[0] = state->pending_bol_comment ? 1 : 0; + return 1; +} + +void tree_sitter_abap_external_scanner_deserialize(void *payload, const char *buffer, unsigned length) { + ScannerState *state = (ScannerState *)payload; + state->pending_bol_comment = length > 0 && buffer[0] != 0; +} + +bool tree_sitter_abap_external_scanner_scan(void *payload, TSLexer *lexer, const bool *valid_symbols) { + ScannerState *state = (ScannerState *)payload; + bool can_ws = valid_symbols[WHITESPACE]; + bool can_bol = valid_symbols[BOL_COMMENT]; + + // If we've already split off leading whitespace for an indented comment, + // now emit the BOL_COMMENT token. + if (state->pending_bol_comment && can_bol) { + comment: + state->pending_bol_comment = false; + lexer->result_symbol = BOL_COMMENT; + // consume the '*' itself + lexer->advance(lexer, false); + // consume up to newline + while (!lexer->eof(lexer) && lexer->lookahead != '\n' && lexer->lookahead != '\r') { + lexer->advance(lexer, false); + } + return true; + } + + // We only ever produce WHITESPACE or BOL_COMMENT here + if (!can_ws && !can_bol) { + return false; + } + + // Treat any newline (CR, LF, or CRLF) as whitespace + if (lexer->lookahead == '\r' || lexer->lookahead == '\n' || lexer->lookahead == '\v' || lexer->lookahead == '\f') { + lexer->result_symbol = WHITESPACE; + if (lexer->lookahead == '\r') { + lexer->advance(lexer, false); + if (lexer->lookahead == '\n') { + lexer->advance(lexer, false); + } + } else { + lexer->advance(lexer, false); + } + return true; + } + + // Measure current column to detect "start of line" + int col = lexer->get_column(lexer); + int cnt = 0; + + // Consume any spaces or tabs + while (!lexer->eof(lexer) && (lexer->lookahead == ' ' || lexer->lookahead == '\t')) { + lexer->advance(lexer, false); + cnt++; + } + + // If we consumed indentation at column 0 and the next char is '*', + // split it: return the whitespace now, then schedule the comment. + if (cnt > 0 && col == 0 && lexer->lookahead == '*' && can_ws && can_bol) { + state->pending_bol_comment = true; + lexer->result_symbol = WHITESPACE; + return true; + } + + // If we consumed any whitespace (not leading into a comment), emit it + if (cnt > 0 && can_ws) { + lexer->result_symbol = WHITESPACE; + return true; + } + + // If at start of line with '*' and comments are allowed, consume it + if (col == 0 && lexer->lookahead == '*' && can_bol) { + goto comment; + } + + return false; +}