diff --git a/Cargo.toml b/Cargo.toml index a866494..a693f59 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "tree-sitter-uiua" description = "Uiua grammar for the tree-sitter parsing library" -version = "0.3.3" +version = "0.6.0" keywords = ["incremental", "parsing", "Uiua"] categories = ["parsing", "text-editors"] repository = "https://github.com/tree-sitter/tree-sitter-uiua" diff --git a/flake.lock b/flake.lock index 2b1a681..23624e5 100644 --- a/flake.lock +++ b/flake.lock @@ -81,11 +81,11 @@ }, "nixpkgs": { "locked": { - "lastModified": 1700108881, - "narHash": "sha256-+Lqybl8kj0+nD/IlAWPPG/RDTa47gff9nbei0u7BntE=", + "lastModified": 1701336116, + "narHash": "sha256-kEmpezCR/FpITc6yMbAh4WrOCiT2zg5pSjnKrq51h5Y=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "7414e9ee0b3e9903c24d3379f577a417f0aae5f1", + "rev": "f5c27c6136db4d76c30e533c20517df6864c46ee", "type": "github" }, "original": { @@ -182,11 +182,11 @@ "nixpkgs": "nixpkgs_2" }, "locked": { - "lastModified": 1700262378, - "narHash": "sha256-03MEV1GBij9QUFCZ1WRiE8IvwCkWtLmN8DEiQby4JpM=", + "lastModified": 1701385924, + "narHash": "sha256-BrBumrSGtlxHtMPShyqiz6eeKgoP/1JntqJP/ye+eAU=", "owner": "uiua-lang", "repo": "uiua", - "rev": "b6ecef8528b9d4e74fb5ed1452c05fdcbef1bd05", + "rev": "398ef5955f9eeb8d106ca16905d1c25a1b875494", "type": "github" }, "original": { diff --git a/grammar.js b/grammar.js index e5bb89a..fe5cdf7 100644 --- a/grammar.js +++ b/grammar.js @@ -405,9 +405,13 @@ module.exports = grammar({ token('pack'), token('⊐'), - // Since 0.24 - token('reach'), - token('⟜'), + // Since 0.4.0 + token('rectify'), + token('⌅'), + token('this'), + token('↬'), + token('recur'), + token('↫'), ), modifier2: $ => choice( // (2[1], Fold, AggregatingModifier, ("fold", '∧')), @@ -447,6 +451,12 @@ module.exports = grammar({ // Since 0.26 token('do'), token('⍢'), + + // Since 0.4.0 + token('all'), + token('⋔'), + token('setinv'), + token('setunder'), ), deprecated: $ => choice( token('❥'), @@ -462,6 +472,9 @@ module.exports = grammar({ token('≑'), token('≐'), token('∺'), + + // Since 0.4.0 + token('⟜'), ), // _whitespace: $ => /[ \t]+/, _endOfLine:$ => token(/\r?\n/), diff --git a/package.json b/package.json index 1e5b3ff..3fce807 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "tree-sitter-uiua", - "version": "0.3.3", + "version": "0.6.0", "description": "parser for Uiua", "main": "bindings/node", "scripts": { diff --git a/src/grammar.json b/src/grammar.json index a86d132..1bff1e0 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -2071,14 +2071,42 @@ "type": "TOKEN", "content": { "type": "STRING", - "value": "reach" + "value": "rectify" } }, { "type": "TOKEN", "content": { "type": "STRING", - "value": "⟜" + "value": "⌅" + } + }, + { + "type": "TOKEN", + "content": { + "type": "STRING", + "value": "this" + } + }, + { + "type": "TOKEN", + "content": { + "type": "STRING", + "value": "↬" + } + }, + { + "type": "TOKEN", + "content": { + "type": "STRING", + "value": "recur" + } + }, + { + "type": "TOKEN", + "content": { + "type": "STRING", + "value": "↫" } } ] @@ -2253,6 +2281,34 @@ "type": "STRING", "value": "⍢" } + }, + { + "type": "TOKEN", + "content": { + "type": "STRING", + "value": "all" + } + }, + { + "type": "TOKEN", + "content": { + "type": "STRING", + "value": "⋔" + } + }, + { + "type": "TOKEN", + "content": { + "type": "STRING", + "value": "setinv" + } + }, + { + "type": "TOKEN", + "content": { + "type": "STRING", + "value": "setunder" + } } ] }, @@ -2335,6 +2391,13 @@ "type": "STRING", "value": "∺" } + }, + { + "type": "TOKEN", + "content": { + "type": "STRING", + "value": "⟜" + } } ] }, diff --git a/src/node-types.json b/src/node-types.json index 419d2c1..1a10d65 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -509,6 +509,10 @@ "type": "absolute value", "named": false }, + { + "type": "all", + "named": false + }, { "type": "assert", "named": false @@ -786,7 +790,11 @@ "named": false }, { - "type": "reach", + "type": "rectify", + "named": false + }, + { + "type": "recur", "named": false }, { @@ -845,6 +853,14 @@ "type": "send", "named": false }, + { + "type": "setinv", + "named": false + }, + { + "type": "setunder", + "named": false + }, { "type": "shape", "named": false @@ -889,6 +905,10 @@ "type": "tau", "named": false }, + { + "type": "this", + "named": false + }, { "type": "transpose", "named": false @@ -1017,6 +1037,14 @@ "type": "↧", "named": false }, + { + "type": "↫", + "named": false + }, + { + "type": "↬", + "named": false + }, { "type": "↯", "named": false @@ -1181,6 +1209,10 @@ "type": "⋅", "named": false }, + { + "type": "⋔", + "named": false + }, { "type": "⋯", "named": false @@ -1189,6 +1221,10 @@ "type": "⌂", "named": false }, + { + "type": "⌅", + "named": false + }, { "type": "⌈", "named": false diff --git a/src/parser.c b/src/parser.c index 22d4e09..85fcde4 100644 --- a/src/parser.c +++ b/src/parser.c @@ -16,9 +16,9 @@ #define LANGUAGE_VERSION 14 #define STATE_COUNT 242 #define LARGE_STATE_COUNT 176 -#define SYMBOL_COUNT 259 +#define SYMBOL_COUNT 268 #define ALIAS_COUNT 0 -#define TOKEN_COUNT 232 +#define TOKEN_COUNT 241 #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 0 #define MAX_ALIAS_SEQUENCE_LENGTH 6 @@ -218,71 +218,80 @@ enum { anon_sym_spawn = 191, anon_sym_pack = 192, anon_sym_68 = 193, - anon_sym_reach = 194, + anon_sym_rectify = 194, anon_sym_69 = 195, - anon_sym_fold = 196, + anon_sym_this = 196, anon_sym_70 = 197, - anon_sym_table = 198, + anon_sym_recur = 198, anon_sym_71 = 199, - anon_sym_cross = 200, + anon_sym_fold = 200, anon_sym_72 = 201, - anon_sym_group = 202, + anon_sym_table = 202, anon_sym_73 = 203, - anon_sym_partition = 204, + anon_sym_cross = 204, anon_sym_74 = 205, - anon_sym_both = 206, + anon_sym_group = 206, anon_sym_75 = 207, - anon_sym_bracket = 208, + anon_sym_partition = 208, anon_sym_76 = 209, - anon_sym_fork = 210, + anon_sym_both = 210, anon_sym_77 = 211, - anon_sym_under = 212, + anon_sym_bracket = 212, anon_sym_78 = 213, - anon_sym_fill = 214, + anon_sym_fork = 214, anon_sym_79 = 215, - anon_sym_try = 216, + anon_sym_under = 216, anon_sym_80 = 217, - anon_sym_do = 218, + anon_sym_fill = 218, anon_sym_81 = 219, - anon_sym_82 = 220, - anon_sym_83 = 221, - anon_sym_84 = 222, - anon_sym_85 = 223, - anon_sym_86 = 224, - anon_sym_87 = 225, - anon_sym_88 = 226, - anon_sym_89 = 227, - anon_sym_90 = 228, - anon_sym_91 = 229, - anon_sym_92 = 230, - sym__endOfLine = 231, - sym_source_file = 232, - sym_PROGRAM = 233, - sym_binding = 234, - sym_module = 235, - sym_segment = 236, - sym_term = 237, - sym_inlineFunction = 238, - sym_switchFunctions = 239, - sym_array = 240, - sym_number = 241, - sym_otherConstant = 242, - sym_character = 243, - sym_signature = 244, - sym_placeHolder = 245, - sym_branchSeparator = 246, - sym_compound = 247, - sym_primitive = 248, - sym_constant = 249, - sym_function = 250, - sym_modifier1 = 251, - sym_modifier2 = 252, - sym_deprecated = 253, - aux_sym_PROGRAM_repeat1 = 254, - aux_sym_module_repeat1 = 255, - aux_sym_switchFunctions_repeat1 = 256, - aux_sym_array_repeat1 = 257, - aux_sym_array_repeat2 = 258, + anon_sym_try = 220, + anon_sym_82 = 221, + anon_sym_do = 222, + anon_sym_83 = 223, + anon_sym_all = 224, + anon_sym_84 = 225, + anon_sym_setinv = 226, + anon_sym_setunder = 227, + anon_sym_85 = 228, + anon_sym_86 = 229, + anon_sym_87 = 230, + anon_sym_88 = 231, + anon_sym_89 = 232, + anon_sym_90 = 233, + anon_sym_91 = 234, + anon_sym_92 = 235, + anon_sym_93 = 236, + anon_sym_94 = 237, + anon_sym_95 = 238, + anon_sym_96 = 239, + sym__endOfLine = 240, + sym_source_file = 241, + sym_PROGRAM = 242, + sym_binding = 243, + sym_module = 244, + sym_segment = 245, + sym_term = 246, + sym_inlineFunction = 247, + sym_switchFunctions = 248, + sym_array = 249, + sym_number = 250, + sym_otherConstant = 251, + sym_character = 252, + sym_signature = 253, + sym_placeHolder = 254, + sym_branchSeparator = 255, + sym_compound = 256, + sym_primitive = 257, + sym_constant = 258, + sym_function = 259, + sym_modifier1 = 260, + sym_modifier2 = 261, + sym_deprecated = 262, + aux_sym_PROGRAM_repeat1 = 263, + aux_sym_module_repeat1 = 264, + aux_sym_switchFunctions_repeat1 = 265, + aux_sym_array_repeat1 = 266, + aux_sym_array_repeat2 = 267, }; static const char * const ts_symbol_names[] = { @@ -480,43 +489,52 @@ static const char * const ts_symbol_names[] = { [anon_sym_spawn] = "spawn", [anon_sym_pack] = "pack", [anon_sym_68] = "⊐", - [anon_sym_reach] = "reach", - [anon_sym_69] = "⟜", + [anon_sym_rectify] = "rectify", + [anon_sym_69] = "⌅", + [anon_sym_this] = "this", + [anon_sym_70] = "↬", + [anon_sym_recur] = "recur", + [anon_sym_71] = "↫", [anon_sym_fold] = "fold", - [anon_sym_70] = "∧", + [anon_sym_72] = "∧", [anon_sym_table] = "table", - [anon_sym_71] = "⊞", + [anon_sym_73] = "⊞", [anon_sym_cross] = "cross", - [anon_sym_72] = "⊠", + [anon_sym_74] = "⊠", [anon_sym_group] = "group", - [anon_sym_73] = "⊕", + [anon_sym_75] = "⊕", [anon_sym_partition] = "partition", - [anon_sym_74] = "⊜", + [anon_sym_76] = "⊜", [anon_sym_both] = "both", - [anon_sym_75] = "∩", + [anon_sym_77] = "∩", [anon_sym_bracket] = "bracket", - [anon_sym_76] = "⊓", + [anon_sym_78] = "⊓", [anon_sym_fork] = "fork", - [anon_sym_77] = "⊃", + [anon_sym_79] = "⊃", [anon_sym_under] = "under", - [anon_sym_78] = "⍜", + [anon_sym_80] = "⍜", [anon_sym_fill] = "fill", - [anon_sym_79] = "⬚", + [anon_sym_81] = "⬚", [anon_sym_try] = "try", - [anon_sym_80] = "⍣", + [anon_sym_82] = "⍣", [anon_sym_do] = "do", - [anon_sym_81] = "⍢", - [anon_sym_82] = "❥", - [anon_sym_83] = "→", - [anon_sym_84] = "∷", - [anon_sym_85] = "·", - [anon_sym_86] = "⍛", - [anon_sym_87] = "⌂", - [anon_sym_88] = "↰", - [anon_sym_89] = "◳", - [anon_sym_90] = "≑", - [anon_sym_91] = "≐", - [anon_sym_92] = "∺", + [anon_sym_83] = "⍢", + [anon_sym_all] = "all", + [anon_sym_84] = "⋔", + [anon_sym_setinv] = "setinv", + [anon_sym_setunder] = "setunder", + [anon_sym_85] = "❥", + [anon_sym_86] = "→", + [anon_sym_87] = "∷", + [anon_sym_88] = "·", + [anon_sym_89] = "⍛", + [anon_sym_90] = "⌂", + [anon_sym_91] = "↰", + [anon_sym_92] = "◳", + [anon_sym_93] = "≑", + [anon_sym_94] = "≐", + [anon_sym_95] = "∺", + [anon_sym_96] = "⟜", [sym__endOfLine] = "_endOfLine", [sym_source_file] = "source_file", [sym_PROGRAM] = "PROGRAM", @@ -742,35 +760,40 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_spawn] = anon_sym_spawn, [anon_sym_pack] = anon_sym_pack, [anon_sym_68] = anon_sym_68, - [anon_sym_reach] = anon_sym_reach, + [anon_sym_rectify] = anon_sym_rectify, [anon_sym_69] = anon_sym_69, - [anon_sym_fold] = anon_sym_fold, + [anon_sym_this] = anon_sym_this, [anon_sym_70] = anon_sym_70, - [anon_sym_table] = anon_sym_table, + [anon_sym_recur] = anon_sym_recur, [anon_sym_71] = anon_sym_71, - [anon_sym_cross] = anon_sym_cross, + [anon_sym_fold] = anon_sym_fold, [anon_sym_72] = anon_sym_72, - [anon_sym_group] = anon_sym_group, + [anon_sym_table] = anon_sym_table, [anon_sym_73] = anon_sym_73, - [anon_sym_partition] = anon_sym_partition, + [anon_sym_cross] = anon_sym_cross, [anon_sym_74] = anon_sym_74, - [anon_sym_both] = anon_sym_both, + [anon_sym_group] = anon_sym_group, [anon_sym_75] = anon_sym_75, - [anon_sym_bracket] = anon_sym_bracket, + [anon_sym_partition] = anon_sym_partition, [anon_sym_76] = anon_sym_76, - [anon_sym_fork] = anon_sym_fork, + [anon_sym_both] = anon_sym_both, [anon_sym_77] = anon_sym_77, - [anon_sym_under] = anon_sym_under, + [anon_sym_bracket] = anon_sym_bracket, [anon_sym_78] = anon_sym_78, - [anon_sym_fill] = anon_sym_fill, + [anon_sym_fork] = anon_sym_fork, [anon_sym_79] = anon_sym_79, - [anon_sym_try] = anon_sym_try, + [anon_sym_under] = anon_sym_under, [anon_sym_80] = anon_sym_80, - [anon_sym_do] = anon_sym_do, + [anon_sym_fill] = anon_sym_fill, [anon_sym_81] = anon_sym_81, + [anon_sym_try] = anon_sym_try, [anon_sym_82] = anon_sym_82, + [anon_sym_do] = anon_sym_do, [anon_sym_83] = anon_sym_83, + [anon_sym_all] = anon_sym_all, [anon_sym_84] = anon_sym_84, + [anon_sym_setinv] = anon_sym_setinv, + [anon_sym_setunder] = anon_sym_setunder, [anon_sym_85] = anon_sym_85, [anon_sym_86] = anon_sym_86, [anon_sym_87] = anon_sym_87, @@ -779,6 +802,10 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_90] = anon_sym_90, [anon_sym_91] = anon_sym_91, [anon_sym_92] = anon_sym_92, + [anon_sym_93] = anon_sym_93, + [anon_sym_94] = anon_sym_94, + [anon_sym_95] = anon_sym_95, + [anon_sym_96] = anon_sym_96, [sym__endOfLine] = sym__endOfLine, [sym_source_file] = sym_source_file, [sym_PROGRAM] = sym_PROGRAM, @@ -1586,7 +1613,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_reach] = { + [anon_sym_rectify] = { .visible = true, .named = false, }, @@ -1594,7 +1621,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_fold] = { + [anon_sym_this] = { .visible = true, .named = false, }, @@ -1602,7 +1629,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_table] = { + [anon_sym_recur] = { .visible = true, .named = false, }, @@ -1610,7 +1637,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_cross] = { + [anon_sym_fold] = { .visible = true, .named = false, }, @@ -1618,7 +1645,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_group] = { + [anon_sym_table] = { .visible = true, .named = false, }, @@ -1626,7 +1653,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_partition] = { + [anon_sym_cross] = { .visible = true, .named = false, }, @@ -1634,7 +1661,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_both] = { + [anon_sym_group] = { .visible = true, .named = false, }, @@ -1642,7 +1669,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_bracket] = { + [anon_sym_partition] = { .visible = true, .named = false, }, @@ -1650,7 +1677,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_fork] = { + [anon_sym_both] = { .visible = true, .named = false, }, @@ -1658,7 +1685,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_under] = { + [anon_sym_bracket] = { .visible = true, .named = false, }, @@ -1666,7 +1693,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_fill] = { + [anon_sym_fork] = { .visible = true, .named = false, }, @@ -1674,7 +1701,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_try] = { + [anon_sym_under] = { .visible = true, .named = false, }, @@ -1682,7 +1709,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_do] = { + [anon_sym_fill] = { .visible = true, .named = false, }, @@ -1690,18 +1717,38 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_try] = { + .visible = true, + .named = false, + }, [anon_sym_82] = { .visible = true, .named = false, }, + [anon_sym_do] = { + .visible = true, + .named = false, + }, [anon_sym_83] = { .visible = true, .named = false, }, + [anon_sym_all] = { + .visible = true, + .named = false, + }, [anon_sym_84] = { .visible = true, .named = false, }, + [anon_sym_setinv] = { + .visible = true, + .named = false, + }, + [anon_sym_setunder] = { + .visible = true, + .named = false, + }, [anon_sym_85] = { .visible = true, .named = false, @@ -1734,6 +1781,22 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_93] = { + .visible = true, + .named = false, + }, + [anon_sym_94] = { + .visible = true, + .named = false, + }, + [anon_sym_95] = { + .visible = true, + .named = false, + }, + [anon_sym_96] = { + .visible = true, + .named = false, + }, [sym__endOfLine] = { .visible = false, .named = true, @@ -2456,3567 +2519,3656 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(199); - if (lookahead == '\n') ADVANCE(691); + if (eof) ADVANCE(208); + if (lookahead == '\n') ADVANCE(712); if (lookahead == '\r') ADVANCE(1); if (lookahead == '!') ADVANCE(7); if (lookahead == '"') ADVANCE(4); - if (lookahead == '#') ADVANCE(400); - if (lookahead == '$') ADVANCE(221); - if (lookahead == '%') ADVANCE(539); - if (lookahead == '&') ADVANCE(195); - if (lookahead == '(') ADVANCE(477); - if (lookahead == ')') ADVANCE(478); - if (lookahead == '*') ADVANCE(537); - if (lookahead == '+') ADVANCE(534); - if (lookahead == ',') ADVANCE(498); - if (lookahead == '-') ADVANCE(536); - if (lookahead == '.') ADVANCE(497); - if (lookahead == '/') ADVANCE(636); - if (lookahead == ':') ADVANCE(499); - if (lookahead == ';') ADVANCE(500); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '=') ADVANCE(525); - if (lookahead == '>') ADVANCE(531); + if (lookahead == '#') ADVANCE(411); + if (lookahead == '$') ADVANCE(230); + if (lookahead == '%') ADVANCE(551); + if (lookahead == '&') ADVANCE(204); + if (lookahead == '(') ADVANCE(489); + if (lookahead == ')') ADVANCE(490); + if (lookahead == '*') ADVANCE(549); + if (lookahead == '+') ADVANCE(546); + if (lookahead == ',') ADVANCE(510); + if (lookahead == '-') ADVANCE(548); + if (lookahead == '.') ADVANCE(509); + if (lookahead == '/') ADVANCE(648); + if (lookahead == ':') ADVANCE(511); + if (lookahead == ';') ADVANCE(512); + if (lookahead == '<') ADVANCE(540); + if (lookahead == '=') ADVANCE(537); + if (lookahead == '>') ADVANCE(543); if (lookahead == '@') ADVANCE(8); - if (lookahead == 'A') ADVANCE(363); - if (lookahead == 'E') ADVANCE(393); - if (lookahead == 'F') ADVANCE(234); - if (lookahead == 'N') ADVANCE(233); - if (lookahead == 'P') ADVANCE(316); - if (lookahead == 'S') ADVANCE(282); - if (lookahead == '[') ADVANCE(481); - if (lookahead == '\\') ADVANCE(638); - if (lookahead == ']') ADVANCE(482); - if (lookahead == '^') ADVANCE(485); - if (lookahead == '_') ADVANCE(483); - if (lookahead == '`') ADVANCE(509); - if (lookahead == 'a') ADVANCE(264); - if (lookahead == 'b') ADVANCE(306); - if (lookahead == 'c') ADVANCE(283); - if (lookahead == 'd') ADVANCE(284); - if (lookahead == 'e') ADVANCE(494); - if (lookahead == 'f') ADVANCE(248); - if (lookahead == 'g') ADVANCE(249); - if (lookahead == 'i') ADVANCE(276); - if (lookahead == 'j') ADVANCE(348); - if (lookahead == 'k') ADVANCE(294); - if (lookahead == 'l') ADVANCE(292); - if (lookahead == 'm') ADVANCE(245); - if (lookahead == 'n') ADVANCE(346); - if (lookahead == 'o') ADVANCE(369); - if (lookahead == 'p') ADVANCE(235); - if (lookahead == 'r') ADVANCE(253); - if (lookahead == 's') ADVANCE(274); - if (lookahead == 't') ADVANCE(236); - if (lookahead == 'u') ADVANCE(333); - if (lookahead == 'w') ADVANCE(250); - if (lookahead == '{') ADVANCE(479); - if (lookahead == '|') ADVANCE(223); - if (lookahead == '}') ADVANCE(480); - if (lookahead == 164) ADVANCE(634); - if (lookahead == 172) ADVANCE(506); - if (lookahead == 175) ADVANCE(511); - if (lookahead == 177) ADVANCE(508); - if (lookahead == 183) ADVANCE(683); - if (lookahead == 215) ADVANCE(538); - if (lookahead == 247) ADVANCE(540); - if (lookahead == 951) ADVANCE(487); - if (lookahead == 960) ADVANCE(489); - if (lookahead == 964) ADVANCE(491); - if (lookahead == 8261) ADVANCE(524); - if (lookahead == 8319) ADVANCE(544); - if (lookahead == 8345) ADVANCE(546); - if (lookahead == 8450) ADVANCE(630); - if (lookahead == 8592) ADVANCE(484); - if (lookahead == 8594) ADVANCE(681); - if (lookahead == 8600) ADVANCE(598); - if (lookahead == 8601) ADVANCE(596); - if (lookahead == 8613) ADVANCE(550); - if (lookahead == 8615) ADVANCE(548); - if (lookahead == 8623) ADVANCE(594); - if (lookahead == 8624) ADVANCE(686); - if (lookahead == 8635) ADVANCE(600); - if (lookahead == 8652) ADVANCE(562); - if (lookahead == 8673) ADVANCE(558); - if (lookahead == 8714) ADVANCE(608); - if (lookahead == 8728) ADVANCE(504); - if (lookahead == 8730) ADVANCE(516); - if (lookahead == 8734) ADVANCE(493); - if (lookahead == 8736) ADVANCE(552); - if (lookahead == 8743) ADVANCE(657); - if (lookahead == 8745) ADVANCE(667); - if (lookahead == 8757) ADVANCE(640); - if (lookahead == 8759) ADVANCE(682); - if (lookahead == 8762) ADVANCE(690); - if (lookahead == 8781) ADVANCE(584); - if (lookahead == 8784) ADVANCE(689); - if (lookahead == 8785) ADVANCE(688); - if (lookahead == 8800) ADVANCE(527); - if (lookahead == 8801) ADVANCE(642); - if (lookahead == 8804) ADVANCE(530); - if (lookahead == 8805) ADVANCE(533); - if (lookahead == 8834) ADVANCE(588); - if (lookahead == 8835) ADVANCE(671); - if (lookahead == 8847) ADVANCE(590); - if (lookahead == 8848) ADVANCE(653); - if (lookahead == 8851) ADVANCE(669); - if (lookahead == 8852) ADVANCE(582); - if (lookahead == 8853) ADVANCE(663); - if (lookahead == 8855) ADVANCE(610); - if (lookahead == 8857) ADVANCE(646); - if (lookahead == 8858) ADVANCE(574); - if (lookahead == 8859) ADVANCE(576); - if (lookahead == 8860) ADVANCE(665); - if (lookahead == 8861) ADVANCE(578); - if (lookahead == 8862) ADVANCE(659); - if (lookahead == 8863) ADVANCE(586); - if (lookahead == 8864) ADVANCE(661); - if (lookahead == 8865) ADVANCE(592); - if (lookahead == 8866) ADVANCE(560); - if (lookahead == 8901) ADVANCE(648); - if (lookahead == 8943) ADVANCE(566); - if (lookahead == 8962) ADVANCE(685); - if (lookahead == 8968) ADVANCE(522); - if (lookahead == 8970) ADVANCE(520); - if (lookahead == 8981) ADVANCE(606); - if (lookahead == 9013) ADVANCE(514); - if (lookahead == 9033) ADVANCE(568); - if (lookahead == 9039) ADVANCE(570); - if (lookahead == 9046) ADVANCE(572); - if (lookahead == 9048) ADVANCE(650); - if (lookahead == 9051) ADVANCE(684); - if (lookahead == 9052) ADVANCE(673); - if (lookahead == 9058) ADVANCE(679); - if (lookahead == 9059) ADVANCE(677); - if (lookahead == 9060) ADVANCE(612); - if (lookahead == 9061) ADVANCE(644); - if (lookahead == 9084) ADVANCE(213); - if (lookahead == 9633) ADVANCE(580); - if (lookahead == 9651) ADVANCE(556); - if (lookahead == 9661) ADVANCE(604); - if (lookahead == 9675) ADVANCE(518); - if (lookahead == 9707) ADVANCE(602); - if (lookahead == 9715) ADVANCE(687); - if (lookahead == 9727) ADVANCE(542); - if (lookahead == 9735) ADVANCE(632); - if (lookahead == 9837) ADVANCE(564); - if (lookahead == 9858) ADVANCE(616); - if (lookahead == 10085) ADVANCE(680); - if (lookahead == 10204) ADVANCE(655); - if (lookahead == 10747) ADVANCE(554); - if (lookahead == 11034) ADVANCE(675); - if (lookahead == 11822) ADVANCE(622); + if (lookahead == 'A') ADVANCE(374); + if (lookahead == 'E') ADVANCE(404); + if (lookahead == 'F') ADVANCE(243); + if (lookahead == 'N') ADVANCE(242); + if (lookahead == 'P') ADVANCE(327); + if (lookahead == 'S') ADVANCE(291); + if (lookahead == '[') ADVANCE(493); + if (lookahead == '\\') ADVANCE(650); + if (lookahead == ']') ADVANCE(494); + if (lookahead == '^') ADVANCE(497); + if (lookahead == '_') ADVANCE(495); + if (lookahead == '`') ADVANCE(521); + if (lookahead == 'a') ADVANCE(272); + if (lookahead == 'b') ADVANCE(315); + if (lookahead == 'c') ADVANCE(292); + if (lookahead == 'd') ADVANCE(293); + if (lookahead == 'e') ADVANCE(506); + if (lookahead == 'f') ADVANCE(259); + if (lookahead == 'g') ADVANCE(257); + if (lookahead == 'i') ADVANCE(285); + if (lookahead == 'j') ADVANCE(359); + if (lookahead == 'k') ADVANCE(303); + if (lookahead == 'l') ADVANCE(301); + if (lookahead == 'm') ADVANCE(254); + if (lookahead == 'n') ADVANCE(357); + if (lookahead == 'o') ADVANCE(380); + if (lookahead == 'p') ADVANCE(244); + if (lookahead == 'r') ADVANCE(261); + if (lookahead == 's') ADVANCE(283); + if (lookahead == 't') ADVANCE(245); + if (lookahead == 'u') ADVANCE(344); + if (lookahead == 'w') ADVANCE(260); + if (lookahead == '{') ADVANCE(491); + if (lookahead == '|') ADVANCE(232); + if (lookahead == '}') ADVANCE(492); + if (lookahead == 164) ADVANCE(646); + if (lookahead == 172) ADVANCE(518); + if (lookahead == 175) ADVANCE(523); + if (lookahead == 177) ADVANCE(520); + if (lookahead == 183) ADVANCE(703); + if (lookahead == 215) ADVANCE(550); + if (lookahead == 247) ADVANCE(552); + if (lookahead == 951) ADVANCE(499); + if (lookahead == 960) ADVANCE(501); + if (lookahead == 964) ADVANCE(503); + if (lookahead == 8261) ADVANCE(536); + if (lookahead == 8319) ADVANCE(556); + if (lookahead == 8345) ADVANCE(558); + if (lookahead == 8450) ADVANCE(642); + if (lookahead == 8592) ADVANCE(496); + if (lookahead == 8594) ADVANCE(701); + if (lookahead == 8600) ADVANCE(610); + if (lookahead == 8601) ADVANCE(608); + if (lookahead == 8613) ADVANCE(562); + if (lookahead == 8615) ADVANCE(560); + if (lookahead == 8619) ADVANCE(671); + if (lookahead == 8620) ADVANCE(669); + if (lookahead == 8623) ADVANCE(606); + if (lookahead == 8624) ADVANCE(706); + if (lookahead == 8635) ADVANCE(612); + if (lookahead == 8652) ADVANCE(574); + if (lookahead == 8673) ADVANCE(570); + if (lookahead == 8714) ADVANCE(620); + if (lookahead == 8728) ADVANCE(516); + if (lookahead == 8730) ADVANCE(528); + if (lookahead == 8734) ADVANCE(505); + if (lookahead == 8736) ADVANCE(564); + if (lookahead == 8743) ADVANCE(673); + if (lookahead == 8745) ADVANCE(683); + if (lookahead == 8757) ADVANCE(652); + if (lookahead == 8759) ADVANCE(702); + if (lookahead == 8762) ADVANCE(710); + if (lookahead == 8781) ADVANCE(596); + if (lookahead == 8784) ADVANCE(709); + if (lookahead == 8785) ADVANCE(708); + if (lookahead == 8800) ADVANCE(539); + if (lookahead == 8801) ADVANCE(654); + if (lookahead == 8804) ADVANCE(542); + if (lookahead == 8805) ADVANCE(545); + if (lookahead == 8834) ADVANCE(600); + if (lookahead == 8835) ADVANCE(687); + if (lookahead == 8847) ADVANCE(602); + if (lookahead == 8848) ADVANCE(665); + if (lookahead == 8851) ADVANCE(685); + if (lookahead == 8852) ADVANCE(594); + if (lookahead == 8853) ADVANCE(679); + if (lookahead == 8855) ADVANCE(622); + if (lookahead == 8857) ADVANCE(658); + if (lookahead == 8858) ADVANCE(586); + if (lookahead == 8859) ADVANCE(588); + if (lookahead == 8860) ADVANCE(681); + if (lookahead == 8861) ADVANCE(590); + if (lookahead == 8862) ADVANCE(675); + if (lookahead == 8863) ADVANCE(598); + if (lookahead == 8864) ADVANCE(677); + if (lookahead == 8865) ADVANCE(604); + if (lookahead == 8866) ADVANCE(572); + if (lookahead == 8901) ADVANCE(660); + if (lookahead == 8916) ADVANCE(697); + if (lookahead == 8943) ADVANCE(578); + if (lookahead == 8962) ADVANCE(705); + if (lookahead == 8965) ADVANCE(667); + if (lookahead == 8968) ADVANCE(534); + if (lookahead == 8970) ADVANCE(532); + if (lookahead == 8981) ADVANCE(618); + if (lookahead == 9013) ADVANCE(526); + if (lookahead == 9033) ADVANCE(580); + if (lookahead == 9039) ADVANCE(582); + if (lookahead == 9046) ADVANCE(584); + if (lookahead == 9048) ADVANCE(662); + if (lookahead == 9051) ADVANCE(704); + if (lookahead == 9052) ADVANCE(689); + if (lookahead == 9058) ADVANCE(695); + if (lookahead == 9059) ADVANCE(693); + if (lookahead == 9060) ADVANCE(624); + if (lookahead == 9061) ADVANCE(656); + if (lookahead == 9084) ADVANCE(222); + if (lookahead == 9633) ADVANCE(592); + if (lookahead == 9651) ADVANCE(568); + if (lookahead == 9661) ADVANCE(616); + if (lookahead == 9675) ADVANCE(530); + if (lookahead == 9707) ADVANCE(614); + if (lookahead == 9715) ADVANCE(707); + if (lookahead == 9727) ADVANCE(554); + if (lookahead == 9735) ADVANCE(644); + if (lookahead == 9837) ADVANCE(576); + if (lookahead == 9858) ADVANCE(628); + if (lookahead == 10085) ADVANCE(700); + if (lookahead == 10204) ADVANCE(711); + if (lookahead == 10747) ADVANCE(566); + if (lookahead == 11034) ADVANCE(691); + if (lookahead == 11822) ADVANCE(634); if (lookahead == '\t' || lookahead == ' ') SKIP(0) - if (('h' <= lookahead && lookahead <= 'z')) ADVANCE(398); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(201); - if (('B' <= lookahead && lookahead <= 'Z')) ADVANCE(399); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(226); + if (('h' <= lookahead && lookahead <= 'z')) ADVANCE(409); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(210); + if (('B' <= lookahead && lookahead <= 'Z')) ADVANCE(410); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(235); END_STATE(); case 1: - if (lookahead == '\n') ADVANCE(691); + if (lookahead == '\n') ADVANCE(712); END_STATE(); case 2: - if (lookahead == '\n') ADVANCE(691); + if (lookahead == '\n') ADVANCE(712); if (lookahead == '\r') ADVANCE(1); if (lookahead == '!') ADVANCE(7); - if (lookahead == '#') ADVANCE(400); - if (lookahead == '%') ADVANCE(539); - if (lookahead == '&') ADVANCE(195); - if (lookahead == '(') ADVANCE(477); - if (lookahead == ')') ADVANCE(478); - if (lookahead == '*') ADVANCE(537); - if (lookahead == '+') ADVANCE(534); - if (lookahead == ',') ADVANCE(498); - if (lookahead == '-') ADVANCE(535); - if (lookahead == '.') ADVANCE(497); - if (lookahead == ':') ADVANCE(499); - if (lookahead == ';') ADVANCE(500); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '=') ADVANCE(525); - if (lookahead == '>') ADVANCE(531); - if (lookahead == '_') ADVANCE(483); - if (lookahead == '`') ADVANCE(509); - if (lookahead == 'a') ADVANCE(263); - if (lookahead == 'b') ADVANCE(308); - if (lookahead == 'c') ADVANCE(287); - if (lookahead == 'd') ADVANCE(288); - if (lookahead == 'f') ADVANCE(241); - if (lookahead == 'g') ADVANCE(289); - if (lookahead == 'i') ADVANCE(277); - if (lookahead == 'j') ADVANCE(351); - if (lookahead == 'k') ADVANCE(290); - if (lookahead == 'l') ADVANCE(293); - if (lookahead == 'm') ADVANCE(242); - if (lookahead == 'n') ADVANCE(347); - if (lookahead == 'p') ADVANCE(243); - if (lookahead == 'r') ADVANCE(254); - if (lookahead == 's') ADVANCE(291); - if (lookahead == 't') ADVANCE(244); - if (lookahead == 'u') ADVANCE(338); - if (lookahead == 'w') ADVANCE(252); - if (lookahead == '|') ADVANCE(223); - if (lookahead == 164) ADVANCE(634); - if (lookahead == 172) ADVANCE(506); - if (lookahead == 175) ADVANCE(510); - if (lookahead == 177) ADVANCE(508); - if (lookahead == 215) ADVANCE(538); - if (lookahead == 247) ADVANCE(540); - if (lookahead == 8261) ADVANCE(524); - if (lookahead == 8319) ADVANCE(544); - if (lookahead == 8345) ADVANCE(546); - if (lookahead == 8450) ADVANCE(630); - if (lookahead == 8600) ADVANCE(598); - if (lookahead == 8601) ADVANCE(596); - if (lookahead == 8613) ADVANCE(550); - if (lookahead == 8615) ADVANCE(548); - if (lookahead == 8623) ADVANCE(594); - if (lookahead == 8635) ADVANCE(600); - if (lookahead == 8652) ADVANCE(562); - if (lookahead == 8673) ADVANCE(558); - if (lookahead == 8714) ADVANCE(608); - if (lookahead == 8728) ADVANCE(504); - if (lookahead == 8730) ADVANCE(516); - if (lookahead == 8736) ADVANCE(552); - if (lookahead == 8781) ADVANCE(584); - if (lookahead == 8800) ADVANCE(527); - if (lookahead == 8804) ADVANCE(530); - if (lookahead == 8805) ADVANCE(533); - if (lookahead == 8834) ADVANCE(588); - if (lookahead == 8847) ADVANCE(590); - if (lookahead == 8852) ADVANCE(582); - if (lookahead == 8855) ADVANCE(610); - if (lookahead == 8858) ADVANCE(574); - if (lookahead == 8859) ADVANCE(576); - if (lookahead == 8861) ADVANCE(578); - if (lookahead == 8863) ADVANCE(586); - if (lookahead == 8865) ADVANCE(592); - if (lookahead == 8866) ADVANCE(560); - if (lookahead == 8943) ADVANCE(566); - if (lookahead == 8968) ADVANCE(522); - if (lookahead == 8970) ADVANCE(520); - if (lookahead == 8981) ADVANCE(606); - if (lookahead == 9013) ADVANCE(514); - if (lookahead == 9033) ADVANCE(568); - if (lookahead == 9039) ADVANCE(570); - if (lookahead == 9046) ADVANCE(572); - if (lookahead == 9060) ADVANCE(612); - if (lookahead == 9633) ADVANCE(580); - if (lookahead == 9651) ADVANCE(556); - if (lookahead == 9661) ADVANCE(604); - if (lookahead == 9675) ADVANCE(518); - if (lookahead == 9707) ADVANCE(602); - if (lookahead == 9727) ADVANCE(542); - if (lookahead == 9735) ADVANCE(632); - if (lookahead == 9837) ADVANCE(564); - if (lookahead == 9858) ADVANCE(616); - if (lookahead == 10747) ADVANCE(554); - if (lookahead == 11822) ADVANCE(622); + if (lookahead == '#') ADVANCE(411); + if (lookahead == '%') ADVANCE(551); + if (lookahead == '&') ADVANCE(204); + if (lookahead == '(') ADVANCE(489); + if (lookahead == ')') ADVANCE(490); + if (lookahead == '*') ADVANCE(549); + if (lookahead == '+') ADVANCE(546); + if (lookahead == ',') ADVANCE(510); + if (lookahead == '-') ADVANCE(547); + if (lookahead == '.') ADVANCE(509); + if (lookahead == ':') ADVANCE(511); + if (lookahead == ';') ADVANCE(512); + if (lookahead == '<') ADVANCE(540); + if (lookahead == '=') ADVANCE(537); + if (lookahead == '>') ADVANCE(543); + if (lookahead == '_') ADVANCE(495); + if (lookahead == '`') ADVANCE(521); + if (lookahead == 'a') ADVANCE(271); + if (lookahead == 'b') ADVANCE(317); + if (lookahead == 'c') ADVANCE(296); + if (lookahead == 'd') ADVANCE(297); + if (lookahead == 'f') ADVANCE(250); + if (lookahead == 'g') ADVANCE(298); + if (lookahead == 'i') ADVANCE(286); + if (lookahead == 'j') ADVANCE(362); + if (lookahead == 'k') ADVANCE(299); + if (lookahead == 'l') ADVANCE(302); + if (lookahead == 'm') ADVANCE(251); + if (lookahead == 'n') ADVANCE(358); + if (lookahead == 'p') ADVANCE(252); + if (lookahead == 'r') ADVANCE(262); + if (lookahead == 's') ADVANCE(300); + if (lookahead == 't') ADVANCE(253); + if (lookahead == 'u') ADVANCE(349); + if (lookahead == 'w') ADVANCE(258); + if (lookahead == '|') ADVANCE(232); + if (lookahead == 164) ADVANCE(646); + if (lookahead == 172) ADVANCE(518); + if (lookahead == 175) ADVANCE(522); + if (lookahead == 177) ADVANCE(520); + if (lookahead == 215) ADVANCE(550); + if (lookahead == 247) ADVANCE(552); + if (lookahead == 8261) ADVANCE(536); + if (lookahead == 8319) ADVANCE(556); + if (lookahead == 8345) ADVANCE(558); + if (lookahead == 8450) ADVANCE(642); + if (lookahead == 8600) ADVANCE(610); + if (lookahead == 8601) ADVANCE(608); + if (lookahead == 8613) ADVANCE(562); + if (lookahead == 8615) ADVANCE(560); + if (lookahead == 8623) ADVANCE(606); + if (lookahead == 8635) ADVANCE(612); + if (lookahead == 8652) ADVANCE(574); + if (lookahead == 8673) ADVANCE(570); + if (lookahead == 8714) ADVANCE(620); + if (lookahead == 8728) ADVANCE(516); + if (lookahead == 8730) ADVANCE(528); + if (lookahead == 8736) ADVANCE(564); + if (lookahead == 8781) ADVANCE(596); + if (lookahead == 8800) ADVANCE(539); + if (lookahead == 8804) ADVANCE(542); + if (lookahead == 8805) ADVANCE(545); + if (lookahead == 8834) ADVANCE(600); + if (lookahead == 8847) ADVANCE(602); + if (lookahead == 8852) ADVANCE(594); + if (lookahead == 8855) ADVANCE(622); + if (lookahead == 8858) ADVANCE(586); + if (lookahead == 8859) ADVANCE(588); + if (lookahead == 8861) ADVANCE(590); + if (lookahead == 8863) ADVANCE(598); + if (lookahead == 8865) ADVANCE(604); + if (lookahead == 8866) ADVANCE(572); + if (lookahead == 8943) ADVANCE(578); + if (lookahead == 8968) ADVANCE(534); + if (lookahead == 8970) ADVANCE(532); + if (lookahead == 8981) ADVANCE(618); + if (lookahead == 9013) ADVANCE(526); + if (lookahead == 9033) ADVANCE(580); + if (lookahead == 9039) ADVANCE(582); + if (lookahead == 9046) ADVANCE(584); + if (lookahead == 9060) ADVANCE(624); + if (lookahead == 9633) ADVANCE(592); + if (lookahead == 9651) ADVANCE(568); + if (lookahead == 9661) ADVANCE(616); + if (lookahead == 9675) ADVANCE(530); + if (lookahead == 9707) ADVANCE(614); + if (lookahead == 9727) ADVANCE(554); + if (lookahead == 9735) ADVANCE(644); + if (lookahead == 9837) ADVANCE(576); + if (lookahead == 9858) ADVANCE(628); + if (lookahead == 10747) ADVANCE(566); + if (lookahead == 11822) ADVANCE(634); if (lookahead == '\t' || lookahead == ' ') SKIP(2) - if (('e' <= lookahead && lookahead <= 'z')) ADVANCE(396); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(399); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(226); + if (('e' <= lookahead && lookahead <= 'z')) ADVANCE(407); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(410); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(235); END_STATE(); case 3: - if (lookahead == ' ') ADVANCE(177); + if (lookahead == ' ') ADVANCE(185); END_STATE(); case 4: - if (lookahead == '"') ADVANCE(215); + if (lookahead == '"') ADVANCE(224); if (lookahead == '\\') ADVANCE(5); if (lookahead != 0) ADVANCE(4); END_STATE(); case 5: - if (lookahead == '"') ADVANCE(217); + if (lookahead == '"') ADVANCE(226); if (lookahead == '\\') ADVANCE(5); if (lookahead == 'n' || lookahead == 't') ADVANCE(4); if (lookahead != 0) ADVANCE(4); END_STATE(); case 6: - if (lookahead == '-') ADVANCE(476); + if (lookahead == '-') ADVANCE(488); END_STATE(); case 7: - if (lookahead == '=') ADVANCE(526); + if (lookahead == '=') ADVANCE(538); END_STATE(); case 8: - if (lookahead == '\\') ADVANCE(167); - if (lookahead != 0) ADVANCE(214); + if (lookahead == '\\') ADVANCE(174); + if (lookahead != 0) ADVANCE(223); END_STATE(); case 9: - if (lookahead == 'a') ADVANCE(104); + if (lookahead == 'a') ADVANCE(108); END_STATE(); case 10: - if (lookahead == 'a') ADVANCE(137); + if (lookahead == 'a') ADVANCE(144); END_STATE(); case 11: - if (lookahead == 'a') ADVANCE(125); + if (lookahead == 'a') ADVANCE(130); END_STATE(); case 12: - if (lookahead == 'a') ADVANCE(163); + if (lookahead == 'a') ADVANCE(170); END_STATE(); case 13: - if (lookahead == 'a') ADVANCE(154); + if (lookahead == 'a') ADVANCE(161); END_STATE(); case 14: - if (lookahead == 'a') ADVANCE(126); + if (lookahead == 'a') ADVANCE(131); END_STATE(); case 15: - if (lookahead == 'a') ADVANCE(88); + if (lookahead == 'a') ADVANCE(91); END_STATE(); case 16: - if (lookahead == 'a') ADVANCE(165); + if (lookahead == 'a') ADVANCE(172); END_STATE(); case 17: - if (lookahead == 'b') ADVANCE(56); + if (lookahead == 'b') ADVANCE(57); END_STATE(); case 18: - if (lookahead == 'c') ADVANCE(64); + if (lookahead == 'c') ADVANCE(67); END_STATE(); case 19: - if (lookahead == 'c') ADVANCE(176); + if (lookahead == 'c') ADVANCE(184); END_STATE(); case 20: - if (lookahead == 'c') ADVANCE(155); + if (lookahead == 'c') ADVANCE(162); END_STATE(); case 21: - if (lookahead == 'c') ADVANCE(40); + if (lookahead == 'c') ADVANCE(41); END_STATE(); case 22: if (lookahead == 'c') ADVANCE(16); END_STATE(); case 23: - if (lookahead == 'd') ADVANCE(605); + if (lookahead == 'd') ADVANCE(617); END_STATE(); case 24: - if (lookahead == 'd') ADVANCE(112); - if (lookahead == 'g') ADVANCE(35); + if (lookahead == 'd') ADVANCE(117); + if (lookahead == 'g') ADVANCE(36); END_STATE(); case 25: - if (lookahead == 'd') ADVANCE(626); + if (lookahead == 'd') ADVANCE(638); END_STATE(); case 26: - if (lookahead == 'd') ADVANCE(523); + if (lookahead == 'd') ADVANCE(535); END_STATE(); case 27: - if (lookahead == 'd') ADVANCE(110); + if (lookahead == 'd') ADVANCE(115); END_STATE(); case 28: - if (lookahead == 'e') ADVANCE(133); + if (lookahead == 'd') ADVANCE(58); END_STATE(); case 29: - if (lookahead == 'e') ADVANCE(182); + if (lookahead == 'e') ADVANCE(140); END_STATE(); case 30: - if (lookahead == 'e') ADVANCE(569); + if (lookahead == 'e') ADVANCE(190); END_STATE(); case 31: - if (lookahead == 'e') ADVANCE(517); + if (lookahead == 'e') ADVANCE(581); END_STATE(); case 32: - if (lookahead == 'e') ADVANCE(595); + if (lookahead == 'e') ADVANCE(529); END_STATE(); case 33: - if (lookahead == 'e') ADVANCE(621); + if (lookahead == 'e') ADVANCE(607); END_STATE(); case 34: - if (lookahead == 'e') ADVANCE(614); + if (lookahead == 'e') ADVANCE(633); END_STATE(); case 35: - if (lookahead == 'e') ADVANCE(557); + if (lookahead == 'e') ADVANCE(626); END_STATE(); case 36: - if (lookahead == 'e') ADVANCE(555); + if (lookahead == 'e') ADVANCE(569); END_STATE(); case 37: - if (lookahead == 'e') ADVANCE(658); + if (lookahead == 'e') ADVANCE(567); END_STATE(); case 38: - if (lookahead == 'e') ADVANCE(573); + if (lookahead == 'e') ADVANCE(674); END_STATE(); case 39: if (lookahead == 'e') ADVANCE(585); END_STATE(); case 40: - if (lookahead == 'e') ADVANCE(635); + if (lookahead == 'e') ADVANCE(597); END_STATE(); case 41: - if (lookahead == 'e') ADVANCE(599); + if (lookahead == 'e') ADVANCE(647); END_STATE(); case 42: - if (lookahead == 'e') ADVANCE(563); + if (lookahead == 'e') ADVANCE(611); END_STATE(); case 43: - if (lookahead == 'e') ADVANCE(593); + if (lookahead == 'e') ADVANCE(575); END_STATE(); case 44: - if (lookahead == 'e') ADVANCE(561); + if (lookahead == 'e') ADVANCE(605); END_STATE(); case 45: - if (lookahead == 'e') ADVANCE(3); + if (lookahead == 'e') ADVANCE(573); END_STATE(); case 46: - if (lookahead == 'e') ADVANCE(567); + if (lookahead == 'e') ADVANCE(3); END_STATE(); case 47: - if (lookahead == 'e') ADVANCE(577); + if (lookahead == 'e') ADVANCE(579); END_STATE(); case 48: - if (lookahead == 'e') ADVANCE(513); + if (lookahead == 'e') ADVANCE(589); END_STATE(); case 49: - if (lookahead == 'e') ADVANCE(179); + if (lookahead == 'e') ADVANCE(525); END_STATE(); case 50: - if (lookahead == 'e') ADVANCE(20); + if (lookahead == 'e') ADVANCE(187); END_STATE(); case 51: - if (lookahead == 'e') ADVANCE(19); + if (lookahead == 'e') ADVANCE(20); END_STATE(); case 52: - if (lookahead == 'e') ADVANCE(129); + if (lookahead == 'e') ADVANCE(19); END_STATE(); case 53: - if (lookahead == 'e') ADVANCE(181); + if (lookahead == 'e') ADVANCE(134); END_STATE(); case 54: - if (lookahead == 'e') ADVANCE(132); + if (lookahead == 'e') ADVANCE(189); END_STATE(); case 55: - if (lookahead == 'e') ADVANCE(107); + if (lookahead == 'e') ADVANCE(139); END_STATE(); case 56: - if (lookahead == 'e') ADVANCE(131); + if (lookahead == 'e') ADVANCE(112); END_STATE(); case 57: - if (lookahead == 'e') ADVANCE(156); + if (lookahead == 'e') ADVANCE(137); END_STATE(); case 58: - if (lookahead == 'f') ADVANCE(183); + if (lookahead == 'e') ADVANCE(138); END_STATE(); case 59: - if (lookahead == 'f') ADVANCE(609); + if (lookahead == 'e') ADVANCE(163); END_STATE(); case 60: - if (lookahead == 'g') ADVANCE(521); + if (lookahead == 'f') ADVANCE(191); END_STATE(); case 61: - if (lookahead == 'g') ADVANCE(159); + if (lookahead == 'f') ADVANCE(621); END_STATE(); case 62: - if (lookahead == 'g') ADVANCE(55); + if (lookahead == 'f') ADVANCE(192); END_STATE(); case 63: - if (lookahead == 'h') ADVANCE(11); + if (lookahead == 'g') ADVANCE(533); END_STATE(); case 64: - if (lookahead == 'h') ADVANCE(583); + if (lookahead == 'g') ADVANCE(165); END_STATE(); case 65: - if (lookahead == 'h') ADVANCE(654); + if (lookahead == 'g') ADVANCE(56); END_STATE(); case 66: - if (lookahead == 'h') ADVANCE(553); + if (lookahead == 'h') ADVANCE(11); END_STATE(); case 67: - if (lookahead == 'h') ADVANCE(94); + if (lookahead == 'h') ADVANCE(595); END_STATE(); case 68: - if (lookahead == 'h') ADVANCE(14); + if (lookahead == 'h') ADVANCE(565); END_STATE(); case 69: - if (lookahead == 'i') ADVANCE(95); + if (lookahead == 'h') ADVANCE(97); END_STATE(); case 70: - if (lookahead == 'i') ADVANCE(58); + if (lookahead == 'h') ADVANCE(14); END_STATE(); case 71: - if (lookahead == 'i') ADVANCE(103); + if (lookahead == 'i') ADVANCE(98); END_STATE(); case 72: - if (lookahead == 'i') ADVANCE(22); + if (lookahead == 'i') ADVANCE(60); END_STATE(); case 73: - if (lookahead == 'i') ADVANCE(115); + if (lookahead == 'i') ADVANCE(22); END_STATE(); case 74: - if (lookahead == 'i') ADVANCE(162); + if (lookahead == 'i') ADVANCE(120); END_STATE(); case 75: - if (lookahead == 'i') ADVANCE(158); + if (lookahead == 'i') ADVANCE(107); END_STATE(); case 76: - if (lookahead == 'i') ADVANCE(160); + if (lookahead == 'i') ADVANCE(169); END_STATE(); case 77: - if (lookahead == 'i') ADVANCE(161); + if (lookahead == 'i') ADVANCE(167); END_STATE(); case 78: - if (lookahead == 'i') ADVANCE(96); + if (lookahead == 'i') ADVANCE(168); END_STATE(); case 79: - if (lookahead == 'k') ADVANCE(591); + if (lookahead == 'i') ADVANCE(166); END_STATE(); case 80: - if (lookahead == 'k') ADVANCE(631); + if (lookahead == 'i') ADVANCE(62); END_STATE(); case 81: - if (lookahead == 'k') ADVANCE(57); + if (lookahead == 'i') ADVANCE(99); END_STATE(); case 82: - if (lookahead == 'l') ADVANCE(71); + if (lookahead == 'k') ADVANCE(603); END_STATE(); case 83: - if (lookahead == 'l') ADVANCE(618); + if (lookahead == 'k') ADVANCE(643); END_STATE(); case 84: - if (lookahead == 'l') ADVANCE(571); + if (lookahead == 'k') ADVANCE(59); END_STATE(); case 85: - if (lookahead == 'l') ADVANCE(174); + if (lookahead == 'l') ADVANCE(75); END_STATE(); case 86: - if (lookahead == 'l') ADVANCE(171); + if (lookahead == 'l') ADVANCE(630); END_STATE(); case 87: - if (lookahead == 'l') ADVANCE(72); + if (lookahead == 'l') ADVANCE(583); END_STATE(); case 88: - if (lookahead == 'l') ADVANCE(172); + if (lookahead == 'l') ADVANCE(181); END_STATE(); case 89: - if (lookahead == 'l') ADVANCE(53); + if (lookahead == 'l') ADVANCE(178); END_STATE(); case 90: - if (lookahead == 'l') ADVANCE(39); + if (lookahead == 'l') ADVANCE(73); END_STATE(); case 91: - if (lookahead == 'm') ADVANCE(615); + if (lookahead == 'l') ADVANCE(179); END_STATE(); case 92: - if (lookahead == 'm') ADVANCE(549); + if (lookahead == 'l') ADVANCE(54); END_STATE(); case 93: - if (lookahead == 'm') ADVANCE(547); + if (lookahead == 'l') ADVANCE(40); END_STATE(); case 94: - if (lookahead == 'm') ADVANCE(545); + if (lookahead == 'm') ADVANCE(627); END_STATE(); case 95: - if (lookahead == 'm') ADVANCE(169); + if (lookahead == 'm') ADVANCE(561); END_STATE(); case 96: - if (lookahead == 'm') ADVANCE(170); + if (lookahead == 'm') ADVANCE(559); END_STATE(); case 97: - if (lookahead == 'n') ADVANCE(62); + if (lookahead == 'm') ADVANCE(557); END_STATE(); case 98: - if (lookahead == 'n') ADVANCE(587); + if (lookahead == 'm') ADVANCE(176); END_STATE(); case 99: - if (lookahead == 'n') ADVANCE(26); + if (lookahead == 'm') ADVANCE(177); END_STATE(); case 100: - if (lookahead == 'n') ADVANCE(507); + if (lookahead == 'n') ADVANCE(65); END_STATE(); case 101: - if (lookahead == 'n') ADVANCE(651); + if (lookahead == 'n') ADVANCE(599); END_STATE(); case 102: - if (lookahead == 'n') ADVANCE(664); + if (lookahead == 'n') ADVANCE(26); END_STATE(); case 103: - if (lookahead == 'n') ADVANCE(60); + if (lookahead == 'n') ADVANCE(519); END_STATE(); case 104: - if (lookahead == 'n') ADVANCE(80); + if (lookahead == 'n') ADVANCE(183); END_STATE(); case 105: - if (lookahead == 'n') ADVANCE(166); + if (lookahead == 'n') ADVANCE(663); END_STATE(); case 106: - if (lookahead == 'n') ADVANCE(146); + if (lookahead == 'n') ADVANCE(680); END_STATE(); case 107: - if (lookahead == 'n') ADVANCE(157); + if (lookahead == 'n') ADVANCE(63); END_STATE(); case 108: - if (lookahead == 'n') ADVANCE(76); + if (lookahead == 'n') ADVANCE(83); END_STATE(); case 109: - if (lookahead == 'o') ADVANCE(85); + if (lookahead == 'n') ADVANCE(173); END_STATE(); case 110: - if (lookahead == 'o') ADVANCE(178); + if (lookahead == 'n') ADVANCE(28); END_STATE(); case 111: - if (lookahead == 'o') ADVANCE(128); + if (lookahead == 'n') ADVANCE(152); END_STATE(); case 112: - if (lookahead == 'o') ADVANCE(91); + if (lookahead == 'n') ADVANCE(164); END_STATE(); case 113: - if (lookahead == 'o') ADVANCE(59); + if (lookahead == 'n') ADVANCE(78); END_STATE(); case 114: - if (lookahead == 'o') ADVANCE(180); + if (lookahead == 'o') ADVANCE(88); END_STATE(); case 115: - if (lookahead == 'o') ADVANCE(102); + if (lookahead == 'o') ADVANCE(186); END_STATE(); case 116: - if (lookahead == 'o') ADVANCE(148); + if (lookahead == 'o') ADVANCE(133); END_STATE(); case 117: - if (lookahead == 'p') ADVANCE(597); + if (lookahead == 'o') ADVANCE(94); END_STATE(); case 118: - if (lookahead == 'p') ADVANCE(623); + if (lookahead == 'o') ADVANCE(61); END_STATE(); case 119: - if (lookahead == 'p') ADVANCE(603); + if (lookahead == 'o') ADVANCE(188); END_STATE(); case 120: - if (lookahead == 'p') ADVANCE(662); + if (lookahead == 'o') ADVANCE(106); END_STATE(); case 121: - if (lookahead == 'p') ADVANCE(89); + if (lookahead == 'o') ADVANCE(154); END_STATE(); case 122: - if (lookahead == 'p') ADVANCE(87); + if (lookahead == 'p') ADVANCE(609); END_STATE(); case 123: - if (lookahead == 'p') ADVANCE(36); + if (lookahead == 'p') ADVANCE(635); END_STATE(); case 124: - if (lookahead == 'p') ADVANCE(116); + if (lookahead == 'p') ADVANCE(615); END_STATE(); case 125: - if (lookahead == 'p') ADVANCE(42); + if (lookahead == 'p') ADVANCE(678); END_STATE(); case 126: - if (lookahead == 'p') ADVANCE(43); + if (lookahead == 'p') ADVANCE(92); END_STATE(); case 127: if (lookahead == 'p') ADVANCE(90); END_STATE(); case 128: - if (lookahead == 'r') ADVANCE(519); + if (lookahead == 'p') ADVANCE(37); END_STATE(); case 129: - if (lookahead == 'r') ADVANCE(543); + if (lookahead == 'p') ADVANCE(121); END_STATE(); case 130: - if (lookahead == 'r') ADVANCE(672); + if (lookahead == 'p') ADVANCE(43); END_STATE(); case 131: - if (lookahead == 'r') ADVANCE(607); + if (lookahead == 'p') ADVANCE(44); END_STATE(); case 132: - if (lookahead == 'r') ADVANCE(147); + if (lookahead == 'p') ADVANCE(93); END_STATE(); case 133: - if (lookahead == 'r') ADVANCE(152); + if (lookahead == 'r') ADVANCE(531); END_STATE(); case 134: - if (lookahead == 'r') ADVANCE(153); + if (lookahead == 'r') ADVANCE(555); END_STATE(); case 135: - if (lookahead == 'r') ADVANCE(51); + if (lookahead == 'r') ADVANCE(670); END_STATE(); case 136: - if (lookahead == 'r') ADVANCE(38); + if (lookahead == 'r') ADVANCE(688); END_STATE(); case 137: - if (lookahead == 'r') ADVANCE(77); + if (lookahead == 'r') ADVANCE(619); END_STATE(); case 138: - if (lookahead == 's') ADVANCE(565); + if (lookahead == 'r') ADVANCE(699); END_STATE(); case 139: - if (lookahead == 's') ADVANCE(145); + if (lookahead == 'r') ADVANCE(153); END_STATE(); case 140: - if (lookahead == 's') ADVANCE(151); + if (lookahead == 'r') ADVANCE(159); END_STATE(); case 141: - if (lookahead == 's') ADVANCE(660); + if (lookahead == 'r') ADVANCE(160); END_STATE(); case 142: - if (lookahead == 's') ADVANCE(541); + if (lookahead == 'r') ADVANCE(52); END_STATE(); case 143: - if (lookahead == 's') ADVANCE(601); + if (lookahead == 'r') ADVANCE(39); END_STATE(); case 144: - if (lookahead == 's') ADVANCE(34); + if (lookahead == 'r') ADVANCE(79); END_STATE(); case 145: - if (lookahead == 's') ADVANCE(70); + if (lookahead == 's') ADVANCE(577); END_STATE(); case 146: - if (lookahead == 's') ADVANCE(124); + if (lookahead == 's') ADVANCE(155); END_STATE(); case 147: - if (lookahead == 's') ADVANCE(44); + if (lookahead == 's') ADVANCE(158); END_STATE(); case 148: - if (lookahead == 's') ADVANCE(46); + if (lookahead == 's') ADVANCE(676); END_STATE(); case 149: - if (lookahead == 't') ADVANCE(515); + if (lookahead == 's') ADVANCE(553); END_STATE(); case 150: - if (lookahead == 't') ADVANCE(613); + if (lookahead == 's') ADVANCE(613); END_STATE(); case 151: - if (lookahead == 't') ADVANCE(559); + if (lookahead == 's') ADVANCE(35); END_STATE(); case 152: - if (lookahead == 't') ADVANCE(611); + if (lookahead == 's') ADVANCE(129); END_STATE(); case 153: - if (lookahead == 't') ADVANCE(649); + if (lookahead == 's') ADVANCE(45); END_STATE(); case 154: - if (lookahead == 't') ADVANCE(643); + if (lookahead == 's') ADVANCE(47); END_STATE(); case 155: - if (lookahead == 't') ADVANCE(589); + if (lookahead == 's') ADVANCE(80); END_STATE(); case 156: - if (lookahead == 't') ADVANCE(668); + if (lookahead == 't') ADVANCE(527); END_STATE(); case 157: - if (lookahead == 't') ADVANCE(551); + if (lookahead == 't') ADVANCE(625); END_STATE(); case 158: - if (lookahead == 't') ADVANCE(184); + if (lookahead == 't') ADVANCE(571); END_STATE(); case 159: - if (lookahead == 't') ADVANCE(66); + if (lookahead == 't') ADVANCE(623); END_STATE(); case 160: - if (lookahead == 't') ADVANCE(185); + if (lookahead == 't') ADVANCE(661); END_STATE(); case 161: - if (lookahead == 't') ADVANCE(67); + if (lookahead == 't') ADVANCE(655); END_STATE(); case 162: - if (lookahead == 't') ADVANCE(73); + if (lookahead == 't') ADVANCE(601); END_STATE(); case 163: - if (lookahead == 't') ADVANCE(41); + if (lookahead == 't') ADVANCE(684); END_STATE(); case 164: - if (lookahead == 't') ADVANCE(45); + if (lookahead == 't') ADVANCE(563); END_STATE(); case 165: - if (lookahead == 't') ADVANCE(47); + if (lookahead == 't') ADVANCE(68); END_STATE(); case 166: - if (lookahead == 't') ADVANCE(75); + if (lookahead == 't') ADVANCE(69); END_STATE(); case 167: - if (lookahead == 'u') ADVANCE(194); - if (lookahead == 'x') ADVANCE(192); - if (lookahead == '"' || - lookahead == '\'' || - lookahead == '0' || - lookahead == '\\' || - lookahead == '_' || - lookahead == 'b' || - lookahead == 'n' || - ('r' <= lookahead && lookahead <= 't')) ADVANCE(214); + if (lookahead == 't') ADVANCE(193); END_STATE(); case 168: - if (lookahead == 'u') ADVANCE(122); + if (lookahead == 't') ADVANCE(194); END_STATE(); case 169: - if (lookahead == 'u') ADVANCE(92); + if (lookahead == 't') ADVANCE(74); END_STATE(); case 170: - if (lookahead == 'u') ADVANCE(93); + if (lookahead == 't') ADVANCE(42); END_STATE(); case 171: - if (lookahead == 'u') ADVANCE(142); + if (lookahead == 't') ADVANCE(46); END_STATE(); case 172: - if (lookahead == 'u') ADVANCE(48); + if (lookahead == 't') ADVANCE(48); END_STATE(); case 173: - if (lookahead == 'u') ADVANCE(86); + if (lookahead == 't') ADVANCE(77); END_STATE(); case 174: - if (lookahead == 'u') ADVANCE(164); + if (lookahead == 'u') ADVANCE(203); + if (lookahead == 'x') ADVANCE(201); + if (lookahead == '"' || + lookahead == '\'' || + lookahead == '0' || + lookahead == '\\' || + lookahead == '_' || + lookahead == 'b' || + lookahead == 'n' || + ('r' <= lookahead && lookahead <= 't')) ADVANCE(223); END_STATE(); case 175: - if (lookahead == 'v') ADVANCE(627); + if (lookahead == 'u') ADVANCE(127); END_STATE(); case 176: - if (lookahead == 'v') ADVANCE(628); + if (lookahead == 'u') ADVANCE(95); END_STATE(); case 177: - if (lookahead == 'v') ADVANCE(15); + if (lookahead == 'u') ADVANCE(96); END_STATE(); case 178: - if (lookahead == 'w') ADVANCE(143); + if (lookahead == 'u') ADVANCE(149); END_STATE(); case 179: - if (lookahead == 'x') ADVANCE(624); + if (lookahead == 'u') ADVANCE(49); END_STATE(); case 180: - if (lookahead == 'x') ADVANCE(581); + if (lookahead == 'u') ADVANCE(89); END_STATE(); case 181: - if (lookahead == 'x') ADVANCE(629); + if (lookahead == 'u') ADVANCE(171); END_STATE(); case 182: - if (lookahead == 'x') ADVANCE(113); + if (lookahead == 'v') ADVANCE(639); END_STATE(); case 183: - if (lookahead == 'y') ADVANCE(575); + if (lookahead == 'v') ADVANCE(698); END_STATE(); case 184: - if (lookahead == 'y') ADVANCE(501); + if (lookahead == 'v') ADVANCE(640); END_STATE(); case 185: - if (lookahead == 'y') ADVANCE(492); + if (lookahead == 'v') ADVANCE(15); END_STATE(); case 186: - if (lookahead == 175) ADVANCE(187); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(204); + if (lookahead == 'w') ADVANCE(150); END_STATE(); case 187: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(204); + if (lookahead == 'x') ADVANCE(636); END_STATE(); case 188: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(203); + if (lookahead == 'x') ADVANCE(593); END_STATE(); case 189: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(205); + if (lookahead == 'x') ADVANCE(641); END_STATE(); case 190: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(225); + if (lookahead == 'x') ADVANCE(118); END_STATE(); case 191: + if (lookahead == 'y') ADVANCE(666); + END_STATE(); + case 192: + if (lookahead == 'y') ADVANCE(587); + END_STATE(); + case 193: + if (lookahead == 'y') ADVANCE(513); + END_STATE(); + case 194: + if (lookahead == 'y') ADVANCE(504); + END_STATE(); + case 195: + if (lookahead == 175) ADVANCE(196); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(213); + END_STATE(); + case 196: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(213); + END_STATE(); + case 197: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(212); + END_STATE(); + case 198: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(214); + END_STATE(); + case 199: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(234); + END_STATE(); + case 200: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(214); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(223); END_STATE(); - case 192: + case 201: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(191); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(200); END_STATE(); - case 193: + case 202: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(192); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(201); END_STATE(); - case 194: + case 203: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(193); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(202); END_STATE(); - case 195: - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(474); + case 204: + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(486); END_STATE(); - case 196: - if (eof) ADVANCE(199); - if (lookahead == '\n') ADVANCE(691); + case 205: + if (eof) ADVANCE(208); + if (lookahead == '\n') ADVANCE(712); if (lookahead == '\r') ADVANCE(1); if (lookahead == '!') ADVANCE(7); if (lookahead == '"') ADVANCE(4); - if (lookahead == '#') ADVANCE(400); - if (lookahead == '$') ADVANCE(221); - if (lookahead == '%') ADVANCE(539); - if (lookahead == '&') ADVANCE(195); - if (lookahead == '(') ADVANCE(477); - if (lookahead == ')') ADVANCE(478); - if (lookahead == '*') ADVANCE(537); - if (lookahead == '+') ADVANCE(534); - if (lookahead == ',') ADVANCE(498); - if (lookahead == '-') ADVANCE(535); - if (lookahead == '.') ADVANCE(497); - if (lookahead == '/') ADVANCE(636); - if (lookahead == ':') ADVANCE(499); - if (lookahead == ';') ADVANCE(500); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '=') ADVANCE(525); - if (lookahead == '>') ADVANCE(531); + if (lookahead == '#') ADVANCE(411); + if (lookahead == '$') ADVANCE(230); + if (lookahead == '%') ADVANCE(551); + if (lookahead == '&') ADVANCE(204); + if (lookahead == '(') ADVANCE(489); + if (lookahead == ')') ADVANCE(490); + if (lookahead == '*') ADVANCE(549); + if (lookahead == '+') ADVANCE(546); + if (lookahead == ',') ADVANCE(510); + if (lookahead == '-') ADVANCE(547); + if (lookahead == '.') ADVANCE(509); + if (lookahead == '/') ADVANCE(648); + if (lookahead == ':') ADVANCE(511); + if (lookahead == ';') ADVANCE(512); + if (lookahead == '<') ADVANCE(540); + if (lookahead == '=') ADVANCE(537); + if (lookahead == '>') ADVANCE(543); if (lookahead == '@') ADVANCE(8); - if (lookahead == 'A') ADVANCE(363); - if (lookahead == 'E') ADVANCE(393); - if (lookahead == 'F') ADVANCE(234); - if (lookahead == 'N') ADVANCE(233); - if (lookahead == 'P') ADVANCE(316); - if (lookahead == 'S') ADVANCE(282); - if (lookahead == '[') ADVANCE(481); - if (lookahead == '\\') ADVANCE(638); - if (lookahead == ']') ADVANCE(482); - if (lookahead == '^') ADVANCE(485); - if (lookahead == '_') ADVANCE(483); - if (lookahead == '`') ADVANCE(509); - if (lookahead == 'a') ADVANCE(264); - if (lookahead == 'b') ADVANCE(306); - if (lookahead == 'c') ADVANCE(283); - if (lookahead == 'd') ADVANCE(284); - if (lookahead == 'e') ADVANCE(494); - if (lookahead == 'f') ADVANCE(248); - if (lookahead == 'g') ADVANCE(249); - if (lookahead == 'i') ADVANCE(276); - if (lookahead == 'j') ADVANCE(348); - if (lookahead == 'k') ADVANCE(294); - if (lookahead == 'l') ADVANCE(292); - if (lookahead == 'm') ADVANCE(245); - if (lookahead == 'n') ADVANCE(346); - if (lookahead == 'o') ADVANCE(369); - if (lookahead == 'p') ADVANCE(235); - if (lookahead == 'r') ADVANCE(253); - if (lookahead == 's') ADVANCE(274); - if (lookahead == 't') ADVANCE(236); - if (lookahead == 'u') ADVANCE(333); - if (lookahead == 'w') ADVANCE(250); - if (lookahead == '{') ADVANCE(479); - if (lookahead == '|') ADVANCE(223); - if (lookahead == '}') ADVANCE(480); - if (lookahead == 164) ADVANCE(634); - if (lookahead == 172) ADVANCE(506); - if (lookahead == 175) ADVANCE(512); - if (lookahead == 177) ADVANCE(508); - if (lookahead == 183) ADVANCE(683); - if (lookahead == 215) ADVANCE(538); - if (lookahead == 247) ADVANCE(540); - if (lookahead == 951) ADVANCE(487); - if (lookahead == 960) ADVANCE(489); - if (lookahead == 964) ADVANCE(491); - if (lookahead == 8261) ADVANCE(524); - if (lookahead == 8319) ADVANCE(544); - if (lookahead == 8345) ADVANCE(546); - if (lookahead == 8450) ADVANCE(630); - if (lookahead == 8592) ADVANCE(484); - if (lookahead == 8594) ADVANCE(681); - if (lookahead == 8600) ADVANCE(598); - if (lookahead == 8601) ADVANCE(596); - if (lookahead == 8613) ADVANCE(550); - if (lookahead == 8615) ADVANCE(548); - if (lookahead == 8623) ADVANCE(594); - if (lookahead == 8624) ADVANCE(686); - if (lookahead == 8635) ADVANCE(600); - if (lookahead == 8652) ADVANCE(562); - if (lookahead == 8673) ADVANCE(558); - if (lookahead == 8714) ADVANCE(608); - if (lookahead == 8728) ADVANCE(504); - if (lookahead == 8730) ADVANCE(516); - if (lookahead == 8734) ADVANCE(493); - if (lookahead == 8736) ADVANCE(552); - if (lookahead == 8743) ADVANCE(657); - if (lookahead == 8745) ADVANCE(667); - if (lookahead == 8757) ADVANCE(640); - if (lookahead == 8759) ADVANCE(682); - if (lookahead == 8762) ADVANCE(690); - if (lookahead == 8781) ADVANCE(584); - if (lookahead == 8784) ADVANCE(689); - if (lookahead == 8785) ADVANCE(688); - if (lookahead == 8800) ADVANCE(527); - if (lookahead == 8801) ADVANCE(642); - if (lookahead == 8804) ADVANCE(530); - if (lookahead == 8805) ADVANCE(533); - if (lookahead == 8834) ADVANCE(588); - if (lookahead == 8835) ADVANCE(671); - if (lookahead == 8847) ADVANCE(590); - if (lookahead == 8848) ADVANCE(653); - if (lookahead == 8851) ADVANCE(669); - if (lookahead == 8852) ADVANCE(582); - if (lookahead == 8853) ADVANCE(663); - if (lookahead == 8855) ADVANCE(610); - if (lookahead == 8857) ADVANCE(646); - if (lookahead == 8858) ADVANCE(574); - if (lookahead == 8859) ADVANCE(576); - if (lookahead == 8860) ADVANCE(665); - if (lookahead == 8861) ADVANCE(578); - if (lookahead == 8862) ADVANCE(659); - if (lookahead == 8863) ADVANCE(586); - if (lookahead == 8864) ADVANCE(661); - if (lookahead == 8865) ADVANCE(592); - if (lookahead == 8866) ADVANCE(560); - if (lookahead == 8901) ADVANCE(648); - if (lookahead == 8943) ADVANCE(566); - if (lookahead == 8962) ADVANCE(685); - if (lookahead == 8968) ADVANCE(522); - if (lookahead == 8970) ADVANCE(520); - if (lookahead == 8981) ADVANCE(606); - if (lookahead == 9013) ADVANCE(514); - if (lookahead == 9033) ADVANCE(568); - if (lookahead == 9039) ADVANCE(570); - if (lookahead == 9046) ADVANCE(572); - if (lookahead == 9048) ADVANCE(650); - if (lookahead == 9051) ADVANCE(684); - if (lookahead == 9052) ADVANCE(673); - if (lookahead == 9058) ADVANCE(679); - if (lookahead == 9059) ADVANCE(677); - if (lookahead == 9060) ADVANCE(612); - if (lookahead == 9061) ADVANCE(644); - if (lookahead == 9084) ADVANCE(213); - if (lookahead == 9633) ADVANCE(580); - if (lookahead == 9651) ADVANCE(556); - if (lookahead == 9661) ADVANCE(604); - if (lookahead == 9675) ADVANCE(518); - if (lookahead == 9707) ADVANCE(602); - if (lookahead == 9715) ADVANCE(687); - if (lookahead == 9727) ADVANCE(542); - if (lookahead == 9735) ADVANCE(632); - if (lookahead == 9837) ADVANCE(564); - if (lookahead == 9858) ADVANCE(616); - if (lookahead == 10085) ADVANCE(680); - if (lookahead == 10204) ADVANCE(655); - if (lookahead == 10747) ADVANCE(554); - if (lookahead == 11034) ADVANCE(675); - if (lookahead == 11822) ADVANCE(622); + if (lookahead == 'A') ADVANCE(374); + if (lookahead == 'E') ADVANCE(404); + if (lookahead == 'F') ADVANCE(243); + if (lookahead == 'N') ADVANCE(242); + if (lookahead == 'P') ADVANCE(327); + if (lookahead == 'S') ADVANCE(291); + if (lookahead == '[') ADVANCE(493); + if (lookahead == '\\') ADVANCE(650); + if (lookahead == ']') ADVANCE(494); + if (lookahead == '^') ADVANCE(497); + if (lookahead == '_') ADVANCE(495); + if (lookahead == '`') ADVANCE(521); + if (lookahead == 'a') ADVANCE(272); + if (lookahead == 'b') ADVANCE(315); + if (lookahead == 'c') ADVANCE(292); + if (lookahead == 'd') ADVANCE(293); + if (lookahead == 'e') ADVANCE(506); + if (lookahead == 'f') ADVANCE(259); + if (lookahead == 'g') ADVANCE(257); + if (lookahead == 'i') ADVANCE(285); + if (lookahead == 'j') ADVANCE(359); + if (lookahead == 'k') ADVANCE(303); + if (lookahead == 'l') ADVANCE(301); + if (lookahead == 'm') ADVANCE(254); + if (lookahead == 'n') ADVANCE(357); + if (lookahead == 'o') ADVANCE(380); + if (lookahead == 'p') ADVANCE(244); + if (lookahead == 'r') ADVANCE(261); + if (lookahead == 's') ADVANCE(283); + if (lookahead == 't') ADVANCE(245); + if (lookahead == 'u') ADVANCE(344); + if (lookahead == 'w') ADVANCE(260); + if (lookahead == '{') ADVANCE(491); + if (lookahead == '|') ADVANCE(232); + if (lookahead == '}') ADVANCE(492); + if (lookahead == 164) ADVANCE(646); + if (lookahead == 172) ADVANCE(518); + if (lookahead == 175) ADVANCE(524); + if (lookahead == 177) ADVANCE(520); + if (lookahead == 183) ADVANCE(703); + if (lookahead == 215) ADVANCE(550); + if (lookahead == 247) ADVANCE(552); + if (lookahead == 951) ADVANCE(499); + if (lookahead == 960) ADVANCE(501); + if (lookahead == 964) ADVANCE(503); + if (lookahead == 8261) ADVANCE(536); + if (lookahead == 8319) ADVANCE(556); + if (lookahead == 8345) ADVANCE(558); + if (lookahead == 8450) ADVANCE(642); + if (lookahead == 8592) ADVANCE(496); + if (lookahead == 8594) ADVANCE(701); + if (lookahead == 8600) ADVANCE(610); + if (lookahead == 8601) ADVANCE(608); + if (lookahead == 8613) ADVANCE(562); + if (lookahead == 8615) ADVANCE(560); + if (lookahead == 8619) ADVANCE(671); + if (lookahead == 8620) ADVANCE(669); + if (lookahead == 8623) ADVANCE(606); + if (lookahead == 8624) ADVANCE(706); + if (lookahead == 8635) ADVANCE(612); + if (lookahead == 8652) ADVANCE(574); + if (lookahead == 8673) ADVANCE(570); + if (lookahead == 8714) ADVANCE(620); + if (lookahead == 8728) ADVANCE(516); + if (lookahead == 8730) ADVANCE(528); + if (lookahead == 8734) ADVANCE(505); + if (lookahead == 8736) ADVANCE(564); + if (lookahead == 8743) ADVANCE(673); + if (lookahead == 8745) ADVANCE(683); + if (lookahead == 8757) ADVANCE(652); + if (lookahead == 8759) ADVANCE(702); + if (lookahead == 8762) ADVANCE(710); + if (lookahead == 8781) ADVANCE(596); + if (lookahead == 8784) ADVANCE(709); + if (lookahead == 8785) ADVANCE(708); + if (lookahead == 8800) ADVANCE(539); + if (lookahead == 8801) ADVANCE(654); + if (lookahead == 8804) ADVANCE(542); + if (lookahead == 8805) ADVANCE(545); + if (lookahead == 8834) ADVANCE(600); + if (lookahead == 8835) ADVANCE(687); + if (lookahead == 8847) ADVANCE(602); + if (lookahead == 8848) ADVANCE(665); + if (lookahead == 8851) ADVANCE(685); + if (lookahead == 8852) ADVANCE(594); + if (lookahead == 8853) ADVANCE(679); + if (lookahead == 8855) ADVANCE(622); + if (lookahead == 8857) ADVANCE(658); + if (lookahead == 8858) ADVANCE(586); + if (lookahead == 8859) ADVANCE(588); + if (lookahead == 8860) ADVANCE(681); + if (lookahead == 8861) ADVANCE(590); + if (lookahead == 8862) ADVANCE(675); + if (lookahead == 8863) ADVANCE(598); + if (lookahead == 8864) ADVANCE(677); + if (lookahead == 8865) ADVANCE(604); + if (lookahead == 8866) ADVANCE(572); + if (lookahead == 8901) ADVANCE(660); + if (lookahead == 8916) ADVANCE(697); + if (lookahead == 8943) ADVANCE(578); + if (lookahead == 8962) ADVANCE(705); + if (lookahead == 8965) ADVANCE(667); + if (lookahead == 8968) ADVANCE(534); + if (lookahead == 8970) ADVANCE(532); + if (lookahead == 8981) ADVANCE(618); + if (lookahead == 9013) ADVANCE(526); + if (lookahead == 9033) ADVANCE(580); + if (lookahead == 9039) ADVANCE(582); + if (lookahead == 9046) ADVANCE(584); + if (lookahead == 9048) ADVANCE(662); + if (lookahead == 9051) ADVANCE(704); + if (lookahead == 9052) ADVANCE(689); + if (lookahead == 9058) ADVANCE(695); + if (lookahead == 9059) ADVANCE(693); + if (lookahead == 9060) ADVANCE(624); + if (lookahead == 9061) ADVANCE(656); + if (lookahead == 9084) ADVANCE(222); + if (lookahead == 9633) ADVANCE(592); + if (lookahead == 9651) ADVANCE(568); + if (lookahead == 9661) ADVANCE(616); + if (lookahead == 9675) ADVANCE(530); + if (lookahead == 9707) ADVANCE(614); + if (lookahead == 9715) ADVANCE(707); + if (lookahead == 9727) ADVANCE(554); + if (lookahead == 9735) ADVANCE(644); + if (lookahead == 9837) ADVANCE(576); + if (lookahead == 9858) ADVANCE(628); + if (lookahead == 10085) ADVANCE(700); + if (lookahead == 10204) ADVANCE(711); + if (lookahead == 10747) ADVANCE(566); + if (lookahead == 11034) ADVANCE(691); + if (lookahead == 11822) ADVANCE(634); if (lookahead == '\t' || - lookahead == ' ') SKIP(196) - if (('h' <= lookahead && lookahead <= 'z')) ADVANCE(398); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(200); - if (('B' <= lookahead && lookahead <= 'Z')) ADVANCE(399); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(226); + lookahead == ' ') SKIP(205) + if (('h' <= lookahead && lookahead <= 'z')) ADVANCE(409); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(209); + if (('B' <= lookahead && lookahead <= 'Z')) ADVANCE(410); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(235); END_STATE(); - case 197: - if (eof) ADVANCE(199); - if (lookahead == '\n') ADVANCE(691); + case 206: + if (eof) ADVANCE(208); + if (lookahead == '\n') ADVANCE(712); if (lookahead == '\r') ADVANCE(1); if (lookahead == '!') ADVANCE(7); if (lookahead == '"') ADVANCE(4); - if (lookahead == '#') ADVANCE(400); - if (lookahead == '$') ADVANCE(221); - if (lookahead == '%') ADVANCE(539); - if (lookahead == '&') ADVANCE(195); - if (lookahead == '(') ADVANCE(477); - if (lookahead == '*') ADVANCE(537); - if (lookahead == '+') ADVANCE(534); - if (lookahead == ',') ADVANCE(498); - if (lookahead == '-') ADVANCE(536); - if (lookahead == '.') ADVANCE(497); - if (lookahead == '/') ADVANCE(636); - if (lookahead == ':') ADVANCE(499); - if (lookahead == ';') ADVANCE(500); - if (lookahead == '<') ADVANCE(528); - if (lookahead == '=') ADVANCE(525); - if (lookahead == '>') ADVANCE(531); + if (lookahead == '#') ADVANCE(411); + if (lookahead == '$') ADVANCE(230); + if (lookahead == '%') ADVANCE(551); + if (lookahead == '&') ADVANCE(204); + if (lookahead == '(') ADVANCE(489); + if (lookahead == '*') ADVANCE(549); + if (lookahead == '+') ADVANCE(546); + if (lookahead == ',') ADVANCE(510); + if (lookahead == '-') ADVANCE(548); + if (lookahead == '.') ADVANCE(509); + if (lookahead == '/') ADVANCE(648); + if (lookahead == ':') ADVANCE(511); + if (lookahead == ';') ADVANCE(512); + if (lookahead == '<') ADVANCE(540); + if (lookahead == '=') ADVANCE(537); + if (lookahead == '>') ADVANCE(543); if (lookahead == '@') ADVANCE(8); - if (lookahead == 'A') ADVANCE(363); - if (lookahead == 'E') ADVANCE(393); - if (lookahead == 'F') ADVANCE(234); - if (lookahead == 'N') ADVANCE(233); - if (lookahead == 'P') ADVANCE(316); - if (lookahead == 'S') ADVANCE(282); - if (lookahead == '[') ADVANCE(481); - if (lookahead == '\\') ADVANCE(638); - if (lookahead == '^') ADVANCE(485); - if (lookahead == '`') ADVANCE(509); - if (lookahead == 'a') ADVANCE(264); - if (lookahead == 'b') ADVANCE(306); - if (lookahead == 'c') ADVANCE(283); - if (lookahead == 'd') ADVANCE(284); - if (lookahead == 'e') ADVANCE(494); - if (lookahead == 'f') ADVANCE(248); - if (lookahead == 'g') ADVANCE(249); - if (lookahead == 'i') ADVANCE(276); - if (lookahead == 'j') ADVANCE(348); - if (lookahead == 'k') ADVANCE(294); - if (lookahead == 'l') ADVANCE(292); - if (lookahead == 'm') ADVANCE(245); - if (lookahead == 'n') ADVANCE(346); - if (lookahead == 'o') ADVANCE(369); - if (lookahead == 'p') ADVANCE(235); - if (lookahead == 'r') ADVANCE(253); - if (lookahead == 's') ADVANCE(274); - if (lookahead == 't') ADVANCE(236); - if (lookahead == 'u') ADVANCE(333); - if (lookahead == 'w') ADVANCE(250); - if (lookahead == '{') ADVANCE(479); - if (lookahead == 164) ADVANCE(634); - if (lookahead == 172) ADVANCE(506); - if (lookahead == 175) ADVANCE(512); - if (lookahead == 177) ADVANCE(508); - if (lookahead == 183) ADVANCE(683); - if (lookahead == 215) ADVANCE(538); - if (lookahead == 247) ADVANCE(540); - if (lookahead == 951) ADVANCE(487); - if (lookahead == 960) ADVANCE(489); - if (lookahead == 964) ADVANCE(491); - if (lookahead == 8261) ADVANCE(524); - if (lookahead == 8319) ADVANCE(544); - if (lookahead == 8345) ADVANCE(546); - if (lookahead == 8450) ADVANCE(630); - if (lookahead == 8594) ADVANCE(681); - if (lookahead == 8600) ADVANCE(598); - if (lookahead == 8601) ADVANCE(596); - if (lookahead == 8613) ADVANCE(550); - if (lookahead == 8615) ADVANCE(548); - if (lookahead == 8623) ADVANCE(594); - if (lookahead == 8624) ADVANCE(686); - if (lookahead == 8635) ADVANCE(600); - if (lookahead == 8652) ADVANCE(562); - if (lookahead == 8673) ADVANCE(558); - if (lookahead == 8714) ADVANCE(608); - if (lookahead == 8728) ADVANCE(504); - if (lookahead == 8730) ADVANCE(516); - if (lookahead == 8734) ADVANCE(493); - if (lookahead == 8736) ADVANCE(552); - if (lookahead == 8743) ADVANCE(657); - if (lookahead == 8745) ADVANCE(667); - if (lookahead == 8757) ADVANCE(640); - if (lookahead == 8759) ADVANCE(682); - if (lookahead == 8762) ADVANCE(690); - if (lookahead == 8781) ADVANCE(584); - if (lookahead == 8784) ADVANCE(689); - if (lookahead == 8785) ADVANCE(688); - if (lookahead == 8800) ADVANCE(527); - if (lookahead == 8801) ADVANCE(642); - if (lookahead == 8804) ADVANCE(530); - if (lookahead == 8805) ADVANCE(533); - if (lookahead == 8834) ADVANCE(588); - if (lookahead == 8835) ADVANCE(671); - if (lookahead == 8847) ADVANCE(590); - if (lookahead == 8848) ADVANCE(653); - if (lookahead == 8851) ADVANCE(669); - if (lookahead == 8852) ADVANCE(582); - if (lookahead == 8853) ADVANCE(663); - if (lookahead == 8855) ADVANCE(610); - if (lookahead == 8857) ADVANCE(646); - if (lookahead == 8858) ADVANCE(574); - if (lookahead == 8859) ADVANCE(576); - if (lookahead == 8860) ADVANCE(665); - if (lookahead == 8861) ADVANCE(578); - if (lookahead == 8862) ADVANCE(659); - if (lookahead == 8863) ADVANCE(586); - if (lookahead == 8864) ADVANCE(661); - if (lookahead == 8865) ADVANCE(592); - if (lookahead == 8866) ADVANCE(560); - if (lookahead == 8901) ADVANCE(648); - if (lookahead == 8943) ADVANCE(566); - if (lookahead == 8962) ADVANCE(685); - if (lookahead == 8968) ADVANCE(522); - if (lookahead == 8970) ADVANCE(520); - if (lookahead == 8981) ADVANCE(606); - if (lookahead == 9013) ADVANCE(514); - if (lookahead == 9033) ADVANCE(568); - if (lookahead == 9039) ADVANCE(570); - if (lookahead == 9046) ADVANCE(572); - if (lookahead == 9048) ADVANCE(650); - if (lookahead == 9051) ADVANCE(684); - if (lookahead == 9052) ADVANCE(673); - if (lookahead == 9058) ADVANCE(679); - if (lookahead == 9059) ADVANCE(677); - if (lookahead == 9060) ADVANCE(612); - if (lookahead == 9061) ADVANCE(644); - if (lookahead == 9084) ADVANCE(213); - if (lookahead == 9633) ADVANCE(580); - if (lookahead == 9651) ADVANCE(556); - if (lookahead == 9661) ADVANCE(604); - if (lookahead == 9675) ADVANCE(518); - if (lookahead == 9707) ADVANCE(602); - if (lookahead == 9715) ADVANCE(687); - if (lookahead == 9727) ADVANCE(542); - if (lookahead == 9735) ADVANCE(632); - if (lookahead == 9837) ADVANCE(564); - if (lookahead == 9858) ADVANCE(616); - if (lookahead == 10085) ADVANCE(680); - if (lookahead == 10204) ADVANCE(655); - if (lookahead == 10747) ADVANCE(554); - if (lookahead == 11034) ADVANCE(675); - if (lookahead == 11822) ADVANCE(622); + if (lookahead == 'A') ADVANCE(374); + if (lookahead == 'E') ADVANCE(404); + if (lookahead == 'F') ADVANCE(243); + if (lookahead == 'N') ADVANCE(242); + if (lookahead == 'P') ADVANCE(327); + if (lookahead == 'S') ADVANCE(291); + if (lookahead == '[') ADVANCE(493); + if (lookahead == '\\') ADVANCE(650); + if (lookahead == '^') ADVANCE(497); + if (lookahead == '`') ADVANCE(521); + if (lookahead == 'a') ADVANCE(272); + if (lookahead == 'b') ADVANCE(315); + if (lookahead == 'c') ADVANCE(292); + if (lookahead == 'd') ADVANCE(293); + if (lookahead == 'e') ADVANCE(506); + if (lookahead == 'f') ADVANCE(259); + if (lookahead == 'g') ADVANCE(257); + if (lookahead == 'i') ADVANCE(285); + if (lookahead == 'j') ADVANCE(359); + if (lookahead == 'k') ADVANCE(303); + if (lookahead == 'l') ADVANCE(301); + if (lookahead == 'm') ADVANCE(254); + if (lookahead == 'n') ADVANCE(357); + if (lookahead == 'o') ADVANCE(380); + if (lookahead == 'p') ADVANCE(244); + if (lookahead == 'r') ADVANCE(261); + if (lookahead == 's') ADVANCE(283); + if (lookahead == 't') ADVANCE(245); + if (lookahead == 'u') ADVANCE(344); + if (lookahead == 'w') ADVANCE(260); + if (lookahead == '{') ADVANCE(491); + if (lookahead == 164) ADVANCE(646); + if (lookahead == 172) ADVANCE(518); + if (lookahead == 175) ADVANCE(524); + if (lookahead == 177) ADVANCE(520); + if (lookahead == 183) ADVANCE(703); + if (lookahead == 215) ADVANCE(550); + if (lookahead == 247) ADVANCE(552); + if (lookahead == 951) ADVANCE(499); + if (lookahead == 960) ADVANCE(501); + if (lookahead == 964) ADVANCE(503); + if (lookahead == 8261) ADVANCE(536); + if (lookahead == 8319) ADVANCE(556); + if (lookahead == 8345) ADVANCE(558); + if (lookahead == 8450) ADVANCE(642); + if (lookahead == 8594) ADVANCE(701); + if (lookahead == 8600) ADVANCE(610); + if (lookahead == 8601) ADVANCE(608); + if (lookahead == 8613) ADVANCE(562); + if (lookahead == 8615) ADVANCE(560); + if (lookahead == 8619) ADVANCE(671); + if (lookahead == 8620) ADVANCE(669); + if (lookahead == 8623) ADVANCE(606); + if (lookahead == 8624) ADVANCE(706); + if (lookahead == 8635) ADVANCE(612); + if (lookahead == 8652) ADVANCE(574); + if (lookahead == 8673) ADVANCE(570); + if (lookahead == 8714) ADVANCE(620); + if (lookahead == 8728) ADVANCE(516); + if (lookahead == 8730) ADVANCE(528); + if (lookahead == 8734) ADVANCE(505); + if (lookahead == 8736) ADVANCE(564); + if (lookahead == 8743) ADVANCE(673); + if (lookahead == 8745) ADVANCE(683); + if (lookahead == 8757) ADVANCE(652); + if (lookahead == 8759) ADVANCE(702); + if (lookahead == 8762) ADVANCE(710); + if (lookahead == 8781) ADVANCE(596); + if (lookahead == 8784) ADVANCE(709); + if (lookahead == 8785) ADVANCE(708); + if (lookahead == 8800) ADVANCE(539); + if (lookahead == 8801) ADVANCE(654); + if (lookahead == 8804) ADVANCE(542); + if (lookahead == 8805) ADVANCE(545); + if (lookahead == 8834) ADVANCE(600); + if (lookahead == 8835) ADVANCE(687); + if (lookahead == 8847) ADVANCE(602); + if (lookahead == 8848) ADVANCE(665); + if (lookahead == 8851) ADVANCE(685); + if (lookahead == 8852) ADVANCE(594); + if (lookahead == 8853) ADVANCE(679); + if (lookahead == 8855) ADVANCE(622); + if (lookahead == 8857) ADVANCE(658); + if (lookahead == 8858) ADVANCE(586); + if (lookahead == 8859) ADVANCE(588); + if (lookahead == 8860) ADVANCE(681); + if (lookahead == 8861) ADVANCE(590); + if (lookahead == 8862) ADVANCE(675); + if (lookahead == 8863) ADVANCE(598); + if (lookahead == 8864) ADVANCE(677); + if (lookahead == 8865) ADVANCE(604); + if (lookahead == 8866) ADVANCE(572); + if (lookahead == 8901) ADVANCE(660); + if (lookahead == 8916) ADVANCE(697); + if (lookahead == 8943) ADVANCE(578); + if (lookahead == 8962) ADVANCE(705); + if (lookahead == 8965) ADVANCE(667); + if (lookahead == 8968) ADVANCE(534); + if (lookahead == 8970) ADVANCE(532); + if (lookahead == 8981) ADVANCE(618); + if (lookahead == 9013) ADVANCE(526); + if (lookahead == 9033) ADVANCE(580); + if (lookahead == 9039) ADVANCE(582); + if (lookahead == 9046) ADVANCE(584); + if (lookahead == 9048) ADVANCE(662); + if (lookahead == 9051) ADVANCE(704); + if (lookahead == 9052) ADVANCE(689); + if (lookahead == 9058) ADVANCE(695); + if (lookahead == 9059) ADVANCE(693); + if (lookahead == 9060) ADVANCE(624); + if (lookahead == 9061) ADVANCE(656); + if (lookahead == 9084) ADVANCE(222); + if (lookahead == 9633) ADVANCE(592); + if (lookahead == 9651) ADVANCE(568); + if (lookahead == 9661) ADVANCE(616); + if (lookahead == 9675) ADVANCE(530); + if (lookahead == 9707) ADVANCE(614); + if (lookahead == 9715) ADVANCE(707); + if (lookahead == 9727) ADVANCE(554); + if (lookahead == 9735) ADVANCE(644); + if (lookahead == 9837) ADVANCE(576); + if (lookahead == 9858) ADVANCE(628); + if (lookahead == 10085) ADVANCE(700); + if (lookahead == 10204) ADVANCE(711); + if (lookahead == 10747) ADVANCE(566); + if (lookahead == 11034) ADVANCE(691); + if (lookahead == 11822) ADVANCE(634); if (lookahead == '\t' || - lookahead == ' ') SKIP(197) - if (('h' <= lookahead && lookahead <= 'z')) ADVANCE(398); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(200); - if (('B' <= lookahead && lookahead <= 'Z')) ADVANCE(399); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(226); + lookahead == ' ') SKIP(206) + if (('h' <= lookahead && lookahead <= 'z')) ADVANCE(409); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(209); + if (('B' <= lookahead && lookahead <= 'Z')) ADVANCE(410); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(235); END_STATE(); - case 198: - if (eof) ADVANCE(199); - if (lookahead == '\n') ADVANCE(691); + case 207: + if (eof) ADVANCE(208); + if (lookahead == '\n') ADVANCE(712); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(475); - if (lookahead == ')') ADVANCE(478); - if (lookahead == '_') ADVANCE(483); - if (lookahead == '|') ADVANCE(223); + if (lookahead == '#') ADVANCE(487); + if (lookahead == ')') ADVANCE(490); + if (lookahead == '_') ADVANCE(495); + if (lookahead == '|') ADVANCE(232); if (lookahead == '\t' || - lookahead == ' ') SKIP(198) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(224); + lookahead == ' ') SKIP(207) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(233); END_STATE(); - case 199: + case 208: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 200: + case 209: ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '.') ADVANCE(188); - if (lookahead == '/') ADVANCE(189); + if (lookahead == '.') ADVANCE(197); + if (lookahead == '/') ADVANCE(198); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(186); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(200); + lookahead == 'e') ADVANCE(195); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(209); END_STATE(); - case 201: + case 210: ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '.') ADVANCE(188); + if (lookahead == '.') ADVANCE(197); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(186); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(201); + lookahead == 'e') ADVANCE(195); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(210); END_STATE(); - case 202: + case 211: ACCEPT_TOKEN(aux_sym_number_token1); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(186); + lookahead == 'e') ADVANCE(195); END_STATE(); - case 203: + case 212: ACCEPT_TOKEN(aux_sym_number_token1); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(186); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(203); + lookahead == 'e') ADVANCE(195); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(212); END_STATE(); - case 204: + case 213: ACCEPT_TOKEN(aux_sym_number_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(204); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(213); END_STATE(); - case 205: + case 214: ACCEPT_TOKEN(sym_fraction); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(205); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(214); END_STATE(); - case 206: + case 215: ACCEPT_TOKEN(anon_sym_os); - if (lookahead == '!') ADVANCE(227); + if (lookahead == '!') ADVANCE(236); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(412); END_STATE(); - case 207: + case 216: ACCEPT_TOKEN(anon_sym_Family); - if (lookahead == '!') ADVANCE(227); + if (lookahead == '!') ADVANCE(236); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(399); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(410); END_STATE(); - case 208: + case 217: ACCEPT_TOKEN(anon_sym_Arch); - if (lookahead == '!') ADVANCE(227); + if (lookahead == '!') ADVANCE(236); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(399); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(410); END_STATE(); - case 209: + case 218: ACCEPT_TOKEN(anon_sym_ExeExt); - if (lookahead == '!') ADVANCE(227); + if (lookahead == '!') ADVANCE(236); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(399); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(410); END_STATE(); - case 210: + case 219: ACCEPT_TOKEN(anon_sym_PllExt); - if (lookahead == '!') ADVANCE(227); + if (lookahead == '!') ADVANCE(236); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(399); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(410); END_STATE(); - case 211: + case 220: ACCEPT_TOKEN(anon_sym_Sep); - if (lookahead == '!') ADVANCE(227); + if (lookahead == '!') ADVANCE(236); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(399); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(410); END_STATE(); - case 212: + case 221: ACCEPT_TOKEN(anon_sym_NUmProcs); - if (lookahead == '!') ADVANCE(227); + if (lookahead == '!') ADVANCE(236); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(399); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(410); END_STATE(); - case 213: + case 222: ACCEPT_TOKEN(anon_sym_); END_STATE(); - case 214: + case 223: ACCEPT_TOKEN(aux_sym_character_token1); END_STATE(); - case 215: + case 224: ACCEPT_TOKEN(sym_string); END_STATE(); - case 216: + case 225: ACCEPT_TOKEN(sym_string); if (lookahead == '\n') ADVANCE(4); - if (lookahead == '"') ADVANCE(218); - if (lookahead == '\\') ADVANCE(220); - if (lookahead != 0) ADVANCE(219); + if (lookahead == '"') ADVANCE(227); + if (lookahead == '\\') ADVANCE(229); + if (lookahead != 0) ADVANCE(228); END_STATE(); - case 217: + case 226: ACCEPT_TOKEN(sym_string); - if (lookahead == '"') ADVANCE(215); + if (lookahead == '"') ADVANCE(224); if (lookahead == '\\') ADVANCE(5); if (lookahead != 0) ADVANCE(4); END_STATE(); - case 218: + case 227: ACCEPT_TOKEN(sym_string); if (lookahead != 0 && - lookahead != '\n') ADVANCE(222); + lookahead != '\n') ADVANCE(231); END_STATE(); - case 219: + case 228: ACCEPT_TOKEN(sym_multiLineString); if (lookahead == '\n') ADVANCE(4); - if (lookahead == '"') ADVANCE(218); - if (lookahead == '\\') ADVANCE(220); - if (lookahead != 0) ADVANCE(219); + if (lookahead == '"') ADVANCE(227); + if (lookahead == '\\') ADVANCE(229); + if (lookahead != 0) ADVANCE(228); END_STATE(); - case 220: + case 229: ACCEPT_TOKEN(sym_multiLineString); if (lookahead == '\n') ADVANCE(4); - if (lookahead == '"') ADVANCE(216); - if (lookahead == '\\') ADVANCE(220); + if (lookahead == '"') ADVANCE(225); + if (lookahead == '\\') ADVANCE(229); if (lookahead == 'n' || - lookahead == 't') ADVANCE(219); - if (lookahead != 0) ADVANCE(219); + lookahead == 't') ADVANCE(228); + if (lookahead != 0) ADVANCE(228); END_STATE(); - case 221: + case 230: ACCEPT_TOKEN(sym_multiLineString); - if (lookahead == '"') ADVANCE(219); + if (lookahead == '"') ADVANCE(228); if (lookahead != 0 && - lookahead != '\n') ADVANCE(222); + lookahead != '\n') ADVANCE(231); END_STATE(); - case 222: + case 231: ACCEPT_TOKEN(sym_multiLineString); if (lookahead != 0 && - lookahead != '\n') ADVANCE(222); - END_STATE(); - case 223: - ACCEPT_TOKEN(anon_sym_PIPE); - END_STATE(); - case 224: - ACCEPT_TOKEN(aux_sym_signature_token1); - if (lookahead == '.') ADVANCE(190); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(224); - END_STATE(); - case 225: - ACCEPT_TOKEN(aux_sym_signature_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(225); - END_STATE(); - case 226: - ACCEPT_TOKEN(sym_identifier); - END_STATE(); - case 227: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - END_STATE(); - case 228: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'E') ADVANCE(392); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(399); - END_STATE(); - case 229: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'E') ADVANCE(394); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(399); - END_STATE(); - case 230: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'N') ADVANCE(495); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(399); - END_STATE(); - case 231: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'P') ADVANCE(365); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(399); + lookahead != '\n') ADVANCE(231); END_STATE(); case 232: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'P') ADVANCE(368); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(399); + ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); case 233: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'U') ADVANCE(324); - if (lookahead == 'a') ADVANCE(230); - if (lookahead == 'u') ADVANCE(332); - if (('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(399); + ACCEPT_TOKEN(aux_sym_signature_token1); + if (lookahead == '.') ADVANCE(199); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(233); END_STATE(); case 234: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'a') ADVANCE(329); - if (('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(399); + ACCEPT_TOKEN(aux_sym_signature_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(234); END_STATE(); case 235: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'a') ADVANCE(269); - if (lookahead == 'i') ADVANCE(488); - if (lookahead == 'o') ADVANCE(389); - if (('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(397); END_STATE(); case 236: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'a') ADVANCE(266); - if (lookahead == 'r') ADVANCE(258); - if (lookahead == 'y') ADVANCE(361); - if (('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(397); + if (lookahead == '!') ADVANCE(236); END_STATE(); case 237: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'a') ADVANCE(443); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'E') ADVANCE(403); if (('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(401); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(410); END_STATE(); case 238: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'a') ADVANCE(406); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'E') ADVANCE(405); if (('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(401); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(410); END_STATE(); case 239: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'a') ADVANCE(486); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'N') ADVANCE(507); if (('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(401); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(410); END_STATE(); case 240: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'a') ADVANCE(473); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'P') ADVANCE(376); if (('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(401); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(410); END_STATE(); case 241: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'a') ADVANCE(321); - if (lookahead == 'i') ADVANCE(340); - if (lookahead == 'l') ADVANCE(355); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'P') ADVANCE(379); if (('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(227); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(410); END_STATE(); case 242: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'a') ADVANCE(386); - if (lookahead == 'e') ADVANCE(327); - if (lookahead == 'i') ADVANCE(345); - if (lookahead == 'o') ADVANCE(280); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'U') ADVANCE(335); + if (lookahead == 'a') ADVANCE(239); + if (lookahead == 'u') ADVANCE(343); if (('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(227); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(410); END_STATE(); case 243: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'a') ADVANCE(366); - if (lookahead == 'i') ADVANCE(271); - if (lookahead == 'o') ADVANCE(390); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'a') ADVANCE(340); if (('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(227); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(410); END_STATE(); case 244: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'a') ADVANCE(301); - if (lookahead == 'r') ADVANCE(261); - if (lookahead == 'y') ADVANCE(362); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'a') ADVANCE(278); + if (lookahead == 'i') ADVANCE(500); + if (lookahead == 'o') ADVANCE(400); if (('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(227); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(408); END_STATE(); case 245: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'a') ADVANCE(384); - if (lookahead == 'e') ADVANCE(326); - if (lookahead == 'i') ADVANCE(344); - if (lookahead == 'o') ADVANCE(279); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'a') ADVANCE(274); + if (lookahead == 'h') ADVANCE(322); + if (lookahead == 'r') ADVANCE(266); + if (lookahead == 'y') ADVANCE(372); if (('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(397); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(408); END_STATE(); case 246: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'a') ADVANCE(461); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'a') ADVANCE(454); if (('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(401); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(412); END_STATE(); case 247: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'a') ADVANCE(439); - if (lookahead == 'd') ADVANCE(468); - if (lookahead == 's') ADVANCE(429); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'a') ADVANCE(417); if (('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(401); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(412); END_STATE(); case 248: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'a') ADVANCE(318); - if (lookahead == 'i') ADVANCE(319); - if (lookahead == 'l') ADVANCE(349); - if (lookahead == 'o') ADVANCE(317); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'a') ADVANCE(498); if (('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(397); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(412); END_STATE(); case 249: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'a') ADVANCE(360); - if (lookahead == 'e') ADVANCE(335); - if (lookahead == 'r') ADVANCE(356); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'a') ADVANCE(485); if (('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(397); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(412); END_STATE(); case 250: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'a') ADVANCE(309); - if (lookahead == 'h') ADVANCE(286); - if (lookahead == 'i') ADVANCE(342); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'a') ADVANCE(332); + if (lookahead == 'i') ADVANCE(352); + if (lookahead == 'l') ADVANCE(366); if (('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(397); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(236); END_STATE(); case 251: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'a') ADVANCE(408); - if (lookahead == 'c') ADVANCE(472); - if (lookahead == 'd') ADVANCE(469); - if (lookahead == 'g') ADVANCE(421); - if (lookahead == 'p') ADVANCE(420); - if (lookahead == 'r') ADVANCE(402); - if (lookahead == 's') ADVANCE(431); - if (lookahead == 'v') ADVANCE(424); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'a') ADVANCE(397); + if (lookahead == 'e') ADVANCE(338); + if (lookahead == 'i') ADVANCE(356); + if (lookahead == 'o') ADVANCE(289); if (('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(401); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(236); END_STATE(); case 252: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'a') ADVANCE(314); - if (lookahead == 'h') ADVANCE(297); - if (lookahead == 'i') ADVANCE(343); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'a') ADVANCE(377); + if (lookahead == 'i') ADVANCE(280); + if (lookahead == 'o') ADVANCE(401); if (('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(227); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(236); END_STATE(); case 253: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'a') ADVANCE(337); - if (lookahead == 'e') ADVANCE(251); - if (lookahead == 'i') ADVANCE(374); - if (lookahead == 'o') ADVANCE(385); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'a') ADVANCE(310); + if (lookahead == 'r') ADVANCE(269); + if (lookahead == 'y') ADVANCE(373); if (('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(397); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(236); END_STATE(); case 254: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'a') ADVANCE(339); - if (lookahead == 'e') ADVANCE(272); - if (lookahead == 'i') ADVANCE(377); - if (lookahead == 'o') ADVANCE(388); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'a') ADVANCE(395); + if (lookahead == 'e') ADVANCE(337); + if (lookahead == 'i') ADVANCE(355); + if (lookahead == 'o') ADVANCE(288); if (('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(227); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(408); END_STATE(); case 255: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'a') ADVANCE(446); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'a') ADVANCE(472); if (('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(401); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(412); END_STATE(); case 256: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'a') ADVANCE(457); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'a') ADVANCE(450); + if (lookahead == 'd') ADVANCE(481); + if (lookahead == 's') ADVANCE(439); if (('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(401); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(412); END_STATE(); case 257: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'a') ADVANCE(83); - if (lookahead == 'd') ADVANCE(168); - if (lookahead == 's') ADVANCE(63); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'a') ADVANCE(371); + if (lookahead == 'e') ADVANCE(346); + if (lookahead == 'r') ADVANCE(367); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(408); END_STATE(); case 258: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'a') ADVANCE(449); - if (lookahead == 'y') ADVANCE(676); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'a') ADVANCE(324); + if (lookahead == 'h') ADVANCE(306); + if (lookahead == 'i') ADVANCE(354); if (('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(401); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(236); END_STATE(); case 259: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'a') ADVANCE(97); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'a') ADVANCE(329); + if (lookahead == 'i') ADVANCE(330); + if (lookahead == 'l') ADVANCE(360); + if (lookahead == 'o') ADVANCE(328); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(408); END_STATE(); case 260: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'a') ADVANCE(139); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'a') ADVANCE(318); + if (lookahead == 'h') ADVANCE(295); + if (lookahead == 'i') ADVANCE(353); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(408); END_STATE(); case 261: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'a') ADVANCE(106); - if (lookahead == 'y') ADVANCE(135); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'a') ADVANCE(348); + if (lookahead == 'e') ADVANCE(277); + if (lookahead == 'i') ADVANCE(385); + if (lookahead == 'o') ADVANCE(396); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(408); END_STATE(); case 262: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'a') ADVANCE(123); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'a') ADVANCE(350); + if (lookahead == 'e') ADVANCE(281); + if (lookahead == 'i') ADVANCE(388); + if (lookahead == 'o') ADVANCE(399); + if (('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(236); END_STATE(); case 263: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'b') ADVANCE(375); - if (lookahead == 's') ADVANCE(376); - if (lookahead == 't') ADVANCE(259); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'a') ADVANCE(457); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(412); END_STATE(); case 264: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'b') ADVANCE(370); - if (lookahead == 's') ADVANCE(371); - if (lookahead == 't') ADVANCE(237); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'a') ADVANCE(468); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(397); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(412); END_STATE(); case 265: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'b') ADVANCE(452); - if (lookahead == 'd') ADVANCE(425); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'a') ADVANCE(86); + if (lookahead == 'd') ADVANCE(175); + if (lookahead == 's') ADVANCE(66); END_STATE(); case 266: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'b') ADVANCE(442); - if (lookahead == 'g') ADVANCE(619); - if (lookahead == 'k') ADVANCE(418); - if (lookahead == 'u') ADVANCE(490); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'a') ADVANCE(460); + if (lookahead == 'y') ADVANCE(692); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(412); END_STATE(); case 267: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'b') ADVANCE(114); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'a') ADVANCE(146); END_STATE(); case 268: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'c') ADVANCE(305); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(399); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'a') ADVANCE(100); END_STATE(); case 269: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'c') ADVANCE(436); - if (lookahead == 'r') ADVANCE(465); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'a') ADVANCE(111); + if (lookahead == 'y') ADVANCE(142); END_STATE(); case 270: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'c') ADVANCE(430); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'a') ADVANCE(128); END_STATE(); case 271: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'c') ADVANCE(79); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'b') ADVANCE(386); + if (lookahead == 's') ADVANCE(387); + if (lookahead == 't') ADVANCE(268); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(236); END_STATE(); case 272: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'c') ADVANCE(175); - if (lookahead == 'g') ADVANCE(49); - if (lookahead == 'r') ADVANCE(9); - if (lookahead == 's') ADVANCE(68); - if (lookahead == 'v') ADVANCE(54); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'b') ADVANCE(381); + if (lookahead == 'l') ADVANCE(325); + if (lookahead == 's') ADVANCE(382); + if (lookahead == 't') ADVANCE(246); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(408); END_STATE(); case 273: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'c') ADVANCE(372); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'b') ADVANCE(463); + if (lookahead == 'd') ADVANCE(435); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(399); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(412); END_STATE(); case 274: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'c') ADVANCE(255); - if (lookahead == 'e') ADVANCE(320); - if (lookahead == 'h') ADVANCE(256); - if (lookahead == 'i') ADVANCE(303); - if (lookahead == 'p') ADVANCE(240); - if (lookahead == 'q') ADVANCE(364); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'b') ADVANCE(453); + if (lookahead == 'g') ADVANCE(631); + if (lookahead == 'k') ADVANCE(428); + if (lookahead == 'u') ADVANCE(502); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(397); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(412); END_STATE(); case 275: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'c') ADVANCE(373); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(399); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'b') ADVANCE(119); END_STATE(); case 276: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'd') ADVANCE(502); - if (lookahead == 'n') ADVANCE(278); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'c') ADVANCE(314); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(397); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(410); END_STATE(); case 277: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'd') ADVANCE(503); - if (lookahead == 'n') ADVANCE(281); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'c') ADVANCE(480); + if (lookahead == 'd') ADVANCE(482); + if (lookahead == 'g') ADVANCE(431); + if (lookahead == 'p') ADVANCE(430); + if (lookahead == 'r') ADVANCE(413); + if (lookahead == 's') ADVANCE(441); + if (lookahead == 'v') ADVANCE(434); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(412); END_STATE(); case 278: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'd') ADVANCE(415); - if (lookahead == 'f') ADVANCE(432); - if (lookahead == 'v') ADVANCE(426); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'c') ADVANCE(447); + if (lookahead == 'r') ADVANCE(477); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(412); END_STATE(); case 279: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'd') ADVANCE(471); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'c') ADVANCE(440); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(412); END_STATE(); case 280: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'd') ADVANCE(173); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'c') ADVANCE(82); END_STATE(); case 281: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'd') ADVANCE(29); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'c') ADVANCE(182); + if (lookahead == 'g') ADVANCE(50); + if (lookahead == 'r') ADVANCE(9); + if (lookahead == 's') ADVANCE(70); + if (lookahead == 'v') ADVANCE(55); END_STATE(); case 282: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'e') ADVANCE(358); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'c') ADVANCE(383); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(399); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(410); END_STATE(); case 283: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'e') ADVANCE(307); - if (lookahead == 'l') ADVANCE(246); - if (lookahead == 'o') ADVANCE(325); - if (lookahead == 'r') ADVANCE(353); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'c') ADVANCE(263); + if (lookahead == 'e') ADVANCE(331); + if (lookahead == 'h') ADVANCE(264); + if (lookahead == 'i') ADVANCE(312); + if (lookahead == 'p') ADVANCE(249); + if (lookahead == 'q') ADVANCE(375); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(397); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(408); END_STATE(); case 284: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'e') ADVANCE(247); - if (lookahead == 'i') ADVANCE(359); - if (lookahead == 'o') ADVANCE(678); - if (lookahead == 'r') ADVANCE(350); - if (lookahead == 'u') ADVANCE(328); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'c') ADVANCE(384); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(397); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(410); END_STATE(); case 285: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'e') ADVANCE(228); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'd') ADVANCE(514); + if (lookahead == 'n') ADVANCE(287); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(399); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(408); END_STATE(); case 286: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'e') ADVANCE(459); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'd') ADVANCE(515); + if (lookahead == 'n') ADVANCE(290); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(236); END_STATE(); case 287: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'e') ADVANCE(312); - if (lookahead == 'l') ADVANCE(260); - if (lookahead == 'o') ADVANCE(331); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'd') ADVANCE(425); + if (lookahead == 'f') ADVANCE(442); + if (lookahead == 'v') ADVANCE(436); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(412); END_STATE(); case 288: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'e') ADVANCE(257); - if (lookahead == 'r') ADVANCE(354); - if (lookahead == 'u') ADVANCE(330); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'd') ADVANCE(484); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(412); END_STATE(); case 289: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'e') ADVANCE(334); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'd') ADVANCE(180); END_STATE(); case 290: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'e') ADVANCE(296); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'd') ADVANCE(30); END_STATE(); case 291: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'e') ADVANCE(322); - if (lookahead == 'h') ADVANCE(262); - if (lookahead == 'i') ADVANCE(304); - if (lookahead == 'q') ADVANCE(367); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'e') ADVANCE(369); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(410); END_STATE(); case 292: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'e') ADVANCE(336); - if (lookahead == 'o') ADVANCE(300); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'e') ADVANCE(316); + if (lookahead == 'l') ADVANCE(255); + if (lookahead == 'o') ADVANCE(336); + if (lookahead == 'r') ADVANCE(364); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(397); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(408); END_STATE(); case 293: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'e') ADVANCE(341); - if (lookahead == 'o') ADVANCE(302); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'e') ADVANCE(256); + if (lookahead == 'i') ADVANCE(370); + if (lookahead == 'o') ADVANCE(694); + if (lookahead == 'r') ADVANCE(361); + if (lookahead == 'u') ADVANCE(339); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(408); END_STATE(); case 294: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'e') ADVANCE(295); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'e') ADVANCE(237); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(397); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(410); END_STATE(); case 295: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'e') ADVANCE(455); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'e') ADVANCE(470); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(412); END_STATE(); case 296: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'e') ADVANCE(119); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'e') ADVANCE(320); + if (lookahead == 'l') ADVANCE(267); + if (lookahead == 'o') ADVANCE(342); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(236); END_STATE(); case 297: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'e') ADVANCE(136); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'e') ADVANCE(265); + if (lookahead == 'r') ADVANCE(365); + if (lookahead == 'u') ADVANCE(341); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(236); END_STATE(); case 298: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'f') ADVANCE(625); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'e') ADVANCE(345); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(236); END_STATE(); case 299: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'f') ADVANCE(625); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'e') ADVANCE(305); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(236); END_STATE(); case 300: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'g') ADVANCE(403); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'e') ADVANCE(333); + if (lookahead == 'h') ADVANCE(270); + if (lookahead == 'i') ADVANCE(313); + if (lookahead == 'q') ADVANCE(378); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(236); END_STATE(); case 301: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'g') ADVANCE(619); - if (lookahead == 'k') ADVANCE(32); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'e') ADVANCE(347); + if (lookahead == 'o') ADVANCE(309); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(408); END_STATE(); case 302: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'g') ADVANCE(10); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'e') ADVANCE(351); + if (lookahead == 'o') ADVANCE(311); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(236); END_STATE(); case 303: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'g') ADVANCE(447); - if (lookahead == 'n') ADVANCE(417); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'e') ADVANCE(304); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(408); END_STATE(); case 304: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'g') ADVANCE(100); - if (lookahead == 'n') ADVANCE(31); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'e') ADVANCE(466); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(412); END_STATE(); case 305: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'h') ADVANCE(208); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(399); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'e') ADVANCE(124); END_STATE(); case 306: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'i') ADVANCE(378); - if (lookahead == 'o') ADVANCE(379); - if (lookahead == 'r') ADVANCE(238); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(397); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'e') ADVANCE(143); END_STATE(); case 307: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'i') ADVANCE(438); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'f') ADVANCE(637); END_STATE(); case 308: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'i') ADVANCE(387); - if (lookahead == 'o') ADVANCE(391); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'f') ADVANCE(637); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(412); END_STATE(); case 309: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'i') ADVANCE(467); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'g') ADVANCE(414); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(412); END_STATE(); case 310: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'i') ADVANCE(444); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'g') ADVANCE(631); + if (lookahead == 'k') ADVANCE(33); END_STATE(); case 311: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'i') ADVANCE(315); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(399); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'g') ADVANCE(10); END_STATE(); case 312: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'i') ADVANCE(82); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'g') ADVANCE(458); + if (lookahead == 'n') ADVANCE(427); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(412); END_STATE(); case 313: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'i') ADVANCE(98); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'g') ADVANCE(103); + if (lookahead == 'n') ADVANCE(32); END_STATE(); case 314: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'i') ADVANCE(150); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'h') ADVANCE(217); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(410); END_STATE(); case 315: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'l') ADVANCE(395); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'i') ADVANCE(389); + if (lookahead == 'o') ADVANCE(390); + if (lookahead == 'r') ADVANCE(247); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(399); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(408); END_STATE(); case 316: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'l') ADVANCE(323); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'i') ADVANCE(449); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(399); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(412); END_STATE(); case 317: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'l') ADVANCE(410); - if (lookahead == 'r') ADVANCE(435); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'i') ADVANCE(398); + if (lookahead == 'o') ADVANCE(402); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(236); END_STATE(); case 318: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'l') ADVANCE(440); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'i') ADVANCE(479); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(412); END_STATE(); case 319: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'l') ADVANCE(441); - if (lookahead == 'n') ADVANCE(409); - if (lookahead == 'r') ADVANCE(462); - if (lookahead == 'x') ADVANCE(633); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'i') ADVANCE(455); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(412); END_STATE(); case 320: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'l') ADVANCE(422); - if (lookahead == 'n') ADVANCE(412); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'i') ADVANCE(85); END_STATE(); case 321: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'l') ADVANCE(84); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'i') ADVANCE(326); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(410); END_STATE(); case 322: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'l') ADVANCE(50); - if (lookahead == 'n') ADVANCE(25); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'i') ADVANCE(475); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(412); END_STATE(); case 323: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'l') ADVANCE(229); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(399); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'i') ADVANCE(101); END_STATE(); case 324: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'm') ADVANCE(231); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(399); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'i') ADVANCE(157); END_STATE(); case 325: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'm') ADVANCE(456); - if (lookahead == 'u') ADVANCE(458); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'l') ADVANCE(696); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(412); END_STATE(); case 326: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'm') ADVANCE(405); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'l') ADVANCE(406); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(410); END_STATE(); case 327: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'm') ADVANCE(17); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'l') ADVANCE(334); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(410); END_STATE(); case 328: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'm') ADVANCE(454); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'l') ADVANCE(420); + if (lookahead == 'r') ADVANCE(446); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(412); END_STATE(); case 329: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'm') ADVANCE(311); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'l') ADVANCE(451); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(399); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(412); END_STATE(); case 330: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'm') ADVANCE(118); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'l') ADVANCE(452); + if (lookahead == 'n') ADVANCE(419); + if (lookahead == 'r') ADVANCE(473); + if (lookahead == 'x') ADVANCE(645); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(412); END_STATE(); case 331: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'm') ADVANCE(121); - if (lookahead == 'u') ADVANCE(127); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'l') ADVANCE(432); + if (lookahead == 'n') ADVANCE(422); + if (lookahead == 't') ADVANCE(444); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(412); END_STATE(); case 332: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'm') ADVANCE(232); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(399); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'l') ADVANCE(87); END_STATE(); case 333: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'n') ADVANCE(265); - if (lookahead == 't') ADVANCE(299); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(397); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'l') ADVANCE(51); + if (lookahead == 'n') ADVANCE(25); END_STATE(); case 334: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'n') ADVANCE(617); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'l') ADVANCE(238); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(410); END_STATE(); case 335: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'n') ADVANCE(617); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'm') ADVANCE(240); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(410); END_STATE(); case 336: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'n') ADVANCE(427); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'm') ADVANCE(467); + if (lookahead == 'u') ADVANCE(469); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(412); END_STATE(); case 337: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'n') ADVANCE(411); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'm') ADVANCE(416); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(412); END_STATE(); case 338: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'n') ADVANCE(267); - if (lookahead == 't') ADVANCE(298); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'm') ADVANCE(17); END_STATE(); case 339: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'n') ADVANCE(24); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'm') ADVANCE(465); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(412); END_STATE(); case 340: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'n') ADVANCE(23); - if (lookahead == 'r') ADVANCE(140); - if (lookahead == 'x') ADVANCE(633); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'm') ADVANCE(321); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(410); END_STATE(); case 341: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'n') ADVANCE(61); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'm') ADVANCE(123); END_STATE(); case 342: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'n') ADVANCE(413); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'm') ADVANCE(126); + if (lookahead == 'u') ADVANCE(132); END_STATE(); case 343: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'n') ADVANCE(27); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'm') ADVANCE(241); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(410); END_STATE(); case 344: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'n') ADVANCE(434); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'n') ADVANCE(273); + if (lookahead == 't') ADVANCE(308); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(408); END_STATE(); case 345: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'n') ADVANCE(78); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'n') ADVANCE(629); END_STATE(); case 346: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'o') ADVANCE(381); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'n') ADVANCE(629); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(397); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(412); END_STATE(); case 347: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'o') ADVANCE(380); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'n') ADVANCE(437); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(412); END_STATE(); case 348: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'o') ADVANCE(310); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'n') ADVANCE(421); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(397); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(412); END_STATE(); case 349: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'o') ADVANCE(451); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'n') ADVANCE(275); + if (lookahead == 't') ADVANCE(307); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(236); END_STATE(); case 350: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'o') ADVANCE(453); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'n') ADVANCE(24); END_STATE(); case 351: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'o') ADVANCE(313); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'n') ADVANCE(64); END_STATE(); case 352: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'o') ADVANCE(273); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(399); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'n') ADVANCE(23); + if (lookahead == 'r') ADVANCE(147); + if (lookahead == 'x') ADVANCE(645); END_STATE(); case 353: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'o') ADVANCE(464); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'n') ADVANCE(423); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(412); END_STATE(); case 354: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'o') ADVANCE(117); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'n') ADVANCE(27); END_STATE(); case 355: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'o') ADVANCE(111); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'n') ADVANCE(445); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(412); END_STATE(); case 356: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'o') ADVANCE(470); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'n') ADVANCE(81); END_STATE(); case 357: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'o') ADVANCE(275); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'o') ADVANCE(392); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(399); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(408); END_STATE(); case 358: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'p') ADVANCE(211); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'o') ADVANCE(391); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(399); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(236); END_STATE(); case 359: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'p') ADVANCE(645); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'o') ADVANCE(319); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(408); END_STATE(); case 360: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'p') ADVANCE(647); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'o') ADVANCE(462); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(412); END_STATE(); case 361: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'p') ADVANCE(419); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'o') ADVANCE(464); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(412); END_STATE(); case 362: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'p') ADVANCE(33); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'o') ADVANCE(323); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(236); END_STATE(); case 363: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'r') ADVANCE(268); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'o') ADVANCE(282); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(399); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(410); END_STATE(); case 364: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'r') ADVANCE(466); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'o') ADVANCE(476); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(412); END_STATE(); case 365: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'r') ADVANCE(352); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(399); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'o') ADVANCE(122); END_STATE(); case 366: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'r') ADVANCE(144); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'o') ADVANCE(116); END_STATE(); case 367: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'r') ADVANCE(149); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'o') ADVANCE(483); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(412); END_STATE(); case 368: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'r') ADVANCE(357); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'o') ADVANCE(284); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(399); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(410); END_STATE(); case 369: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 's') ADVANCE(206); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'p') ADVANCE(220); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(397); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(410); END_STATE(); case 370: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 's') ADVANCE(450); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'p') ADVANCE(657); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(412); END_STATE(); case 371: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 's') ADVANCE(414); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'p') ADVANCE(659); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(412); END_STATE(); case 372: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 's') ADVANCE(212); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'p') ADVANCE(429); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(399); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(412); END_STATE(); case 373: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 's') ADVANCE(496); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(399); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'p') ADVANCE(34); END_STATE(); case 374: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 's') ADVANCE(416); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'r') ADVANCE(276); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(410); END_STATE(); case 375: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 's') ADVANCE(109); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'r') ADVANCE(478); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(412); END_STATE(); case 376: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 's') ADVANCE(28); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'r') ADVANCE(363); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(410); END_STATE(); case 377: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 's') ADVANCE(30); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'r') ADVANCE(151); END_STATE(); case 378: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 't') ADVANCE(460); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'r') ADVANCE(156); END_STATE(); case 379: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 't') ADVANCE(428); - if (lookahead == 'x') ADVANCE(579); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'r') ADVANCE(368); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(410); END_STATE(); case 380: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 't') ADVANCE(505); - if (lookahead == 'w') ADVANCE(620); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 's') ADVANCE(215); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(408); END_STATE(); case 381: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 't') ADVANCE(505); - if (lookahead == 'w') ADVANCE(620); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 's') ADVANCE(461); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(412); END_STATE(); case 382: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 't') ADVANCE(209); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 's') ADVANCE(424); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(399); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(412); END_STATE(); case 383: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 't') ADVANCE(210); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 's') ADVANCE(221); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(399); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(410); END_STATE(); case 384: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 't') ADVANCE(407); - if (lookahead == 'x') ADVANCE(433); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 's') ADVANCE(508); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(410); END_STATE(); case 385: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 't') ADVANCE(404); - if (lookahead == 'u') ADVANCE(445); - if (lookahead == 'w') ADVANCE(463); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 's') ADVANCE(426); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(412); END_STATE(); case 386: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 't') ADVANCE(18); - if (lookahead == 'x') ADVANCE(69); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 's') ADVANCE(114); END_STATE(); case 387: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 't') ADVANCE(138); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 's') ADVANCE(29); END_STATE(); case 388: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 't') ADVANCE(12); - if (lookahead == 'u') ADVANCE(99); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 's') ADVANCE(31); END_STATE(); case 389: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'w') ADVANCE(423); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 't') ADVANCE(471); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(412); END_STATE(); case 390: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'w') ADVANCE(52); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 't') ADVANCE(438); + if (lookahead == 'x') ADVANCE(591); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(412); END_STATE(); case 391: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'x') ADVANCE(579); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 't') ADVANCE(517); + if (lookahead == 'w') ADVANCE(632); END_STATE(); case 392: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'x') ADVANCE(382); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 't') ADVANCE(517); + if (lookahead == 'w') ADVANCE(632); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(399); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(412); END_STATE(); case 393: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'x') ADVANCE(285); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 't') ADVANCE(218); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(399); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(410); END_STATE(); case 394: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'x') ADVANCE(383); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 't') ADVANCE(219); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(399); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(410); END_STATE(); case 395: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'y') ADVANCE(207); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 't') ADVANCE(418); + if (lookahead == 'x') ADVANCE(443); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(399); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(412); END_STATE(); case 396: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 't') ADVANCE(415); + if (lookahead == 'u') ADVANCE(456); + if (lookahead == 'w') ADVANCE(474); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(412); END_STATE(); case 397: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 't') ADVANCE(18); + if (lookahead == 'x') ADVANCE(71); END_STATE(); case 398: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(397); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 't') ADVANCE(145); END_STATE(); case 399: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '!') ADVANCE(227); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(399); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 't') ADVANCE(12); + if (lookahead == 'u') ADVANCE(102); END_STATE(); case 400: ACCEPT_TOKEN(sym_identifier); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(475); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'w') ADVANCE(433); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(412); END_STATE(); case 401: - ACCEPT_TOKEN(sym_identifierDeprecated); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'w') ADVANCE(53); END_STATE(); case 402: - ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 'a') ADVANCE(104); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'x') ADVANCE(591); END_STATE(); case 403: - ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 'a') ADVANCE(137); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'x') ADVANCE(393); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(410); END_STATE(); case 404: - ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 'a') ADVANCE(163); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'x') ADVANCE(294); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(410); END_STATE(); case 405: - ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 'b') ADVANCE(56); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'x') ADVANCE(394); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(410); END_STATE(); case 406: - ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 'c') ADVANCE(81); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'y') ADVANCE(216); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(410); END_STATE(); case 407: - ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 'c') ADVANCE(64); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '!') ADVANCE(236); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(236); END_STATE(); case 408: - ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 'c') ADVANCE(65); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '!') ADVANCE(236); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(412); END_STATE(); case 409: - ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 'd') ADVANCE(605); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '!') ADVANCE(236); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(408); END_STATE(); case 410: - ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 'd') ADVANCE(656); + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '!') ADVANCE(236); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(410); END_STATE(); case 411: - ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 'd') ADVANCE(112); - if (lookahead == 'g') ADVANCE(35); + ACCEPT_TOKEN(sym_identifier); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(487); END_STATE(); case 412: ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 'd') ADVANCE(626); END_STATE(); case 413: ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 'd') ADVANCE(110); + if (lookahead == 'a') ADVANCE(108); END_STATE(); case 414: ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 'e') ADVANCE(133); + if (lookahead == 'a') ADVANCE(144); END_STATE(); case 415: ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 'e') ADVANCE(182); + if (lookahead == 'a') ADVANCE(170); END_STATE(); case 416: ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 'e') ADVANCE(569); + if (lookahead == 'b') ADVANCE(57); END_STATE(); case 417: ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 'e') ADVANCE(517); + if (lookahead == 'c') ADVANCE(84); END_STATE(); case 418: ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 'e') ADVANCE(595); + if (lookahead == 'c') ADVANCE(67); END_STATE(); case 419: ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 'e') ADVANCE(621); + if (lookahead == 'd') ADVANCE(617); END_STATE(); case 420: ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 'e') ADVANCE(13); + if (lookahead == 'd') ADVANCE(672); END_STATE(); case 421: ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 'e') ADVANCE(179); + if (lookahead == 'd') ADVANCE(117); + if (lookahead == 'g') ADVANCE(36); END_STATE(); case 422: ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 'e') ADVANCE(20); + if (lookahead == 'd') ADVANCE(638); END_STATE(); case 423: ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 'e') ADVANCE(129); + if (lookahead == 'd') ADVANCE(115); END_STATE(); case 424: ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 'e') ADVANCE(132); + if (lookahead == 'e') ADVANCE(140); END_STATE(); case 425: ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 'e') ADVANCE(130); + if (lookahead == 'e') ADVANCE(190); END_STATE(); case 426: ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 'e') ADVANCE(134); + if (lookahead == 'e') ADVANCE(581); END_STATE(); case 427: ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 'g') ADVANCE(159); + if (lookahead == 'e') ADVANCE(529); END_STATE(); case 428: ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 'h') ADVANCE(666); + if (lookahead == 'e') ADVANCE(607); END_STATE(); case 429: ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 'h') ADVANCE(11); + if (lookahead == 'e') ADVANCE(633); END_STATE(); case 430: ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 'h') ADVANCE(639); + if (lookahead == 'e') ADVANCE(13); END_STATE(); case 431: ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 'h') ADVANCE(14); + if (lookahead == 'e') ADVANCE(187); END_STATE(); case 432: ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 'i') ADVANCE(108); + if (lookahead == 'e') ADVANCE(20); END_STATE(); case 433: ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 'i') ADVANCE(95); + if (lookahead == 'e') ADVANCE(134); END_STATE(); case 434: ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 'i') ADVANCE(96); + if (lookahead == 'e') ADVANCE(139); END_STATE(); case 435: ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 'k') ADVANCE(670); + if (lookahead == 'e') ADVANCE(136); END_STATE(); case 436: ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 'k') ADVANCE(652); + if (lookahead == 'e') ADVANCE(141); END_STATE(); case 437: ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 'k') ADVANCE(591); + if (lookahead == 'g') ADVANCE(165); END_STATE(); case 438: ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 'l') ADVANCE(71); + if (lookahead == 'h') ADVANCE(682); END_STATE(); case 439: ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 'l') ADVANCE(618); + if (lookahead == 'h') ADVANCE(11); END_STATE(); case 440: ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 'l') ADVANCE(571); + if (lookahead == 'h') ADVANCE(651); END_STATE(); case 441: ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 'l') ADVANCE(674); + if (lookahead == 'h') ADVANCE(14); END_STATE(); case 442: ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 'l') ADVANCE(37); + if (lookahead == 'i') ADVANCE(113); END_STATE(); case 443: ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 'n') ADVANCE(62); + if (lookahead == 'i') ADVANCE(98); END_STATE(); case 444: ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 'n') ADVANCE(587); + if (lookahead == 'i') ADVANCE(104); + if (lookahead == 'u') ADVANCE(110); END_STATE(); case 445: ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 'n') ADVANCE(26); + if (lookahead == 'i') ADVANCE(99); END_STATE(); case 446: ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 'n') ADVANCE(637); + if (lookahead == 'k') ADVANCE(686); END_STATE(); case 447: ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 'n') ADVANCE(507); + if (lookahead == 'k') ADVANCE(664); END_STATE(); case 448: ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 'n') ADVANCE(166); + if (lookahead == 'k') ADVANCE(603); END_STATE(); case 449: ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 'n') ADVANCE(146); + if (lookahead == 'l') ADVANCE(75); END_STATE(); case 450: ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 'o') ADVANCE(85); + if (lookahead == 'l') ADVANCE(630); END_STATE(); case 451: ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 'o') ADVANCE(128); + if (lookahead == 'l') ADVANCE(583); END_STATE(); case 452: ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 'o') ADVANCE(180); + if (lookahead == 'l') ADVANCE(690); END_STATE(); case 453: ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 'p') ADVANCE(597); + if (lookahead == 'l') ADVANCE(38); END_STATE(); case 454: ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 'p') ADVANCE(623); + if (lookahead == 'n') ADVANCE(65); END_STATE(); case 455: ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 'p') ADVANCE(603); + if (lookahead == 'n') ADVANCE(599); END_STATE(); case 456: ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 'p') ADVANCE(89); + if (lookahead == 'n') ADVANCE(26); END_STATE(); case 457: ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 'p') ADVANCE(36); + if (lookahead == 'n') ADVANCE(649); END_STATE(); case 458: ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 'p') ADVANCE(90); + if (lookahead == 'n') ADVANCE(519); END_STATE(); case 459: ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 'r') ADVANCE(38); + if (lookahead == 'n') ADVANCE(173); END_STATE(); case 460: ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 's') ADVANCE(565); + if (lookahead == 'n') ADVANCE(152); END_STATE(); case 461: ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 's') ADVANCE(145); + if (lookahead == 'o') ADVANCE(88); END_STATE(); case 462: ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 's') ADVANCE(151); + if (lookahead == 'o') ADVANCE(133); END_STATE(); case 463: ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 's') ADVANCE(641); + if (lookahead == 'o') ADVANCE(188); END_STATE(); case 464: ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 's') ADVANCE(141); + if (lookahead == 'p') ADVANCE(609); END_STATE(); case 465: ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 's') ADVANCE(34); - if (lookahead == 't') ADVANCE(74); + if (lookahead == 'p') ADVANCE(635); END_STATE(); case 466: ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 't') ADVANCE(515); + if (lookahead == 'p') ADVANCE(615); END_STATE(); case 467: ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 't') ADVANCE(613); + if (lookahead == 'p') ADVANCE(92); END_STATE(); case 468: ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 'u') ADVANCE(122); + if (lookahead == 'p') ADVANCE(37); END_STATE(); case 469: ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 'u') ADVANCE(21); + if (lookahead == 'p') ADVANCE(93); END_STATE(); case 470: ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 'u') ADVANCE(120); + if (lookahead == 'r') ADVANCE(39); END_STATE(); case 471: ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 'u') ADVANCE(86); + if (lookahead == 's') ADVANCE(577); END_STATE(); case 472: ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 'v') ADVANCE(627); + if (lookahead == 's') ADVANCE(155); END_STATE(); case 473: ACCEPT_TOKEN(sym_identifierDeprecated); - if (lookahead == 'w') ADVANCE(101); + if (lookahead == 's') ADVANCE(158); END_STATE(); case 474: - ACCEPT_TOKEN(sym_system); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(474); + ACCEPT_TOKEN(sym_identifierDeprecated); + if (lookahead == 's') ADVANCE(653); END_STATE(); case 475: + ACCEPT_TOKEN(sym_identifierDeprecated); + if (lookahead == 's') ADVANCE(668); + END_STATE(); + case 476: + ACCEPT_TOKEN(sym_identifierDeprecated); + if (lookahead == 's') ADVANCE(148); + END_STATE(); + case 477: + ACCEPT_TOKEN(sym_identifierDeprecated); + if (lookahead == 's') ADVANCE(35); + if (lookahead == 't') ADVANCE(76); + END_STATE(); + case 478: + ACCEPT_TOKEN(sym_identifierDeprecated); + if (lookahead == 't') ADVANCE(527); + END_STATE(); + case 479: + ACCEPT_TOKEN(sym_identifierDeprecated); + if (lookahead == 't') ADVANCE(625); + END_STATE(); + case 480: + ACCEPT_TOKEN(sym_identifierDeprecated); + if (lookahead == 't') ADVANCE(72); + if (lookahead == 'u') ADVANCE(135); + if (lookahead == 'v') ADVANCE(639); + END_STATE(); + case 481: + ACCEPT_TOKEN(sym_identifierDeprecated); + if (lookahead == 'u') ADVANCE(127); + END_STATE(); + case 482: + ACCEPT_TOKEN(sym_identifierDeprecated); + if (lookahead == 'u') ADVANCE(21); + END_STATE(); + case 483: + ACCEPT_TOKEN(sym_identifierDeprecated); + if (lookahead == 'u') ADVANCE(125); + END_STATE(); + case 484: + ACCEPT_TOKEN(sym_identifierDeprecated); + if (lookahead == 'u') ADVANCE(89); + END_STATE(); + case 485: + ACCEPT_TOKEN(sym_identifierDeprecated); + if (lookahead == 'w') ADVANCE(105); + END_STATE(); + case 486: + ACCEPT_TOKEN(sym_system); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(486); + END_STATE(); + case 487: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && - lookahead != '\n') ADVANCE(475); + lookahead != '\n') ADVANCE(487); END_STATE(); - case 476: + case 488: ACCEPT_TOKEN(sym_tripleMinus); END_STATE(); - case 477: + case 489: ACCEPT_TOKEN(sym_openParen); END_STATE(); - case 478: + case 490: ACCEPT_TOKEN(sym_closeParen); END_STATE(); - case 479: + case 491: ACCEPT_TOKEN(sym_openCurly); END_STATE(); - case 480: + case 492: ACCEPT_TOKEN(sym_closeCurly); END_STATE(); - case 481: + case 493: ACCEPT_TOKEN(sym_openBracket); END_STATE(); - case 482: + case 494: ACCEPT_TOKEN(sym_closeBracket); END_STATE(); - case 483: + case 495: ACCEPT_TOKEN(sym_underscore); END_STATE(); - case 484: + case 496: ACCEPT_TOKEN(sym_leftArrow); END_STATE(); - case 485: + case 497: ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); - case 486: + case 498: ACCEPT_TOKEN(anon_sym_eta); END_STATE(); - case 487: + case 499: ACCEPT_TOKEN(anon_sym_2); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(186); + lookahead == 'e') ADVANCE(195); END_STATE(); - case 488: + case 500: ACCEPT_TOKEN(anon_sym_pi); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'c') ADVANCE(437); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'c') ADVANCE(448); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(412); END_STATE(); - case 489: + case 501: ACCEPT_TOKEN(anon_sym_3); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(186); + lookahead == 'e') ADVANCE(195); END_STATE(); - case 490: + case 502: ACCEPT_TOKEN(anon_sym_tau); END_STATE(); - case 491: + case 503: ACCEPT_TOKEN(anon_sym_4); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(186); + lookahead == 'e') ADVANCE(195); END_STATE(); - case 492: + case 504: ACCEPT_TOKEN(anon_sym_infinity); END_STATE(); - case 493: + case 505: ACCEPT_TOKEN(anon_sym_5); END_STATE(); - case 494: + case 506: ACCEPT_TOKEN(anon_sym_e); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'a') ADVANCE(270); - if (lookahead == 't') ADVANCE(239); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'a') ADVANCE(279); + if (lookahead == 't') ADVANCE(248); if (('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(397); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(408); END_STATE(); - case 495: + case 507: ACCEPT_TOKEN(anon_sym_NaN); - if (lookahead == '!') ADVANCE(227); + if (lookahead == '!') ADVANCE(236); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(399); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(410); END_STATE(); - case 496: + case 508: ACCEPT_TOKEN(anon_sym_NumProcs); - if (lookahead == '!') ADVANCE(227); + if (lookahead == '!') ADVANCE(236); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(399); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(410); END_STATE(); - case 497: + case 509: ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); - case 498: + case 510: ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); - case 499: + case 511: ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); - case 500: + case 512: ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); - case 501: + case 513: ACCEPT_TOKEN(anon_sym_identity); END_STATE(); - case 502: + case 514: ACCEPT_TOKEN(anon_sym_id); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'e') ADVANCE(448); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'e') ADVANCE(459); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(412); END_STATE(); - case 503: + case 515: ACCEPT_TOKEN(anon_sym_id); - if (lookahead == '!') ADVANCE(227); - if (lookahead == 'e') ADVANCE(105); + if (lookahead == '!') ADVANCE(236); + if (lookahead == 'e') ADVANCE(109); END_STATE(); - case 504: + case 516: ACCEPT_TOKEN(anon_sym_6); END_STATE(); - case 505: + case 517: ACCEPT_TOKEN(anon_sym_not); END_STATE(); - case 506: + case 518: ACCEPT_TOKEN(anon_sym_7); END_STATE(); - case 507: + case 519: ACCEPT_TOKEN(anon_sym_sign); END_STATE(); - case 508: + case 520: ACCEPT_TOKEN(anon_sym_8); END_STATE(); - case 509: + case 521: ACCEPT_TOKEN(anon_sym_BQUOTE); END_STATE(); - case 510: + case 522: ACCEPT_TOKEN(anon_sym_9); END_STATE(); - case 511: + case 523: ACCEPT_TOKEN(anon_sym_9); if (lookahead == 951 || lookahead == 960 || - lookahead == 964) ADVANCE(202); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(201); + lookahead == 964) ADVANCE(211); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(210); END_STATE(); - case 512: + case 524: ACCEPT_TOKEN(anon_sym_9); if (lookahead == 951 || lookahead == 960 || - lookahead == 964) ADVANCE(202); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(200); + lookahead == 964) ADVANCE(211); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(209); END_STATE(); - case 513: + case 525: ACCEPT_TOKEN(anon_sym_absolutevalue); END_STATE(); - case 514: + case 526: ACCEPT_TOKEN(anon_sym_10); END_STATE(); - case 515: + case 527: ACCEPT_TOKEN(anon_sym_sqrt); END_STATE(); - case 516: + case 528: ACCEPT_TOKEN(anon_sym_11); END_STATE(); - case 517: + case 529: ACCEPT_TOKEN(anon_sym_sine); END_STATE(); - case 518: + case 530: ACCEPT_TOKEN(anon_sym_12); END_STATE(); - case 519: + case 531: ACCEPT_TOKEN(anon_sym_floor); END_STATE(); - case 520: + case 532: ACCEPT_TOKEN(anon_sym_13); END_STATE(); - case 521: + case 533: ACCEPT_TOKEN(anon_sym_ceiling); END_STATE(); - case 522: + case 534: ACCEPT_TOKEN(anon_sym_14); END_STATE(); - case 523: + case 535: ACCEPT_TOKEN(anon_sym_round); END_STATE(); - case 524: + case 536: ACCEPT_TOKEN(anon_sym_15); END_STATE(); - case 525: + case 537: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); - case 526: + case 538: ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); - case 527: + case 539: ACCEPT_TOKEN(anon_sym_16); END_STATE(); - case 528: + case 540: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '=') ADVANCE(529); + if (lookahead == '=') ADVANCE(541); END_STATE(); - case 529: + case 541: ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); - case 530: + case 542: ACCEPT_TOKEN(anon_sym_17); END_STATE(); - case 531: + case 543: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(532); + if (lookahead == '=') ADVANCE(544); END_STATE(); - case 532: + case 544: ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); - case 533: + case 545: ACCEPT_TOKEN(anon_sym_18); END_STATE(); - case 534: + case 546: ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); - case 535: + case 547: ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); - case 536: + case 548: ACCEPT_TOKEN(anon_sym_DASH); if (lookahead == '-') ADVANCE(6); END_STATE(); - case 537: + case 549: ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); - case 538: + case 550: ACCEPT_TOKEN(anon_sym_19); END_STATE(); - case 539: + case 551: ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); - case 540: + case 552: ACCEPT_TOKEN(anon_sym_20); END_STATE(); - case 541: + case 553: ACCEPT_TOKEN(anon_sym_modulus); END_STATE(); - case 542: + case 554: ACCEPT_TOKEN(anon_sym_21); END_STATE(); - case 543: + case 555: ACCEPT_TOKEN(anon_sym_power); END_STATE(); - case 544: + case 556: ACCEPT_TOKEN(anon_sym_22); END_STATE(); - case 545: + case 557: ACCEPT_TOKEN(anon_sym_logarithm); END_STATE(); - case 546: + case 558: ACCEPT_TOKEN(anon_sym_23); END_STATE(); - case 547: + case 559: ACCEPT_TOKEN(anon_sym_minimum); END_STATE(); - case 548: + case 560: ACCEPT_TOKEN(anon_sym_24); END_STATE(); - case 549: + case 561: ACCEPT_TOKEN(anon_sym_maximum); END_STATE(); - case 550: + case 562: ACCEPT_TOKEN(anon_sym_25); END_STATE(); - case 551: + case 563: ACCEPT_TOKEN(anon_sym_atangent); END_STATE(); - case 552: + case 564: ACCEPT_TOKEN(anon_sym_26); END_STATE(); - case 553: + case 565: ACCEPT_TOKEN(anon_sym_length); END_STATE(); - case 554: + case 566: ACCEPT_TOKEN(anon_sym_27); END_STATE(); - case 555: + case 567: ACCEPT_TOKEN(anon_sym_shape); END_STATE(); - case 556: + case 568: ACCEPT_TOKEN(anon_sym_28); END_STATE(); - case 557: + case 569: ACCEPT_TOKEN(anon_sym_range); END_STATE(); - case 558: + case 570: ACCEPT_TOKEN(anon_sym_29); END_STATE(); - case 559: + case 571: ACCEPT_TOKEN(anon_sym_first); END_STATE(); - case 560: + case 572: ACCEPT_TOKEN(anon_sym_30); END_STATE(); - case 561: + case 573: ACCEPT_TOKEN(anon_sym_reverse); END_STATE(); - case 562: + case 574: ACCEPT_TOKEN(anon_sym_31); END_STATE(); - case 563: + case 575: ACCEPT_TOKEN(anon_sym_deshape); END_STATE(); - case 564: + case 576: ACCEPT_TOKEN(anon_sym_32); END_STATE(); - case 565: + case 577: ACCEPT_TOKEN(anon_sym_bits); END_STATE(); - case 566: + case 578: ACCEPT_TOKEN(anon_sym_33); END_STATE(); - case 567: + case 579: ACCEPT_TOKEN(anon_sym_transpose); END_STATE(); - case 568: + case 580: ACCEPT_TOKEN(anon_sym_34); END_STATE(); - case 569: + case 581: ACCEPT_TOKEN(anon_sym_rise); END_STATE(); - case 570: + case 582: ACCEPT_TOKEN(anon_sym_35); END_STATE(); - case 571: + case 583: ACCEPT_TOKEN(anon_sym_fall); END_STATE(); - case 572: + case 584: ACCEPT_TOKEN(anon_sym_36); END_STATE(); - case 573: + case 585: ACCEPT_TOKEN(anon_sym_where); END_STATE(); - case 574: + case 586: ACCEPT_TOKEN(anon_sym_37); END_STATE(); - case 575: + case 587: ACCEPT_TOKEN(anon_sym_classify); END_STATE(); - case 576: + case 588: ACCEPT_TOKEN(anon_sym_38); END_STATE(); - case 577: + case 589: ACCEPT_TOKEN(anon_sym_deduplicate); END_STATE(); - case 578: + case 590: ACCEPT_TOKEN(anon_sym_39); END_STATE(); - case 579: + case 591: ACCEPT_TOKEN(anon_sym_box); END_STATE(); - case 580: + case 592: ACCEPT_TOKEN(anon_sym_40); END_STATE(); - case 581: + case 593: ACCEPT_TOKEN(anon_sym_unbox); END_STATE(); - case 582: + case 594: ACCEPT_TOKEN(anon_sym_41); END_STATE(); - case 583: + case 595: ACCEPT_TOKEN(anon_sym_match); END_STATE(); - case 584: + case 596: ACCEPT_TOKEN(anon_sym_42); END_STATE(); - case 585: + case 597: ACCEPT_TOKEN(anon_sym_couple); END_STATE(); - case 586: + case 598: ACCEPT_TOKEN(anon_sym_43); END_STATE(); - case 587: + case 599: ACCEPT_TOKEN(anon_sym_join); END_STATE(); - case 588: + case 600: ACCEPT_TOKEN(anon_sym_44); END_STATE(); - case 589: + case 601: ACCEPT_TOKEN(anon_sym_select); END_STATE(); - case 590: + case 602: ACCEPT_TOKEN(anon_sym_45); END_STATE(); - case 591: + case 603: ACCEPT_TOKEN(anon_sym_pick); END_STATE(); - case 592: + case 604: ACCEPT_TOKEN(anon_sym_46); END_STATE(); - case 593: + case 605: ACCEPT_TOKEN(anon_sym_reshape); END_STATE(); - case 594: + case 606: ACCEPT_TOKEN(anon_sym_47); END_STATE(); - case 595: + case 607: ACCEPT_TOKEN(anon_sym_take); END_STATE(); - case 596: + case 608: ACCEPT_TOKEN(anon_sym_48); END_STATE(); - case 597: + case 609: ACCEPT_TOKEN(anon_sym_drop); END_STATE(); - case 598: + case 610: ACCEPT_TOKEN(anon_sym_49); END_STATE(); - case 599: + case 611: ACCEPT_TOKEN(anon_sym_rotate); END_STATE(); - case 600: + case 612: ACCEPT_TOKEN(anon_sym_50); END_STATE(); - case 601: + case 613: ACCEPT_TOKEN(anon_sym_windows); END_STATE(); - case 602: + case 614: ACCEPT_TOKEN(anon_sym_51); END_STATE(); - case 603: + case 615: ACCEPT_TOKEN(anon_sym_keep); END_STATE(); - case 604: + case 616: ACCEPT_TOKEN(anon_sym_52); END_STATE(); - case 605: + case 617: ACCEPT_TOKEN(anon_sym_find); END_STATE(); - case 606: + case 618: ACCEPT_TOKEN(anon_sym_53); END_STATE(); - case 607: + case 619: ACCEPT_TOKEN(anon_sym_member); END_STATE(); - case 608: + case 620: ACCEPT_TOKEN(anon_sym_54); END_STATE(); - case 609: + case 621: ACCEPT_TOKEN(anon_sym_indexof); END_STATE(); - case 610: + case 622: ACCEPT_TOKEN(anon_sym_55); END_STATE(); - case 611: + case 623: ACCEPT_TOKEN(anon_sym_assert); END_STATE(); - case 612: + case 624: ACCEPT_TOKEN(anon_sym_56); END_STATE(); - case 613: + case 625: ACCEPT_TOKEN(anon_sym_wait); END_STATE(); - case 614: + case 626: ACCEPT_TOKEN(anon_sym_parse); END_STATE(); - case 615: + case 627: ACCEPT_TOKEN(anon_sym_random); END_STATE(); - case 616: + case 628: ACCEPT_TOKEN(anon_sym_57); END_STATE(); - case 617: + case 629: ACCEPT_TOKEN(anon_sym_gen); END_STATE(); - case 618: + case 630: ACCEPT_TOKEN(anon_sym_deal); END_STATE(); - case 619: + case 631: ACCEPT_TOKEN(anon_sym_tag); END_STATE(); - case 620: + case 632: ACCEPT_TOKEN(anon_sym_now); END_STATE(); - case 621: + case 633: ACCEPT_TOKEN(anon_sym_type); END_STATE(); - case 622: + case 634: ACCEPT_TOKEN(anon_sym_58); END_STATE(); - case 623: + case 635: ACCEPT_TOKEN(anon_sym_dump); END_STATE(); - case 624: + case 636: ACCEPT_TOKEN(anon_sym_regex); END_STATE(); - case 625: + case 637: ACCEPT_TOKEN(anon_sym_utf); END_STATE(); - case 626: + case 638: ACCEPT_TOKEN(anon_sym_send); END_STATE(); - case 627: + case 639: ACCEPT_TOKEN(anon_sym_recv); END_STATE(); - case 628: + case 640: ACCEPT_TOKEN(anon_sym_tryrecv); END_STATE(); - case 629: + case 641: ACCEPT_TOKEN(anon_sym_complex); END_STATE(); - case 630: + case 642: ACCEPT_TOKEN(anon_sym_59); END_STATE(); - case 631: + case 643: ACCEPT_TOKEN(anon_sym_rerank); END_STATE(); - case 632: + case 644: ACCEPT_TOKEN(anon_sym_60); END_STATE(); - case 633: + case 645: ACCEPT_TOKEN(anon_sym_fix); END_STATE(); - case 634: + case 646: ACCEPT_TOKEN(anon_sym_61); END_STATE(); - case 635: + case 647: ACCEPT_TOKEN(anon_sym_reduce); END_STATE(); - case 636: + case 648: ACCEPT_TOKEN(anon_sym_SLASH); END_STATE(); - case 637: + case 649: ACCEPT_TOKEN(anon_sym_scan); END_STATE(); - case 638: + case 650: ACCEPT_TOKEN(anon_sym_BSLASH); END_STATE(); - case 639: + case 651: ACCEPT_TOKEN(anon_sym_each); END_STATE(); - case 640: + case 652: ACCEPT_TOKEN(anon_sym_62); END_STATE(); - case 641: + case 653: ACCEPT_TOKEN(anon_sym_rows); END_STATE(); - case 642: + case 654: ACCEPT_TOKEN(anon_sym_63); END_STATE(); - case 643: + case 655: ACCEPT_TOKEN(anon_sym_repeat); END_STATE(); - case 644: + case 656: ACCEPT_TOKEN(anon_sym_64); END_STATE(); - case 645: + case 657: ACCEPT_TOKEN(anon_sym_dip); END_STATE(); - case 646: + case 658: ACCEPT_TOKEN(anon_sym_65); END_STATE(); - case 647: + case 659: ACCEPT_TOKEN(anon_sym_gap); END_STATE(); - case 648: + case 660: ACCEPT_TOKEN(anon_sym_66); END_STATE(); - case 649: + case 661: ACCEPT_TOKEN(anon_sym_invert); END_STATE(); - case 650: + case 662: ACCEPT_TOKEN(anon_sym_67); END_STATE(); - case 651: + case 663: ACCEPT_TOKEN(anon_sym_spawn); END_STATE(); - case 652: + case 664: ACCEPT_TOKEN(anon_sym_pack); END_STATE(); - case 653: + case 665: ACCEPT_TOKEN(anon_sym_68); END_STATE(); - case 654: - ACCEPT_TOKEN(anon_sym_reach); + case 666: + ACCEPT_TOKEN(anon_sym_rectify); END_STATE(); - case 655: + case 667: ACCEPT_TOKEN(anon_sym_69); END_STATE(); - case 656: - ACCEPT_TOKEN(anon_sym_fold); + case 668: + ACCEPT_TOKEN(anon_sym_this); END_STATE(); - case 657: + case 669: ACCEPT_TOKEN(anon_sym_70); END_STATE(); - case 658: - ACCEPT_TOKEN(anon_sym_table); + case 670: + ACCEPT_TOKEN(anon_sym_recur); END_STATE(); - case 659: + case 671: ACCEPT_TOKEN(anon_sym_71); END_STATE(); - case 660: - ACCEPT_TOKEN(anon_sym_cross); + case 672: + ACCEPT_TOKEN(anon_sym_fold); END_STATE(); - case 661: + case 673: ACCEPT_TOKEN(anon_sym_72); END_STATE(); - case 662: - ACCEPT_TOKEN(anon_sym_group); + case 674: + ACCEPT_TOKEN(anon_sym_table); END_STATE(); - case 663: + case 675: ACCEPT_TOKEN(anon_sym_73); END_STATE(); - case 664: - ACCEPT_TOKEN(anon_sym_partition); + case 676: + ACCEPT_TOKEN(anon_sym_cross); END_STATE(); - case 665: + case 677: ACCEPT_TOKEN(anon_sym_74); END_STATE(); - case 666: - ACCEPT_TOKEN(anon_sym_both); + case 678: + ACCEPT_TOKEN(anon_sym_group); END_STATE(); - case 667: + case 679: ACCEPT_TOKEN(anon_sym_75); END_STATE(); - case 668: - ACCEPT_TOKEN(anon_sym_bracket); + case 680: + ACCEPT_TOKEN(anon_sym_partition); END_STATE(); - case 669: + case 681: ACCEPT_TOKEN(anon_sym_76); END_STATE(); - case 670: - ACCEPT_TOKEN(anon_sym_fork); + case 682: + ACCEPT_TOKEN(anon_sym_both); END_STATE(); - case 671: + case 683: ACCEPT_TOKEN(anon_sym_77); END_STATE(); - case 672: - ACCEPT_TOKEN(anon_sym_under); + case 684: + ACCEPT_TOKEN(anon_sym_bracket); END_STATE(); - case 673: + case 685: ACCEPT_TOKEN(anon_sym_78); END_STATE(); - case 674: - ACCEPT_TOKEN(anon_sym_fill); + case 686: + ACCEPT_TOKEN(anon_sym_fork); END_STATE(); - case 675: + case 687: ACCEPT_TOKEN(anon_sym_79); END_STATE(); - case 676: - ACCEPT_TOKEN(anon_sym_try); - if (lookahead == 'r') ADVANCE(51); + case 688: + ACCEPT_TOKEN(anon_sym_under); END_STATE(); - case 677: + case 689: ACCEPT_TOKEN(anon_sym_80); END_STATE(); - case 678: - ACCEPT_TOKEN(anon_sym_do); - if (lookahead == '!') ADVANCE(227); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(401); + case 690: + ACCEPT_TOKEN(anon_sym_fill); END_STATE(); - case 679: + case 691: ACCEPT_TOKEN(anon_sym_81); END_STATE(); - case 680: + case 692: + ACCEPT_TOKEN(anon_sym_try); + if (lookahead == 'r') ADVANCE(52); + END_STATE(); + case 693: ACCEPT_TOKEN(anon_sym_82); END_STATE(); - case 681: + case 694: + ACCEPT_TOKEN(anon_sym_do); + if (lookahead == '!') ADVANCE(236); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(412); + END_STATE(); + case 695: ACCEPT_TOKEN(anon_sym_83); END_STATE(); - case 682: + case 696: + ACCEPT_TOKEN(anon_sym_all); + END_STATE(); + case 697: ACCEPT_TOKEN(anon_sym_84); END_STATE(); - case 683: + case 698: + ACCEPT_TOKEN(anon_sym_setinv); + END_STATE(); + case 699: + ACCEPT_TOKEN(anon_sym_setunder); + END_STATE(); + case 700: ACCEPT_TOKEN(anon_sym_85); END_STATE(); - case 684: + case 701: ACCEPT_TOKEN(anon_sym_86); END_STATE(); - case 685: + case 702: ACCEPT_TOKEN(anon_sym_87); END_STATE(); - case 686: + case 703: ACCEPT_TOKEN(anon_sym_88); END_STATE(); - case 687: + case 704: ACCEPT_TOKEN(anon_sym_89); END_STATE(); - case 688: + case 705: ACCEPT_TOKEN(anon_sym_90); END_STATE(); - case 689: + case 706: ACCEPT_TOKEN(anon_sym_91); END_STATE(); - case 690: + case 707: ACCEPT_TOKEN(anon_sym_92); END_STATE(); - case 691: + case 708: + ACCEPT_TOKEN(anon_sym_93); + END_STATE(); + case 709: + ACCEPT_TOKEN(anon_sym_94); + END_STATE(); + case 710: + ACCEPT_TOKEN(anon_sym_95); + END_STATE(); + case 711: + ACCEPT_TOKEN(anon_sym_96); + END_STATE(); + case 712: ACCEPT_TOKEN(sym__endOfLine); END_STATE(); default: @@ -6026,171 +6178,171 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0}, - [1] = {.lex_state = 197}, - [2] = {.lex_state = 197}, - [3] = {.lex_state = 196}, - [4] = {.lex_state = 196}, - [5] = {.lex_state = 196}, - [6] = {.lex_state = 197}, - [7] = {.lex_state = 196}, - [8] = {.lex_state = 196}, - [9] = {.lex_state = 196}, - [10] = {.lex_state = 196}, - [11] = {.lex_state = 196}, - [12] = {.lex_state = 196}, - [13] = {.lex_state = 196}, - [14] = {.lex_state = 196}, - [15] = {.lex_state = 196}, - [16] = {.lex_state = 196}, - [17] = {.lex_state = 196}, - [18] = {.lex_state = 196}, - [19] = {.lex_state = 196}, - [20] = {.lex_state = 196}, - [21] = {.lex_state = 196}, - [22] = {.lex_state = 196}, - [23] = {.lex_state = 196}, - [24] = {.lex_state = 196}, - [25] = {.lex_state = 196}, - [26] = {.lex_state = 196}, - [27] = {.lex_state = 196}, - [28] = {.lex_state = 196}, - [29] = {.lex_state = 196}, - [30] = {.lex_state = 196}, - [31] = {.lex_state = 196}, - [32] = {.lex_state = 196}, - [33] = {.lex_state = 196}, - [34] = {.lex_state = 196}, - [35] = {.lex_state = 196}, - [36] = {.lex_state = 196}, - [37] = {.lex_state = 196}, - [38] = {.lex_state = 196}, - [39] = {.lex_state = 196}, - [40] = {.lex_state = 196}, - [41] = {.lex_state = 196}, - [42] = {.lex_state = 196}, - [43] = {.lex_state = 196}, - [44] = {.lex_state = 196}, - [45] = {.lex_state = 196}, - [46] = {.lex_state = 196}, - [47] = {.lex_state = 196}, - [48] = {.lex_state = 196}, - [49] = {.lex_state = 196}, - [50] = {.lex_state = 196}, - [51] = {.lex_state = 196}, - [52] = {.lex_state = 196}, - [53] = {.lex_state = 196}, - [54] = {.lex_state = 196}, - [55] = {.lex_state = 196}, - [56] = {.lex_state = 196}, - [57] = {.lex_state = 196}, - [58] = {.lex_state = 196}, - [59] = {.lex_state = 196}, - [60] = {.lex_state = 196}, - [61] = {.lex_state = 196}, - [62] = {.lex_state = 196}, - [63] = {.lex_state = 196}, - [64] = {.lex_state = 196}, - [65] = {.lex_state = 196}, - [66] = {.lex_state = 196}, - [67] = {.lex_state = 196}, - [68] = {.lex_state = 196}, - [69] = {.lex_state = 196}, - [70] = {.lex_state = 196}, - [71] = {.lex_state = 196}, - [72] = {.lex_state = 196}, - [73] = {.lex_state = 196}, - [74] = {.lex_state = 196}, - [75] = {.lex_state = 196}, - [76] = {.lex_state = 196}, - [77] = {.lex_state = 196}, - [78] = {.lex_state = 196}, - [79] = {.lex_state = 196}, - [80] = {.lex_state = 196}, - [81] = {.lex_state = 196}, - [82] = {.lex_state = 196}, - [83] = {.lex_state = 196}, - [84] = {.lex_state = 196}, - [85] = {.lex_state = 196}, - [86] = {.lex_state = 196}, - [87] = {.lex_state = 196}, - [88] = {.lex_state = 196}, - [89] = {.lex_state = 196}, - [90] = {.lex_state = 196}, - [91] = {.lex_state = 196}, - [92] = {.lex_state = 196}, - [93] = {.lex_state = 196}, - [94] = {.lex_state = 196}, - [95] = {.lex_state = 196}, - [96] = {.lex_state = 196}, - [97] = {.lex_state = 196}, - [98] = {.lex_state = 196}, - [99] = {.lex_state = 196}, - [100] = {.lex_state = 196}, - [101] = {.lex_state = 196}, - [102] = {.lex_state = 196}, - [103] = {.lex_state = 196}, - [104] = {.lex_state = 196}, - [105] = {.lex_state = 196}, - [106] = {.lex_state = 196}, - [107] = {.lex_state = 196}, - [108] = {.lex_state = 196}, - [109] = {.lex_state = 196}, - [110] = {.lex_state = 196}, - [111] = {.lex_state = 196}, - [112] = {.lex_state = 196}, - [113] = {.lex_state = 196}, - [114] = {.lex_state = 196}, - [115] = {.lex_state = 196}, - [116] = {.lex_state = 196}, - [117] = {.lex_state = 196}, - [118] = {.lex_state = 196}, - [119] = {.lex_state = 196}, - [120] = {.lex_state = 196}, - [121] = {.lex_state = 196}, - [122] = {.lex_state = 196}, - [123] = {.lex_state = 196}, - [124] = {.lex_state = 196}, - [125] = {.lex_state = 197}, - [126] = {.lex_state = 196}, - [127] = {.lex_state = 196}, - [128] = {.lex_state = 196}, - [129] = {.lex_state = 196}, - [130] = {.lex_state = 196}, - [131] = {.lex_state = 196}, - [132] = {.lex_state = 196}, - [133] = {.lex_state = 196}, - [134] = {.lex_state = 197}, - [135] = {.lex_state = 196}, - [136] = {.lex_state = 196}, - [137] = {.lex_state = 196}, - [138] = {.lex_state = 196}, - [139] = {.lex_state = 196}, - [140] = {.lex_state = 196}, - [141] = {.lex_state = 196}, - [142] = {.lex_state = 196}, - [143] = {.lex_state = 197}, - [144] = {.lex_state = 196}, - [145] = {.lex_state = 196}, - [146] = {.lex_state = 196}, - [147] = {.lex_state = 196}, - [148] = {.lex_state = 196}, - [149] = {.lex_state = 196}, - [150] = {.lex_state = 196}, - [151] = {.lex_state = 196}, - [152] = {.lex_state = 196}, - [153] = {.lex_state = 196}, - [154] = {.lex_state = 196}, - [155] = {.lex_state = 196}, - [156] = {.lex_state = 196}, - [157] = {.lex_state = 196}, - [158] = {.lex_state = 196}, - [159] = {.lex_state = 196}, - [160] = {.lex_state = 197}, - [161] = {.lex_state = 197}, - [162] = {.lex_state = 196}, - [163] = {.lex_state = 196}, - [164] = {.lex_state = 196}, - [165] = {.lex_state = 196}, + [1] = {.lex_state = 206}, + [2] = {.lex_state = 206}, + [3] = {.lex_state = 205}, + [4] = {.lex_state = 205}, + [5] = {.lex_state = 205}, + [6] = {.lex_state = 206}, + [7] = {.lex_state = 205}, + [8] = {.lex_state = 205}, + [9] = {.lex_state = 205}, + [10] = {.lex_state = 205}, + [11] = {.lex_state = 205}, + [12] = {.lex_state = 205}, + [13] = {.lex_state = 205}, + [14] = {.lex_state = 205}, + [15] = {.lex_state = 205}, + [16] = {.lex_state = 205}, + [17] = {.lex_state = 205}, + [18] = {.lex_state = 205}, + [19] = {.lex_state = 205}, + [20] = {.lex_state = 205}, + [21] = {.lex_state = 205}, + [22] = {.lex_state = 205}, + [23] = {.lex_state = 205}, + [24] = {.lex_state = 205}, + [25] = {.lex_state = 205}, + [26] = {.lex_state = 205}, + [27] = {.lex_state = 205}, + [28] = {.lex_state = 205}, + [29] = {.lex_state = 205}, + [30] = {.lex_state = 205}, + [31] = {.lex_state = 205}, + [32] = {.lex_state = 205}, + [33] = {.lex_state = 205}, + [34] = {.lex_state = 205}, + [35] = {.lex_state = 205}, + [36] = {.lex_state = 205}, + [37] = {.lex_state = 205}, + [38] = {.lex_state = 205}, + [39] = {.lex_state = 205}, + [40] = {.lex_state = 205}, + [41] = {.lex_state = 205}, + [42] = {.lex_state = 205}, + [43] = {.lex_state = 205}, + [44] = {.lex_state = 205}, + [45] = {.lex_state = 205}, + [46] = {.lex_state = 205}, + [47] = {.lex_state = 205}, + [48] = {.lex_state = 205}, + [49] = {.lex_state = 205}, + [50] = {.lex_state = 205}, + [51] = {.lex_state = 205}, + [52] = {.lex_state = 205}, + [53] = {.lex_state = 205}, + [54] = {.lex_state = 205}, + [55] = {.lex_state = 205}, + [56] = {.lex_state = 205}, + [57] = {.lex_state = 205}, + [58] = {.lex_state = 205}, + [59] = {.lex_state = 205}, + [60] = {.lex_state = 205}, + [61] = {.lex_state = 205}, + [62] = {.lex_state = 205}, + [63] = {.lex_state = 205}, + [64] = {.lex_state = 205}, + [65] = {.lex_state = 205}, + [66] = {.lex_state = 205}, + [67] = {.lex_state = 205}, + [68] = {.lex_state = 205}, + [69] = {.lex_state = 205}, + [70] = {.lex_state = 205}, + [71] = {.lex_state = 205}, + [72] = {.lex_state = 205}, + [73] = {.lex_state = 205}, + [74] = {.lex_state = 205}, + [75] = {.lex_state = 205}, + [76] = {.lex_state = 205}, + [77] = {.lex_state = 205}, + [78] = {.lex_state = 205}, + [79] = {.lex_state = 205}, + [80] = {.lex_state = 205}, + [81] = {.lex_state = 205}, + [82] = {.lex_state = 205}, + [83] = {.lex_state = 205}, + [84] = {.lex_state = 205}, + [85] = {.lex_state = 205}, + [86] = {.lex_state = 205}, + [87] = {.lex_state = 205}, + [88] = {.lex_state = 205}, + [89] = {.lex_state = 205}, + [90] = {.lex_state = 205}, + [91] = {.lex_state = 205}, + [92] = {.lex_state = 205}, + [93] = {.lex_state = 205}, + [94] = {.lex_state = 205}, + [95] = {.lex_state = 205}, + [96] = {.lex_state = 205}, + [97] = {.lex_state = 205}, + [98] = {.lex_state = 205}, + [99] = {.lex_state = 205}, + [100] = {.lex_state = 205}, + [101] = {.lex_state = 205}, + [102] = {.lex_state = 205}, + [103] = {.lex_state = 205}, + [104] = {.lex_state = 205}, + [105] = {.lex_state = 205}, + [106] = {.lex_state = 205}, + [107] = {.lex_state = 205}, + [108] = {.lex_state = 205}, + [109] = {.lex_state = 205}, + [110] = {.lex_state = 205}, + [111] = {.lex_state = 205}, + [112] = {.lex_state = 205}, + [113] = {.lex_state = 205}, + [114] = {.lex_state = 205}, + [115] = {.lex_state = 205}, + [116] = {.lex_state = 205}, + [117] = {.lex_state = 205}, + [118] = {.lex_state = 205}, + [119] = {.lex_state = 205}, + [120] = {.lex_state = 205}, + [121] = {.lex_state = 205}, + [122] = {.lex_state = 205}, + [123] = {.lex_state = 205}, + [124] = {.lex_state = 205}, + [125] = {.lex_state = 206}, + [126] = {.lex_state = 205}, + [127] = {.lex_state = 205}, + [128] = {.lex_state = 205}, + [129] = {.lex_state = 205}, + [130] = {.lex_state = 205}, + [131] = {.lex_state = 205}, + [132] = {.lex_state = 205}, + [133] = {.lex_state = 205}, + [134] = {.lex_state = 206}, + [135] = {.lex_state = 205}, + [136] = {.lex_state = 205}, + [137] = {.lex_state = 205}, + [138] = {.lex_state = 205}, + [139] = {.lex_state = 205}, + [140] = {.lex_state = 205}, + [141] = {.lex_state = 205}, + [142] = {.lex_state = 205}, + [143] = {.lex_state = 206}, + [144] = {.lex_state = 205}, + [145] = {.lex_state = 205}, + [146] = {.lex_state = 205}, + [147] = {.lex_state = 205}, + [148] = {.lex_state = 205}, + [149] = {.lex_state = 205}, + [150] = {.lex_state = 205}, + [151] = {.lex_state = 205}, + [152] = {.lex_state = 205}, + [153] = {.lex_state = 205}, + [154] = {.lex_state = 205}, + [155] = {.lex_state = 205}, + [156] = {.lex_state = 205}, + [157] = {.lex_state = 205}, + [158] = {.lex_state = 205}, + [159] = {.lex_state = 205}, + [160] = {.lex_state = 206}, + [161] = {.lex_state = 206}, + [162] = {.lex_state = 205}, + [163] = {.lex_state = 205}, + [164] = {.lex_state = 205}, + [165] = {.lex_state = 205}, [166] = {.lex_state = 2}, [167] = {.lex_state = 2}, [168] = {.lex_state = 2}, @@ -6201,72 +6353,72 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [173] = {.lex_state = 2}, [174] = {.lex_state = 2}, [175] = {.lex_state = 2}, - [176] = {.lex_state = 198}, - [177] = {.lex_state = 198}, - [178] = {.lex_state = 198}, - [179] = {.lex_state = 198}, - [180] = {.lex_state = 198}, - [181] = {.lex_state = 198}, - [182] = {.lex_state = 198}, - [183] = {.lex_state = 198}, - [184] = {.lex_state = 198}, - [185] = {.lex_state = 198}, - [186] = {.lex_state = 198}, - [187] = {.lex_state = 198}, - [188] = {.lex_state = 198}, - [189] = {.lex_state = 198}, - [190] = {.lex_state = 198}, - [191] = {.lex_state = 198}, - [192] = {.lex_state = 198}, - [193] = {.lex_state = 198}, - [194] = {.lex_state = 198}, - [195] = {.lex_state = 198}, - [196] = {.lex_state = 198}, - [197] = {.lex_state = 198}, - [198] = {.lex_state = 198}, - [199] = {.lex_state = 198}, - [200] = {.lex_state = 198}, - [201] = {.lex_state = 198}, - [202] = {.lex_state = 198}, - [203] = {.lex_state = 198}, - [204] = {.lex_state = 198}, - [205] = {.lex_state = 198}, - [206] = {.lex_state = 198}, - [207] = {.lex_state = 198}, - [208] = {.lex_state = 198}, - [209] = {.lex_state = 198}, - [210] = {.lex_state = 198}, - [211] = {.lex_state = 198}, - [212] = {.lex_state = 198}, - [213] = {.lex_state = 198}, - [214] = {.lex_state = 198}, - [215] = {.lex_state = 198}, - [216] = {.lex_state = 198}, - [217] = {.lex_state = 198}, - [218] = {.lex_state = 198}, - [219] = {.lex_state = 198}, - [220] = {.lex_state = 198}, - [221] = {.lex_state = 198}, - [222] = {.lex_state = 198}, - [223] = {.lex_state = 198}, - [224] = {.lex_state = 198}, - [225] = {.lex_state = 198}, - [226] = {.lex_state = 198}, - [227] = {.lex_state = 198}, - [228] = {.lex_state = 198}, - [229] = {.lex_state = 198}, - [230] = {.lex_state = 198}, - [231] = {.lex_state = 198}, - [232] = {.lex_state = 198}, - [233] = {.lex_state = 198}, - [234] = {.lex_state = 198}, - [235] = {.lex_state = 198}, - [236] = {.lex_state = 198}, - [237] = {.lex_state = 198}, - [238] = {.lex_state = 198}, - [239] = {.lex_state = 198}, - [240] = {.lex_state = 198}, - [241] = {.lex_state = 198}, + [176] = {.lex_state = 207}, + [177] = {.lex_state = 207}, + [178] = {.lex_state = 207}, + [179] = {.lex_state = 207}, + [180] = {.lex_state = 207}, + [181] = {.lex_state = 207}, + [182] = {.lex_state = 207}, + [183] = {.lex_state = 207}, + [184] = {.lex_state = 207}, + [185] = {.lex_state = 207}, + [186] = {.lex_state = 207}, + [187] = {.lex_state = 207}, + [188] = {.lex_state = 207}, + [189] = {.lex_state = 207}, + [190] = {.lex_state = 207}, + [191] = {.lex_state = 207}, + [192] = {.lex_state = 207}, + [193] = {.lex_state = 207}, + [194] = {.lex_state = 207}, + [195] = {.lex_state = 207}, + [196] = {.lex_state = 207}, + [197] = {.lex_state = 207}, + [198] = {.lex_state = 207}, + [199] = {.lex_state = 207}, + [200] = {.lex_state = 207}, + [201] = {.lex_state = 207}, + [202] = {.lex_state = 207}, + [203] = {.lex_state = 207}, + [204] = {.lex_state = 207}, + [205] = {.lex_state = 207}, + [206] = {.lex_state = 207}, + [207] = {.lex_state = 207}, + [208] = {.lex_state = 207}, + [209] = {.lex_state = 207}, + [210] = {.lex_state = 207}, + [211] = {.lex_state = 207}, + [212] = {.lex_state = 207}, + [213] = {.lex_state = 207}, + [214] = {.lex_state = 207}, + [215] = {.lex_state = 207}, + [216] = {.lex_state = 207}, + [217] = {.lex_state = 207}, + [218] = {.lex_state = 207}, + [219] = {.lex_state = 207}, + [220] = {.lex_state = 207}, + [221] = {.lex_state = 207}, + [222] = {.lex_state = 207}, + [223] = {.lex_state = 207}, + [224] = {.lex_state = 207}, + [225] = {.lex_state = 207}, + [226] = {.lex_state = 207}, + [227] = {.lex_state = 207}, + [228] = {.lex_state = 207}, + [229] = {.lex_state = 207}, + [230] = {.lex_state = 207}, + [231] = {.lex_state = 207}, + [232] = {.lex_state = 207}, + [233] = {.lex_state = 207}, + [234] = {.lex_state = 207}, + [235] = {.lex_state = 207}, + [236] = {.lex_state = 207}, + [237] = {.lex_state = 207}, + [238] = {.lex_state = 207}, + [239] = {.lex_state = 207}, + [240] = {.lex_state = 207}, + [241] = {.lex_state = 207}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -6464,35 +6616,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(1), [anon_sym_pack] = ACTIONS(1), [anon_sym_68] = ACTIONS(1), - [anon_sym_reach] = ACTIONS(1), + [anon_sym_rectify] = ACTIONS(1), [anon_sym_69] = ACTIONS(1), - [anon_sym_fold] = ACTIONS(1), + [anon_sym_this] = ACTIONS(1), [anon_sym_70] = ACTIONS(1), - [anon_sym_table] = ACTIONS(1), + [anon_sym_recur] = ACTIONS(1), [anon_sym_71] = ACTIONS(1), - [anon_sym_cross] = ACTIONS(1), + [anon_sym_fold] = ACTIONS(1), [anon_sym_72] = ACTIONS(1), - [anon_sym_group] = ACTIONS(1), + [anon_sym_table] = ACTIONS(1), [anon_sym_73] = ACTIONS(1), - [anon_sym_partition] = ACTIONS(1), + [anon_sym_cross] = ACTIONS(1), [anon_sym_74] = ACTIONS(1), - [anon_sym_both] = ACTIONS(1), + [anon_sym_group] = ACTIONS(1), [anon_sym_75] = ACTIONS(1), - [anon_sym_bracket] = ACTIONS(1), + [anon_sym_partition] = ACTIONS(1), [anon_sym_76] = ACTIONS(1), - [anon_sym_fork] = ACTIONS(1), + [anon_sym_both] = ACTIONS(1), [anon_sym_77] = ACTIONS(1), - [anon_sym_under] = ACTIONS(1), + [anon_sym_bracket] = ACTIONS(1), [anon_sym_78] = ACTIONS(1), - [anon_sym_fill] = ACTIONS(1), + [anon_sym_fork] = ACTIONS(1), [anon_sym_79] = ACTIONS(1), - [anon_sym_try] = ACTIONS(1), + [anon_sym_under] = ACTIONS(1), [anon_sym_80] = ACTIONS(1), - [anon_sym_do] = ACTIONS(1), + [anon_sym_fill] = ACTIONS(1), [anon_sym_81] = ACTIONS(1), + [anon_sym_try] = ACTIONS(1), [anon_sym_82] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), [anon_sym_83] = ACTIONS(1), + [anon_sym_all] = ACTIONS(1), [anon_sym_84] = ACTIONS(1), + [anon_sym_setinv] = ACTIONS(1), + [anon_sym_setunder] = ACTIONS(1), [anon_sym_85] = ACTIONS(1), [anon_sym_86] = ACTIONS(1), [anon_sym_87] = ACTIONS(1), @@ -6501,6 +6658,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(1), [anon_sym_91] = ACTIONS(1), [anon_sym_92] = ACTIONS(1), + [anon_sym_93] = ACTIONS(1), + [anon_sym_94] = ACTIONS(1), + [anon_sym_95] = ACTIONS(1), + [anon_sym_96] = ACTIONS(1), [sym__endOfLine] = ACTIONS(5), }, [1] = { @@ -6711,35 +6872,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(43), [anon_sym_pack] = ACTIONS(43), [anon_sym_68] = ACTIONS(43), - [anon_sym_reach] = ACTIONS(43), + [anon_sym_rectify] = ACTIONS(43), [anon_sym_69] = ACTIONS(43), + [anon_sym_this] = ACTIONS(43), + [anon_sym_70] = ACTIONS(43), + [anon_sym_recur] = ACTIONS(43), + [anon_sym_71] = ACTIONS(43), [anon_sym_fold] = ACTIONS(45), - [anon_sym_70] = ACTIONS(45), + [anon_sym_72] = ACTIONS(45), [anon_sym_table] = ACTIONS(45), - [anon_sym_71] = ACTIONS(45), + [anon_sym_73] = ACTIONS(45), [anon_sym_cross] = ACTIONS(45), - [anon_sym_72] = ACTIONS(45), + [anon_sym_74] = ACTIONS(45), [anon_sym_group] = ACTIONS(45), - [anon_sym_73] = ACTIONS(45), + [anon_sym_75] = ACTIONS(45), [anon_sym_partition] = ACTIONS(45), - [anon_sym_74] = ACTIONS(45), + [anon_sym_76] = ACTIONS(45), [anon_sym_both] = ACTIONS(45), - [anon_sym_75] = ACTIONS(45), + [anon_sym_77] = ACTIONS(45), [anon_sym_bracket] = ACTIONS(45), - [anon_sym_76] = ACTIONS(45), + [anon_sym_78] = ACTIONS(45), [anon_sym_fork] = ACTIONS(45), - [anon_sym_77] = ACTIONS(45), + [anon_sym_79] = ACTIONS(45), [anon_sym_under] = ACTIONS(45), - [anon_sym_78] = ACTIONS(45), + [anon_sym_80] = ACTIONS(45), [anon_sym_fill] = ACTIONS(45), - [anon_sym_79] = ACTIONS(45), + [anon_sym_81] = ACTIONS(45), [anon_sym_try] = ACTIONS(47), - [anon_sym_80] = ACTIONS(45), + [anon_sym_82] = ACTIONS(45), [anon_sym_do] = ACTIONS(47), - [anon_sym_81] = ACTIONS(45), - [anon_sym_82] = ACTIONS(49), - [anon_sym_83] = ACTIONS(49), - [anon_sym_84] = ACTIONS(49), + [anon_sym_83] = ACTIONS(45), + [anon_sym_all] = ACTIONS(45), + [anon_sym_84] = ACTIONS(45), + [anon_sym_setinv] = ACTIONS(45), + [anon_sym_setunder] = ACTIONS(45), [anon_sym_85] = ACTIONS(49), [anon_sym_86] = ACTIONS(49), [anon_sym_87] = ACTIONS(49), @@ -6748,6 +6914,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(49), [anon_sym_91] = ACTIONS(49), [anon_sym_92] = ACTIONS(49), + [anon_sym_93] = ACTIONS(49), + [anon_sym_94] = ACTIONS(49), + [anon_sym_95] = ACTIONS(49), + [anon_sym_96] = ACTIONS(49), [sym__endOfLine] = ACTIONS(5), }, [2] = { @@ -6956,35 +7126,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(43), [anon_sym_pack] = ACTIONS(43), [anon_sym_68] = ACTIONS(43), - [anon_sym_reach] = ACTIONS(43), + [anon_sym_rectify] = ACTIONS(43), [anon_sym_69] = ACTIONS(43), + [anon_sym_this] = ACTIONS(43), + [anon_sym_70] = ACTIONS(43), + [anon_sym_recur] = ACTIONS(43), + [anon_sym_71] = ACTIONS(43), [anon_sym_fold] = ACTIONS(45), - [anon_sym_70] = ACTIONS(45), + [anon_sym_72] = ACTIONS(45), [anon_sym_table] = ACTIONS(45), - [anon_sym_71] = ACTIONS(45), + [anon_sym_73] = ACTIONS(45), [anon_sym_cross] = ACTIONS(45), - [anon_sym_72] = ACTIONS(45), + [anon_sym_74] = ACTIONS(45), [anon_sym_group] = ACTIONS(45), - [anon_sym_73] = ACTIONS(45), + [anon_sym_75] = ACTIONS(45), [anon_sym_partition] = ACTIONS(45), - [anon_sym_74] = ACTIONS(45), + [anon_sym_76] = ACTIONS(45), [anon_sym_both] = ACTIONS(45), - [anon_sym_75] = ACTIONS(45), + [anon_sym_77] = ACTIONS(45), [anon_sym_bracket] = ACTIONS(45), - [anon_sym_76] = ACTIONS(45), + [anon_sym_78] = ACTIONS(45), [anon_sym_fork] = ACTIONS(45), - [anon_sym_77] = ACTIONS(45), + [anon_sym_79] = ACTIONS(45), [anon_sym_under] = ACTIONS(45), - [anon_sym_78] = ACTIONS(45), + [anon_sym_80] = ACTIONS(45), [anon_sym_fill] = ACTIONS(45), - [anon_sym_79] = ACTIONS(45), + [anon_sym_81] = ACTIONS(45), [anon_sym_try] = ACTIONS(47), - [anon_sym_80] = ACTIONS(45), + [anon_sym_82] = ACTIONS(45), [anon_sym_do] = ACTIONS(47), - [anon_sym_81] = ACTIONS(45), - [anon_sym_82] = ACTIONS(49), - [anon_sym_83] = ACTIONS(49), - [anon_sym_84] = ACTIONS(49), + [anon_sym_83] = ACTIONS(45), + [anon_sym_all] = ACTIONS(45), + [anon_sym_84] = ACTIONS(45), + [anon_sym_setinv] = ACTIONS(45), + [anon_sym_setunder] = ACTIONS(45), [anon_sym_85] = ACTIONS(49), [anon_sym_86] = ACTIONS(49), [anon_sym_87] = ACTIONS(49), @@ -6993,6 +7168,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(49), [anon_sym_91] = ACTIONS(49), [anon_sym_92] = ACTIONS(49), + [anon_sym_93] = ACTIONS(49), + [anon_sym_94] = ACTIONS(49), + [anon_sym_95] = ACTIONS(49), + [anon_sym_96] = ACTIONS(49), [sym__endOfLine] = ACTIONS(5), }, [3] = { @@ -7201,35 +7380,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(89), [anon_sym_pack] = ACTIONS(89), [anon_sym_68] = ACTIONS(89), - [anon_sym_reach] = ACTIONS(89), + [anon_sym_rectify] = ACTIONS(89), [anon_sym_69] = ACTIONS(89), + [anon_sym_this] = ACTIONS(89), + [anon_sym_70] = ACTIONS(89), + [anon_sym_recur] = ACTIONS(89), + [anon_sym_71] = ACTIONS(89), [anon_sym_fold] = ACTIONS(91), - [anon_sym_70] = ACTIONS(91), + [anon_sym_72] = ACTIONS(91), [anon_sym_table] = ACTIONS(91), - [anon_sym_71] = ACTIONS(91), + [anon_sym_73] = ACTIONS(91), [anon_sym_cross] = ACTIONS(91), - [anon_sym_72] = ACTIONS(91), + [anon_sym_74] = ACTIONS(91), [anon_sym_group] = ACTIONS(91), - [anon_sym_73] = ACTIONS(91), + [anon_sym_75] = ACTIONS(91), [anon_sym_partition] = ACTIONS(91), - [anon_sym_74] = ACTIONS(91), + [anon_sym_76] = ACTIONS(91), [anon_sym_both] = ACTIONS(91), - [anon_sym_75] = ACTIONS(91), + [anon_sym_77] = ACTIONS(91), [anon_sym_bracket] = ACTIONS(91), - [anon_sym_76] = ACTIONS(91), + [anon_sym_78] = ACTIONS(91), [anon_sym_fork] = ACTIONS(91), - [anon_sym_77] = ACTIONS(91), + [anon_sym_79] = ACTIONS(91), [anon_sym_under] = ACTIONS(91), - [anon_sym_78] = ACTIONS(91), + [anon_sym_80] = ACTIONS(91), [anon_sym_fill] = ACTIONS(91), - [anon_sym_79] = ACTIONS(91), + [anon_sym_81] = ACTIONS(91), [anon_sym_try] = ACTIONS(93), - [anon_sym_80] = ACTIONS(91), + [anon_sym_82] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), - [anon_sym_81] = ACTIONS(91), - [anon_sym_82] = ACTIONS(95), - [anon_sym_83] = ACTIONS(95), - [anon_sym_84] = ACTIONS(95), + [anon_sym_83] = ACTIONS(91), + [anon_sym_all] = ACTIONS(91), + [anon_sym_84] = ACTIONS(91), + [anon_sym_setinv] = ACTIONS(91), + [anon_sym_setunder] = ACTIONS(91), [anon_sym_85] = ACTIONS(95), [anon_sym_86] = ACTIONS(95), [anon_sym_87] = ACTIONS(95), @@ -7238,6 +7422,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(95), [anon_sym_91] = ACTIONS(95), [anon_sym_92] = ACTIONS(95), + [anon_sym_93] = ACTIONS(95), + [anon_sym_94] = ACTIONS(95), + [anon_sym_95] = ACTIONS(95), + [anon_sym_96] = ACTIONS(95), [sym__endOfLine] = ACTIONS(71), }, [4] = { @@ -7446,35 +7634,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(89), [anon_sym_pack] = ACTIONS(89), [anon_sym_68] = ACTIONS(89), - [anon_sym_reach] = ACTIONS(89), + [anon_sym_rectify] = ACTIONS(89), [anon_sym_69] = ACTIONS(89), + [anon_sym_this] = ACTIONS(89), + [anon_sym_70] = ACTIONS(89), + [anon_sym_recur] = ACTIONS(89), + [anon_sym_71] = ACTIONS(89), [anon_sym_fold] = ACTIONS(91), - [anon_sym_70] = ACTIONS(91), + [anon_sym_72] = ACTIONS(91), [anon_sym_table] = ACTIONS(91), - [anon_sym_71] = ACTIONS(91), + [anon_sym_73] = ACTIONS(91), [anon_sym_cross] = ACTIONS(91), - [anon_sym_72] = ACTIONS(91), + [anon_sym_74] = ACTIONS(91), [anon_sym_group] = ACTIONS(91), - [anon_sym_73] = ACTIONS(91), + [anon_sym_75] = ACTIONS(91), [anon_sym_partition] = ACTIONS(91), - [anon_sym_74] = ACTIONS(91), + [anon_sym_76] = ACTIONS(91), [anon_sym_both] = ACTIONS(91), - [anon_sym_75] = ACTIONS(91), + [anon_sym_77] = ACTIONS(91), [anon_sym_bracket] = ACTIONS(91), - [anon_sym_76] = ACTIONS(91), + [anon_sym_78] = ACTIONS(91), [anon_sym_fork] = ACTIONS(91), - [anon_sym_77] = ACTIONS(91), + [anon_sym_79] = ACTIONS(91), [anon_sym_under] = ACTIONS(91), - [anon_sym_78] = ACTIONS(91), + [anon_sym_80] = ACTIONS(91), [anon_sym_fill] = ACTIONS(91), - [anon_sym_79] = ACTIONS(91), + [anon_sym_81] = ACTIONS(91), [anon_sym_try] = ACTIONS(93), - [anon_sym_80] = ACTIONS(91), + [anon_sym_82] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), - [anon_sym_81] = ACTIONS(91), - [anon_sym_82] = ACTIONS(95), - [anon_sym_83] = ACTIONS(95), - [anon_sym_84] = ACTIONS(95), + [anon_sym_83] = ACTIONS(91), + [anon_sym_all] = ACTIONS(91), + [anon_sym_84] = ACTIONS(91), + [anon_sym_setinv] = ACTIONS(91), + [anon_sym_setunder] = ACTIONS(91), [anon_sym_85] = ACTIONS(95), [anon_sym_86] = ACTIONS(95), [anon_sym_87] = ACTIONS(95), @@ -7483,6 +7676,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(95), [anon_sym_91] = ACTIONS(95), [anon_sym_92] = ACTIONS(95), + [anon_sym_93] = ACTIONS(95), + [anon_sym_94] = ACTIONS(95), + [anon_sym_95] = ACTIONS(95), + [anon_sym_96] = ACTIONS(95), [sym__endOfLine] = ACTIONS(71), }, [5] = { @@ -7691,35 +7888,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(89), [anon_sym_pack] = ACTIONS(89), [anon_sym_68] = ACTIONS(89), - [anon_sym_reach] = ACTIONS(89), + [anon_sym_rectify] = ACTIONS(89), [anon_sym_69] = ACTIONS(89), + [anon_sym_this] = ACTIONS(89), + [anon_sym_70] = ACTIONS(89), + [anon_sym_recur] = ACTIONS(89), + [anon_sym_71] = ACTIONS(89), [anon_sym_fold] = ACTIONS(91), - [anon_sym_70] = ACTIONS(91), + [anon_sym_72] = ACTIONS(91), [anon_sym_table] = ACTIONS(91), - [anon_sym_71] = ACTIONS(91), + [anon_sym_73] = ACTIONS(91), [anon_sym_cross] = ACTIONS(91), - [anon_sym_72] = ACTIONS(91), + [anon_sym_74] = ACTIONS(91), [anon_sym_group] = ACTIONS(91), - [anon_sym_73] = ACTIONS(91), + [anon_sym_75] = ACTIONS(91), [anon_sym_partition] = ACTIONS(91), - [anon_sym_74] = ACTIONS(91), + [anon_sym_76] = ACTIONS(91), [anon_sym_both] = ACTIONS(91), - [anon_sym_75] = ACTIONS(91), + [anon_sym_77] = ACTIONS(91), [anon_sym_bracket] = ACTIONS(91), - [anon_sym_76] = ACTIONS(91), + [anon_sym_78] = ACTIONS(91), [anon_sym_fork] = ACTIONS(91), - [anon_sym_77] = ACTIONS(91), + [anon_sym_79] = ACTIONS(91), [anon_sym_under] = ACTIONS(91), - [anon_sym_78] = ACTIONS(91), + [anon_sym_80] = ACTIONS(91), [anon_sym_fill] = ACTIONS(91), - [anon_sym_79] = ACTIONS(91), + [anon_sym_81] = ACTIONS(91), [anon_sym_try] = ACTIONS(93), - [anon_sym_80] = ACTIONS(91), + [anon_sym_82] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), - [anon_sym_81] = ACTIONS(91), - [anon_sym_82] = ACTIONS(95), - [anon_sym_83] = ACTIONS(95), - [anon_sym_84] = ACTIONS(95), + [anon_sym_83] = ACTIONS(91), + [anon_sym_all] = ACTIONS(91), + [anon_sym_84] = ACTIONS(91), + [anon_sym_setinv] = ACTIONS(91), + [anon_sym_setunder] = ACTIONS(91), [anon_sym_85] = ACTIONS(95), [anon_sym_86] = ACTIONS(95), [anon_sym_87] = ACTIONS(95), @@ -7728,6 +7930,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(95), [anon_sym_91] = ACTIONS(95), [anon_sym_92] = ACTIONS(95), + [anon_sym_93] = ACTIONS(95), + [anon_sym_94] = ACTIONS(95), + [anon_sym_95] = ACTIONS(95), + [anon_sym_96] = ACTIONS(95), [sym__endOfLine] = ACTIONS(5), }, [6] = { @@ -7936,35 +8142,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(153), [anon_sym_pack] = ACTIONS(153), [anon_sym_68] = ACTIONS(153), - [anon_sym_reach] = ACTIONS(153), + [anon_sym_rectify] = ACTIONS(153), [anon_sym_69] = ACTIONS(153), + [anon_sym_this] = ACTIONS(153), + [anon_sym_70] = ACTIONS(153), + [anon_sym_recur] = ACTIONS(153), + [anon_sym_71] = ACTIONS(153), [anon_sym_fold] = ACTIONS(156), - [anon_sym_70] = ACTIONS(156), + [anon_sym_72] = ACTIONS(156), [anon_sym_table] = ACTIONS(156), - [anon_sym_71] = ACTIONS(156), + [anon_sym_73] = ACTIONS(156), [anon_sym_cross] = ACTIONS(156), - [anon_sym_72] = ACTIONS(156), + [anon_sym_74] = ACTIONS(156), [anon_sym_group] = ACTIONS(156), - [anon_sym_73] = ACTIONS(156), + [anon_sym_75] = ACTIONS(156), [anon_sym_partition] = ACTIONS(156), - [anon_sym_74] = ACTIONS(156), + [anon_sym_76] = ACTIONS(156), [anon_sym_both] = ACTIONS(156), - [anon_sym_75] = ACTIONS(156), + [anon_sym_77] = ACTIONS(156), [anon_sym_bracket] = ACTIONS(156), - [anon_sym_76] = ACTIONS(156), + [anon_sym_78] = ACTIONS(156), [anon_sym_fork] = ACTIONS(156), - [anon_sym_77] = ACTIONS(156), + [anon_sym_79] = ACTIONS(156), [anon_sym_under] = ACTIONS(156), - [anon_sym_78] = ACTIONS(156), + [anon_sym_80] = ACTIONS(156), [anon_sym_fill] = ACTIONS(156), - [anon_sym_79] = ACTIONS(156), + [anon_sym_81] = ACTIONS(156), [anon_sym_try] = ACTIONS(159), - [anon_sym_80] = ACTIONS(156), + [anon_sym_82] = ACTIONS(156), [anon_sym_do] = ACTIONS(159), - [anon_sym_81] = ACTIONS(156), - [anon_sym_82] = ACTIONS(162), - [anon_sym_83] = ACTIONS(162), - [anon_sym_84] = ACTIONS(162), + [anon_sym_83] = ACTIONS(156), + [anon_sym_all] = ACTIONS(156), + [anon_sym_84] = ACTIONS(156), + [anon_sym_setinv] = ACTIONS(156), + [anon_sym_setunder] = ACTIONS(156), [anon_sym_85] = ACTIONS(162), [anon_sym_86] = ACTIONS(162), [anon_sym_87] = ACTIONS(162), @@ -7973,6 +8184,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(162), [anon_sym_91] = ACTIONS(162), [anon_sym_92] = ACTIONS(162), + [anon_sym_93] = ACTIONS(162), + [anon_sym_94] = ACTIONS(162), + [anon_sym_95] = ACTIONS(162), + [anon_sym_96] = ACTIONS(162), [sym__endOfLine] = ACTIONS(5), }, [7] = { @@ -8181,279 +8396,293 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(89), [anon_sym_pack] = ACTIONS(89), [anon_sym_68] = ACTIONS(89), - [anon_sym_reach] = ACTIONS(89), - [anon_sym_69] = ACTIONS(89), - [anon_sym_fold] = ACTIONS(91), - [anon_sym_70] = ACTIONS(91), - [anon_sym_table] = ACTIONS(91), - [anon_sym_71] = ACTIONS(91), - [anon_sym_cross] = ACTIONS(91), - [anon_sym_72] = ACTIONS(91), - [anon_sym_group] = ACTIONS(91), - [anon_sym_73] = ACTIONS(91), - [anon_sym_partition] = ACTIONS(91), - [anon_sym_74] = ACTIONS(91), - [anon_sym_both] = ACTIONS(91), - [anon_sym_75] = ACTIONS(91), - [anon_sym_bracket] = ACTIONS(91), - [anon_sym_76] = ACTIONS(91), - [anon_sym_fork] = ACTIONS(91), - [anon_sym_77] = ACTIONS(91), - [anon_sym_under] = ACTIONS(91), - [anon_sym_78] = ACTIONS(91), - [anon_sym_fill] = ACTIONS(91), - [anon_sym_79] = ACTIONS(91), - [anon_sym_try] = ACTIONS(93), - [anon_sym_80] = ACTIONS(91), - [anon_sym_do] = ACTIONS(93), - [anon_sym_81] = ACTIONS(91), - [anon_sym_82] = ACTIONS(95), - [anon_sym_83] = ACTIONS(95), - [anon_sym_84] = ACTIONS(95), - [anon_sym_85] = ACTIONS(95), - [anon_sym_86] = ACTIONS(95), - [anon_sym_87] = ACTIONS(95), - [anon_sym_88] = ACTIONS(95), - [anon_sym_89] = ACTIONS(95), - [anon_sym_90] = ACTIONS(95), - [anon_sym_91] = ACTIONS(95), - [anon_sym_92] = ACTIONS(95), - [sym__endOfLine] = ACTIONS(5), - }, - [8] = { - [sym_segment] = STATE(221), - [sym_term] = STATE(42), - [sym_inlineFunction] = STATE(221), - [sym_switchFunctions] = STATE(104), - [sym_array] = STATE(104), - [sym_number] = STATE(104), - [sym_otherConstant] = STATE(104), - [sym_character] = STATE(104), - [sym_signature] = STATE(69), - [sym_placeHolder] = STATE(104), - [sym_compound] = STATE(104), - [sym_primitive] = STATE(104), - [sym_constant] = STATE(107), - [sym_function] = STATE(98), - [sym_modifier1] = STATE(83), - [sym_modifier2] = STATE(84), - [sym_deprecated] = STATE(98), - [aux_sym_array_repeat1] = STATE(79), - [aux_sym_number_token1] = ACTIONS(51), - [sym_fraction] = ACTIONS(53), - [anon_sym_os] = ACTIONS(55), - [anon_sym_Family] = ACTIONS(55), - [anon_sym_Arch] = ACTIONS(55), - [anon_sym_ExeExt] = ACTIONS(55), - [anon_sym_PllExt] = ACTIONS(55), - [anon_sym_Sep] = ACTIONS(55), - [anon_sym_NUmProcs] = ACTIONS(55), - [anon_sym_] = ACTIONS(57), - [aux_sym_character_token1] = ACTIONS(59), - [sym_string] = ACTIONS(61), - [sym_multiLineString] = ACTIONS(61), - [anon_sym_PIPE] = ACTIONS(97), - [sym_identifier] = ACTIONS(61), - [sym_identifierDeprecated] = ACTIONS(61), - [sym_system] = ACTIONS(65), - [sym_comment] = ACTIONS(67), - [sym_openParen] = ACTIONS(165), - [sym_openCurly] = ACTIONS(73), - [sym_openBracket] = ACTIONS(75), - [anon_sym_CARET] = ACTIONS(79), - [anon_sym_eta] = ACTIONS(81), - [anon_sym_2] = ACTIONS(83), - [anon_sym_pi] = ACTIONS(83), - [anon_sym_3] = ACTIONS(83), - [anon_sym_tau] = ACTIONS(81), - [anon_sym_4] = ACTIONS(83), - [anon_sym_infinity] = ACTIONS(81), - [anon_sym_5] = ACTIONS(81), - [anon_sym_e] = ACTIONS(83), - [anon_sym_NaN] = ACTIONS(83), - [anon_sym_NumProcs] = ACTIONS(83), - [anon_sym_DOT] = ACTIONS(85), - [anon_sym_COMMA] = ACTIONS(85), - [anon_sym_COLON] = ACTIONS(85), - [anon_sym_SEMI] = ACTIONS(85), - [anon_sym_identity] = ACTIONS(85), - [anon_sym_id] = ACTIONS(87), - [anon_sym_6] = ACTIONS(85), - [anon_sym_not] = ACTIONS(85), - [anon_sym_7] = ACTIONS(85), - [anon_sym_sign] = ACTIONS(85), - [anon_sym_8] = ACTIONS(85), - [anon_sym_BQUOTE] = ACTIONS(85), - [anon_sym_9] = ACTIONS(87), - [anon_sym_absolutevalue] = ACTIONS(85), - [anon_sym_10] = ACTIONS(85), - [anon_sym_sqrt] = ACTIONS(85), - [anon_sym_11] = ACTIONS(85), - [anon_sym_sine] = ACTIONS(85), - [anon_sym_12] = ACTIONS(85), - [anon_sym_floor] = ACTIONS(85), - [anon_sym_13] = ACTIONS(85), - [anon_sym_ceiling] = ACTIONS(85), - [anon_sym_14] = ACTIONS(85), - [anon_sym_round] = ACTIONS(85), - [anon_sym_15] = ACTIONS(85), - [anon_sym_EQ] = ACTIONS(85), - [anon_sym_BANG_EQ] = ACTIONS(85), - [anon_sym_16] = ACTIONS(85), - [anon_sym_LT] = ACTIONS(87), - [anon_sym_LT_EQ] = ACTIONS(85), - [anon_sym_17] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(87), - [anon_sym_GT_EQ] = ACTIONS(85), - [anon_sym_18] = ACTIONS(85), - [anon_sym_PLUS] = ACTIONS(85), - [anon_sym_DASH] = ACTIONS(85), - [anon_sym_STAR] = ACTIONS(85), - [anon_sym_19] = ACTIONS(85), - [anon_sym_PERCENT] = ACTIONS(85), - [anon_sym_20] = ACTIONS(85), - [anon_sym_modulus] = ACTIONS(85), - [anon_sym_21] = ACTIONS(85), - [anon_sym_power] = ACTIONS(85), - [anon_sym_22] = ACTIONS(85), - [anon_sym_logarithm] = ACTIONS(85), - [anon_sym_23] = ACTIONS(85), - [anon_sym_minimum] = ACTIONS(85), - [anon_sym_24] = ACTIONS(85), - [anon_sym_maximum] = ACTIONS(85), - [anon_sym_25] = ACTIONS(85), - [anon_sym_atangent] = ACTIONS(85), - [anon_sym_26] = ACTIONS(85), - [anon_sym_length] = ACTIONS(85), - [anon_sym_27] = ACTIONS(85), - [anon_sym_shape] = ACTIONS(85), - [anon_sym_28] = ACTIONS(85), - [anon_sym_range] = ACTIONS(85), - [anon_sym_29] = ACTIONS(85), - [anon_sym_first] = ACTIONS(85), - [anon_sym_30] = ACTIONS(85), - [anon_sym_reverse] = ACTIONS(85), - [anon_sym_31] = ACTIONS(85), - [anon_sym_deshape] = ACTIONS(85), - [anon_sym_32] = ACTIONS(85), - [anon_sym_bits] = ACTIONS(85), - [anon_sym_33] = ACTIONS(85), - [anon_sym_transpose] = ACTIONS(85), - [anon_sym_34] = ACTIONS(85), - [anon_sym_rise] = ACTIONS(85), - [anon_sym_35] = ACTIONS(85), - [anon_sym_fall] = ACTIONS(85), - [anon_sym_36] = ACTIONS(85), - [anon_sym_where] = ACTIONS(85), - [anon_sym_37] = ACTIONS(85), - [anon_sym_classify] = ACTIONS(85), - [anon_sym_38] = ACTIONS(85), - [anon_sym_deduplicate] = ACTIONS(85), - [anon_sym_39] = ACTIONS(85), - [anon_sym_box] = ACTIONS(85), - [anon_sym_40] = ACTIONS(85), - [anon_sym_unbox] = ACTIONS(85), - [anon_sym_41] = ACTIONS(85), - [anon_sym_match] = ACTIONS(85), - [anon_sym_42] = ACTIONS(85), - [anon_sym_couple] = ACTIONS(85), - [anon_sym_43] = ACTIONS(85), - [anon_sym_join] = ACTIONS(85), - [anon_sym_44] = ACTIONS(85), - [anon_sym_select] = ACTIONS(85), - [anon_sym_45] = ACTIONS(85), - [anon_sym_pick] = ACTIONS(85), - [anon_sym_46] = ACTIONS(85), - [anon_sym_reshape] = ACTIONS(85), - [anon_sym_47] = ACTIONS(85), - [anon_sym_take] = ACTIONS(85), - [anon_sym_48] = ACTIONS(85), - [anon_sym_drop] = ACTIONS(85), - [anon_sym_49] = ACTIONS(85), - [anon_sym_rotate] = ACTIONS(85), - [anon_sym_50] = ACTIONS(85), - [anon_sym_windows] = ACTIONS(85), - [anon_sym_51] = ACTIONS(85), - [anon_sym_keep] = ACTIONS(85), - [anon_sym_52] = ACTIONS(85), - [anon_sym_find] = ACTIONS(85), - [anon_sym_53] = ACTIONS(85), - [anon_sym_member] = ACTIONS(85), - [anon_sym_54] = ACTIONS(85), - [anon_sym_indexof] = ACTIONS(85), - [anon_sym_55] = ACTIONS(85), - [anon_sym_assert] = ACTIONS(85), - [anon_sym_56] = ACTIONS(85), - [anon_sym_wait] = ACTIONS(85), - [anon_sym_parse] = ACTIONS(85), - [anon_sym_random] = ACTIONS(85), - [anon_sym_57] = ACTIONS(85), - [anon_sym_gen] = ACTIONS(85), - [anon_sym_deal] = ACTIONS(85), - [anon_sym_tag] = ACTIONS(85), - [anon_sym_now] = ACTIONS(85), - [anon_sym_type] = ACTIONS(85), - [anon_sym_58] = ACTIONS(85), - [anon_sym_dump] = ACTIONS(85), - [anon_sym_regex] = ACTIONS(85), - [anon_sym_utf] = ACTIONS(85), - [anon_sym_send] = ACTIONS(85), - [anon_sym_recv] = ACTIONS(85), - [anon_sym_tryrecv] = ACTIONS(85), - [anon_sym_complex] = ACTIONS(85), - [anon_sym_59] = ACTIONS(85), - [anon_sym_rerank] = ACTIONS(85), - [anon_sym_60] = ACTIONS(85), - [anon_sym_fix] = ACTIONS(85), - [anon_sym_61] = ACTIONS(85), - [anon_sym_reduce] = ACTIONS(89), - [anon_sym_SLASH] = ACTIONS(89), - [anon_sym_scan] = ACTIONS(89), - [anon_sym_BSLASH] = ACTIONS(89), - [anon_sym_each] = ACTIONS(89), - [anon_sym_62] = ACTIONS(89), - [anon_sym_rows] = ACTIONS(89), - [anon_sym_63] = ACTIONS(89), - [anon_sym_repeat] = ACTIONS(89), - [anon_sym_64] = ACTIONS(89), - [anon_sym_dip] = ACTIONS(89), - [anon_sym_65] = ACTIONS(89), - [anon_sym_gap] = ACTIONS(89), - [anon_sym_66] = ACTIONS(89), - [anon_sym_invert] = ACTIONS(89), - [anon_sym_67] = ACTIONS(89), - [anon_sym_spawn] = ACTIONS(89), - [anon_sym_pack] = ACTIONS(89), - [anon_sym_68] = ACTIONS(89), - [anon_sym_reach] = ACTIONS(89), + [anon_sym_rectify] = ACTIONS(89), [anon_sym_69] = ACTIONS(89), + [anon_sym_this] = ACTIONS(89), + [anon_sym_70] = ACTIONS(89), + [anon_sym_recur] = ACTIONS(89), + [anon_sym_71] = ACTIONS(89), [anon_sym_fold] = ACTIONS(91), - [anon_sym_70] = ACTIONS(91), + [anon_sym_72] = ACTIONS(91), [anon_sym_table] = ACTIONS(91), - [anon_sym_71] = ACTIONS(91), + [anon_sym_73] = ACTIONS(91), [anon_sym_cross] = ACTIONS(91), - [anon_sym_72] = ACTIONS(91), + [anon_sym_74] = ACTIONS(91), [anon_sym_group] = ACTIONS(91), - [anon_sym_73] = ACTIONS(91), + [anon_sym_75] = ACTIONS(91), [anon_sym_partition] = ACTIONS(91), - [anon_sym_74] = ACTIONS(91), + [anon_sym_76] = ACTIONS(91), [anon_sym_both] = ACTIONS(91), - [anon_sym_75] = ACTIONS(91), + [anon_sym_77] = ACTIONS(91), [anon_sym_bracket] = ACTIONS(91), - [anon_sym_76] = ACTIONS(91), + [anon_sym_78] = ACTIONS(91), [anon_sym_fork] = ACTIONS(91), - [anon_sym_77] = ACTIONS(91), + [anon_sym_79] = ACTIONS(91), [anon_sym_under] = ACTIONS(91), - [anon_sym_78] = ACTIONS(91), + [anon_sym_80] = ACTIONS(91), [anon_sym_fill] = ACTIONS(91), - [anon_sym_79] = ACTIONS(91), + [anon_sym_81] = ACTIONS(91), [anon_sym_try] = ACTIONS(93), - [anon_sym_80] = ACTIONS(91), + [anon_sym_82] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), + [anon_sym_83] = ACTIONS(91), + [anon_sym_all] = ACTIONS(91), + [anon_sym_84] = ACTIONS(91), + [anon_sym_setinv] = ACTIONS(91), + [anon_sym_setunder] = ACTIONS(91), + [anon_sym_85] = ACTIONS(95), + [anon_sym_86] = ACTIONS(95), + [anon_sym_87] = ACTIONS(95), + [anon_sym_88] = ACTIONS(95), + [anon_sym_89] = ACTIONS(95), + [anon_sym_90] = ACTIONS(95), + [anon_sym_91] = ACTIONS(95), + [anon_sym_92] = ACTIONS(95), + [anon_sym_93] = ACTIONS(95), + [anon_sym_94] = ACTIONS(95), + [anon_sym_95] = ACTIONS(95), + [anon_sym_96] = ACTIONS(95), + [sym__endOfLine] = ACTIONS(5), + }, + [8] = { + [sym_segment] = STATE(221), + [sym_term] = STATE(42), + [sym_inlineFunction] = STATE(221), + [sym_switchFunctions] = STATE(104), + [sym_array] = STATE(104), + [sym_number] = STATE(104), + [sym_otherConstant] = STATE(104), + [sym_character] = STATE(104), + [sym_signature] = STATE(69), + [sym_placeHolder] = STATE(104), + [sym_compound] = STATE(104), + [sym_primitive] = STATE(104), + [sym_constant] = STATE(107), + [sym_function] = STATE(98), + [sym_modifier1] = STATE(83), + [sym_modifier2] = STATE(84), + [sym_deprecated] = STATE(98), + [aux_sym_array_repeat1] = STATE(79), + [aux_sym_number_token1] = ACTIONS(51), + [sym_fraction] = ACTIONS(53), + [anon_sym_os] = ACTIONS(55), + [anon_sym_Family] = ACTIONS(55), + [anon_sym_Arch] = ACTIONS(55), + [anon_sym_ExeExt] = ACTIONS(55), + [anon_sym_PllExt] = ACTIONS(55), + [anon_sym_Sep] = ACTIONS(55), + [anon_sym_NUmProcs] = ACTIONS(55), + [anon_sym_] = ACTIONS(57), + [aux_sym_character_token1] = ACTIONS(59), + [sym_string] = ACTIONS(61), + [sym_multiLineString] = ACTIONS(61), + [anon_sym_PIPE] = ACTIONS(97), + [sym_identifier] = ACTIONS(61), + [sym_identifierDeprecated] = ACTIONS(61), + [sym_system] = ACTIONS(65), + [sym_comment] = ACTIONS(67), + [sym_openParen] = ACTIONS(165), + [sym_openCurly] = ACTIONS(73), + [sym_openBracket] = ACTIONS(75), + [anon_sym_CARET] = ACTIONS(79), + [anon_sym_eta] = ACTIONS(81), + [anon_sym_2] = ACTIONS(83), + [anon_sym_pi] = ACTIONS(83), + [anon_sym_3] = ACTIONS(83), + [anon_sym_tau] = ACTIONS(81), + [anon_sym_4] = ACTIONS(83), + [anon_sym_infinity] = ACTIONS(81), + [anon_sym_5] = ACTIONS(81), + [anon_sym_e] = ACTIONS(83), + [anon_sym_NaN] = ACTIONS(83), + [anon_sym_NumProcs] = ACTIONS(83), + [anon_sym_DOT] = ACTIONS(85), + [anon_sym_COMMA] = ACTIONS(85), + [anon_sym_COLON] = ACTIONS(85), + [anon_sym_SEMI] = ACTIONS(85), + [anon_sym_identity] = ACTIONS(85), + [anon_sym_id] = ACTIONS(87), + [anon_sym_6] = ACTIONS(85), + [anon_sym_not] = ACTIONS(85), + [anon_sym_7] = ACTIONS(85), + [anon_sym_sign] = ACTIONS(85), + [anon_sym_8] = ACTIONS(85), + [anon_sym_BQUOTE] = ACTIONS(85), + [anon_sym_9] = ACTIONS(87), + [anon_sym_absolutevalue] = ACTIONS(85), + [anon_sym_10] = ACTIONS(85), + [anon_sym_sqrt] = ACTIONS(85), + [anon_sym_11] = ACTIONS(85), + [anon_sym_sine] = ACTIONS(85), + [anon_sym_12] = ACTIONS(85), + [anon_sym_floor] = ACTIONS(85), + [anon_sym_13] = ACTIONS(85), + [anon_sym_ceiling] = ACTIONS(85), + [anon_sym_14] = ACTIONS(85), + [anon_sym_round] = ACTIONS(85), + [anon_sym_15] = ACTIONS(85), + [anon_sym_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_16] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_17] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_18] = ACTIONS(85), + [anon_sym_PLUS] = ACTIONS(85), + [anon_sym_DASH] = ACTIONS(85), + [anon_sym_STAR] = ACTIONS(85), + [anon_sym_19] = ACTIONS(85), + [anon_sym_PERCENT] = ACTIONS(85), + [anon_sym_20] = ACTIONS(85), + [anon_sym_modulus] = ACTIONS(85), + [anon_sym_21] = ACTIONS(85), + [anon_sym_power] = ACTIONS(85), + [anon_sym_22] = ACTIONS(85), + [anon_sym_logarithm] = ACTIONS(85), + [anon_sym_23] = ACTIONS(85), + [anon_sym_minimum] = ACTIONS(85), + [anon_sym_24] = ACTIONS(85), + [anon_sym_maximum] = ACTIONS(85), + [anon_sym_25] = ACTIONS(85), + [anon_sym_atangent] = ACTIONS(85), + [anon_sym_26] = ACTIONS(85), + [anon_sym_length] = ACTIONS(85), + [anon_sym_27] = ACTIONS(85), + [anon_sym_shape] = ACTIONS(85), + [anon_sym_28] = ACTIONS(85), + [anon_sym_range] = ACTIONS(85), + [anon_sym_29] = ACTIONS(85), + [anon_sym_first] = ACTIONS(85), + [anon_sym_30] = ACTIONS(85), + [anon_sym_reverse] = ACTIONS(85), + [anon_sym_31] = ACTIONS(85), + [anon_sym_deshape] = ACTIONS(85), + [anon_sym_32] = ACTIONS(85), + [anon_sym_bits] = ACTIONS(85), + [anon_sym_33] = ACTIONS(85), + [anon_sym_transpose] = ACTIONS(85), + [anon_sym_34] = ACTIONS(85), + [anon_sym_rise] = ACTIONS(85), + [anon_sym_35] = ACTIONS(85), + [anon_sym_fall] = ACTIONS(85), + [anon_sym_36] = ACTIONS(85), + [anon_sym_where] = ACTIONS(85), + [anon_sym_37] = ACTIONS(85), + [anon_sym_classify] = ACTIONS(85), + [anon_sym_38] = ACTIONS(85), + [anon_sym_deduplicate] = ACTIONS(85), + [anon_sym_39] = ACTIONS(85), + [anon_sym_box] = ACTIONS(85), + [anon_sym_40] = ACTIONS(85), + [anon_sym_unbox] = ACTIONS(85), + [anon_sym_41] = ACTIONS(85), + [anon_sym_match] = ACTIONS(85), + [anon_sym_42] = ACTIONS(85), + [anon_sym_couple] = ACTIONS(85), + [anon_sym_43] = ACTIONS(85), + [anon_sym_join] = ACTIONS(85), + [anon_sym_44] = ACTIONS(85), + [anon_sym_select] = ACTIONS(85), + [anon_sym_45] = ACTIONS(85), + [anon_sym_pick] = ACTIONS(85), + [anon_sym_46] = ACTIONS(85), + [anon_sym_reshape] = ACTIONS(85), + [anon_sym_47] = ACTIONS(85), + [anon_sym_take] = ACTIONS(85), + [anon_sym_48] = ACTIONS(85), + [anon_sym_drop] = ACTIONS(85), + [anon_sym_49] = ACTIONS(85), + [anon_sym_rotate] = ACTIONS(85), + [anon_sym_50] = ACTIONS(85), + [anon_sym_windows] = ACTIONS(85), + [anon_sym_51] = ACTIONS(85), + [anon_sym_keep] = ACTIONS(85), + [anon_sym_52] = ACTIONS(85), + [anon_sym_find] = ACTIONS(85), + [anon_sym_53] = ACTIONS(85), + [anon_sym_member] = ACTIONS(85), + [anon_sym_54] = ACTIONS(85), + [anon_sym_indexof] = ACTIONS(85), + [anon_sym_55] = ACTIONS(85), + [anon_sym_assert] = ACTIONS(85), + [anon_sym_56] = ACTIONS(85), + [anon_sym_wait] = ACTIONS(85), + [anon_sym_parse] = ACTIONS(85), + [anon_sym_random] = ACTIONS(85), + [anon_sym_57] = ACTIONS(85), + [anon_sym_gen] = ACTIONS(85), + [anon_sym_deal] = ACTIONS(85), + [anon_sym_tag] = ACTIONS(85), + [anon_sym_now] = ACTIONS(85), + [anon_sym_type] = ACTIONS(85), + [anon_sym_58] = ACTIONS(85), + [anon_sym_dump] = ACTIONS(85), + [anon_sym_regex] = ACTIONS(85), + [anon_sym_utf] = ACTIONS(85), + [anon_sym_send] = ACTIONS(85), + [anon_sym_recv] = ACTIONS(85), + [anon_sym_tryrecv] = ACTIONS(85), + [anon_sym_complex] = ACTIONS(85), + [anon_sym_59] = ACTIONS(85), + [anon_sym_rerank] = ACTIONS(85), + [anon_sym_60] = ACTIONS(85), + [anon_sym_fix] = ACTIONS(85), + [anon_sym_61] = ACTIONS(85), + [anon_sym_reduce] = ACTIONS(89), + [anon_sym_SLASH] = ACTIONS(89), + [anon_sym_scan] = ACTIONS(89), + [anon_sym_BSLASH] = ACTIONS(89), + [anon_sym_each] = ACTIONS(89), + [anon_sym_62] = ACTIONS(89), + [anon_sym_rows] = ACTIONS(89), + [anon_sym_63] = ACTIONS(89), + [anon_sym_repeat] = ACTIONS(89), + [anon_sym_64] = ACTIONS(89), + [anon_sym_dip] = ACTIONS(89), + [anon_sym_65] = ACTIONS(89), + [anon_sym_gap] = ACTIONS(89), + [anon_sym_66] = ACTIONS(89), + [anon_sym_invert] = ACTIONS(89), + [anon_sym_67] = ACTIONS(89), + [anon_sym_spawn] = ACTIONS(89), + [anon_sym_pack] = ACTIONS(89), + [anon_sym_68] = ACTIONS(89), + [anon_sym_rectify] = ACTIONS(89), + [anon_sym_69] = ACTIONS(89), + [anon_sym_this] = ACTIONS(89), + [anon_sym_70] = ACTIONS(89), + [anon_sym_recur] = ACTIONS(89), + [anon_sym_71] = ACTIONS(89), + [anon_sym_fold] = ACTIONS(91), + [anon_sym_72] = ACTIONS(91), + [anon_sym_table] = ACTIONS(91), + [anon_sym_73] = ACTIONS(91), + [anon_sym_cross] = ACTIONS(91), + [anon_sym_74] = ACTIONS(91), + [anon_sym_group] = ACTIONS(91), + [anon_sym_75] = ACTIONS(91), + [anon_sym_partition] = ACTIONS(91), + [anon_sym_76] = ACTIONS(91), + [anon_sym_both] = ACTIONS(91), + [anon_sym_77] = ACTIONS(91), + [anon_sym_bracket] = ACTIONS(91), + [anon_sym_78] = ACTIONS(91), + [anon_sym_fork] = ACTIONS(91), + [anon_sym_79] = ACTIONS(91), + [anon_sym_under] = ACTIONS(91), + [anon_sym_80] = ACTIONS(91), + [anon_sym_fill] = ACTIONS(91), [anon_sym_81] = ACTIONS(91), - [anon_sym_82] = ACTIONS(95), - [anon_sym_83] = ACTIONS(95), - [anon_sym_84] = ACTIONS(95), + [anon_sym_try] = ACTIONS(93), + [anon_sym_82] = ACTIONS(91), + [anon_sym_do] = ACTIONS(93), + [anon_sym_83] = ACTIONS(91), + [anon_sym_all] = ACTIONS(91), + [anon_sym_84] = ACTIONS(91), + [anon_sym_setinv] = ACTIONS(91), + [anon_sym_setunder] = ACTIONS(91), [anon_sym_85] = ACTIONS(95), [anon_sym_86] = ACTIONS(95), [anon_sym_87] = ACTIONS(95), @@ -8462,6 +8691,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(95), [anon_sym_91] = ACTIONS(95), [anon_sym_92] = ACTIONS(95), + [anon_sym_93] = ACTIONS(95), + [anon_sym_94] = ACTIONS(95), + [anon_sym_95] = ACTIONS(95), + [anon_sym_96] = ACTIONS(95), [sym__endOfLine] = ACTIONS(5), }, [9] = { @@ -8669,35 +8902,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(217), [anon_sym_pack] = ACTIONS(217), [anon_sym_68] = ACTIONS(217), - [anon_sym_reach] = ACTIONS(217), + [anon_sym_rectify] = ACTIONS(217), [anon_sym_69] = ACTIONS(217), + [anon_sym_this] = ACTIONS(217), + [anon_sym_70] = ACTIONS(217), + [anon_sym_recur] = ACTIONS(217), + [anon_sym_71] = ACTIONS(217), [anon_sym_fold] = ACTIONS(220), - [anon_sym_70] = ACTIONS(220), + [anon_sym_72] = ACTIONS(220), [anon_sym_table] = ACTIONS(220), - [anon_sym_71] = ACTIONS(220), + [anon_sym_73] = ACTIONS(220), [anon_sym_cross] = ACTIONS(220), - [anon_sym_72] = ACTIONS(220), + [anon_sym_74] = ACTIONS(220), [anon_sym_group] = ACTIONS(220), - [anon_sym_73] = ACTIONS(220), + [anon_sym_75] = ACTIONS(220), [anon_sym_partition] = ACTIONS(220), - [anon_sym_74] = ACTIONS(220), + [anon_sym_76] = ACTIONS(220), [anon_sym_both] = ACTIONS(220), - [anon_sym_75] = ACTIONS(220), + [anon_sym_77] = ACTIONS(220), [anon_sym_bracket] = ACTIONS(220), - [anon_sym_76] = ACTIONS(220), + [anon_sym_78] = ACTIONS(220), [anon_sym_fork] = ACTIONS(220), - [anon_sym_77] = ACTIONS(220), + [anon_sym_79] = ACTIONS(220), [anon_sym_under] = ACTIONS(220), - [anon_sym_78] = ACTIONS(220), + [anon_sym_80] = ACTIONS(220), [anon_sym_fill] = ACTIONS(220), - [anon_sym_79] = ACTIONS(220), + [anon_sym_81] = ACTIONS(220), [anon_sym_try] = ACTIONS(223), - [anon_sym_80] = ACTIONS(220), + [anon_sym_82] = ACTIONS(220), [anon_sym_do] = ACTIONS(223), - [anon_sym_81] = ACTIONS(220), - [anon_sym_82] = ACTIONS(226), - [anon_sym_83] = ACTIONS(226), - [anon_sym_84] = ACTIONS(226), + [anon_sym_83] = ACTIONS(220), + [anon_sym_all] = ACTIONS(220), + [anon_sym_84] = ACTIONS(220), + [anon_sym_setinv] = ACTIONS(220), + [anon_sym_setunder] = ACTIONS(220), [anon_sym_85] = ACTIONS(226), [anon_sym_86] = ACTIONS(226), [anon_sym_87] = ACTIONS(226), @@ -8706,6 +8944,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(226), [anon_sym_91] = ACTIONS(226), [anon_sym_92] = ACTIONS(226), + [anon_sym_93] = ACTIONS(226), + [anon_sym_94] = ACTIONS(226), + [anon_sym_95] = ACTIONS(226), + [anon_sym_96] = ACTIONS(226), [sym__endOfLine] = ACTIONS(5), }, [10] = { @@ -8913,35 +9155,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(89), [anon_sym_pack] = ACTIONS(89), [anon_sym_68] = ACTIONS(89), - [anon_sym_reach] = ACTIONS(89), + [anon_sym_rectify] = ACTIONS(89), [anon_sym_69] = ACTIONS(89), + [anon_sym_this] = ACTIONS(89), + [anon_sym_70] = ACTIONS(89), + [anon_sym_recur] = ACTIONS(89), + [anon_sym_71] = ACTIONS(89), [anon_sym_fold] = ACTIONS(91), - [anon_sym_70] = ACTIONS(91), + [anon_sym_72] = ACTIONS(91), [anon_sym_table] = ACTIONS(91), - [anon_sym_71] = ACTIONS(91), + [anon_sym_73] = ACTIONS(91), [anon_sym_cross] = ACTIONS(91), - [anon_sym_72] = ACTIONS(91), + [anon_sym_74] = ACTIONS(91), [anon_sym_group] = ACTIONS(91), - [anon_sym_73] = ACTIONS(91), + [anon_sym_75] = ACTIONS(91), [anon_sym_partition] = ACTIONS(91), - [anon_sym_74] = ACTIONS(91), + [anon_sym_76] = ACTIONS(91), [anon_sym_both] = ACTIONS(91), - [anon_sym_75] = ACTIONS(91), + [anon_sym_77] = ACTIONS(91), [anon_sym_bracket] = ACTIONS(91), - [anon_sym_76] = ACTIONS(91), + [anon_sym_78] = ACTIONS(91), [anon_sym_fork] = ACTIONS(91), - [anon_sym_77] = ACTIONS(91), + [anon_sym_79] = ACTIONS(91), [anon_sym_under] = ACTIONS(91), - [anon_sym_78] = ACTIONS(91), + [anon_sym_80] = ACTIONS(91), [anon_sym_fill] = ACTIONS(91), - [anon_sym_79] = ACTIONS(91), + [anon_sym_81] = ACTIONS(91), [anon_sym_try] = ACTIONS(93), - [anon_sym_80] = ACTIONS(91), + [anon_sym_82] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), - [anon_sym_81] = ACTIONS(91), - [anon_sym_82] = ACTIONS(95), - [anon_sym_83] = ACTIONS(95), - [anon_sym_84] = ACTIONS(95), + [anon_sym_83] = ACTIONS(91), + [anon_sym_all] = ACTIONS(91), + [anon_sym_84] = ACTIONS(91), + [anon_sym_setinv] = ACTIONS(91), + [anon_sym_setunder] = ACTIONS(91), [anon_sym_85] = ACTIONS(95), [anon_sym_86] = ACTIONS(95), [anon_sym_87] = ACTIONS(95), @@ -8950,6 +9197,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(95), [anon_sym_91] = ACTIONS(95), [anon_sym_92] = ACTIONS(95), + [anon_sym_93] = ACTIONS(95), + [anon_sym_94] = ACTIONS(95), + [anon_sym_95] = ACTIONS(95), + [anon_sym_96] = ACTIONS(95), [sym__endOfLine] = ACTIONS(71), }, [11] = { @@ -9157,35 +9408,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(89), [anon_sym_pack] = ACTIONS(89), [anon_sym_68] = ACTIONS(89), - [anon_sym_reach] = ACTIONS(89), + [anon_sym_rectify] = ACTIONS(89), [anon_sym_69] = ACTIONS(89), + [anon_sym_this] = ACTIONS(89), + [anon_sym_70] = ACTIONS(89), + [anon_sym_recur] = ACTIONS(89), + [anon_sym_71] = ACTIONS(89), [anon_sym_fold] = ACTIONS(91), - [anon_sym_70] = ACTIONS(91), + [anon_sym_72] = ACTIONS(91), [anon_sym_table] = ACTIONS(91), - [anon_sym_71] = ACTIONS(91), + [anon_sym_73] = ACTIONS(91), [anon_sym_cross] = ACTIONS(91), - [anon_sym_72] = ACTIONS(91), + [anon_sym_74] = ACTIONS(91), [anon_sym_group] = ACTIONS(91), - [anon_sym_73] = ACTIONS(91), + [anon_sym_75] = ACTIONS(91), [anon_sym_partition] = ACTIONS(91), - [anon_sym_74] = ACTIONS(91), + [anon_sym_76] = ACTIONS(91), [anon_sym_both] = ACTIONS(91), - [anon_sym_75] = ACTIONS(91), + [anon_sym_77] = ACTIONS(91), [anon_sym_bracket] = ACTIONS(91), - [anon_sym_76] = ACTIONS(91), + [anon_sym_78] = ACTIONS(91), [anon_sym_fork] = ACTIONS(91), - [anon_sym_77] = ACTIONS(91), + [anon_sym_79] = ACTIONS(91), [anon_sym_under] = ACTIONS(91), - [anon_sym_78] = ACTIONS(91), + [anon_sym_80] = ACTIONS(91), [anon_sym_fill] = ACTIONS(91), - [anon_sym_79] = ACTIONS(91), + [anon_sym_81] = ACTIONS(91), [anon_sym_try] = ACTIONS(93), - [anon_sym_80] = ACTIONS(91), + [anon_sym_82] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), - [anon_sym_81] = ACTIONS(91), - [anon_sym_82] = ACTIONS(95), - [anon_sym_83] = ACTIONS(95), - [anon_sym_84] = ACTIONS(95), + [anon_sym_83] = ACTIONS(91), + [anon_sym_all] = ACTIONS(91), + [anon_sym_84] = ACTIONS(91), + [anon_sym_setinv] = ACTIONS(91), + [anon_sym_setunder] = ACTIONS(91), [anon_sym_85] = ACTIONS(95), [anon_sym_86] = ACTIONS(95), [anon_sym_87] = ACTIONS(95), @@ -9194,6 +9450,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(95), [anon_sym_91] = ACTIONS(95), [anon_sym_92] = ACTIONS(95), + [anon_sym_93] = ACTIONS(95), + [anon_sym_94] = ACTIONS(95), + [anon_sym_95] = ACTIONS(95), + [anon_sym_96] = ACTIONS(95), [sym__endOfLine] = ACTIONS(5), }, [12] = { @@ -9401,35 +9661,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(43), [anon_sym_pack] = ACTIONS(43), [anon_sym_68] = ACTIONS(43), - [anon_sym_reach] = ACTIONS(43), + [anon_sym_rectify] = ACTIONS(43), [anon_sym_69] = ACTIONS(43), + [anon_sym_this] = ACTIONS(43), + [anon_sym_70] = ACTIONS(43), + [anon_sym_recur] = ACTIONS(43), + [anon_sym_71] = ACTIONS(43), [anon_sym_fold] = ACTIONS(45), - [anon_sym_70] = ACTIONS(45), + [anon_sym_72] = ACTIONS(45), [anon_sym_table] = ACTIONS(45), - [anon_sym_71] = ACTIONS(45), + [anon_sym_73] = ACTIONS(45), [anon_sym_cross] = ACTIONS(45), - [anon_sym_72] = ACTIONS(45), + [anon_sym_74] = ACTIONS(45), [anon_sym_group] = ACTIONS(45), - [anon_sym_73] = ACTIONS(45), + [anon_sym_75] = ACTIONS(45), [anon_sym_partition] = ACTIONS(45), - [anon_sym_74] = ACTIONS(45), + [anon_sym_76] = ACTIONS(45), [anon_sym_both] = ACTIONS(45), - [anon_sym_75] = ACTIONS(45), + [anon_sym_77] = ACTIONS(45), [anon_sym_bracket] = ACTIONS(45), - [anon_sym_76] = ACTIONS(45), + [anon_sym_78] = ACTIONS(45), [anon_sym_fork] = ACTIONS(45), - [anon_sym_77] = ACTIONS(45), + [anon_sym_79] = ACTIONS(45), [anon_sym_under] = ACTIONS(45), - [anon_sym_78] = ACTIONS(45), + [anon_sym_80] = ACTIONS(45), [anon_sym_fill] = ACTIONS(45), - [anon_sym_79] = ACTIONS(45), + [anon_sym_81] = ACTIONS(45), [anon_sym_try] = ACTIONS(47), - [anon_sym_80] = ACTIONS(45), + [anon_sym_82] = ACTIONS(45), [anon_sym_do] = ACTIONS(47), - [anon_sym_81] = ACTIONS(45), - [anon_sym_82] = ACTIONS(49), - [anon_sym_83] = ACTIONS(49), - [anon_sym_84] = ACTIONS(49), + [anon_sym_83] = ACTIONS(45), + [anon_sym_all] = ACTIONS(45), + [anon_sym_84] = ACTIONS(45), + [anon_sym_setinv] = ACTIONS(45), + [anon_sym_setunder] = ACTIONS(45), [anon_sym_85] = ACTIONS(49), [anon_sym_86] = ACTIONS(49), [anon_sym_87] = ACTIONS(49), @@ -9438,6 +9703,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(49), [anon_sym_91] = ACTIONS(49), [anon_sym_92] = ACTIONS(49), + [anon_sym_93] = ACTIONS(49), + [anon_sym_94] = ACTIONS(49), + [anon_sym_95] = ACTIONS(49), + [anon_sym_96] = ACTIONS(49), [sym__endOfLine] = ACTIONS(5), }, [13] = { @@ -9645,35 +9914,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(89), [anon_sym_pack] = ACTIONS(89), [anon_sym_68] = ACTIONS(89), - [anon_sym_reach] = ACTIONS(89), + [anon_sym_rectify] = ACTIONS(89), [anon_sym_69] = ACTIONS(89), + [anon_sym_this] = ACTIONS(89), + [anon_sym_70] = ACTIONS(89), + [anon_sym_recur] = ACTIONS(89), + [anon_sym_71] = ACTIONS(89), [anon_sym_fold] = ACTIONS(91), - [anon_sym_70] = ACTIONS(91), + [anon_sym_72] = ACTIONS(91), [anon_sym_table] = ACTIONS(91), - [anon_sym_71] = ACTIONS(91), + [anon_sym_73] = ACTIONS(91), [anon_sym_cross] = ACTIONS(91), - [anon_sym_72] = ACTIONS(91), + [anon_sym_74] = ACTIONS(91), [anon_sym_group] = ACTIONS(91), - [anon_sym_73] = ACTIONS(91), + [anon_sym_75] = ACTIONS(91), [anon_sym_partition] = ACTIONS(91), - [anon_sym_74] = ACTIONS(91), + [anon_sym_76] = ACTIONS(91), [anon_sym_both] = ACTIONS(91), - [anon_sym_75] = ACTIONS(91), + [anon_sym_77] = ACTIONS(91), [anon_sym_bracket] = ACTIONS(91), - [anon_sym_76] = ACTIONS(91), + [anon_sym_78] = ACTIONS(91), [anon_sym_fork] = ACTIONS(91), - [anon_sym_77] = ACTIONS(91), + [anon_sym_79] = ACTIONS(91), [anon_sym_under] = ACTIONS(91), - [anon_sym_78] = ACTIONS(91), + [anon_sym_80] = ACTIONS(91), [anon_sym_fill] = ACTIONS(91), - [anon_sym_79] = ACTIONS(91), + [anon_sym_81] = ACTIONS(91), [anon_sym_try] = ACTIONS(93), - [anon_sym_80] = ACTIONS(91), + [anon_sym_82] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), - [anon_sym_81] = ACTIONS(91), - [anon_sym_82] = ACTIONS(95), - [anon_sym_83] = ACTIONS(95), - [anon_sym_84] = ACTIONS(95), + [anon_sym_83] = ACTIONS(91), + [anon_sym_all] = ACTIONS(91), + [anon_sym_84] = ACTIONS(91), + [anon_sym_setinv] = ACTIONS(91), + [anon_sym_setunder] = ACTIONS(91), [anon_sym_85] = ACTIONS(95), [anon_sym_86] = ACTIONS(95), [anon_sym_87] = ACTIONS(95), @@ -9682,6 +9956,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(95), [anon_sym_91] = ACTIONS(95), [anon_sym_92] = ACTIONS(95), + [anon_sym_93] = ACTIONS(95), + [anon_sym_94] = ACTIONS(95), + [anon_sym_95] = ACTIONS(95), + [anon_sym_96] = ACTIONS(95), [sym__endOfLine] = ACTIONS(5), }, [14] = { @@ -9889,35 +10167,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(89), [anon_sym_pack] = ACTIONS(89), [anon_sym_68] = ACTIONS(89), - [anon_sym_reach] = ACTIONS(89), + [anon_sym_rectify] = ACTIONS(89), [anon_sym_69] = ACTIONS(89), + [anon_sym_this] = ACTIONS(89), + [anon_sym_70] = ACTIONS(89), + [anon_sym_recur] = ACTIONS(89), + [anon_sym_71] = ACTIONS(89), [anon_sym_fold] = ACTIONS(91), - [anon_sym_70] = ACTIONS(91), + [anon_sym_72] = ACTIONS(91), [anon_sym_table] = ACTIONS(91), - [anon_sym_71] = ACTIONS(91), + [anon_sym_73] = ACTIONS(91), [anon_sym_cross] = ACTIONS(91), - [anon_sym_72] = ACTIONS(91), + [anon_sym_74] = ACTIONS(91), [anon_sym_group] = ACTIONS(91), - [anon_sym_73] = ACTIONS(91), + [anon_sym_75] = ACTIONS(91), [anon_sym_partition] = ACTIONS(91), - [anon_sym_74] = ACTIONS(91), + [anon_sym_76] = ACTIONS(91), [anon_sym_both] = ACTIONS(91), - [anon_sym_75] = ACTIONS(91), + [anon_sym_77] = ACTIONS(91), [anon_sym_bracket] = ACTIONS(91), - [anon_sym_76] = ACTIONS(91), + [anon_sym_78] = ACTIONS(91), [anon_sym_fork] = ACTIONS(91), - [anon_sym_77] = ACTIONS(91), + [anon_sym_79] = ACTIONS(91), [anon_sym_under] = ACTIONS(91), - [anon_sym_78] = ACTIONS(91), + [anon_sym_80] = ACTIONS(91), [anon_sym_fill] = ACTIONS(91), - [anon_sym_79] = ACTIONS(91), + [anon_sym_81] = ACTIONS(91), [anon_sym_try] = ACTIONS(93), - [anon_sym_80] = ACTIONS(91), + [anon_sym_82] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), - [anon_sym_81] = ACTIONS(91), - [anon_sym_82] = ACTIONS(95), - [anon_sym_83] = ACTIONS(95), - [anon_sym_84] = ACTIONS(95), + [anon_sym_83] = ACTIONS(91), + [anon_sym_all] = ACTIONS(91), + [anon_sym_84] = ACTIONS(91), + [anon_sym_setinv] = ACTIONS(91), + [anon_sym_setunder] = ACTIONS(91), [anon_sym_85] = ACTIONS(95), [anon_sym_86] = ACTIONS(95), [anon_sym_87] = ACTIONS(95), @@ -9926,6 +10209,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(95), [anon_sym_91] = ACTIONS(95), [anon_sym_92] = ACTIONS(95), + [anon_sym_93] = ACTIONS(95), + [anon_sym_94] = ACTIONS(95), + [anon_sym_95] = ACTIONS(95), + [anon_sym_96] = ACTIONS(95), [sym__endOfLine] = ACTIONS(5), }, [15] = { @@ -10133,35 +10420,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(89), [anon_sym_pack] = ACTIONS(89), [anon_sym_68] = ACTIONS(89), - [anon_sym_reach] = ACTIONS(89), + [anon_sym_rectify] = ACTIONS(89), [anon_sym_69] = ACTIONS(89), + [anon_sym_this] = ACTIONS(89), + [anon_sym_70] = ACTIONS(89), + [anon_sym_recur] = ACTIONS(89), + [anon_sym_71] = ACTIONS(89), [anon_sym_fold] = ACTIONS(91), - [anon_sym_70] = ACTIONS(91), + [anon_sym_72] = ACTIONS(91), [anon_sym_table] = ACTIONS(91), - [anon_sym_71] = ACTIONS(91), + [anon_sym_73] = ACTIONS(91), [anon_sym_cross] = ACTIONS(91), - [anon_sym_72] = ACTIONS(91), + [anon_sym_74] = ACTIONS(91), [anon_sym_group] = ACTIONS(91), - [anon_sym_73] = ACTIONS(91), + [anon_sym_75] = ACTIONS(91), [anon_sym_partition] = ACTIONS(91), - [anon_sym_74] = ACTIONS(91), + [anon_sym_76] = ACTIONS(91), [anon_sym_both] = ACTIONS(91), - [anon_sym_75] = ACTIONS(91), + [anon_sym_77] = ACTIONS(91), [anon_sym_bracket] = ACTIONS(91), - [anon_sym_76] = ACTIONS(91), + [anon_sym_78] = ACTIONS(91), [anon_sym_fork] = ACTIONS(91), - [anon_sym_77] = ACTIONS(91), + [anon_sym_79] = ACTIONS(91), [anon_sym_under] = ACTIONS(91), - [anon_sym_78] = ACTIONS(91), + [anon_sym_80] = ACTIONS(91), [anon_sym_fill] = ACTIONS(91), - [anon_sym_79] = ACTIONS(91), + [anon_sym_81] = ACTIONS(91), [anon_sym_try] = ACTIONS(93), - [anon_sym_80] = ACTIONS(91), + [anon_sym_82] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), - [anon_sym_81] = ACTIONS(91), - [anon_sym_82] = ACTIONS(95), - [anon_sym_83] = ACTIONS(95), - [anon_sym_84] = ACTIONS(95), + [anon_sym_83] = ACTIONS(91), + [anon_sym_all] = ACTIONS(91), + [anon_sym_84] = ACTIONS(91), + [anon_sym_setinv] = ACTIONS(91), + [anon_sym_setunder] = ACTIONS(91), [anon_sym_85] = ACTIONS(95), [anon_sym_86] = ACTIONS(95), [anon_sym_87] = ACTIONS(95), @@ -10170,6 +10462,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(95), [anon_sym_91] = ACTIONS(95), [anon_sym_92] = ACTIONS(95), + [anon_sym_93] = ACTIONS(95), + [anon_sym_94] = ACTIONS(95), + [anon_sym_95] = ACTIONS(95), + [anon_sym_96] = ACTIONS(95), [sym__endOfLine] = ACTIONS(5), }, [16] = { @@ -10376,35 +10672,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(89), [anon_sym_pack] = ACTIONS(89), [anon_sym_68] = ACTIONS(89), - [anon_sym_reach] = ACTIONS(89), + [anon_sym_rectify] = ACTIONS(89), [anon_sym_69] = ACTIONS(89), + [anon_sym_this] = ACTIONS(89), + [anon_sym_70] = ACTIONS(89), + [anon_sym_recur] = ACTIONS(89), + [anon_sym_71] = ACTIONS(89), [anon_sym_fold] = ACTIONS(91), - [anon_sym_70] = ACTIONS(91), + [anon_sym_72] = ACTIONS(91), [anon_sym_table] = ACTIONS(91), - [anon_sym_71] = ACTIONS(91), + [anon_sym_73] = ACTIONS(91), [anon_sym_cross] = ACTIONS(91), - [anon_sym_72] = ACTIONS(91), + [anon_sym_74] = ACTIONS(91), [anon_sym_group] = ACTIONS(91), - [anon_sym_73] = ACTIONS(91), + [anon_sym_75] = ACTIONS(91), [anon_sym_partition] = ACTIONS(91), - [anon_sym_74] = ACTIONS(91), + [anon_sym_76] = ACTIONS(91), [anon_sym_both] = ACTIONS(91), - [anon_sym_75] = ACTIONS(91), + [anon_sym_77] = ACTIONS(91), [anon_sym_bracket] = ACTIONS(91), - [anon_sym_76] = ACTIONS(91), + [anon_sym_78] = ACTIONS(91), [anon_sym_fork] = ACTIONS(91), - [anon_sym_77] = ACTIONS(91), + [anon_sym_79] = ACTIONS(91), [anon_sym_under] = ACTIONS(91), - [anon_sym_78] = ACTIONS(91), + [anon_sym_80] = ACTIONS(91), [anon_sym_fill] = ACTIONS(91), - [anon_sym_79] = ACTIONS(91), + [anon_sym_81] = ACTIONS(91), [anon_sym_try] = ACTIONS(93), - [anon_sym_80] = ACTIONS(91), + [anon_sym_82] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), - [anon_sym_81] = ACTIONS(91), - [anon_sym_82] = ACTIONS(95), - [anon_sym_83] = ACTIONS(95), - [anon_sym_84] = ACTIONS(95), + [anon_sym_83] = ACTIONS(91), + [anon_sym_all] = ACTIONS(91), + [anon_sym_84] = ACTIONS(91), + [anon_sym_setinv] = ACTIONS(91), + [anon_sym_setunder] = ACTIONS(91), [anon_sym_85] = ACTIONS(95), [anon_sym_86] = ACTIONS(95), [anon_sym_87] = ACTIONS(95), @@ -10413,6 +10714,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(95), [anon_sym_91] = ACTIONS(95), [anon_sym_92] = ACTIONS(95), + [anon_sym_93] = ACTIONS(95), + [anon_sym_94] = ACTIONS(95), + [anon_sym_95] = ACTIONS(95), + [anon_sym_96] = ACTIONS(95), [sym__endOfLine] = ACTIONS(5), }, [17] = { @@ -10619,35 +10924,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(89), [anon_sym_pack] = ACTIONS(89), [anon_sym_68] = ACTIONS(89), - [anon_sym_reach] = ACTIONS(89), + [anon_sym_rectify] = ACTIONS(89), [anon_sym_69] = ACTIONS(89), + [anon_sym_this] = ACTIONS(89), + [anon_sym_70] = ACTIONS(89), + [anon_sym_recur] = ACTIONS(89), + [anon_sym_71] = ACTIONS(89), [anon_sym_fold] = ACTIONS(91), - [anon_sym_70] = ACTIONS(91), + [anon_sym_72] = ACTIONS(91), [anon_sym_table] = ACTIONS(91), - [anon_sym_71] = ACTIONS(91), + [anon_sym_73] = ACTIONS(91), [anon_sym_cross] = ACTIONS(91), - [anon_sym_72] = ACTIONS(91), + [anon_sym_74] = ACTIONS(91), [anon_sym_group] = ACTIONS(91), - [anon_sym_73] = ACTIONS(91), + [anon_sym_75] = ACTIONS(91), [anon_sym_partition] = ACTIONS(91), - [anon_sym_74] = ACTIONS(91), + [anon_sym_76] = ACTIONS(91), [anon_sym_both] = ACTIONS(91), - [anon_sym_75] = ACTIONS(91), + [anon_sym_77] = ACTIONS(91), [anon_sym_bracket] = ACTIONS(91), - [anon_sym_76] = ACTIONS(91), + [anon_sym_78] = ACTIONS(91), [anon_sym_fork] = ACTIONS(91), - [anon_sym_77] = ACTIONS(91), + [anon_sym_79] = ACTIONS(91), [anon_sym_under] = ACTIONS(91), - [anon_sym_78] = ACTIONS(91), + [anon_sym_80] = ACTIONS(91), [anon_sym_fill] = ACTIONS(91), - [anon_sym_79] = ACTIONS(91), + [anon_sym_81] = ACTIONS(91), [anon_sym_try] = ACTIONS(93), - [anon_sym_80] = ACTIONS(91), + [anon_sym_82] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), - [anon_sym_81] = ACTIONS(91), - [anon_sym_82] = ACTIONS(95), - [anon_sym_83] = ACTIONS(95), - [anon_sym_84] = ACTIONS(95), + [anon_sym_83] = ACTIONS(91), + [anon_sym_all] = ACTIONS(91), + [anon_sym_84] = ACTIONS(91), + [anon_sym_setinv] = ACTIONS(91), + [anon_sym_setunder] = ACTIONS(91), [anon_sym_85] = ACTIONS(95), [anon_sym_86] = ACTIONS(95), [anon_sym_87] = ACTIONS(95), @@ -10656,6 +10966,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(95), [anon_sym_91] = ACTIONS(95), [anon_sym_92] = ACTIONS(95), + [anon_sym_93] = ACTIONS(95), + [anon_sym_94] = ACTIONS(95), + [anon_sym_95] = ACTIONS(95), + [anon_sym_96] = ACTIONS(95), [sym__endOfLine] = ACTIONS(237), }, [18] = { @@ -10862,35 +11176,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(271), [anon_sym_pack] = ACTIONS(271), [anon_sym_68] = ACTIONS(271), - [anon_sym_reach] = ACTIONS(271), + [anon_sym_rectify] = ACTIONS(271), [anon_sym_69] = ACTIONS(271), + [anon_sym_this] = ACTIONS(271), + [anon_sym_70] = ACTIONS(271), + [anon_sym_recur] = ACTIONS(271), + [anon_sym_71] = ACTIONS(271), [anon_sym_fold] = ACTIONS(273), - [anon_sym_70] = ACTIONS(273), + [anon_sym_72] = ACTIONS(273), [anon_sym_table] = ACTIONS(273), - [anon_sym_71] = ACTIONS(273), + [anon_sym_73] = ACTIONS(273), [anon_sym_cross] = ACTIONS(273), - [anon_sym_72] = ACTIONS(273), + [anon_sym_74] = ACTIONS(273), [anon_sym_group] = ACTIONS(273), - [anon_sym_73] = ACTIONS(273), + [anon_sym_75] = ACTIONS(273), [anon_sym_partition] = ACTIONS(273), - [anon_sym_74] = ACTIONS(273), + [anon_sym_76] = ACTIONS(273), [anon_sym_both] = ACTIONS(273), - [anon_sym_75] = ACTIONS(273), + [anon_sym_77] = ACTIONS(273), [anon_sym_bracket] = ACTIONS(273), - [anon_sym_76] = ACTIONS(273), + [anon_sym_78] = ACTIONS(273), [anon_sym_fork] = ACTIONS(273), - [anon_sym_77] = ACTIONS(273), + [anon_sym_79] = ACTIONS(273), [anon_sym_under] = ACTIONS(273), - [anon_sym_78] = ACTIONS(273), + [anon_sym_80] = ACTIONS(273), [anon_sym_fill] = ACTIONS(273), - [anon_sym_79] = ACTIONS(273), + [anon_sym_81] = ACTIONS(273), [anon_sym_try] = ACTIONS(275), - [anon_sym_80] = ACTIONS(273), + [anon_sym_82] = ACTIONS(273), [anon_sym_do] = ACTIONS(275), - [anon_sym_81] = ACTIONS(273), - [anon_sym_82] = ACTIONS(277), - [anon_sym_83] = ACTIONS(277), - [anon_sym_84] = ACTIONS(277), + [anon_sym_83] = ACTIONS(273), + [anon_sym_all] = ACTIONS(273), + [anon_sym_84] = ACTIONS(273), + [anon_sym_setinv] = ACTIONS(273), + [anon_sym_setunder] = ACTIONS(273), [anon_sym_85] = ACTIONS(277), [anon_sym_86] = ACTIONS(277), [anon_sym_87] = ACTIONS(277), @@ -10899,6 +11218,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(277), [anon_sym_91] = ACTIONS(277), [anon_sym_92] = ACTIONS(277), + [anon_sym_93] = ACTIONS(277), + [anon_sym_94] = ACTIONS(277), + [anon_sym_95] = ACTIONS(277), + [anon_sym_96] = ACTIONS(277), [sym__endOfLine] = ACTIONS(5), }, [19] = { @@ -11105,35 +11428,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(89), [anon_sym_pack] = ACTIONS(89), [anon_sym_68] = ACTIONS(89), - [anon_sym_reach] = ACTIONS(89), + [anon_sym_rectify] = ACTIONS(89), [anon_sym_69] = ACTIONS(89), + [anon_sym_this] = ACTIONS(89), + [anon_sym_70] = ACTIONS(89), + [anon_sym_recur] = ACTIONS(89), + [anon_sym_71] = ACTIONS(89), [anon_sym_fold] = ACTIONS(91), - [anon_sym_70] = ACTIONS(91), + [anon_sym_72] = ACTIONS(91), [anon_sym_table] = ACTIONS(91), - [anon_sym_71] = ACTIONS(91), + [anon_sym_73] = ACTIONS(91), [anon_sym_cross] = ACTIONS(91), - [anon_sym_72] = ACTIONS(91), + [anon_sym_74] = ACTIONS(91), [anon_sym_group] = ACTIONS(91), - [anon_sym_73] = ACTIONS(91), + [anon_sym_75] = ACTIONS(91), [anon_sym_partition] = ACTIONS(91), - [anon_sym_74] = ACTIONS(91), + [anon_sym_76] = ACTIONS(91), [anon_sym_both] = ACTIONS(91), - [anon_sym_75] = ACTIONS(91), + [anon_sym_77] = ACTIONS(91), [anon_sym_bracket] = ACTIONS(91), - [anon_sym_76] = ACTIONS(91), + [anon_sym_78] = ACTIONS(91), [anon_sym_fork] = ACTIONS(91), - [anon_sym_77] = ACTIONS(91), + [anon_sym_79] = ACTIONS(91), [anon_sym_under] = ACTIONS(91), - [anon_sym_78] = ACTIONS(91), + [anon_sym_80] = ACTIONS(91), [anon_sym_fill] = ACTIONS(91), - [anon_sym_79] = ACTIONS(91), + [anon_sym_81] = ACTIONS(91), [anon_sym_try] = ACTIONS(93), - [anon_sym_80] = ACTIONS(91), + [anon_sym_82] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), - [anon_sym_81] = ACTIONS(91), - [anon_sym_82] = ACTIONS(95), - [anon_sym_83] = ACTIONS(95), - [anon_sym_84] = ACTIONS(95), + [anon_sym_83] = ACTIONS(91), + [anon_sym_all] = ACTIONS(91), + [anon_sym_84] = ACTIONS(91), + [anon_sym_setinv] = ACTIONS(91), + [anon_sym_setunder] = ACTIONS(91), [anon_sym_85] = ACTIONS(95), [anon_sym_86] = ACTIONS(95), [anon_sym_87] = ACTIONS(95), @@ -11142,6 +11470,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(95), [anon_sym_91] = ACTIONS(95), [anon_sym_92] = ACTIONS(95), + [anon_sym_93] = ACTIONS(95), + [anon_sym_94] = ACTIONS(95), + [anon_sym_95] = ACTIONS(95), + [anon_sym_96] = ACTIONS(95), [sym__endOfLine] = ACTIONS(5), }, [20] = { @@ -11348,35 +11680,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(89), [anon_sym_pack] = ACTIONS(89), [anon_sym_68] = ACTIONS(89), - [anon_sym_reach] = ACTIONS(89), + [anon_sym_rectify] = ACTIONS(89), [anon_sym_69] = ACTIONS(89), + [anon_sym_this] = ACTIONS(89), + [anon_sym_70] = ACTIONS(89), + [anon_sym_recur] = ACTIONS(89), + [anon_sym_71] = ACTIONS(89), [anon_sym_fold] = ACTIONS(91), - [anon_sym_70] = ACTIONS(91), + [anon_sym_72] = ACTIONS(91), [anon_sym_table] = ACTIONS(91), - [anon_sym_71] = ACTIONS(91), + [anon_sym_73] = ACTIONS(91), [anon_sym_cross] = ACTIONS(91), - [anon_sym_72] = ACTIONS(91), + [anon_sym_74] = ACTIONS(91), [anon_sym_group] = ACTIONS(91), - [anon_sym_73] = ACTIONS(91), + [anon_sym_75] = ACTIONS(91), [anon_sym_partition] = ACTIONS(91), - [anon_sym_74] = ACTIONS(91), + [anon_sym_76] = ACTIONS(91), [anon_sym_both] = ACTIONS(91), - [anon_sym_75] = ACTIONS(91), + [anon_sym_77] = ACTIONS(91), [anon_sym_bracket] = ACTIONS(91), - [anon_sym_76] = ACTIONS(91), + [anon_sym_78] = ACTIONS(91), [anon_sym_fork] = ACTIONS(91), - [anon_sym_77] = ACTIONS(91), + [anon_sym_79] = ACTIONS(91), [anon_sym_under] = ACTIONS(91), - [anon_sym_78] = ACTIONS(91), + [anon_sym_80] = ACTIONS(91), [anon_sym_fill] = ACTIONS(91), - [anon_sym_79] = ACTIONS(91), + [anon_sym_81] = ACTIONS(91), [anon_sym_try] = ACTIONS(93), - [anon_sym_80] = ACTIONS(91), + [anon_sym_82] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), - [anon_sym_81] = ACTIONS(91), - [anon_sym_82] = ACTIONS(95), - [anon_sym_83] = ACTIONS(95), - [anon_sym_84] = ACTIONS(95), + [anon_sym_83] = ACTIONS(91), + [anon_sym_all] = ACTIONS(91), + [anon_sym_84] = ACTIONS(91), + [anon_sym_setinv] = ACTIONS(91), + [anon_sym_setunder] = ACTIONS(91), [anon_sym_85] = ACTIONS(95), [anon_sym_86] = ACTIONS(95), [anon_sym_87] = ACTIONS(95), @@ -11385,6 +11722,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(95), [anon_sym_91] = ACTIONS(95), [anon_sym_92] = ACTIONS(95), + [anon_sym_93] = ACTIONS(95), + [anon_sym_94] = ACTIONS(95), + [anon_sym_95] = ACTIONS(95), + [anon_sym_96] = ACTIONS(95), [sym__endOfLine] = ACTIONS(5), }, [21] = { @@ -11591,35 +11932,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(89), [anon_sym_pack] = ACTIONS(89), [anon_sym_68] = ACTIONS(89), - [anon_sym_reach] = ACTIONS(89), + [anon_sym_rectify] = ACTIONS(89), [anon_sym_69] = ACTIONS(89), + [anon_sym_this] = ACTIONS(89), + [anon_sym_70] = ACTIONS(89), + [anon_sym_recur] = ACTIONS(89), + [anon_sym_71] = ACTIONS(89), [anon_sym_fold] = ACTIONS(91), - [anon_sym_70] = ACTIONS(91), + [anon_sym_72] = ACTIONS(91), [anon_sym_table] = ACTIONS(91), - [anon_sym_71] = ACTIONS(91), + [anon_sym_73] = ACTIONS(91), [anon_sym_cross] = ACTIONS(91), - [anon_sym_72] = ACTIONS(91), + [anon_sym_74] = ACTIONS(91), [anon_sym_group] = ACTIONS(91), - [anon_sym_73] = ACTIONS(91), + [anon_sym_75] = ACTIONS(91), [anon_sym_partition] = ACTIONS(91), - [anon_sym_74] = ACTIONS(91), + [anon_sym_76] = ACTIONS(91), [anon_sym_both] = ACTIONS(91), - [anon_sym_75] = ACTIONS(91), + [anon_sym_77] = ACTIONS(91), [anon_sym_bracket] = ACTIONS(91), - [anon_sym_76] = ACTIONS(91), + [anon_sym_78] = ACTIONS(91), [anon_sym_fork] = ACTIONS(91), - [anon_sym_77] = ACTIONS(91), + [anon_sym_79] = ACTIONS(91), [anon_sym_under] = ACTIONS(91), - [anon_sym_78] = ACTIONS(91), + [anon_sym_80] = ACTIONS(91), [anon_sym_fill] = ACTIONS(91), - [anon_sym_79] = ACTIONS(91), + [anon_sym_81] = ACTIONS(91), [anon_sym_try] = ACTIONS(93), - [anon_sym_80] = ACTIONS(91), + [anon_sym_82] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), - [anon_sym_81] = ACTIONS(91), - [anon_sym_82] = ACTIONS(95), - [anon_sym_83] = ACTIONS(95), - [anon_sym_84] = ACTIONS(95), + [anon_sym_83] = ACTIONS(91), + [anon_sym_all] = ACTIONS(91), + [anon_sym_84] = ACTIONS(91), + [anon_sym_setinv] = ACTIONS(91), + [anon_sym_setunder] = ACTIONS(91), [anon_sym_85] = ACTIONS(95), [anon_sym_86] = ACTIONS(95), [anon_sym_87] = ACTIONS(95), @@ -11628,6 +11974,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(95), [anon_sym_91] = ACTIONS(95), [anon_sym_92] = ACTIONS(95), + [anon_sym_93] = ACTIONS(95), + [anon_sym_94] = ACTIONS(95), + [anon_sym_95] = ACTIONS(95), + [anon_sym_96] = ACTIONS(95), [sym__endOfLine] = ACTIONS(283), }, [22] = { @@ -11834,35 +12184,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(333), [anon_sym_pack] = ACTIONS(333), [anon_sym_68] = ACTIONS(333), - [anon_sym_reach] = ACTIONS(333), + [anon_sym_rectify] = ACTIONS(333), [anon_sym_69] = ACTIONS(333), + [anon_sym_this] = ACTIONS(333), + [anon_sym_70] = ACTIONS(333), + [anon_sym_recur] = ACTIONS(333), + [anon_sym_71] = ACTIONS(333), [anon_sym_fold] = ACTIONS(336), - [anon_sym_70] = ACTIONS(336), + [anon_sym_72] = ACTIONS(336), [anon_sym_table] = ACTIONS(336), - [anon_sym_71] = ACTIONS(336), + [anon_sym_73] = ACTIONS(336), [anon_sym_cross] = ACTIONS(336), - [anon_sym_72] = ACTIONS(336), + [anon_sym_74] = ACTIONS(336), [anon_sym_group] = ACTIONS(336), - [anon_sym_73] = ACTIONS(336), + [anon_sym_75] = ACTIONS(336), [anon_sym_partition] = ACTIONS(336), - [anon_sym_74] = ACTIONS(336), + [anon_sym_76] = ACTIONS(336), [anon_sym_both] = ACTIONS(336), - [anon_sym_75] = ACTIONS(336), + [anon_sym_77] = ACTIONS(336), [anon_sym_bracket] = ACTIONS(336), - [anon_sym_76] = ACTIONS(336), + [anon_sym_78] = ACTIONS(336), [anon_sym_fork] = ACTIONS(336), - [anon_sym_77] = ACTIONS(336), + [anon_sym_79] = ACTIONS(336), [anon_sym_under] = ACTIONS(336), - [anon_sym_78] = ACTIONS(336), + [anon_sym_80] = ACTIONS(336), [anon_sym_fill] = ACTIONS(336), - [anon_sym_79] = ACTIONS(336), + [anon_sym_81] = ACTIONS(336), [anon_sym_try] = ACTIONS(339), - [anon_sym_80] = ACTIONS(336), + [anon_sym_82] = ACTIONS(336), [anon_sym_do] = ACTIONS(339), - [anon_sym_81] = ACTIONS(336), - [anon_sym_82] = ACTIONS(342), - [anon_sym_83] = ACTIONS(342), - [anon_sym_84] = ACTIONS(342), + [anon_sym_83] = ACTIONS(336), + [anon_sym_all] = ACTIONS(336), + [anon_sym_84] = ACTIONS(336), + [anon_sym_setinv] = ACTIONS(336), + [anon_sym_setunder] = ACTIONS(336), [anon_sym_85] = ACTIONS(342), [anon_sym_86] = ACTIONS(342), [anon_sym_87] = ACTIONS(342), @@ -11871,6 +12226,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(342), [anon_sym_91] = ACTIONS(342), [anon_sym_92] = ACTIONS(342), + [anon_sym_93] = ACTIONS(342), + [anon_sym_94] = ACTIONS(342), + [anon_sym_95] = ACTIONS(342), + [anon_sym_96] = ACTIONS(342), [sym__endOfLine] = ACTIONS(5), }, [23] = { @@ -12077,35 +12436,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(89), [anon_sym_pack] = ACTIONS(89), [anon_sym_68] = ACTIONS(89), - [anon_sym_reach] = ACTIONS(89), + [anon_sym_rectify] = ACTIONS(89), [anon_sym_69] = ACTIONS(89), + [anon_sym_this] = ACTIONS(89), + [anon_sym_70] = ACTIONS(89), + [anon_sym_recur] = ACTIONS(89), + [anon_sym_71] = ACTIONS(89), [anon_sym_fold] = ACTIONS(91), - [anon_sym_70] = ACTIONS(91), + [anon_sym_72] = ACTIONS(91), [anon_sym_table] = ACTIONS(91), - [anon_sym_71] = ACTIONS(91), + [anon_sym_73] = ACTIONS(91), [anon_sym_cross] = ACTIONS(91), - [anon_sym_72] = ACTIONS(91), + [anon_sym_74] = ACTIONS(91), [anon_sym_group] = ACTIONS(91), - [anon_sym_73] = ACTIONS(91), + [anon_sym_75] = ACTIONS(91), [anon_sym_partition] = ACTIONS(91), - [anon_sym_74] = ACTIONS(91), + [anon_sym_76] = ACTIONS(91), [anon_sym_both] = ACTIONS(91), - [anon_sym_75] = ACTIONS(91), + [anon_sym_77] = ACTIONS(91), [anon_sym_bracket] = ACTIONS(91), - [anon_sym_76] = ACTIONS(91), + [anon_sym_78] = ACTIONS(91), [anon_sym_fork] = ACTIONS(91), - [anon_sym_77] = ACTIONS(91), + [anon_sym_79] = ACTIONS(91), [anon_sym_under] = ACTIONS(91), - [anon_sym_78] = ACTIONS(91), + [anon_sym_80] = ACTIONS(91), [anon_sym_fill] = ACTIONS(91), - [anon_sym_79] = ACTIONS(91), + [anon_sym_81] = ACTIONS(91), [anon_sym_try] = ACTIONS(93), - [anon_sym_80] = ACTIONS(91), + [anon_sym_82] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), - [anon_sym_81] = ACTIONS(91), - [anon_sym_82] = ACTIONS(95), - [anon_sym_83] = ACTIONS(95), - [anon_sym_84] = ACTIONS(95), + [anon_sym_83] = ACTIONS(91), + [anon_sym_all] = ACTIONS(91), + [anon_sym_84] = ACTIONS(91), + [anon_sym_setinv] = ACTIONS(91), + [anon_sym_setunder] = ACTIONS(91), [anon_sym_85] = ACTIONS(95), [anon_sym_86] = ACTIONS(95), [anon_sym_87] = ACTIONS(95), @@ -12114,6 +12478,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(95), [anon_sym_91] = ACTIONS(95), [anon_sym_92] = ACTIONS(95), + [anon_sym_93] = ACTIONS(95), + [anon_sym_94] = ACTIONS(95), + [anon_sym_95] = ACTIONS(95), + [anon_sym_96] = ACTIONS(95), [sym__endOfLine] = ACTIONS(345), }, [24] = { @@ -12320,35 +12688,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(271), [anon_sym_pack] = ACTIONS(271), [anon_sym_68] = ACTIONS(271), - [anon_sym_reach] = ACTIONS(271), + [anon_sym_rectify] = ACTIONS(271), [anon_sym_69] = ACTIONS(271), + [anon_sym_this] = ACTIONS(271), + [anon_sym_70] = ACTIONS(271), + [anon_sym_recur] = ACTIONS(271), + [anon_sym_71] = ACTIONS(271), [anon_sym_fold] = ACTIONS(273), - [anon_sym_70] = ACTIONS(273), + [anon_sym_72] = ACTIONS(273), [anon_sym_table] = ACTIONS(273), - [anon_sym_71] = ACTIONS(273), + [anon_sym_73] = ACTIONS(273), [anon_sym_cross] = ACTIONS(273), - [anon_sym_72] = ACTIONS(273), + [anon_sym_74] = ACTIONS(273), [anon_sym_group] = ACTIONS(273), - [anon_sym_73] = ACTIONS(273), + [anon_sym_75] = ACTIONS(273), [anon_sym_partition] = ACTIONS(273), - [anon_sym_74] = ACTIONS(273), + [anon_sym_76] = ACTIONS(273), [anon_sym_both] = ACTIONS(273), - [anon_sym_75] = ACTIONS(273), + [anon_sym_77] = ACTIONS(273), [anon_sym_bracket] = ACTIONS(273), - [anon_sym_76] = ACTIONS(273), + [anon_sym_78] = ACTIONS(273), [anon_sym_fork] = ACTIONS(273), - [anon_sym_77] = ACTIONS(273), + [anon_sym_79] = ACTIONS(273), [anon_sym_under] = ACTIONS(273), - [anon_sym_78] = ACTIONS(273), + [anon_sym_80] = ACTIONS(273), [anon_sym_fill] = ACTIONS(273), - [anon_sym_79] = ACTIONS(273), + [anon_sym_81] = ACTIONS(273), [anon_sym_try] = ACTIONS(275), - [anon_sym_80] = ACTIONS(273), + [anon_sym_82] = ACTIONS(273), [anon_sym_do] = ACTIONS(275), - [anon_sym_81] = ACTIONS(273), - [anon_sym_82] = ACTIONS(277), - [anon_sym_83] = ACTIONS(277), - [anon_sym_84] = ACTIONS(277), + [anon_sym_83] = ACTIONS(273), + [anon_sym_all] = ACTIONS(273), + [anon_sym_84] = ACTIONS(273), + [anon_sym_setinv] = ACTIONS(273), + [anon_sym_setunder] = ACTIONS(273), [anon_sym_85] = ACTIONS(277), [anon_sym_86] = ACTIONS(277), [anon_sym_87] = ACTIONS(277), @@ -12357,6 +12730,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(277), [anon_sym_91] = ACTIONS(277), [anon_sym_92] = ACTIONS(277), + [anon_sym_93] = ACTIONS(277), + [anon_sym_94] = ACTIONS(277), + [anon_sym_95] = ACTIONS(277), + [anon_sym_96] = ACTIONS(277), [sym__endOfLine] = ACTIONS(5), }, [25] = { @@ -12563,35 +12940,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(43), [anon_sym_pack] = ACTIONS(43), [anon_sym_68] = ACTIONS(43), - [anon_sym_reach] = ACTIONS(43), + [anon_sym_rectify] = ACTIONS(43), [anon_sym_69] = ACTIONS(43), + [anon_sym_this] = ACTIONS(43), + [anon_sym_70] = ACTIONS(43), + [anon_sym_recur] = ACTIONS(43), + [anon_sym_71] = ACTIONS(43), [anon_sym_fold] = ACTIONS(45), - [anon_sym_70] = ACTIONS(45), + [anon_sym_72] = ACTIONS(45), [anon_sym_table] = ACTIONS(45), - [anon_sym_71] = ACTIONS(45), + [anon_sym_73] = ACTIONS(45), [anon_sym_cross] = ACTIONS(45), - [anon_sym_72] = ACTIONS(45), + [anon_sym_74] = ACTIONS(45), [anon_sym_group] = ACTIONS(45), - [anon_sym_73] = ACTIONS(45), + [anon_sym_75] = ACTIONS(45), [anon_sym_partition] = ACTIONS(45), - [anon_sym_74] = ACTIONS(45), + [anon_sym_76] = ACTIONS(45), [anon_sym_both] = ACTIONS(45), - [anon_sym_75] = ACTIONS(45), + [anon_sym_77] = ACTIONS(45), [anon_sym_bracket] = ACTIONS(45), - [anon_sym_76] = ACTIONS(45), + [anon_sym_78] = ACTIONS(45), [anon_sym_fork] = ACTIONS(45), - [anon_sym_77] = ACTIONS(45), + [anon_sym_79] = ACTIONS(45), [anon_sym_under] = ACTIONS(45), - [anon_sym_78] = ACTIONS(45), + [anon_sym_80] = ACTIONS(45), [anon_sym_fill] = ACTIONS(45), - [anon_sym_79] = ACTIONS(45), + [anon_sym_81] = ACTIONS(45), [anon_sym_try] = ACTIONS(47), - [anon_sym_80] = ACTIONS(45), + [anon_sym_82] = ACTIONS(45), [anon_sym_do] = ACTIONS(47), - [anon_sym_81] = ACTIONS(45), - [anon_sym_82] = ACTIONS(49), - [anon_sym_83] = ACTIONS(49), - [anon_sym_84] = ACTIONS(49), + [anon_sym_83] = ACTIONS(45), + [anon_sym_all] = ACTIONS(45), + [anon_sym_84] = ACTIONS(45), + [anon_sym_setinv] = ACTIONS(45), + [anon_sym_setunder] = ACTIONS(45), [anon_sym_85] = ACTIONS(49), [anon_sym_86] = ACTIONS(49), [anon_sym_87] = ACTIONS(49), @@ -12600,6 +12982,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(49), [anon_sym_91] = ACTIONS(49), [anon_sym_92] = ACTIONS(49), + [anon_sym_93] = ACTIONS(49), + [anon_sym_94] = ACTIONS(49), + [anon_sym_95] = ACTIONS(49), + [anon_sym_96] = ACTIONS(49), [sym__endOfLine] = ACTIONS(71), }, [26] = { @@ -12806,35 +13192,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(89), [anon_sym_pack] = ACTIONS(89), [anon_sym_68] = ACTIONS(89), - [anon_sym_reach] = ACTIONS(89), + [anon_sym_rectify] = ACTIONS(89), [anon_sym_69] = ACTIONS(89), + [anon_sym_this] = ACTIONS(89), + [anon_sym_70] = ACTIONS(89), + [anon_sym_recur] = ACTIONS(89), + [anon_sym_71] = ACTIONS(89), [anon_sym_fold] = ACTIONS(91), - [anon_sym_70] = ACTIONS(91), + [anon_sym_72] = ACTIONS(91), [anon_sym_table] = ACTIONS(91), - [anon_sym_71] = ACTIONS(91), + [anon_sym_73] = ACTIONS(91), [anon_sym_cross] = ACTIONS(91), - [anon_sym_72] = ACTIONS(91), + [anon_sym_74] = ACTIONS(91), [anon_sym_group] = ACTIONS(91), - [anon_sym_73] = ACTIONS(91), + [anon_sym_75] = ACTIONS(91), [anon_sym_partition] = ACTIONS(91), - [anon_sym_74] = ACTIONS(91), + [anon_sym_76] = ACTIONS(91), [anon_sym_both] = ACTIONS(91), - [anon_sym_75] = ACTIONS(91), + [anon_sym_77] = ACTIONS(91), [anon_sym_bracket] = ACTIONS(91), - [anon_sym_76] = ACTIONS(91), + [anon_sym_78] = ACTIONS(91), [anon_sym_fork] = ACTIONS(91), - [anon_sym_77] = ACTIONS(91), + [anon_sym_79] = ACTIONS(91), [anon_sym_under] = ACTIONS(91), - [anon_sym_78] = ACTIONS(91), + [anon_sym_80] = ACTIONS(91), [anon_sym_fill] = ACTIONS(91), - [anon_sym_79] = ACTIONS(91), + [anon_sym_81] = ACTIONS(91), [anon_sym_try] = ACTIONS(93), - [anon_sym_80] = ACTIONS(91), + [anon_sym_82] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), - [anon_sym_81] = ACTIONS(91), - [anon_sym_82] = ACTIONS(95), - [anon_sym_83] = ACTIONS(95), - [anon_sym_84] = ACTIONS(95), + [anon_sym_83] = ACTIONS(91), + [anon_sym_all] = ACTIONS(91), + [anon_sym_84] = ACTIONS(91), + [anon_sym_setinv] = ACTIONS(91), + [anon_sym_setunder] = ACTIONS(91), [anon_sym_85] = ACTIONS(95), [anon_sym_86] = ACTIONS(95), [anon_sym_87] = ACTIONS(95), @@ -12843,6 +13234,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(95), [anon_sym_91] = ACTIONS(95), [anon_sym_92] = ACTIONS(95), + [anon_sym_93] = ACTIONS(95), + [anon_sym_94] = ACTIONS(95), + [anon_sym_95] = ACTIONS(95), + [anon_sym_96] = ACTIONS(95), [sym__endOfLine] = ACTIONS(5), }, [27] = { @@ -13049,35 +13444,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(89), [anon_sym_pack] = ACTIONS(89), [anon_sym_68] = ACTIONS(89), - [anon_sym_reach] = ACTIONS(89), + [anon_sym_rectify] = ACTIONS(89), [anon_sym_69] = ACTIONS(89), + [anon_sym_this] = ACTIONS(89), + [anon_sym_70] = ACTIONS(89), + [anon_sym_recur] = ACTIONS(89), + [anon_sym_71] = ACTIONS(89), [anon_sym_fold] = ACTIONS(91), - [anon_sym_70] = ACTIONS(91), + [anon_sym_72] = ACTIONS(91), [anon_sym_table] = ACTIONS(91), - [anon_sym_71] = ACTIONS(91), + [anon_sym_73] = ACTIONS(91), [anon_sym_cross] = ACTIONS(91), - [anon_sym_72] = ACTIONS(91), + [anon_sym_74] = ACTIONS(91), [anon_sym_group] = ACTIONS(91), - [anon_sym_73] = ACTIONS(91), + [anon_sym_75] = ACTIONS(91), [anon_sym_partition] = ACTIONS(91), - [anon_sym_74] = ACTIONS(91), + [anon_sym_76] = ACTIONS(91), [anon_sym_both] = ACTIONS(91), - [anon_sym_75] = ACTIONS(91), + [anon_sym_77] = ACTIONS(91), [anon_sym_bracket] = ACTIONS(91), - [anon_sym_76] = ACTIONS(91), + [anon_sym_78] = ACTIONS(91), [anon_sym_fork] = ACTIONS(91), - [anon_sym_77] = ACTIONS(91), + [anon_sym_79] = ACTIONS(91), [anon_sym_under] = ACTIONS(91), - [anon_sym_78] = ACTIONS(91), + [anon_sym_80] = ACTIONS(91), [anon_sym_fill] = ACTIONS(91), - [anon_sym_79] = ACTIONS(91), + [anon_sym_81] = ACTIONS(91), [anon_sym_try] = ACTIONS(93), - [anon_sym_80] = ACTIONS(91), + [anon_sym_82] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), - [anon_sym_81] = ACTIONS(91), - [anon_sym_82] = ACTIONS(95), - [anon_sym_83] = ACTIONS(95), - [anon_sym_84] = ACTIONS(95), + [anon_sym_83] = ACTIONS(91), + [anon_sym_all] = ACTIONS(91), + [anon_sym_84] = ACTIONS(91), + [anon_sym_setinv] = ACTIONS(91), + [anon_sym_setunder] = ACTIONS(91), [anon_sym_85] = ACTIONS(95), [anon_sym_86] = ACTIONS(95), [anon_sym_87] = ACTIONS(95), @@ -13086,6 +13486,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(95), [anon_sym_91] = ACTIONS(95), [anon_sym_92] = ACTIONS(95), + [anon_sym_93] = ACTIONS(95), + [anon_sym_94] = ACTIONS(95), + [anon_sym_95] = ACTIONS(95), + [anon_sym_96] = ACTIONS(95), [sym__endOfLine] = ACTIONS(5), }, [28] = { @@ -13292,35 +13696,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(89), [anon_sym_pack] = ACTIONS(89), [anon_sym_68] = ACTIONS(89), - [anon_sym_reach] = ACTIONS(89), + [anon_sym_rectify] = ACTIONS(89), [anon_sym_69] = ACTIONS(89), + [anon_sym_this] = ACTIONS(89), + [anon_sym_70] = ACTIONS(89), + [anon_sym_recur] = ACTIONS(89), + [anon_sym_71] = ACTIONS(89), [anon_sym_fold] = ACTIONS(91), - [anon_sym_70] = ACTIONS(91), + [anon_sym_72] = ACTIONS(91), [anon_sym_table] = ACTIONS(91), - [anon_sym_71] = ACTIONS(91), + [anon_sym_73] = ACTIONS(91), [anon_sym_cross] = ACTIONS(91), - [anon_sym_72] = ACTIONS(91), + [anon_sym_74] = ACTIONS(91), [anon_sym_group] = ACTIONS(91), - [anon_sym_73] = ACTIONS(91), + [anon_sym_75] = ACTIONS(91), [anon_sym_partition] = ACTIONS(91), - [anon_sym_74] = ACTIONS(91), + [anon_sym_76] = ACTIONS(91), [anon_sym_both] = ACTIONS(91), - [anon_sym_75] = ACTIONS(91), + [anon_sym_77] = ACTIONS(91), [anon_sym_bracket] = ACTIONS(91), - [anon_sym_76] = ACTIONS(91), + [anon_sym_78] = ACTIONS(91), [anon_sym_fork] = ACTIONS(91), - [anon_sym_77] = ACTIONS(91), + [anon_sym_79] = ACTIONS(91), [anon_sym_under] = ACTIONS(91), - [anon_sym_78] = ACTIONS(91), + [anon_sym_80] = ACTIONS(91), [anon_sym_fill] = ACTIONS(91), - [anon_sym_79] = ACTIONS(91), + [anon_sym_81] = ACTIONS(91), [anon_sym_try] = ACTIONS(93), - [anon_sym_80] = ACTIONS(91), + [anon_sym_82] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), - [anon_sym_81] = ACTIONS(91), - [anon_sym_82] = ACTIONS(95), - [anon_sym_83] = ACTIONS(95), - [anon_sym_84] = ACTIONS(95), + [anon_sym_83] = ACTIONS(91), + [anon_sym_all] = ACTIONS(91), + [anon_sym_84] = ACTIONS(91), + [anon_sym_setinv] = ACTIONS(91), + [anon_sym_setunder] = ACTIONS(91), [anon_sym_85] = ACTIONS(95), [anon_sym_86] = ACTIONS(95), [anon_sym_87] = ACTIONS(95), @@ -13329,6 +13738,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(95), [anon_sym_91] = ACTIONS(95), [anon_sym_92] = ACTIONS(95), + [anon_sym_93] = ACTIONS(95), + [anon_sym_94] = ACTIONS(95), + [anon_sym_95] = ACTIONS(95), + [anon_sym_96] = ACTIONS(95), [sym__endOfLine] = ACTIONS(5), }, [29] = { @@ -13535,35 +13948,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(89), [anon_sym_pack] = ACTIONS(89), [anon_sym_68] = ACTIONS(89), - [anon_sym_reach] = ACTIONS(89), + [anon_sym_rectify] = ACTIONS(89), [anon_sym_69] = ACTIONS(89), + [anon_sym_this] = ACTIONS(89), + [anon_sym_70] = ACTIONS(89), + [anon_sym_recur] = ACTIONS(89), + [anon_sym_71] = ACTIONS(89), [anon_sym_fold] = ACTIONS(91), - [anon_sym_70] = ACTIONS(91), + [anon_sym_72] = ACTIONS(91), [anon_sym_table] = ACTIONS(91), - [anon_sym_71] = ACTIONS(91), + [anon_sym_73] = ACTIONS(91), [anon_sym_cross] = ACTIONS(91), - [anon_sym_72] = ACTIONS(91), + [anon_sym_74] = ACTIONS(91), [anon_sym_group] = ACTIONS(91), - [anon_sym_73] = ACTIONS(91), + [anon_sym_75] = ACTIONS(91), [anon_sym_partition] = ACTIONS(91), - [anon_sym_74] = ACTIONS(91), + [anon_sym_76] = ACTIONS(91), [anon_sym_both] = ACTIONS(91), - [anon_sym_75] = ACTIONS(91), + [anon_sym_77] = ACTIONS(91), [anon_sym_bracket] = ACTIONS(91), - [anon_sym_76] = ACTIONS(91), + [anon_sym_78] = ACTIONS(91), [anon_sym_fork] = ACTIONS(91), - [anon_sym_77] = ACTIONS(91), + [anon_sym_79] = ACTIONS(91), [anon_sym_under] = ACTIONS(91), - [anon_sym_78] = ACTIONS(91), + [anon_sym_80] = ACTIONS(91), [anon_sym_fill] = ACTIONS(91), - [anon_sym_79] = ACTIONS(91), + [anon_sym_81] = ACTIONS(91), [anon_sym_try] = ACTIONS(93), - [anon_sym_80] = ACTIONS(91), + [anon_sym_82] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), - [anon_sym_81] = ACTIONS(91), - [anon_sym_82] = ACTIONS(95), - [anon_sym_83] = ACTIONS(95), - [anon_sym_84] = ACTIONS(95), + [anon_sym_83] = ACTIONS(91), + [anon_sym_all] = ACTIONS(91), + [anon_sym_84] = ACTIONS(91), + [anon_sym_setinv] = ACTIONS(91), + [anon_sym_setunder] = ACTIONS(91), [anon_sym_85] = ACTIONS(95), [anon_sym_86] = ACTIONS(95), [anon_sym_87] = ACTIONS(95), @@ -13572,6 +13990,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(95), [anon_sym_91] = ACTIONS(95), [anon_sym_92] = ACTIONS(95), + [anon_sym_93] = ACTIONS(95), + [anon_sym_94] = ACTIONS(95), + [anon_sym_95] = ACTIONS(95), + [anon_sym_96] = ACTIONS(95), [sym__endOfLine] = ACTIONS(5), }, [30] = { @@ -13778,35 +14200,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(89), [anon_sym_pack] = ACTIONS(89), [anon_sym_68] = ACTIONS(89), - [anon_sym_reach] = ACTIONS(89), + [anon_sym_rectify] = ACTIONS(89), [anon_sym_69] = ACTIONS(89), + [anon_sym_this] = ACTIONS(89), + [anon_sym_70] = ACTIONS(89), + [anon_sym_recur] = ACTIONS(89), + [anon_sym_71] = ACTIONS(89), [anon_sym_fold] = ACTIONS(91), - [anon_sym_70] = ACTIONS(91), + [anon_sym_72] = ACTIONS(91), [anon_sym_table] = ACTIONS(91), - [anon_sym_71] = ACTIONS(91), + [anon_sym_73] = ACTIONS(91), [anon_sym_cross] = ACTIONS(91), - [anon_sym_72] = ACTIONS(91), + [anon_sym_74] = ACTIONS(91), [anon_sym_group] = ACTIONS(91), - [anon_sym_73] = ACTIONS(91), + [anon_sym_75] = ACTIONS(91), [anon_sym_partition] = ACTIONS(91), - [anon_sym_74] = ACTIONS(91), + [anon_sym_76] = ACTIONS(91), [anon_sym_both] = ACTIONS(91), - [anon_sym_75] = ACTIONS(91), + [anon_sym_77] = ACTIONS(91), [anon_sym_bracket] = ACTIONS(91), - [anon_sym_76] = ACTIONS(91), + [anon_sym_78] = ACTIONS(91), [anon_sym_fork] = ACTIONS(91), - [anon_sym_77] = ACTIONS(91), + [anon_sym_79] = ACTIONS(91), [anon_sym_under] = ACTIONS(91), - [anon_sym_78] = ACTIONS(91), + [anon_sym_80] = ACTIONS(91), [anon_sym_fill] = ACTIONS(91), - [anon_sym_79] = ACTIONS(91), + [anon_sym_81] = ACTIONS(91), [anon_sym_try] = ACTIONS(93), - [anon_sym_80] = ACTIONS(91), + [anon_sym_82] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), - [anon_sym_81] = ACTIONS(91), - [anon_sym_82] = ACTIONS(95), - [anon_sym_83] = ACTIONS(95), - [anon_sym_84] = ACTIONS(95), + [anon_sym_83] = ACTIONS(91), + [anon_sym_all] = ACTIONS(91), + [anon_sym_84] = ACTIONS(91), + [anon_sym_setinv] = ACTIONS(91), + [anon_sym_setunder] = ACTIONS(91), [anon_sym_85] = ACTIONS(95), [anon_sym_86] = ACTIONS(95), [anon_sym_87] = ACTIONS(95), @@ -13815,6 +14242,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(95), [anon_sym_91] = ACTIONS(95), [anon_sym_92] = ACTIONS(95), + [anon_sym_93] = ACTIONS(95), + [anon_sym_94] = ACTIONS(95), + [anon_sym_95] = ACTIONS(95), + [anon_sym_96] = ACTIONS(95), [sym__endOfLine] = ACTIONS(5), }, [31] = { @@ -14021,35 +14452,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(89), [anon_sym_pack] = ACTIONS(89), [anon_sym_68] = ACTIONS(89), - [anon_sym_reach] = ACTIONS(89), + [anon_sym_rectify] = ACTIONS(89), [anon_sym_69] = ACTIONS(89), + [anon_sym_this] = ACTIONS(89), + [anon_sym_70] = ACTIONS(89), + [anon_sym_recur] = ACTIONS(89), + [anon_sym_71] = ACTIONS(89), [anon_sym_fold] = ACTIONS(91), - [anon_sym_70] = ACTIONS(91), + [anon_sym_72] = ACTIONS(91), [anon_sym_table] = ACTIONS(91), - [anon_sym_71] = ACTIONS(91), + [anon_sym_73] = ACTIONS(91), [anon_sym_cross] = ACTIONS(91), - [anon_sym_72] = ACTIONS(91), + [anon_sym_74] = ACTIONS(91), [anon_sym_group] = ACTIONS(91), - [anon_sym_73] = ACTIONS(91), + [anon_sym_75] = ACTIONS(91), [anon_sym_partition] = ACTIONS(91), - [anon_sym_74] = ACTIONS(91), + [anon_sym_76] = ACTIONS(91), [anon_sym_both] = ACTIONS(91), - [anon_sym_75] = ACTIONS(91), + [anon_sym_77] = ACTIONS(91), [anon_sym_bracket] = ACTIONS(91), - [anon_sym_76] = ACTIONS(91), + [anon_sym_78] = ACTIONS(91), [anon_sym_fork] = ACTIONS(91), - [anon_sym_77] = ACTIONS(91), + [anon_sym_79] = ACTIONS(91), [anon_sym_under] = ACTIONS(91), - [anon_sym_78] = ACTIONS(91), + [anon_sym_80] = ACTIONS(91), [anon_sym_fill] = ACTIONS(91), - [anon_sym_79] = ACTIONS(91), + [anon_sym_81] = ACTIONS(91), [anon_sym_try] = ACTIONS(93), - [anon_sym_80] = ACTIONS(91), + [anon_sym_82] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), - [anon_sym_81] = ACTIONS(91), - [anon_sym_82] = ACTIONS(95), - [anon_sym_83] = ACTIONS(95), - [anon_sym_84] = ACTIONS(95), + [anon_sym_83] = ACTIONS(91), + [anon_sym_all] = ACTIONS(91), + [anon_sym_84] = ACTIONS(91), + [anon_sym_setinv] = ACTIONS(91), + [anon_sym_setunder] = ACTIONS(91), [anon_sym_85] = ACTIONS(95), [anon_sym_86] = ACTIONS(95), [anon_sym_87] = ACTIONS(95), @@ -14058,6 +14494,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(95), [anon_sym_91] = ACTIONS(95), [anon_sym_92] = ACTIONS(95), + [anon_sym_93] = ACTIONS(95), + [anon_sym_94] = ACTIONS(95), + [anon_sym_95] = ACTIONS(95), + [anon_sym_96] = ACTIONS(95), [sym__endOfLine] = ACTIONS(5), }, [32] = { @@ -14264,35 +14704,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(271), [anon_sym_pack] = ACTIONS(271), [anon_sym_68] = ACTIONS(271), - [anon_sym_reach] = ACTIONS(271), + [anon_sym_rectify] = ACTIONS(271), [anon_sym_69] = ACTIONS(271), + [anon_sym_this] = ACTIONS(271), + [anon_sym_70] = ACTIONS(271), + [anon_sym_recur] = ACTIONS(271), + [anon_sym_71] = ACTIONS(271), [anon_sym_fold] = ACTIONS(273), - [anon_sym_70] = ACTIONS(273), + [anon_sym_72] = ACTIONS(273), [anon_sym_table] = ACTIONS(273), - [anon_sym_71] = ACTIONS(273), + [anon_sym_73] = ACTIONS(273), [anon_sym_cross] = ACTIONS(273), - [anon_sym_72] = ACTIONS(273), + [anon_sym_74] = ACTIONS(273), [anon_sym_group] = ACTIONS(273), - [anon_sym_73] = ACTIONS(273), + [anon_sym_75] = ACTIONS(273), [anon_sym_partition] = ACTIONS(273), - [anon_sym_74] = ACTIONS(273), + [anon_sym_76] = ACTIONS(273), [anon_sym_both] = ACTIONS(273), - [anon_sym_75] = ACTIONS(273), + [anon_sym_77] = ACTIONS(273), [anon_sym_bracket] = ACTIONS(273), - [anon_sym_76] = ACTIONS(273), + [anon_sym_78] = ACTIONS(273), [anon_sym_fork] = ACTIONS(273), - [anon_sym_77] = ACTIONS(273), + [anon_sym_79] = ACTIONS(273), [anon_sym_under] = ACTIONS(273), - [anon_sym_78] = ACTIONS(273), + [anon_sym_80] = ACTIONS(273), [anon_sym_fill] = ACTIONS(273), - [anon_sym_79] = ACTIONS(273), + [anon_sym_81] = ACTIONS(273), [anon_sym_try] = ACTIONS(275), - [anon_sym_80] = ACTIONS(273), + [anon_sym_82] = ACTIONS(273), [anon_sym_do] = ACTIONS(275), - [anon_sym_81] = ACTIONS(273), - [anon_sym_82] = ACTIONS(277), - [anon_sym_83] = ACTIONS(277), - [anon_sym_84] = ACTIONS(277), + [anon_sym_83] = ACTIONS(273), + [anon_sym_all] = ACTIONS(273), + [anon_sym_84] = ACTIONS(273), + [anon_sym_setinv] = ACTIONS(273), + [anon_sym_setunder] = ACTIONS(273), [anon_sym_85] = ACTIONS(277), [anon_sym_86] = ACTIONS(277), [anon_sym_87] = ACTIONS(277), @@ -14301,6 +14746,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(277), [anon_sym_91] = ACTIONS(277), [anon_sym_92] = ACTIONS(277), + [anon_sym_93] = ACTIONS(277), + [anon_sym_94] = ACTIONS(277), + [anon_sym_95] = ACTIONS(277), + [anon_sym_96] = ACTIONS(277), [sym__endOfLine] = ACTIONS(5), }, [33] = { @@ -14507,35 +14956,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(89), [anon_sym_pack] = ACTIONS(89), [anon_sym_68] = ACTIONS(89), - [anon_sym_reach] = ACTIONS(89), + [anon_sym_rectify] = ACTIONS(89), [anon_sym_69] = ACTIONS(89), + [anon_sym_this] = ACTIONS(89), + [anon_sym_70] = ACTIONS(89), + [anon_sym_recur] = ACTIONS(89), + [anon_sym_71] = ACTIONS(89), [anon_sym_fold] = ACTIONS(91), - [anon_sym_70] = ACTIONS(91), + [anon_sym_72] = ACTIONS(91), [anon_sym_table] = ACTIONS(91), - [anon_sym_71] = ACTIONS(91), + [anon_sym_73] = ACTIONS(91), [anon_sym_cross] = ACTIONS(91), - [anon_sym_72] = ACTIONS(91), + [anon_sym_74] = ACTIONS(91), [anon_sym_group] = ACTIONS(91), - [anon_sym_73] = ACTIONS(91), + [anon_sym_75] = ACTIONS(91), [anon_sym_partition] = ACTIONS(91), - [anon_sym_74] = ACTIONS(91), + [anon_sym_76] = ACTIONS(91), [anon_sym_both] = ACTIONS(91), - [anon_sym_75] = ACTIONS(91), + [anon_sym_77] = ACTIONS(91), [anon_sym_bracket] = ACTIONS(91), - [anon_sym_76] = ACTIONS(91), + [anon_sym_78] = ACTIONS(91), [anon_sym_fork] = ACTIONS(91), - [anon_sym_77] = ACTIONS(91), + [anon_sym_79] = ACTIONS(91), [anon_sym_under] = ACTIONS(91), - [anon_sym_78] = ACTIONS(91), + [anon_sym_80] = ACTIONS(91), [anon_sym_fill] = ACTIONS(91), - [anon_sym_79] = ACTIONS(91), + [anon_sym_81] = ACTIONS(91), [anon_sym_try] = ACTIONS(93), - [anon_sym_80] = ACTIONS(91), + [anon_sym_82] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), - [anon_sym_81] = ACTIONS(91), - [anon_sym_82] = ACTIONS(95), - [anon_sym_83] = ACTIONS(95), - [anon_sym_84] = ACTIONS(95), + [anon_sym_83] = ACTIONS(91), + [anon_sym_all] = ACTIONS(91), + [anon_sym_84] = ACTIONS(91), + [anon_sym_setinv] = ACTIONS(91), + [anon_sym_setunder] = ACTIONS(91), [anon_sym_85] = ACTIONS(95), [anon_sym_86] = ACTIONS(95), [anon_sym_87] = ACTIONS(95), @@ -14544,6 +14998,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(95), [anon_sym_91] = ACTIONS(95), [anon_sym_92] = ACTIONS(95), + [anon_sym_93] = ACTIONS(95), + [anon_sym_94] = ACTIONS(95), + [anon_sym_95] = ACTIONS(95), + [anon_sym_96] = ACTIONS(95), [sym__endOfLine] = ACTIONS(71), }, [34] = { @@ -14750,35 +15208,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(271), [anon_sym_pack] = ACTIONS(271), [anon_sym_68] = ACTIONS(271), - [anon_sym_reach] = ACTIONS(271), + [anon_sym_rectify] = ACTIONS(271), [anon_sym_69] = ACTIONS(271), + [anon_sym_this] = ACTIONS(271), + [anon_sym_70] = ACTIONS(271), + [anon_sym_recur] = ACTIONS(271), + [anon_sym_71] = ACTIONS(271), [anon_sym_fold] = ACTIONS(273), - [anon_sym_70] = ACTIONS(273), + [anon_sym_72] = ACTIONS(273), [anon_sym_table] = ACTIONS(273), - [anon_sym_71] = ACTIONS(273), + [anon_sym_73] = ACTIONS(273), [anon_sym_cross] = ACTIONS(273), - [anon_sym_72] = ACTIONS(273), + [anon_sym_74] = ACTIONS(273), [anon_sym_group] = ACTIONS(273), - [anon_sym_73] = ACTIONS(273), + [anon_sym_75] = ACTIONS(273), [anon_sym_partition] = ACTIONS(273), - [anon_sym_74] = ACTIONS(273), + [anon_sym_76] = ACTIONS(273), [anon_sym_both] = ACTIONS(273), - [anon_sym_75] = ACTIONS(273), + [anon_sym_77] = ACTIONS(273), [anon_sym_bracket] = ACTIONS(273), - [anon_sym_76] = ACTIONS(273), + [anon_sym_78] = ACTIONS(273), [anon_sym_fork] = ACTIONS(273), - [anon_sym_77] = ACTIONS(273), + [anon_sym_79] = ACTIONS(273), [anon_sym_under] = ACTIONS(273), - [anon_sym_78] = ACTIONS(273), + [anon_sym_80] = ACTIONS(273), [anon_sym_fill] = ACTIONS(273), - [anon_sym_79] = ACTIONS(273), + [anon_sym_81] = ACTIONS(273), [anon_sym_try] = ACTIONS(275), - [anon_sym_80] = ACTIONS(273), + [anon_sym_82] = ACTIONS(273), [anon_sym_do] = ACTIONS(275), - [anon_sym_81] = ACTIONS(273), - [anon_sym_82] = ACTIONS(277), - [anon_sym_83] = ACTIONS(277), - [anon_sym_84] = ACTIONS(277), + [anon_sym_83] = ACTIONS(273), + [anon_sym_all] = ACTIONS(273), + [anon_sym_84] = ACTIONS(273), + [anon_sym_setinv] = ACTIONS(273), + [anon_sym_setunder] = ACTIONS(273), [anon_sym_85] = ACTIONS(277), [anon_sym_86] = ACTIONS(277), [anon_sym_87] = ACTIONS(277), @@ -14787,6 +15250,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(277), [anon_sym_91] = ACTIONS(277), [anon_sym_92] = ACTIONS(277), + [anon_sym_93] = ACTIONS(277), + [anon_sym_94] = ACTIONS(277), + [anon_sym_95] = ACTIONS(277), + [anon_sym_96] = ACTIONS(277), [sym__endOfLine] = ACTIONS(5), }, [35] = { @@ -14993,35 +15460,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(89), [anon_sym_pack] = ACTIONS(89), [anon_sym_68] = ACTIONS(89), - [anon_sym_reach] = ACTIONS(89), + [anon_sym_rectify] = ACTIONS(89), [anon_sym_69] = ACTIONS(89), + [anon_sym_this] = ACTIONS(89), + [anon_sym_70] = ACTIONS(89), + [anon_sym_recur] = ACTIONS(89), + [anon_sym_71] = ACTIONS(89), [anon_sym_fold] = ACTIONS(91), - [anon_sym_70] = ACTIONS(91), + [anon_sym_72] = ACTIONS(91), [anon_sym_table] = ACTIONS(91), - [anon_sym_71] = ACTIONS(91), + [anon_sym_73] = ACTIONS(91), [anon_sym_cross] = ACTIONS(91), - [anon_sym_72] = ACTIONS(91), + [anon_sym_74] = ACTIONS(91), [anon_sym_group] = ACTIONS(91), - [anon_sym_73] = ACTIONS(91), + [anon_sym_75] = ACTIONS(91), [anon_sym_partition] = ACTIONS(91), - [anon_sym_74] = ACTIONS(91), + [anon_sym_76] = ACTIONS(91), [anon_sym_both] = ACTIONS(91), - [anon_sym_75] = ACTIONS(91), + [anon_sym_77] = ACTIONS(91), [anon_sym_bracket] = ACTIONS(91), - [anon_sym_76] = ACTIONS(91), + [anon_sym_78] = ACTIONS(91), [anon_sym_fork] = ACTIONS(91), - [anon_sym_77] = ACTIONS(91), + [anon_sym_79] = ACTIONS(91), [anon_sym_under] = ACTIONS(91), - [anon_sym_78] = ACTIONS(91), + [anon_sym_80] = ACTIONS(91), [anon_sym_fill] = ACTIONS(91), - [anon_sym_79] = ACTIONS(91), + [anon_sym_81] = ACTIONS(91), [anon_sym_try] = ACTIONS(93), - [anon_sym_80] = ACTIONS(91), + [anon_sym_82] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), - [anon_sym_81] = ACTIONS(91), - [anon_sym_82] = ACTIONS(95), - [anon_sym_83] = ACTIONS(95), - [anon_sym_84] = ACTIONS(95), + [anon_sym_83] = ACTIONS(91), + [anon_sym_all] = ACTIONS(91), + [anon_sym_84] = ACTIONS(91), + [anon_sym_setinv] = ACTIONS(91), + [anon_sym_setunder] = ACTIONS(91), [anon_sym_85] = ACTIONS(95), [anon_sym_86] = ACTIONS(95), [anon_sym_87] = ACTIONS(95), @@ -15030,6 +15502,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(95), [anon_sym_91] = ACTIONS(95), [anon_sym_92] = ACTIONS(95), + [anon_sym_93] = ACTIONS(95), + [anon_sym_94] = ACTIONS(95), + [anon_sym_95] = ACTIONS(95), + [anon_sym_96] = ACTIONS(95), [sym__endOfLine] = ACTIONS(5), }, [36] = { @@ -15236,35 +15712,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(89), [anon_sym_pack] = ACTIONS(89), [anon_sym_68] = ACTIONS(89), - [anon_sym_reach] = ACTIONS(89), + [anon_sym_rectify] = ACTIONS(89), [anon_sym_69] = ACTIONS(89), + [anon_sym_this] = ACTIONS(89), + [anon_sym_70] = ACTIONS(89), + [anon_sym_recur] = ACTIONS(89), + [anon_sym_71] = ACTIONS(89), [anon_sym_fold] = ACTIONS(91), - [anon_sym_70] = ACTIONS(91), + [anon_sym_72] = ACTIONS(91), [anon_sym_table] = ACTIONS(91), - [anon_sym_71] = ACTIONS(91), + [anon_sym_73] = ACTIONS(91), [anon_sym_cross] = ACTIONS(91), - [anon_sym_72] = ACTIONS(91), + [anon_sym_74] = ACTIONS(91), [anon_sym_group] = ACTIONS(91), - [anon_sym_73] = ACTIONS(91), + [anon_sym_75] = ACTIONS(91), [anon_sym_partition] = ACTIONS(91), - [anon_sym_74] = ACTIONS(91), + [anon_sym_76] = ACTIONS(91), [anon_sym_both] = ACTIONS(91), - [anon_sym_75] = ACTIONS(91), + [anon_sym_77] = ACTIONS(91), [anon_sym_bracket] = ACTIONS(91), - [anon_sym_76] = ACTIONS(91), + [anon_sym_78] = ACTIONS(91), [anon_sym_fork] = ACTIONS(91), - [anon_sym_77] = ACTIONS(91), + [anon_sym_79] = ACTIONS(91), [anon_sym_under] = ACTIONS(91), - [anon_sym_78] = ACTIONS(91), + [anon_sym_80] = ACTIONS(91), [anon_sym_fill] = ACTIONS(91), - [anon_sym_79] = ACTIONS(91), + [anon_sym_81] = ACTIONS(91), [anon_sym_try] = ACTIONS(93), - [anon_sym_80] = ACTIONS(91), + [anon_sym_82] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), - [anon_sym_81] = ACTIONS(91), - [anon_sym_82] = ACTIONS(95), - [anon_sym_83] = ACTIONS(95), - [anon_sym_84] = ACTIONS(95), + [anon_sym_83] = ACTIONS(91), + [anon_sym_all] = ACTIONS(91), + [anon_sym_84] = ACTIONS(91), + [anon_sym_setinv] = ACTIONS(91), + [anon_sym_setunder] = ACTIONS(91), [anon_sym_85] = ACTIONS(95), [anon_sym_86] = ACTIONS(95), [anon_sym_87] = ACTIONS(95), @@ -15273,6 +15754,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(95), [anon_sym_91] = ACTIONS(95), [anon_sym_92] = ACTIONS(95), + [anon_sym_93] = ACTIONS(95), + [anon_sym_94] = ACTIONS(95), + [anon_sym_95] = ACTIONS(95), + [anon_sym_96] = ACTIONS(95), [sym__endOfLine] = ACTIONS(5), }, [37] = { @@ -15479,35 +15964,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(89), [anon_sym_pack] = ACTIONS(89), [anon_sym_68] = ACTIONS(89), - [anon_sym_reach] = ACTIONS(89), + [anon_sym_rectify] = ACTIONS(89), [anon_sym_69] = ACTIONS(89), + [anon_sym_this] = ACTIONS(89), + [anon_sym_70] = ACTIONS(89), + [anon_sym_recur] = ACTIONS(89), + [anon_sym_71] = ACTIONS(89), [anon_sym_fold] = ACTIONS(91), - [anon_sym_70] = ACTIONS(91), + [anon_sym_72] = ACTIONS(91), [anon_sym_table] = ACTIONS(91), - [anon_sym_71] = ACTIONS(91), + [anon_sym_73] = ACTIONS(91), [anon_sym_cross] = ACTIONS(91), - [anon_sym_72] = ACTIONS(91), + [anon_sym_74] = ACTIONS(91), [anon_sym_group] = ACTIONS(91), - [anon_sym_73] = ACTIONS(91), + [anon_sym_75] = ACTIONS(91), [anon_sym_partition] = ACTIONS(91), - [anon_sym_74] = ACTIONS(91), + [anon_sym_76] = ACTIONS(91), [anon_sym_both] = ACTIONS(91), - [anon_sym_75] = ACTIONS(91), + [anon_sym_77] = ACTIONS(91), [anon_sym_bracket] = ACTIONS(91), - [anon_sym_76] = ACTIONS(91), + [anon_sym_78] = ACTIONS(91), [anon_sym_fork] = ACTIONS(91), - [anon_sym_77] = ACTIONS(91), + [anon_sym_79] = ACTIONS(91), [anon_sym_under] = ACTIONS(91), - [anon_sym_78] = ACTIONS(91), + [anon_sym_80] = ACTIONS(91), [anon_sym_fill] = ACTIONS(91), - [anon_sym_79] = ACTIONS(91), + [anon_sym_81] = ACTIONS(91), [anon_sym_try] = ACTIONS(93), - [anon_sym_80] = ACTIONS(91), + [anon_sym_82] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), - [anon_sym_81] = ACTIONS(91), - [anon_sym_82] = ACTIONS(95), - [anon_sym_83] = ACTIONS(95), - [anon_sym_84] = ACTIONS(95), + [anon_sym_83] = ACTIONS(91), + [anon_sym_all] = ACTIONS(91), + [anon_sym_84] = ACTIONS(91), + [anon_sym_setinv] = ACTIONS(91), + [anon_sym_setunder] = ACTIONS(91), [anon_sym_85] = ACTIONS(95), [anon_sym_86] = ACTIONS(95), [anon_sym_87] = ACTIONS(95), @@ -15516,6 +16006,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(95), [anon_sym_91] = ACTIONS(95), [anon_sym_92] = ACTIONS(95), + [anon_sym_93] = ACTIONS(95), + [anon_sym_94] = ACTIONS(95), + [anon_sym_95] = ACTIONS(95), + [anon_sym_96] = ACTIONS(95), [sym__endOfLine] = ACTIONS(5), }, [38] = { @@ -15722,35 +16216,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(89), [anon_sym_pack] = ACTIONS(89), [anon_sym_68] = ACTIONS(89), - [anon_sym_reach] = ACTIONS(89), + [anon_sym_rectify] = ACTIONS(89), [anon_sym_69] = ACTIONS(89), + [anon_sym_this] = ACTIONS(89), + [anon_sym_70] = ACTIONS(89), + [anon_sym_recur] = ACTIONS(89), + [anon_sym_71] = ACTIONS(89), [anon_sym_fold] = ACTIONS(91), - [anon_sym_70] = ACTIONS(91), + [anon_sym_72] = ACTIONS(91), [anon_sym_table] = ACTIONS(91), - [anon_sym_71] = ACTIONS(91), + [anon_sym_73] = ACTIONS(91), [anon_sym_cross] = ACTIONS(91), - [anon_sym_72] = ACTIONS(91), + [anon_sym_74] = ACTIONS(91), [anon_sym_group] = ACTIONS(91), - [anon_sym_73] = ACTIONS(91), + [anon_sym_75] = ACTIONS(91), [anon_sym_partition] = ACTIONS(91), - [anon_sym_74] = ACTIONS(91), + [anon_sym_76] = ACTIONS(91), [anon_sym_both] = ACTIONS(91), - [anon_sym_75] = ACTIONS(91), + [anon_sym_77] = ACTIONS(91), [anon_sym_bracket] = ACTIONS(91), - [anon_sym_76] = ACTIONS(91), + [anon_sym_78] = ACTIONS(91), [anon_sym_fork] = ACTIONS(91), - [anon_sym_77] = ACTIONS(91), + [anon_sym_79] = ACTIONS(91), [anon_sym_under] = ACTIONS(91), - [anon_sym_78] = ACTIONS(91), + [anon_sym_80] = ACTIONS(91), [anon_sym_fill] = ACTIONS(91), - [anon_sym_79] = ACTIONS(91), + [anon_sym_81] = ACTIONS(91), [anon_sym_try] = ACTIONS(93), - [anon_sym_80] = ACTIONS(91), + [anon_sym_82] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), - [anon_sym_81] = ACTIONS(91), - [anon_sym_82] = ACTIONS(95), - [anon_sym_83] = ACTIONS(95), - [anon_sym_84] = ACTIONS(95), + [anon_sym_83] = ACTIONS(91), + [anon_sym_all] = ACTIONS(91), + [anon_sym_84] = ACTIONS(91), + [anon_sym_setinv] = ACTIONS(91), + [anon_sym_setunder] = ACTIONS(91), [anon_sym_85] = ACTIONS(95), [anon_sym_86] = ACTIONS(95), [anon_sym_87] = ACTIONS(95), @@ -15759,6 +16258,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(95), [anon_sym_91] = ACTIONS(95), [anon_sym_92] = ACTIONS(95), + [anon_sym_93] = ACTIONS(95), + [anon_sym_94] = ACTIONS(95), + [anon_sym_95] = ACTIONS(95), + [anon_sym_96] = ACTIONS(95), [sym__endOfLine] = ACTIONS(5), }, [39] = { @@ -15965,35 +16468,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(89), [anon_sym_pack] = ACTIONS(89), [anon_sym_68] = ACTIONS(89), - [anon_sym_reach] = ACTIONS(89), + [anon_sym_rectify] = ACTIONS(89), [anon_sym_69] = ACTIONS(89), + [anon_sym_this] = ACTIONS(89), + [anon_sym_70] = ACTIONS(89), + [anon_sym_recur] = ACTIONS(89), + [anon_sym_71] = ACTIONS(89), [anon_sym_fold] = ACTIONS(91), - [anon_sym_70] = ACTIONS(91), + [anon_sym_72] = ACTIONS(91), [anon_sym_table] = ACTIONS(91), - [anon_sym_71] = ACTIONS(91), + [anon_sym_73] = ACTIONS(91), [anon_sym_cross] = ACTIONS(91), - [anon_sym_72] = ACTIONS(91), + [anon_sym_74] = ACTIONS(91), [anon_sym_group] = ACTIONS(91), - [anon_sym_73] = ACTIONS(91), + [anon_sym_75] = ACTIONS(91), [anon_sym_partition] = ACTIONS(91), - [anon_sym_74] = ACTIONS(91), + [anon_sym_76] = ACTIONS(91), [anon_sym_both] = ACTIONS(91), - [anon_sym_75] = ACTIONS(91), + [anon_sym_77] = ACTIONS(91), [anon_sym_bracket] = ACTIONS(91), - [anon_sym_76] = ACTIONS(91), + [anon_sym_78] = ACTIONS(91), [anon_sym_fork] = ACTIONS(91), - [anon_sym_77] = ACTIONS(91), + [anon_sym_79] = ACTIONS(91), [anon_sym_under] = ACTIONS(91), - [anon_sym_78] = ACTIONS(91), + [anon_sym_80] = ACTIONS(91), [anon_sym_fill] = ACTIONS(91), - [anon_sym_79] = ACTIONS(91), + [anon_sym_81] = ACTIONS(91), [anon_sym_try] = ACTIONS(93), - [anon_sym_80] = ACTIONS(91), + [anon_sym_82] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), - [anon_sym_81] = ACTIONS(91), - [anon_sym_82] = ACTIONS(95), - [anon_sym_83] = ACTIONS(95), - [anon_sym_84] = ACTIONS(95), + [anon_sym_83] = ACTIONS(91), + [anon_sym_all] = ACTIONS(91), + [anon_sym_84] = ACTIONS(91), + [anon_sym_setinv] = ACTIONS(91), + [anon_sym_setunder] = ACTIONS(91), [anon_sym_85] = ACTIONS(95), [anon_sym_86] = ACTIONS(95), [anon_sym_87] = ACTIONS(95), @@ -16002,6 +16510,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(95), [anon_sym_91] = ACTIONS(95), [anon_sym_92] = ACTIONS(95), + [anon_sym_93] = ACTIONS(95), + [anon_sym_94] = ACTIONS(95), + [anon_sym_95] = ACTIONS(95), + [anon_sym_96] = ACTIONS(95), [sym__endOfLine] = ACTIONS(5), }, [40] = { @@ -16208,35 +16720,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(89), [anon_sym_pack] = ACTIONS(89), [anon_sym_68] = ACTIONS(89), - [anon_sym_reach] = ACTIONS(89), + [anon_sym_rectify] = ACTIONS(89), [anon_sym_69] = ACTIONS(89), + [anon_sym_this] = ACTIONS(89), + [anon_sym_70] = ACTIONS(89), + [anon_sym_recur] = ACTIONS(89), + [anon_sym_71] = ACTIONS(89), [anon_sym_fold] = ACTIONS(91), - [anon_sym_70] = ACTIONS(91), + [anon_sym_72] = ACTIONS(91), [anon_sym_table] = ACTIONS(91), - [anon_sym_71] = ACTIONS(91), + [anon_sym_73] = ACTIONS(91), [anon_sym_cross] = ACTIONS(91), - [anon_sym_72] = ACTIONS(91), + [anon_sym_74] = ACTIONS(91), [anon_sym_group] = ACTIONS(91), - [anon_sym_73] = ACTIONS(91), + [anon_sym_75] = ACTIONS(91), [anon_sym_partition] = ACTIONS(91), - [anon_sym_74] = ACTIONS(91), + [anon_sym_76] = ACTIONS(91), [anon_sym_both] = ACTIONS(91), - [anon_sym_75] = ACTIONS(91), + [anon_sym_77] = ACTIONS(91), [anon_sym_bracket] = ACTIONS(91), - [anon_sym_76] = ACTIONS(91), + [anon_sym_78] = ACTIONS(91), [anon_sym_fork] = ACTIONS(91), - [anon_sym_77] = ACTIONS(91), + [anon_sym_79] = ACTIONS(91), [anon_sym_under] = ACTIONS(91), - [anon_sym_78] = ACTIONS(91), + [anon_sym_80] = ACTIONS(91), [anon_sym_fill] = ACTIONS(91), - [anon_sym_79] = ACTIONS(91), + [anon_sym_81] = ACTIONS(91), [anon_sym_try] = ACTIONS(93), - [anon_sym_80] = ACTIONS(91), + [anon_sym_82] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), - [anon_sym_81] = ACTIONS(91), - [anon_sym_82] = ACTIONS(95), - [anon_sym_83] = ACTIONS(95), - [anon_sym_84] = ACTIONS(95), + [anon_sym_83] = ACTIONS(91), + [anon_sym_all] = ACTIONS(91), + [anon_sym_84] = ACTIONS(91), + [anon_sym_setinv] = ACTIONS(91), + [anon_sym_setunder] = ACTIONS(91), [anon_sym_85] = ACTIONS(95), [anon_sym_86] = ACTIONS(95), [anon_sym_87] = ACTIONS(95), @@ -16245,6 +16762,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(95), [anon_sym_91] = ACTIONS(95), [anon_sym_92] = ACTIONS(95), + [anon_sym_93] = ACTIONS(95), + [anon_sym_94] = ACTIONS(95), + [anon_sym_95] = ACTIONS(95), + [anon_sym_96] = ACTIONS(95), [sym__endOfLine] = ACTIONS(5), }, [41] = { @@ -16451,35 +16972,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(89), [anon_sym_pack] = ACTIONS(89), [anon_sym_68] = ACTIONS(89), - [anon_sym_reach] = ACTIONS(89), + [anon_sym_rectify] = ACTIONS(89), [anon_sym_69] = ACTIONS(89), + [anon_sym_this] = ACTIONS(89), + [anon_sym_70] = ACTIONS(89), + [anon_sym_recur] = ACTIONS(89), + [anon_sym_71] = ACTIONS(89), [anon_sym_fold] = ACTIONS(91), - [anon_sym_70] = ACTIONS(91), + [anon_sym_72] = ACTIONS(91), [anon_sym_table] = ACTIONS(91), - [anon_sym_71] = ACTIONS(91), + [anon_sym_73] = ACTIONS(91), [anon_sym_cross] = ACTIONS(91), - [anon_sym_72] = ACTIONS(91), + [anon_sym_74] = ACTIONS(91), [anon_sym_group] = ACTIONS(91), - [anon_sym_73] = ACTIONS(91), + [anon_sym_75] = ACTIONS(91), [anon_sym_partition] = ACTIONS(91), - [anon_sym_74] = ACTIONS(91), + [anon_sym_76] = ACTIONS(91), [anon_sym_both] = ACTIONS(91), - [anon_sym_75] = ACTIONS(91), + [anon_sym_77] = ACTIONS(91), [anon_sym_bracket] = ACTIONS(91), - [anon_sym_76] = ACTIONS(91), + [anon_sym_78] = ACTIONS(91), [anon_sym_fork] = ACTIONS(91), - [anon_sym_77] = ACTIONS(91), + [anon_sym_79] = ACTIONS(91), [anon_sym_under] = ACTIONS(91), - [anon_sym_78] = ACTIONS(91), + [anon_sym_80] = ACTIONS(91), [anon_sym_fill] = ACTIONS(91), - [anon_sym_79] = ACTIONS(91), + [anon_sym_81] = ACTIONS(91), [anon_sym_try] = ACTIONS(93), - [anon_sym_80] = ACTIONS(91), + [anon_sym_82] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), - [anon_sym_81] = ACTIONS(91), - [anon_sym_82] = ACTIONS(95), - [anon_sym_83] = ACTIONS(95), - [anon_sym_84] = ACTIONS(95), + [anon_sym_83] = ACTIONS(91), + [anon_sym_all] = ACTIONS(91), + [anon_sym_84] = ACTIONS(91), + [anon_sym_setinv] = ACTIONS(91), + [anon_sym_setunder] = ACTIONS(91), [anon_sym_85] = ACTIONS(95), [anon_sym_86] = ACTIONS(95), [anon_sym_87] = ACTIONS(95), @@ -16488,6 +17014,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(95), [anon_sym_91] = ACTIONS(95), [anon_sym_92] = ACTIONS(95), + [anon_sym_93] = ACTIONS(95), + [anon_sym_94] = ACTIONS(95), + [anon_sym_95] = ACTIONS(95), + [anon_sym_96] = ACTIONS(95), [sym__endOfLine] = ACTIONS(5), }, [42] = { @@ -16694,35 +17224,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(89), [anon_sym_pack] = ACTIONS(89), [anon_sym_68] = ACTIONS(89), - [anon_sym_reach] = ACTIONS(89), + [anon_sym_rectify] = ACTIONS(89), [anon_sym_69] = ACTIONS(89), + [anon_sym_this] = ACTIONS(89), + [anon_sym_70] = ACTIONS(89), + [anon_sym_recur] = ACTIONS(89), + [anon_sym_71] = ACTIONS(89), [anon_sym_fold] = ACTIONS(91), - [anon_sym_70] = ACTIONS(91), + [anon_sym_72] = ACTIONS(91), [anon_sym_table] = ACTIONS(91), - [anon_sym_71] = ACTIONS(91), + [anon_sym_73] = ACTIONS(91), [anon_sym_cross] = ACTIONS(91), - [anon_sym_72] = ACTIONS(91), + [anon_sym_74] = ACTIONS(91), [anon_sym_group] = ACTIONS(91), - [anon_sym_73] = ACTIONS(91), + [anon_sym_75] = ACTIONS(91), [anon_sym_partition] = ACTIONS(91), - [anon_sym_74] = ACTIONS(91), + [anon_sym_76] = ACTIONS(91), [anon_sym_both] = ACTIONS(91), - [anon_sym_75] = ACTIONS(91), + [anon_sym_77] = ACTIONS(91), [anon_sym_bracket] = ACTIONS(91), - [anon_sym_76] = ACTIONS(91), + [anon_sym_78] = ACTIONS(91), [anon_sym_fork] = ACTIONS(91), - [anon_sym_77] = ACTIONS(91), + [anon_sym_79] = ACTIONS(91), [anon_sym_under] = ACTIONS(91), - [anon_sym_78] = ACTIONS(91), + [anon_sym_80] = ACTIONS(91), [anon_sym_fill] = ACTIONS(91), - [anon_sym_79] = ACTIONS(91), + [anon_sym_81] = ACTIONS(91), [anon_sym_try] = ACTIONS(93), - [anon_sym_80] = ACTIONS(91), + [anon_sym_82] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), - [anon_sym_81] = ACTIONS(91), - [anon_sym_82] = ACTIONS(95), - [anon_sym_83] = ACTIONS(95), - [anon_sym_84] = ACTIONS(95), + [anon_sym_83] = ACTIONS(91), + [anon_sym_all] = ACTIONS(91), + [anon_sym_84] = ACTIONS(91), + [anon_sym_setinv] = ACTIONS(91), + [anon_sym_setunder] = ACTIONS(91), [anon_sym_85] = ACTIONS(95), [anon_sym_86] = ACTIONS(95), [anon_sym_87] = ACTIONS(95), @@ -16731,6 +17266,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(95), [anon_sym_91] = ACTIONS(95), [anon_sym_92] = ACTIONS(95), + [anon_sym_93] = ACTIONS(95), + [anon_sym_94] = ACTIONS(95), + [anon_sym_95] = ACTIONS(95), + [anon_sym_96] = ACTIONS(95), [sym__endOfLine] = ACTIONS(71), }, [43] = { @@ -16937,35 +17476,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(89), [anon_sym_pack] = ACTIONS(89), [anon_sym_68] = ACTIONS(89), - [anon_sym_reach] = ACTIONS(89), + [anon_sym_rectify] = ACTIONS(89), [anon_sym_69] = ACTIONS(89), + [anon_sym_this] = ACTIONS(89), + [anon_sym_70] = ACTIONS(89), + [anon_sym_recur] = ACTIONS(89), + [anon_sym_71] = ACTIONS(89), [anon_sym_fold] = ACTIONS(91), - [anon_sym_70] = ACTIONS(91), + [anon_sym_72] = ACTIONS(91), [anon_sym_table] = ACTIONS(91), - [anon_sym_71] = ACTIONS(91), + [anon_sym_73] = ACTIONS(91), [anon_sym_cross] = ACTIONS(91), - [anon_sym_72] = ACTIONS(91), + [anon_sym_74] = ACTIONS(91), [anon_sym_group] = ACTIONS(91), - [anon_sym_73] = ACTIONS(91), + [anon_sym_75] = ACTIONS(91), [anon_sym_partition] = ACTIONS(91), - [anon_sym_74] = ACTIONS(91), + [anon_sym_76] = ACTIONS(91), [anon_sym_both] = ACTIONS(91), - [anon_sym_75] = ACTIONS(91), + [anon_sym_77] = ACTIONS(91), [anon_sym_bracket] = ACTIONS(91), - [anon_sym_76] = ACTIONS(91), + [anon_sym_78] = ACTIONS(91), [anon_sym_fork] = ACTIONS(91), - [anon_sym_77] = ACTIONS(91), + [anon_sym_79] = ACTIONS(91), [anon_sym_under] = ACTIONS(91), - [anon_sym_78] = ACTIONS(91), + [anon_sym_80] = ACTIONS(91), [anon_sym_fill] = ACTIONS(91), - [anon_sym_79] = ACTIONS(91), + [anon_sym_81] = ACTIONS(91), [anon_sym_try] = ACTIONS(93), - [anon_sym_80] = ACTIONS(91), + [anon_sym_82] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), - [anon_sym_81] = ACTIONS(91), - [anon_sym_82] = ACTIONS(95), - [anon_sym_83] = ACTIONS(95), - [anon_sym_84] = ACTIONS(95), + [anon_sym_83] = ACTIONS(91), + [anon_sym_all] = ACTIONS(91), + [anon_sym_84] = ACTIONS(91), + [anon_sym_setinv] = ACTIONS(91), + [anon_sym_setunder] = ACTIONS(91), [anon_sym_85] = ACTIONS(95), [anon_sym_86] = ACTIONS(95), [anon_sym_87] = ACTIONS(95), @@ -16974,6 +17518,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(95), [anon_sym_91] = ACTIONS(95), [anon_sym_92] = ACTIONS(95), + [anon_sym_93] = ACTIONS(95), + [anon_sym_94] = ACTIONS(95), + [anon_sym_95] = ACTIONS(95), + [anon_sym_96] = ACTIONS(95), [sym__endOfLine] = ACTIONS(5), }, [44] = { @@ -17180,35 +17728,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(89), [anon_sym_pack] = ACTIONS(89), [anon_sym_68] = ACTIONS(89), - [anon_sym_reach] = ACTIONS(89), + [anon_sym_rectify] = ACTIONS(89), [anon_sym_69] = ACTIONS(89), + [anon_sym_this] = ACTIONS(89), + [anon_sym_70] = ACTIONS(89), + [anon_sym_recur] = ACTIONS(89), + [anon_sym_71] = ACTIONS(89), [anon_sym_fold] = ACTIONS(91), - [anon_sym_70] = ACTIONS(91), + [anon_sym_72] = ACTIONS(91), [anon_sym_table] = ACTIONS(91), - [anon_sym_71] = ACTIONS(91), + [anon_sym_73] = ACTIONS(91), [anon_sym_cross] = ACTIONS(91), - [anon_sym_72] = ACTIONS(91), + [anon_sym_74] = ACTIONS(91), [anon_sym_group] = ACTIONS(91), - [anon_sym_73] = ACTIONS(91), + [anon_sym_75] = ACTIONS(91), [anon_sym_partition] = ACTIONS(91), - [anon_sym_74] = ACTIONS(91), + [anon_sym_76] = ACTIONS(91), [anon_sym_both] = ACTIONS(91), - [anon_sym_75] = ACTIONS(91), + [anon_sym_77] = ACTIONS(91), [anon_sym_bracket] = ACTIONS(91), - [anon_sym_76] = ACTIONS(91), + [anon_sym_78] = ACTIONS(91), [anon_sym_fork] = ACTIONS(91), - [anon_sym_77] = ACTIONS(91), + [anon_sym_79] = ACTIONS(91), [anon_sym_under] = ACTIONS(91), - [anon_sym_78] = ACTIONS(91), + [anon_sym_80] = ACTIONS(91), [anon_sym_fill] = ACTIONS(91), - [anon_sym_79] = ACTIONS(91), + [anon_sym_81] = ACTIONS(91), [anon_sym_try] = ACTIONS(93), - [anon_sym_80] = ACTIONS(91), + [anon_sym_82] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), - [anon_sym_81] = ACTIONS(91), - [anon_sym_82] = ACTIONS(95), - [anon_sym_83] = ACTIONS(95), - [anon_sym_84] = ACTIONS(95), + [anon_sym_83] = ACTIONS(91), + [anon_sym_all] = ACTIONS(91), + [anon_sym_84] = ACTIONS(91), + [anon_sym_setinv] = ACTIONS(91), + [anon_sym_setunder] = ACTIONS(91), [anon_sym_85] = ACTIONS(95), [anon_sym_86] = ACTIONS(95), [anon_sym_87] = ACTIONS(95), @@ -17217,6 +17770,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(95), [anon_sym_91] = ACTIONS(95), [anon_sym_92] = ACTIONS(95), + [anon_sym_93] = ACTIONS(95), + [anon_sym_94] = ACTIONS(95), + [anon_sym_95] = ACTIONS(95), + [anon_sym_96] = ACTIONS(95), [sym__endOfLine] = ACTIONS(5), }, [45] = { @@ -17423,35 +17980,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(271), [anon_sym_pack] = ACTIONS(271), [anon_sym_68] = ACTIONS(271), - [anon_sym_reach] = ACTIONS(271), + [anon_sym_rectify] = ACTIONS(271), [anon_sym_69] = ACTIONS(271), + [anon_sym_this] = ACTIONS(271), + [anon_sym_70] = ACTIONS(271), + [anon_sym_recur] = ACTIONS(271), + [anon_sym_71] = ACTIONS(271), [anon_sym_fold] = ACTIONS(273), - [anon_sym_70] = ACTIONS(273), + [anon_sym_72] = ACTIONS(273), [anon_sym_table] = ACTIONS(273), - [anon_sym_71] = ACTIONS(273), + [anon_sym_73] = ACTIONS(273), [anon_sym_cross] = ACTIONS(273), - [anon_sym_72] = ACTIONS(273), + [anon_sym_74] = ACTIONS(273), [anon_sym_group] = ACTIONS(273), - [anon_sym_73] = ACTIONS(273), + [anon_sym_75] = ACTIONS(273), [anon_sym_partition] = ACTIONS(273), - [anon_sym_74] = ACTIONS(273), + [anon_sym_76] = ACTIONS(273), [anon_sym_both] = ACTIONS(273), - [anon_sym_75] = ACTIONS(273), + [anon_sym_77] = ACTIONS(273), [anon_sym_bracket] = ACTIONS(273), - [anon_sym_76] = ACTIONS(273), + [anon_sym_78] = ACTIONS(273), [anon_sym_fork] = ACTIONS(273), - [anon_sym_77] = ACTIONS(273), + [anon_sym_79] = ACTIONS(273), [anon_sym_under] = ACTIONS(273), - [anon_sym_78] = ACTIONS(273), + [anon_sym_80] = ACTIONS(273), [anon_sym_fill] = ACTIONS(273), - [anon_sym_79] = ACTIONS(273), + [anon_sym_81] = ACTIONS(273), [anon_sym_try] = ACTIONS(275), - [anon_sym_80] = ACTIONS(273), + [anon_sym_82] = ACTIONS(273), [anon_sym_do] = ACTIONS(275), - [anon_sym_81] = ACTIONS(273), - [anon_sym_82] = ACTIONS(277), - [anon_sym_83] = ACTIONS(277), - [anon_sym_84] = ACTIONS(277), + [anon_sym_83] = ACTIONS(273), + [anon_sym_all] = ACTIONS(273), + [anon_sym_84] = ACTIONS(273), + [anon_sym_setinv] = ACTIONS(273), + [anon_sym_setunder] = ACTIONS(273), [anon_sym_85] = ACTIONS(277), [anon_sym_86] = ACTIONS(277), [anon_sym_87] = ACTIONS(277), @@ -17460,6 +18022,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(277), [anon_sym_91] = ACTIONS(277), [anon_sym_92] = ACTIONS(277), + [anon_sym_93] = ACTIONS(277), + [anon_sym_94] = ACTIONS(277), + [anon_sym_95] = ACTIONS(277), + [anon_sym_96] = ACTIONS(277), [sym__endOfLine] = ACTIONS(5), }, [46] = { @@ -17666,35 +18232,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(89), [anon_sym_pack] = ACTIONS(89), [anon_sym_68] = ACTIONS(89), - [anon_sym_reach] = ACTIONS(89), + [anon_sym_rectify] = ACTIONS(89), [anon_sym_69] = ACTIONS(89), + [anon_sym_this] = ACTIONS(89), + [anon_sym_70] = ACTIONS(89), + [anon_sym_recur] = ACTIONS(89), + [anon_sym_71] = ACTIONS(89), [anon_sym_fold] = ACTIONS(91), - [anon_sym_70] = ACTIONS(91), + [anon_sym_72] = ACTIONS(91), [anon_sym_table] = ACTIONS(91), - [anon_sym_71] = ACTIONS(91), + [anon_sym_73] = ACTIONS(91), [anon_sym_cross] = ACTIONS(91), - [anon_sym_72] = ACTIONS(91), + [anon_sym_74] = ACTIONS(91), [anon_sym_group] = ACTIONS(91), - [anon_sym_73] = ACTIONS(91), + [anon_sym_75] = ACTIONS(91), [anon_sym_partition] = ACTIONS(91), - [anon_sym_74] = ACTIONS(91), + [anon_sym_76] = ACTIONS(91), [anon_sym_both] = ACTIONS(91), - [anon_sym_75] = ACTIONS(91), + [anon_sym_77] = ACTIONS(91), [anon_sym_bracket] = ACTIONS(91), - [anon_sym_76] = ACTIONS(91), + [anon_sym_78] = ACTIONS(91), [anon_sym_fork] = ACTIONS(91), - [anon_sym_77] = ACTIONS(91), + [anon_sym_79] = ACTIONS(91), [anon_sym_under] = ACTIONS(91), - [anon_sym_78] = ACTIONS(91), + [anon_sym_80] = ACTIONS(91), [anon_sym_fill] = ACTIONS(91), - [anon_sym_79] = ACTIONS(91), + [anon_sym_81] = ACTIONS(91), [anon_sym_try] = ACTIONS(93), - [anon_sym_80] = ACTIONS(91), + [anon_sym_82] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), - [anon_sym_81] = ACTIONS(91), - [anon_sym_82] = ACTIONS(95), - [anon_sym_83] = ACTIONS(95), - [anon_sym_84] = ACTIONS(95), + [anon_sym_83] = ACTIONS(91), + [anon_sym_all] = ACTIONS(91), + [anon_sym_84] = ACTIONS(91), + [anon_sym_setinv] = ACTIONS(91), + [anon_sym_setunder] = ACTIONS(91), [anon_sym_85] = ACTIONS(95), [anon_sym_86] = ACTIONS(95), [anon_sym_87] = ACTIONS(95), @@ -17703,6 +18274,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(95), [anon_sym_91] = ACTIONS(95), [anon_sym_92] = ACTIONS(95), + [anon_sym_93] = ACTIONS(95), + [anon_sym_94] = ACTIONS(95), + [anon_sym_95] = ACTIONS(95), + [anon_sym_96] = ACTIONS(95), [sym__endOfLine] = ACTIONS(357), }, [47] = { @@ -17909,35 +18484,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(89), [anon_sym_pack] = ACTIONS(89), [anon_sym_68] = ACTIONS(89), - [anon_sym_reach] = ACTIONS(89), + [anon_sym_rectify] = ACTIONS(89), [anon_sym_69] = ACTIONS(89), + [anon_sym_this] = ACTIONS(89), + [anon_sym_70] = ACTIONS(89), + [anon_sym_recur] = ACTIONS(89), + [anon_sym_71] = ACTIONS(89), [anon_sym_fold] = ACTIONS(91), - [anon_sym_70] = ACTIONS(91), + [anon_sym_72] = ACTIONS(91), [anon_sym_table] = ACTIONS(91), - [anon_sym_71] = ACTIONS(91), + [anon_sym_73] = ACTIONS(91), [anon_sym_cross] = ACTIONS(91), - [anon_sym_72] = ACTIONS(91), + [anon_sym_74] = ACTIONS(91), [anon_sym_group] = ACTIONS(91), - [anon_sym_73] = ACTIONS(91), + [anon_sym_75] = ACTIONS(91), [anon_sym_partition] = ACTIONS(91), - [anon_sym_74] = ACTIONS(91), + [anon_sym_76] = ACTIONS(91), [anon_sym_both] = ACTIONS(91), - [anon_sym_75] = ACTIONS(91), + [anon_sym_77] = ACTIONS(91), [anon_sym_bracket] = ACTIONS(91), - [anon_sym_76] = ACTIONS(91), + [anon_sym_78] = ACTIONS(91), [anon_sym_fork] = ACTIONS(91), - [anon_sym_77] = ACTIONS(91), + [anon_sym_79] = ACTIONS(91), [anon_sym_under] = ACTIONS(91), - [anon_sym_78] = ACTIONS(91), + [anon_sym_80] = ACTIONS(91), [anon_sym_fill] = ACTIONS(91), - [anon_sym_79] = ACTIONS(91), + [anon_sym_81] = ACTIONS(91), [anon_sym_try] = ACTIONS(93), - [anon_sym_80] = ACTIONS(91), + [anon_sym_82] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), - [anon_sym_81] = ACTIONS(91), - [anon_sym_82] = ACTIONS(95), - [anon_sym_83] = ACTIONS(95), - [anon_sym_84] = ACTIONS(95), + [anon_sym_83] = ACTIONS(91), + [anon_sym_all] = ACTIONS(91), + [anon_sym_84] = ACTIONS(91), + [anon_sym_setinv] = ACTIONS(91), + [anon_sym_setunder] = ACTIONS(91), [anon_sym_85] = ACTIONS(95), [anon_sym_86] = ACTIONS(95), [anon_sym_87] = ACTIONS(95), @@ -17946,6 +18526,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(95), [anon_sym_91] = ACTIONS(95), [anon_sym_92] = ACTIONS(95), + [anon_sym_93] = ACTIONS(95), + [anon_sym_94] = ACTIONS(95), + [anon_sym_95] = ACTIONS(95), + [anon_sym_96] = ACTIONS(95), [sym__endOfLine] = ACTIONS(359), }, [48] = { @@ -18152,35 +18736,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(89), [anon_sym_pack] = ACTIONS(89), [anon_sym_68] = ACTIONS(89), - [anon_sym_reach] = ACTIONS(89), + [anon_sym_rectify] = ACTIONS(89), [anon_sym_69] = ACTIONS(89), + [anon_sym_this] = ACTIONS(89), + [anon_sym_70] = ACTIONS(89), + [anon_sym_recur] = ACTIONS(89), + [anon_sym_71] = ACTIONS(89), [anon_sym_fold] = ACTIONS(91), - [anon_sym_70] = ACTIONS(91), + [anon_sym_72] = ACTIONS(91), [anon_sym_table] = ACTIONS(91), - [anon_sym_71] = ACTIONS(91), + [anon_sym_73] = ACTIONS(91), [anon_sym_cross] = ACTIONS(91), - [anon_sym_72] = ACTIONS(91), + [anon_sym_74] = ACTIONS(91), [anon_sym_group] = ACTIONS(91), - [anon_sym_73] = ACTIONS(91), + [anon_sym_75] = ACTIONS(91), [anon_sym_partition] = ACTIONS(91), - [anon_sym_74] = ACTIONS(91), + [anon_sym_76] = ACTIONS(91), [anon_sym_both] = ACTIONS(91), - [anon_sym_75] = ACTIONS(91), + [anon_sym_77] = ACTIONS(91), [anon_sym_bracket] = ACTIONS(91), - [anon_sym_76] = ACTIONS(91), + [anon_sym_78] = ACTIONS(91), [anon_sym_fork] = ACTIONS(91), - [anon_sym_77] = ACTIONS(91), + [anon_sym_79] = ACTIONS(91), [anon_sym_under] = ACTIONS(91), - [anon_sym_78] = ACTIONS(91), + [anon_sym_80] = ACTIONS(91), [anon_sym_fill] = ACTIONS(91), - [anon_sym_79] = ACTIONS(91), + [anon_sym_81] = ACTIONS(91), [anon_sym_try] = ACTIONS(93), - [anon_sym_80] = ACTIONS(91), + [anon_sym_82] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), - [anon_sym_81] = ACTIONS(91), - [anon_sym_82] = ACTIONS(95), - [anon_sym_83] = ACTIONS(95), - [anon_sym_84] = ACTIONS(95), + [anon_sym_83] = ACTIONS(91), + [anon_sym_all] = ACTIONS(91), + [anon_sym_84] = ACTIONS(91), + [anon_sym_setinv] = ACTIONS(91), + [anon_sym_setunder] = ACTIONS(91), [anon_sym_85] = ACTIONS(95), [anon_sym_86] = ACTIONS(95), [anon_sym_87] = ACTIONS(95), @@ -18189,6 +18778,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(95), [anon_sym_91] = ACTIONS(95), [anon_sym_92] = ACTIONS(95), + [anon_sym_93] = ACTIONS(95), + [anon_sym_94] = ACTIONS(95), + [anon_sym_95] = ACTIONS(95), + [anon_sym_96] = ACTIONS(95), [sym__endOfLine] = ACTIONS(361), }, [49] = { @@ -18395,35 +18988,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(271), [anon_sym_pack] = ACTIONS(271), [anon_sym_68] = ACTIONS(271), - [anon_sym_reach] = ACTIONS(271), + [anon_sym_rectify] = ACTIONS(271), [anon_sym_69] = ACTIONS(271), + [anon_sym_this] = ACTIONS(271), + [anon_sym_70] = ACTIONS(271), + [anon_sym_recur] = ACTIONS(271), + [anon_sym_71] = ACTIONS(271), [anon_sym_fold] = ACTIONS(273), - [anon_sym_70] = ACTIONS(273), + [anon_sym_72] = ACTIONS(273), [anon_sym_table] = ACTIONS(273), - [anon_sym_71] = ACTIONS(273), + [anon_sym_73] = ACTIONS(273), [anon_sym_cross] = ACTIONS(273), - [anon_sym_72] = ACTIONS(273), + [anon_sym_74] = ACTIONS(273), [anon_sym_group] = ACTIONS(273), - [anon_sym_73] = ACTIONS(273), + [anon_sym_75] = ACTIONS(273), [anon_sym_partition] = ACTIONS(273), - [anon_sym_74] = ACTIONS(273), + [anon_sym_76] = ACTIONS(273), [anon_sym_both] = ACTIONS(273), - [anon_sym_75] = ACTIONS(273), + [anon_sym_77] = ACTIONS(273), [anon_sym_bracket] = ACTIONS(273), - [anon_sym_76] = ACTIONS(273), + [anon_sym_78] = ACTIONS(273), [anon_sym_fork] = ACTIONS(273), - [anon_sym_77] = ACTIONS(273), + [anon_sym_79] = ACTIONS(273), [anon_sym_under] = ACTIONS(273), - [anon_sym_78] = ACTIONS(273), + [anon_sym_80] = ACTIONS(273), [anon_sym_fill] = ACTIONS(273), - [anon_sym_79] = ACTIONS(273), + [anon_sym_81] = ACTIONS(273), [anon_sym_try] = ACTIONS(275), - [anon_sym_80] = ACTIONS(273), + [anon_sym_82] = ACTIONS(273), [anon_sym_do] = ACTIONS(275), - [anon_sym_81] = ACTIONS(273), - [anon_sym_82] = ACTIONS(277), - [anon_sym_83] = ACTIONS(277), - [anon_sym_84] = ACTIONS(277), + [anon_sym_83] = ACTIONS(273), + [anon_sym_all] = ACTIONS(273), + [anon_sym_84] = ACTIONS(273), + [anon_sym_setinv] = ACTIONS(273), + [anon_sym_setunder] = ACTIONS(273), [anon_sym_85] = ACTIONS(277), [anon_sym_86] = ACTIONS(277), [anon_sym_87] = ACTIONS(277), @@ -18432,6 +19030,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(277), [anon_sym_91] = ACTIONS(277), [anon_sym_92] = ACTIONS(277), + [anon_sym_93] = ACTIONS(277), + [anon_sym_94] = ACTIONS(277), + [anon_sym_95] = ACTIONS(277), + [anon_sym_96] = ACTIONS(277), [sym__endOfLine] = ACTIONS(5), }, [50] = { @@ -18637,35 +19239,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(89), [anon_sym_pack] = ACTIONS(89), [anon_sym_68] = ACTIONS(89), - [anon_sym_reach] = ACTIONS(89), + [anon_sym_rectify] = ACTIONS(89), [anon_sym_69] = ACTIONS(89), + [anon_sym_this] = ACTIONS(89), + [anon_sym_70] = ACTIONS(89), + [anon_sym_recur] = ACTIONS(89), + [anon_sym_71] = ACTIONS(89), [anon_sym_fold] = ACTIONS(91), - [anon_sym_70] = ACTIONS(91), + [anon_sym_72] = ACTIONS(91), [anon_sym_table] = ACTIONS(91), - [anon_sym_71] = ACTIONS(91), + [anon_sym_73] = ACTIONS(91), [anon_sym_cross] = ACTIONS(91), - [anon_sym_72] = ACTIONS(91), + [anon_sym_74] = ACTIONS(91), [anon_sym_group] = ACTIONS(91), - [anon_sym_73] = ACTIONS(91), + [anon_sym_75] = ACTIONS(91), [anon_sym_partition] = ACTIONS(91), - [anon_sym_74] = ACTIONS(91), + [anon_sym_76] = ACTIONS(91), [anon_sym_both] = ACTIONS(91), - [anon_sym_75] = ACTIONS(91), + [anon_sym_77] = ACTIONS(91), [anon_sym_bracket] = ACTIONS(91), - [anon_sym_76] = ACTIONS(91), + [anon_sym_78] = ACTIONS(91), [anon_sym_fork] = ACTIONS(91), - [anon_sym_77] = ACTIONS(91), + [anon_sym_79] = ACTIONS(91), [anon_sym_under] = ACTIONS(91), - [anon_sym_78] = ACTIONS(91), + [anon_sym_80] = ACTIONS(91), [anon_sym_fill] = ACTIONS(91), - [anon_sym_79] = ACTIONS(91), + [anon_sym_81] = ACTIONS(91), [anon_sym_try] = ACTIONS(93), - [anon_sym_80] = ACTIONS(91), + [anon_sym_82] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), - [anon_sym_81] = ACTIONS(91), - [anon_sym_82] = ACTIONS(95), - [anon_sym_83] = ACTIONS(95), - [anon_sym_84] = ACTIONS(95), + [anon_sym_83] = ACTIONS(91), + [anon_sym_all] = ACTIONS(91), + [anon_sym_84] = ACTIONS(91), + [anon_sym_setinv] = ACTIONS(91), + [anon_sym_setunder] = ACTIONS(91), [anon_sym_85] = ACTIONS(95), [anon_sym_86] = ACTIONS(95), [anon_sym_87] = ACTIONS(95), @@ -18674,6 +19281,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(95), [anon_sym_91] = ACTIONS(95), [anon_sym_92] = ACTIONS(95), + [anon_sym_93] = ACTIONS(95), + [anon_sym_94] = ACTIONS(95), + [anon_sym_95] = ACTIONS(95), + [anon_sym_96] = ACTIONS(95), [sym__endOfLine] = ACTIONS(5), }, [51] = { @@ -18879,35 +19490,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(43), [anon_sym_pack] = ACTIONS(43), [anon_sym_68] = ACTIONS(43), - [anon_sym_reach] = ACTIONS(43), + [anon_sym_rectify] = ACTIONS(43), [anon_sym_69] = ACTIONS(43), + [anon_sym_this] = ACTIONS(43), + [anon_sym_70] = ACTIONS(43), + [anon_sym_recur] = ACTIONS(43), + [anon_sym_71] = ACTIONS(43), [anon_sym_fold] = ACTIONS(45), - [anon_sym_70] = ACTIONS(45), + [anon_sym_72] = ACTIONS(45), [anon_sym_table] = ACTIONS(45), - [anon_sym_71] = ACTIONS(45), + [anon_sym_73] = ACTIONS(45), [anon_sym_cross] = ACTIONS(45), - [anon_sym_72] = ACTIONS(45), + [anon_sym_74] = ACTIONS(45), [anon_sym_group] = ACTIONS(45), - [anon_sym_73] = ACTIONS(45), + [anon_sym_75] = ACTIONS(45), [anon_sym_partition] = ACTIONS(45), - [anon_sym_74] = ACTIONS(45), + [anon_sym_76] = ACTIONS(45), [anon_sym_both] = ACTIONS(45), - [anon_sym_75] = ACTIONS(45), + [anon_sym_77] = ACTIONS(45), [anon_sym_bracket] = ACTIONS(45), - [anon_sym_76] = ACTIONS(45), + [anon_sym_78] = ACTIONS(45), [anon_sym_fork] = ACTIONS(45), - [anon_sym_77] = ACTIONS(45), + [anon_sym_79] = ACTIONS(45), [anon_sym_under] = ACTIONS(45), - [anon_sym_78] = ACTIONS(45), + [anon_sym_80] = ACTIONS(45), [anon_sym_fill] = ACTIONS(45), - [anon_sym_79] = ACTIONS(45), + [anon_sym_81] = ACTIONS(45), [anon_sym_try] = ACTIONS(47), - [anon_sym_80] = ACTIONS(45), + [anon_sym_82] = ACTIONS(45), [anon_sym_do] = ACTIONS(47), - [anon_sym_81] = ACTIONS(45), - [anon_sym_82] = ACTIONS(49), - [anon_sym_83] = ACTIONS(49), - [anon_sym_84] = ACTIONS(49), + [anon_sym_83] = ACTIONS(45), + [anon_sym_all] = ACTIONS(45), + [anon_sym_84] = ACTIONS(45), + [anon_sym_setinv] = ACTIONS(45), + [anon_sym_setunder] = ACTIONS(45), [anon_sym_85] = ACTIONS(49), [anon_sym_86] = ACTIONS(49), [anon_sym_87] = ACTIONS(49), @@ -18916,6 +19532,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(49), [anon_sym_91] = ACTIONS(49), [anon_sym_92] = ACTIONS(49), + [anon_sym_93] = ACTIONS(49), + [anon_sym_94] = ACTIONS(49), + [anon_sym_95] = ACTIONS(49), + [anon_sym_96] = ACTIONS(49), [sym__endOfLine] = ACTIONS(71), }, [52] = { @@ -19121,35 +19741,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(89), [anon_sym_pack] = ACTIONS(89), [anon_sym_68] = ACTIONS(89), - [anon_sym_reach] = ACTIONS(89), + [anon_sym_rectify] = ACTIONS(89), [anon_sym_69] = ACTIONS(89), + [anon_sym_this] = ACTIONS(89), + [anon_sym_70] = ACTIONS(89), + [anon_sym_recur] = ACTIONS(89), + [anon_sym_71] = ACTIONS(89), [anon_sym_fold] = ACTIONS(91), - [anon_sym_70] = ACTIONS(91), + [anon_sym_72] = ACTIONS(91), [anon_sym_table] = ACTIONS(91), - [anon_sym_71] = ACTIONS(91), + [anon_sym_73] = ACTIONS(91), [anon_sym_cross] = ACTIONS(91), - [anon_sym_72] = ACTIONS(91), + [anon_sym_74] = ACTIONS(91), [anon_sym_group] = ACTIONS(91), - [anon_sym_73] = ACTIONS(91), + [anon_sym_75] = ACTIONS(91), [anon_sym_partition] = ACTIONS(91), - [anon_sym_74] = ACTIONS(91), + [anon_sym_76] = ACTIONS(91), [anon_sym_both] = ACTIONS(91), - [anon_sym_75] = ACTIONS(91), + [anon_sym_77] = ACTIONS(91), [anon_sym_bracket] = ACTIONS(91), - [anon_sym_76] = ACTIONS(91), + [anon_sym_78] = ACTIONS(91), [anon_sym_fork] = ACTIONS(91), - [anon_sym_77] = ACTIONS(91), + [anon_sym_79] = ACTIONS(91), [anon_sym_under] = ACTIONS(91), - [anon_sym_78] = ACTIONS(91), + [anon_sym_80] = ACTIONS(91), [anon_sym_fill] = ACTIONS(91), - [anon_sym_79] = ACTIONS(91), + [anon_sym_81] = ACTIONS(91), [anon_sym_try] = ACTIONS(93), - [anon_sym_80] = ACTIONS(91), + [anon_sym_82] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), - [anon_sym_81] = ACTIONS(91), - [anon_sym_82] = ACTIONS(95), - [anon_sym_83] = ACTIONS(95), - [anon_sym_84] = ACTIONS(95), + [anon_sym_83] = ACTIONS(91), + [anon_sym_all] = ACTIONS(91), + [anon_sym_84] = ACTIONS(91), + [anon_sym_setinv] = ACTIONS(91), + [anon_sym_setunder] = ACTIONS(91), [anon_sym_85] = ACTIONS(95), [anon_sym_86] = ACTIONS(95), [anon_sym_87] = ACTIONS(95), @@ -19158,6 +19783,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(95), [anon_sym_91] = ACTIONS(95), [anon_sym_92] = ACTIONS(95), + [anon_sym_93] = ACTIONS(95), + [anon_sym_94] = ACTIONS(95), + [anon_sym_95] = ACTIONS(95), + [anon_sym_96] = ACTIONS(95), [sym__endOfLine] = ACTIONS(5), }, [53] = { @@ -19363,35 +19992,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(43), [anon_sym_pack] = ACTIONS(43), [anon_sym_68] = ACTIONS(43), - [anon_sym_reach] = ACTIONS(43), + [anon_sym_rectify] = ACTIONS(43), [anon_sym_69] = ACTIONS(43), + [anon_sym_this] = ACTIONS(43), + [anon_sym_70] = ACTIONS(43), + [anon_sym_recur] = ACTIONS(43), + [anon_sym_71] = ACTIONS(43), [anon_sym_fold] = ACTIONS(45), - [anon_sym_70] = ACTIONS(45), + [anon_sym_72] = ACTIONS(45), [anon_sym_table] = ACTIONS(45), - [anon_sym_71] = ACTIONS(45), + [anon_sym_73] = ACTIONS(45), [anon_sym_cross] = ACTIONS(45), - [anon_sym_72] = ACTIONS(45), + [anon_sym_74] = ACTIONS(45), [anon_sym_group] = ACTIONS(45), - [anon_sym_73] = ACTIONS(45), + [anon_sym_75] = ACTIONS(45), [anon_sym_partition] = ACTIONS(45), - [anon_sym_74] = ACTIONS(45), + [anon_sym_76] = ACTIONS(45), [anon_sym_both] = ACTIONS(45), - [anon_sym_75] = ACTIONS(45), + [anon_sym_77] = ACTIONS(45), [anon_sym_bracket] = ACTIONS(45), - [anon_sym_76] = ACTIONS(45), + [anon_sym_78] = ACTIONS(45), [anon_sym_fork] = ACTIONS(45), - [anon_sym_77] = ACTIONS(45), + [anon_sym_79] = ACTIONS(45), [anon_sym_under] = ACTIONS(45), - [anon_sym_78] = ACTIONS(45), + [anon_sym_80] = ACTIONS(45), [anon_sym_fill] = ACTIONS(45), - [anon_sym_79] = ACTIONS(45), + [anon_sym_81] = ACTIONS(45), [anon_sym_try] = ACTIONS(47), - [anon_sym_80] = ACTIONS(45), + [anon_sym_82] = ACTIONS(45), [anon_sym_do] = ACTIONS(47), - [anon_sym_81] = ACTIONS(45), - [anon_sym_82] = ACTIONS(49), - [anon_sym_83] = ACTIONS(49), - [anon_sym_84] = ACTIONS(49), + [anon_sym_83] = ACTIONS(45), + [anon_sym_all] = ACTIONS(45), + [anon_sym_84] = ACTIONS(45), + [anon_sym_setinv] = ACTIONS(45), + [anon_sym_setunder] = ACTIONS(45), [anon_sym_85] = ACTIONS(49), [anon_sym_86] = ACTIONS(49), [anon_sym_87] = ACTIONS(49), @@ -19400,6 +20034,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(49), [anon_sym_91] = ACTIONS(49), [anon_sym_92] = ACTIONS(49), + [anon_sym_93] = ACTIONS(49), + [anon_sym_94] = ACTIONS(49), + [anon_sym_95] = ACTIONS(49), + [anon_sym_96] = ACTIONS(49), [sym__endOfLine] = ACTIONS(5), }, [54] = { @@ -19605,35 +20243,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(89), [anon_sym_pack] = ACTIONS(89), [anon_sym_68] = ACTIONS(89), - [anon_sym_reach] = ACTIONS(89), + [anon_sym_rectify] = ACTIONS(89), [anon_sym_69] = ACTIONS(89), + [anon_sym_this] = ACTIONS(89), + [anon_sym_70] = ACTIONS(89), + [anon_sym_recur] = ACTIONS(89), + [anon_sym_71] = ACTIONS(89), [anon_sym_fold] = ACTIONS(91), - [anon_sym_70] = ACTIONS(91), + [anon_sym_72] = ACTIONS(91), [anon_sym_table] = ACTIONS(91), - [anon_sym_71] = ACTIONS(91), + [anon_sym_73] = ACTIONS(91), [anon_sym_cross] = ACTIONS(91), - [anon_sym_72] = ACTIONS(91), + [anon_sym_74] = ACTIONS(91), [anon_sym_group] = ACTIONS(91), - [anon_sym_73] = ACTIONS(91), + [anon_sym_75] = ACTIONS(91), [anon_sym_partition] = ACTIONS(91), - [anon_sym_74] = ACTIONS(91), + [anon_sym_76] = ACTIONS(91), [anon_sym_both] = ACTIONS(91), - [anon_sym_75] = ACTIONS(91), + [anon_sym_77] = ACTIONS(91), [anon_sym_bracket] = ACTIONS(91), - [anon_sym_76] = ACTIONS(91), + [anon_sym_78] = ACTIONS(91), [anon_sym_fork] = ACTIONS(91), - [anon_sym_77] = ACTIONS(91), + [anon_sym_79] = ACTIONS(91), [anon_sym_under] = ACTIONS(91), - [anon_sym_78] = ACTIONS(91), + [anon_sym_80] = ACTIONS(91), [anon_sym_fill] = ACTIONS(91), - [anon_sym_79] = ACTIONS(91), + [anon_sym_81] = ACTIONS(91), [anon_sym_try] = ACTIONS(93), - [anon_sym_80] = ACTIONS(91), + [anon_sym_82] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), - [anon_sym_81] = ACTIONS(91), - [anon_sym_82] = ACTIONS(95), - [anon_sym_83] = ACTIONS(95), - [anon_sym_84] = ACTIONS(95), + [anon_sym_83] = ACTIONS(91), + [anon_sym_all] = ACTIONS(91), + [anon_sym_84] = ACTIONS(91), + [anon_sym_setinv] = ACTIONS(91), + [anon_sym_setunder] = ACTIONS(91), [anon_sym_85] = ACTIONS(95), [anon_sym_86] = ACTIONS(95), [anon_sym_87] = ACTIONS(95), @@ -19642,6 +20285,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(95), [anon_sym_91] = ACTIONS(95), [anon_sym_92] = ACTIONS(95), + [anon_sym_93] = ACTIONS(95), + [anon_sym_94] = ACTIONS(95), + [anon_sym_95] = ACTIONS(95), + [anon_sym_96] = ACTIONS(95), [sym__endOfLine] = ACTIONS(5), }, [55] = { @@ -19847,35 +20494,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(89), [anon_sym_pack] = ACTIONS(89), [anon_sym_68] = ACTIONS(89), - [anon_sym_reach] = ACTIONS(89), + [anon_sym_rectify] = ACTIONS(89), [anon_sym_69] = ACTIONS(89), + [anon_sym_this] = ACTIONS(89), + [anon_sym_70] = ACTIONS(89), + [anon_sym_recur] = ACTIONS(89), + [anon_sym_71] = ACTIONS(89), [anon_sym_fold] = ACTIONS(91), - [anon_sym_70] = ACTIONS(91), + [anon_sym_72] = ACTIONS(91), [anon_sym_table] = ACTIONS(91), - [anon_sym_71] = ACTIONS(91), + [anon_sym_73] = ACTIONS(91), [anon_sym_cross] = ACTIONS(91), - [anon_sym_72] = ACTIONS(91), + [anon_sym_74] = ACTIONS(91), [anon_sym_group] = ACTIONS(91), - [anon_sym_73] = ACTIONS(91), + [anon_sym_75] = ACTIONS(91), [anon_sym_partition] = ACTIONS(91), - [anon_sym_74] = ACTIONS(91), + [anon_sym_76] = ACTIONS(91), [anon_sym_both] = ACTIONS(91), - [anon_sym_75] = ACTIONS(91), + [anon_sym_77] = ACTIONS(91), [anon_sym_bracket] = ACTIONS(91), - [anon_sym_76] = ACTIONS(91), + [anon_sym_78] = ACTIONS(91), [anon_sym_fork] = ACTIONS(91), - [anon_sym_77] = ACTIONS(91), + [anon_sym_79] = ACTIONS(91), [anon_sym_under] = ACTIONS(91), - [anon_sym_78] = ACTIONS(91), + [anon_sym_80] = ACTIONS(91), [anon_sym_fill] = ACTIONS(91), - [anon_sym_79] = ACTIONS(91), + [anon_sym_81] = ACTIONS(91), [anon_sym_try] = ACTIONS(93), - [anon_sym_80] = ACTIONS(91), + [anon_sym_82] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), - [anon_sym_81] = ACTIONS(91), - [anon_sym_82] = ACTIONS(95), - [anon_sym_83] = ACTIONS(95), - [anon_sym_84] = ACTIONS(95), + [anon_sym_83] = ACTIONS(91), + [anon_sym_all] = ACTIONS(91), + [anon_sym_84] = ACTIONS(91), + [anon_sym_setinv] = ACTIONS(91), + [anon_sym_setunder] = ACTIONS(91), [anon_sym_85] = ACTIONS(95), [anon_sym_86] = ACTIONS(95), [anon_sym_87] = ACTIONS(95), @@ -19884,6 +20536,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(95), [anon_sym_91] = ACTIONS(95), [anon_sym_92] = ACTIONS(95), + [anon_sym_93] = ACTIONS(95), + [anon_sym_94] = ACTIONS(95), + [anon_sym_95] = ACTIONS(95), + [anon_sym_96] = ACTIONS(95), [sym__endOfLine] = ACTIONS(5), }, [56] = { @@ -20089,35 +20745,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(411), [anon_sym_pack] = ACTIONS(411), [anon_sym_68] = ACTIONS(411), - [anon_sym_reach] = ACTIONS(411), + [anon_sym_rectify] = ACTIONS(411), [anon_sym_69] = ACTIONS(411), + [anon_sym_this] = ACTIONS(411), + [anon_sym_70] = ACTIONS(411), + [anon_sym_recur] = ACTIONS(411), + [anon_sym_71] = ACTIONS(411), [anon_sym_fold] = ACTIONS(414), - [anon_sym_70] = ACTIONS(414), + [anon_sym_72] = ACTIONS(414), [anon_sym_table] = ACTIONS(414), - [anon_sym_71] = ACTIONS(414), + [anon_sym_73] = ACTIONS(414), [anon_sym_cross] = ACTIONS(414), - [anon_sym_72] = ACTIONS(414), + [anon_sym_74] = ACTIONS(414), [anon_sym_group] = ACTIONS(414), - [anon_sym_73] = ACTIONS(414), + [anon_sym_75] = ACTIONS(414), [anon_sym_partition] = ACTIONS(414), - [anon_sym_74] = ACTIONS(414), + [anon_sym_76] = ACTIONS(414), [anon_sym_both] = ACTIONS(414), - [anon_sym_75] = ACTIONS(414), + [anon_sym_77] = ACTIONS(414), [anon_sym_bracket] = ACTIONS(414), - [anon_sym_76] = ACTIONS(414), + [anon_sym_78] = ACTIONS(414), [anon_sym_fork] = ACTIONS(414), - [anon_sym_77] = ACTIONS(414), + [anon_sym_79] = ACTIONS(414), [anon_sym_under] = ACTIONS(414), - [anon_sym_78] = ACTIONS(414), + [anon_sym_80] = ACTIONS(414), [anon_sym_fill] = ACTIONS(414), - [anon_sym_79] = ACTIONS(414), + [anon_sym_81] = ACTIONS(414), [anon_sym_try] = ACTIONS(417), - [anon_sym_80] = ACTIONS(414), + [anon_sym_82] = ACTIONS(414), [anon_sym_do] = ACTIONS(417), - [anon_sym_81] = ACTIONS(414), - [anon_sym_82] = ACTIONS(420), - [anon_sym_83] = ACTIONS(420), - [anon_sym_84] = ACTIONS(420), + [anon_sym_83] = ACTIONS(414), + [anon_sym_all] = ACTIONS(414), + [anon_sym_84] = ACTIONS(414), + [anon_sym_setinv] = ACTIONS(414), + [anon_sym_setunder] = ACTIONS(414), [anon_sym_85] = ACTIONS(420), [anon_sym_86] = ACTIONS(420), [anon_sym_87] = ACTIONS(420), @@ -20126,6 +20787,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(420), [anon_sym_91] = ACTIONS(420), [anon_sym_92] = ACTIONS(420), + [anon_sym_93] = ACTIONS(420), + [anon_sym_94] = ACTIONS(420), + [anon_sym_95] = ACTIONS(420), + [anon_sym_96] = ACTIONS(420), [sym__endOfLine] = ACTIONS(5), }, [57] = { @@ -20331,35 +20996,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(89), [anon_sym_pack] = ACTIONS(89), [anon_sym_68] = ACTIONS(89), - [anon_sym_reach] = ACTIONS(89), + [anon_sym_rectify] = ACTIONS(89), [anon_sym_69] = ACTIONS(89), + [anon_sym_this] = ACTIONS(89), + [anon_sym_70] = ACTIONS(89), + [anon_sym_recur] = ACTIONS(89), + [anon_sym_71] = ACTIONS(89), [anon_sym_fold] = ACTIONS(91), - [anon_sym_70] = ACTIONS(91), + [anon_sym_72] = ACTIONS(91), [anon_sym_table] = ACTIONS(91), - [anon_sym_71] = ACTIONS(91), + [anon_sym_73] = ACTIONS(91), [anon_sym_cross] = ACTIONS(91), - [anon_sym_72] = ACTIONS(91), + [anon_sym_74] = ACTIONS(91), [anon_sym_group] = ACTIONS(91), - [anon_sym_73] = ACTIONS(91), + [anon_sym_75] = ACTIONS(91), [anon_sym_partition] = ACTIONS(91), - [anon_sym_74] = ACTIONS(91), + [anon_sym_76] = ACTIONS(91), [anon_sym_both] = ACTIONS(91), - [anon_sym_75] = ACTIONS(91), + [anon_sym_77] = ACTIONS(91), [anon_sym_bracket] = ACTIONS(91), - [anon_sym_76] = ACTIONS(91), + [anon_sym_78] = ACTIONS(91), [anon_sym_fork] = ACTIONS(91), - [anon_sym_77] = ACTIONS(91), + [anon_sym_79] = ACTIONS(91), [anon_sym_under] = ACTIONS(91), - [anon_sym_78] = ACTIONS(91), + [anon_sym_80] = ACTIONS(91), [anon_sym_fill] = ACTIONS(91), - [anon_sym_79] = ACTIONS(91), + [anon_sym_81] = ACTIONS(91), [anon_sym_try] = ACTIONS(93), - [anon_sym_80] = ACTIONS(91), + [anon_sym_82] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), - [anon_sym_81] = ACTIONS(91), - [anon_sym_82] = ACTIONS(95), - [anon_sym_83] = ACTIONS(95), - [anon_sym_84] = ACTIONS(95), + [anon_sym_83] = ACTIONS(91), + [anon_sym_all] = ACTIONS(91), + [anon_sym_84] = ACTIONS(91), + [anon_sym_setinv] = ACTIONS(91), + [anon_sym_setunder] = ACTIONS(91), [anon_sym_85] = ACTIONS(95), [anon_sym_86] = ACTIONS(95), [anon_sym_87] = ACTIONS(95), @@ -20368,6 +21038,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(95), [anon_sym_91] = ACTIONS(95), [anon_sym_92] = ACTIONS(95), + [anon_sym_93] = ACTIONS(95), + [anon_sym_94] = ACTIONS(95), + [anon_sym_95] = ACTIONS(95), + [anon_sym_96] = ACTIONS(95), [sym__endOfLine] = ACTIONS(5), }, [58] = { @@ -20573,35 +21247,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(89), [anon_sym_pack] = ACTIONS(89), [anon_sym_68] = ACTIONS(89), - [anon_sym_reach] = ACTIONS(89), + [anon_sym_rectify] = ACTIONS(89), [anon_sym_69] = ACTIONS(89), + [anon_sym_this] = ACTIONS(89), + [anon_sym_70] = ACTIONS(89), + [anon_sym_recur] = ACTIONS(89), + [anon_sym_71] = ACTIONS(89), [anon_sym_fold] = ACTIONS(91), - [anon_sym_70] = ACTIONS(91), + [anon_sym_72] = ACTIONS(91), [anon_sym_table] = ACTIONS(91), - [anon_sym_71] = ACTIONS(91), + [anon_sym_73] = ACTIONS(91), [anon_sym_cross] = ACTIONS(91), - [anon_sym_72] = ACTIONS(91), + [anon_sym_74] = ACTIONS(91), [anon_sym_group] = ACTIONS(91), - [anon_sym_73] = ACTIONS(91), + [anon_sym_75] = ACTIONS(91), [anon_sym_partition] = ACTIONS(91), - [anon_sym_74] = ACTIONS(91), + [anon_sym_76] = ACTIONS(91), [anon_sym_both] = ACTIONS(91), - [anon_sym_75] = ACTIONS(91), + [anon_sym_77] = ACTIONS(91), [anon_sym_bracket] = ACTIONS(91), - [anon_sym_76] = ACTIONS(91), + [anon_sym_78] = ACTIONS(91), [anon_sym_fork] = ACTIONS(91), - [anon_sym_77] = ACTIONS(91), + [anon_sym_79] = ACTIONS(91), [anon_sym_under] = ACTIONS(91), - [anon_sym_78] = ACTIONS(91), + [anon_sym_80] = ACTIONS(91), [anon_sym_fill] = ACTIONS(91), - [anon_sym_79] = ACTIONS(91), + [anon_sym_81] = ACTIONS(91), [anon_sym_try] = ACTIONS(93), - [anon_sym_80] = ACTIONS(91), + [anon_sym_82] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), - [anon_sym_81] = ACTIONS(91), - [anon_sym_82] = ACTIONS(95), - [anon_sym_83] = ACTIONS(95), - [anon_sym_84] = ACTIONS(95), + [anon_sym_83] = ACTIONS(91), + [anon_sym_all] = ACTIONS(91), + [anon_sym_84] = ACTIONS(91), + [anon_sym_setinv] = ACTIONS(91), + [anon_sym_setunder] = ACTIONS(91), [anon_sym_85] = ACTIONS(95), [anon_sym_86] = ACTIONS(95), [anon_sym_87] = ACTIONS(95), @@ -20610,6 +21289,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(95), [anon_sym_91] = ACTIONS(95), [anon_sym_92] = ACTIONS(95), + [anon_sym_93] = ACTIONS(95), + [anon_sym_94] = ACTIONS(95), + [anon_sym_95] = ACTIONS(95), + [anon_sym_96] = ACTIONS(95), [sym__endOfLine] = ACTIONS(5), }, [59] = { @@ -20815,35 +21498,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(89), [anon_sym_pack] = ACTIONS(89), [anon_sym_68] = ACTIONS(89), - [anon_sym_reach] = ACTIONS(89), + [anon_sym_rectify] = ACTIONS(89), [anon_sym_69] = ACTIONS(89), + [anon_sym_this] = ACTIONS(89), + [anon_sym_70] = ACTIONS(89), + [anon_sym_recur] = ACTIONS(89), + [anon_sym_71] = ACTIONS(89), [anon_sym_fold] = ACTIONS(91), - [anon_sym_70] = ACTIONS(91), + [anon_sym_72] = ACTIONS(91), [anon_sym_table] = ACTIONS(91), - [anon_sym_71] = ACTIONS(91), + [anon_sym_73] = ACTIONS(91), [anon_sym_cross] = ACTIONS(91), - [anon_sym_72] = ACTIONS(91), + [anon_sym_74] = ACTIONS(91), [anon_sym_group] = ACTIONS(91), - [anon_sym_73] = ACTIONS(91), + [anon_sym_75] = ACTIONS(91), [anon_sym_partition] = ACTIONS(91), - [anon_sym_74] = ACTIONS(91), + [anon_sym_76] = ACTIONS(91), [anon_sym_both] = ACTIONS(91), - [anon_sym_75] = ACTIONS(91), + [anon_sym_77] = ACTIONS(91), [anon_sym_bracket] = ACTIONS(91), - [anon_sym_76] = ACTIONS(91), + [anon_sym_78] = ACTIONS(91), [anon_sym_fork] = ACTIONS(91), - [anon_sym_77] = ACTIONS(91), + [anon_sym_79] = ACTIONS(91), [anon_sym_under] = ACTIONS(91), - [anon_sym_78] = ACTIONS(91), + [anon_sym_80] = ACTIONS(91), [anon_sym_fill] = ACTIONS(91), - [anon_sym_79] = ACTIONS(91), + [anon_sym_81] = ACTIONS(91), [anon_sym_try] = ACTIONS(93), - [anon_sym_80] = ACTIONS(91), + [anon_sym_82] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), - [anon_sym_81] = ACTIONS(91), - [anon_sym_82] = ACTIONS(95), - [anon_sym_83] = ACTIONS(95), - [anon_sym_84] = ACTIONS(95), + [anon_sym_83] = ACTIONS(91), + [anon_sym_all] = ACTIONS(91), + [anon_sym_84] = ACTIONS(91), + [anon_sym_setinv] = ACTIONS(91), + [anon_sym_setunder] = ACTIONS(91), [anon_sym_85] = ACTIONS(95), [anon_sym_86] = ACTIONS(95), [anon_sym_87] = ACTIONS(95), @@ -20852,6 +21540,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(95), [anon_sym_91] = ACTIONS(95), [anon_sym_92] = ACTIONS(95), + [anon_sym_93] = ACTIONS(95), + [anon_sym_94] = ACTIONS(95), + [anon_sym_95] = ACTIONS(95), + [anon_sym_96] = ACTIONS(95), [sym__endOfLine] = ACTIONS(5), }, [60] = { @@ -21057,35 +21749,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(89), [anon_sym_pack] = ACTIONS(89), [anon_sym_68] = ACTIONS(89), - [anon_sym_reach] = ACTIONS(89), + [anon_sym_rectify] = ACTIONS(89), [anon_sym_69] = ACTIONS(89), + [anon_sym_this] = ACTIONS(89), + [anon_sym_70] = ACTIONS(89), + [anon_sym_recur] = ACTIONS(89), + [anon_sym_71] = ACTIONS(89), [anon_sym_fold] = ACTIONS(91), - [anon_sym_70] = ACTIONS(91), + [anon_sym_72] = ACTIONS(91), [anon_sym_table] = ACTIONS(91), - [anon_sym_71] = ACTIONS(91), + [anon_sym_73] = ACTIONS(91), [anon_sym_cross] = ACTIONS(91), - [anon_sym_72] = ACTIONS(91), + [anon_sym_74] = ACTIONS(91), [anon_sym_group] = ACTIONS(91), - [anon_sym_73] = ACTIONS(91), + [anon_sym_75] = ACTIONS(91), [anon_sym_partition] = ACTIONS(91), - [anon_sym_74] = ACTIONS(91), + [anon_sym_76] = ACTIONS(91), [anon_sym_both] = ACTIONS(91), - [anon_sym_75] = ACTIONS(91), + [anon_sym_77] = ACTIONS(91), [anon_sym_bracket] = ACTIONS(91), - [anon_sym_76] = ACTIONS(91), + [anon_sym_78] = ACTIONS(91), [anon_sym_fork] = ACTIONS(91), - [anon_sym_77] = ACTIONS(91), + [anon_sym_79] = ACTIONS(91), [anon_sym_under] = ACTIONS(91), - [anon_sym_78] = ACTIONS(91), + [anon_sym_80] = ACTIONS(91), [anon_sym_fill] = ACTIONS(91), - [anon_sym_79] = ACTIONS(91), + [anon_sym_81] = ACTIONS(91), [anon_sym_try] = ACTIONS(93), - [anon_sym_80] = ACTIONS(91), + [anon_sym_82] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), - [anon_sym_81] = ACTIONS(91), - [anon_sym_82] = ACTIONS(95), - [anon_sym_83] = ACTIONS(95), - [anon_sym_84] = ACTIONS(95), + [anon_sym_83] = ACTIONS(91), + [anon_sym_all] = ACTIONS(91), + [anon_sym_84] = ACTIONS(91), + [anon_sym_setinv] = ACTIONS(91), + [anon_sym_setunder] = ACTIONS(91), [anon_sym_85] = ACTIONS(95), [anon_sym_86] = ACTIONS(95), [anon_sym_87] = ACTIONS(95), @@ -21094,6 +21791,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(95), [anon_sym_91] = ACTIONS(95), [anon_sym_92] = ACTIONS(95), + [anon_sym_93] = ACTIONS(95), + [anon_sym_94] = ACTIONS(95), + [anon_sym_95] = ACTIONS(95), + [anon_sym_96] = ACTIONS(95), [sym__endOfLine] = ACTIONS(5), }, [61] = { @@ -21299,35 +22000,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(89), [anon_sym_pack] = ACTIONS(89), [anon_sym_68] = ACTIONS(89), - [anon_sym_reach] = ACTIONS(89), + [anon_sym_rectify] = ACTIONS(89), [anon_sym_69] = ACTIONS(89), + [anon_sym_this] = ACTIONS(89), + [anon_sym_70] = ACTIONS(89), + [anon_sym_recur] = ACTIONS(89), + [anon_sym_71] = ACTIONS(89), [anon_sym_fold] = ACTIONS(91), - [anon_sym_70] = ACTIONS(91), + [anon_sym_72] = ACTIONS(91), [anon_sym_table] = ACTIONS(91), - [anon_sym_71] = ACTIONS(91), + [anon_sym_73] = ACTIONS(91), [anon_sym_cross] = ACTIONS(91), - [anon_sym_72] = ACTIONS(91), + [anon_sym_74] = ACTIONS(91), [anon_sym_group] = ACTIONS(91), - [anon_sym_73] = ACTIONS(91), + [anon_sym_75] = ACTIONS(91), [anon_sym_partition] = ACTIONS(91), - [anon_sym_74] = ACTIONS(91), + [anon_sym_76] = ACTIONS(91), [anon_sym_both] = ACTIONS(91), - [anon_sym_75] = ACTIONS(91), + [anon_sym_77] = ACTIONS(91), [anon_sym_bracket] = ACTIONS(91), - [anon_sym_76] = ACTIONS(91), + [anon_sym_78] = ACTIONS(91), [anon_sym_fork] = ACTIONS(91), - [anon_sym_77] = ACTIONS(91), + [anon_sym_79] = ACTIONS(91), [anon_sym_under] = ACTIONS(91), - [anon_sym_78] = ACTIONS(91), + [anon_sym_80] = ACTIONS(91), [anon_sym_fill] = ACTIONS(91), - [anon_sym_79] = ACTIONS(91), + [anon_sym_81] = ACTIONS(91), [anon_sym_try] = ACTIONS(93), - [anon_sym_80] = ACTIONS(91), + [anon_sym_82] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), - [anon_sym_81] = ACTIONS(91), - [anon_sym_82] = ACTIONS(95), - [anon_sym_83] = ACTIONS(95), - [anon_sym_84] = ACTIONS(95), + [anon_sym_83] = ACTIONS(91), + [anon_sym_all] = ACTIONS(91), + [anon_sym_84] = ACTIONS(91), + [anon_sym_setinv] = ACTIONS(91), + [anon_sym_setunder] = ACTIONS(91), [anon_sym_85] = ACTIONS(95), [anon_sym_86] = ACTIONS(95), [anon_sym_87] = ACTIONS(95), @@ -21336,6 +22042,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(95), [anon_sym_91] = ACTIONS(95), [anon_sym_92] = ACTIONS(95), + [anon_sym_93] = ACTIONS(95), + [anon_sym_94] = ACTIONS(95), + [anon_sym_95] = ACTIONS(95), + [anon_sym_96] = ACTIONS(95), [sym__endOfLine] = ACTIONS(5), }, [62] = { @@ -21541,35 +22251,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(89), [anon_sym_pack] = ACTIONS(89), [anon_sym_68] = ACTIONS(89), - [anon_sym_reach] = ACTIONS(89), + [anon_sym_rectify] = ACTIONS(89), [anon_sym_69] = ACTIONS(89), + [anon_sym_this] = ACTIONS(89), + [anon_sym_70] = ACTIONS(89), + [anon_sym_recur] = ACTIONS(89), + [anon_sym_71] = ACTIONS(89), [anon_sym_fold] = ACTIONS(91), - [anon_sym_70] = ACTIONS(91), + [anon_sym_72] = ACTIONS(91), [anon_sym_table] = ACTIONS(91), - [anon_sym_71] = ACTIONS(91), + [anon_sym_73] = ACTIONS(91), [anon_sym_cross] = ACTIONS(91), - [anon_sym_72] = ACTIONS(91), + [anon_sym_74] = ACTIONS(91), [anon_sym_group] = ACTIONS(91), - [anon_sym_73] = ACTIONS(91), + [anon_sym_75] = ACTIONS(91), [anon_sym_partition] = ACTIONS(91), - [anon_sym_74] = ACTIONS(91), + [anon_sym_76] = ACTIONS(91), [anon_sym_both] = ACTIONS(91), - [anon_sym_75] = ACTIONS(91), + [anon_sym_77] = ACTIONS(91), [anon_sym_bracket] = ACTIONS(91), - [anon_sym_76] = ACTIONS(91), + [anon_sym_78] = ACTIONS(91), [anon_sym_fork] = ACTIONS(91), - [anon_sym_77] = ACTIONS(91), + [anon_sym_79] = ACTIONS(91), [anon_sym_under] = ACTIONS(91), - [anon_sym_78] = ACTIONS(91), + [anon_sym_80] = ACTIONS(91), [anon_sym_fill] = ACTIONS(91), - [anon_sym_79] = ACTIONS(91), + [anon_sym_81] = ACTIONS(91), [anon_sym_try] = ACTIONS(93), - [anon_sym_80] = ACTIONS(91), + [anon_sym_82] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), - [anon_sym_81] = ACTIONS(91), - [anon_sym_82] = ACTIONS(95), - [anon_sym_83] = ACTIONS(95), - [anon_sym_84] = ACTIONS(95), + [anon_sym_83] = ACTIONS(91), + [anon_sym_all] = ACTIONS(91), + [anon_sym_84] = ACTIONS(91), + [anon_sym_setinv] = ACTIONS(91), + [anon_sym_setunder] = ACTIONS(91), [anon_sym_85] = ACTIONS(95), [anon_sym_86] = ACTIONS(95), [anon_sym_87] = ACTIONS(95), @@ -21578,6 +22293,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(95), [anon_sym_91] = ACTIONS(95), [anon_sym_92] = ACTIONS(95), + [anon_sym_93] = ACTIONS(95), + [anon_sym_94] = ACTIONS(95), + [anon_sym_95] = ACTIONS(95), + [anon_sym_96] = ACTIONS(95), [sym__endOfLine] = ACTIONS(71), }, [63] = { @@ -21783,35 +22502,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(89), [anon_sym_pack] = ACTIONS(89), [anon_sym_68] = ACTIONS(89), - [anon_sym_reach] = ACTIONS(89), + [anon_sym_rectify] = ACTIONS(89), [anon_sym_69] = ACTIONS(89), + [anon_sym_this] = ACTIONS(89), + [anon_sym_70] = ACTIONS(89), + [anon_sym_recur] = ACTIONS(89), + [anon_sym_71] = ACTIONS(89), [anon_sym_fold] = ACTIONS(91), - [anon_sym_70] = ACTIONS(91), + [anon_sym_72] = ACTIONS(91), [anon_sym_table] = ACTIONS(91), - [anon_sym_71] = ACTIONS(91), + [anon_sym_73] = ACTIONS(91), [anon_sym_cross] = ACTIONS(91), - [anon_sym_72] = ACTIONS(91), + [anon_sym_74] = ACTIONS(91), [anon_sym_group] = ACTIONS(91), - [anon_sym_73] = ACTIONS(91), + [anon_sym_75] = ACTIONS(91), [anon_sym_partition] = ACTIONS(91), - [anon_sym_74] = ACTIONS(91), + [anon_sym_76] = ACTIONS(91), [anon_sym_both] = ACTIONS(91), - [anon_sym_75] = ACTIONS(91), + [anon_sym_77] = ACTIONS(91), [anon_sym_bracket] = ACTIONS(91), - [anon_sym_76] = ACTIONS(91), + [anon_sym_78] = ACTIONS(91), [anon_sym_fork] = ACTIONS(91), - [anon_sym_77] = ACTIONS(91), + [anon_sym_79] = ACTIONS(91), [anon_sym_under] = ACTIONS(91), - [anon_sym_78] = ACTIONS(91), + [anon_sym_80] = ACTIONS(91), [anon_sym_fill] = ACTIONS(91), - [anon_sym_79] = ACTIONS(91), + [anon_sym_81] = ACTIONS(91), [anon_sym_try] = ACTIONS(93), - [anon_sym_80] = ACTIONS(91), + [anon_sym_82] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), - [anon_sym_81] = ACTIONS(91), - [anon_sym_82] = ACTIONS(95), - [anon_sym_83] = ACTIONS(95), - [anon_sym_84] = ACTIONS(95), + [anon_sym_83] = ACTIONS(91), + [anon_sym_all] = ACTIONS(91), + [anon_sym_84] = ACTIONS(91), + [anon_sym_setinv] = ACTIONS(91), + [anon_sym_setunder] = ACTIONS(91), [anon_sym_85] = ACTIONS(95), [anon_sym_86] = ACTIONS(95), [anon_sym_87] = ACTIONS(95), @@ -21820,6 +22544,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(95), [anon_sym_91] = ACTIONS(95), [anon_sym_92] = ACTIONS(95), + [anon_sym_93] = ACTIONS(95), + [anon_sym_94] = ACTIONS(95), + [anon_sym_95] = ACTIONS(95), + [anon_sym_96] = ACTIONS(95), [sym__endOfLine] = ACTIONS(5), }, [64] = { @@ -22025,35 +22753,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(89), [anon_sym_pack] = ACTIONS(89), [anon_sym_68] = ACTIONS(89), - [anon_sym_reach] = ACTIONS(89), + [anon_sym_rectify] = ACTIONS(89), [anon_sym_69] = ACTIONS(89), + [anon_sym_this] = ACTIONS(89), + [anon_sym_70] = ACTIONS(89), + [anon_sym_recur] = ACTIONS(89), + [anon_sym_71] = ACTIONS(89), [anon_sym_fold] = ACTIONS(91), - [anon_sym_70] = ACTIONS(91), + [anon_sym_72] = ACTIONS(91), [anon_sym_table] = ACTIONS(91), - [anon_sym_71] = ACTIONS(91), + [anon_sym_73] = ACTIONS(91), [anon_sym_cross] = ACTIONS(91), - [anon_sym_72] = ACTIONS(91), + [anon_sym_74] = ACTIONS(91), [anon_sym_group] = ACTIONS(91), - [anon_sym_73] = ACTIONS(91), + [anon_sym_75] = ACTIONS(91), [anon_sym_partition] = ACTIONS(91), - [anon_sym_74] = ACTIONS(91), + [anon_sym_76] = ACTIONS(91), [anon_sym_both] = ACTIONS(91), - [anon_sym_75] = ACTIONS(91), + [anon_sym_77] = ACTIONS(91), [anon_sym_bracket] = ACTIONS(91), - [anon_sym_76] = ACTIONS(91), + [anon_sym_78] = ACTIONS(91), [anon_sym_fork] = ACTIONS(91), - [anon_sym_77] = ACTIONS(91), + [anon_sym_79] = ACTIONS(91), [anon_sym_under] = ACTIONS(91), - [anon_sym_78] = ACTIONS(91), + [anon_sym_80] = ACTIONS(91), [anon_sym_fill] = ACTIONS(91), - [anon_sym_79] = ACTIONS(91), + [anon_sym_81] = ACTIONS(91), [anon_sym_try] = ACTIONS(93), - [anon_sym_80] = ACTIONS(91), + [anon_sym_82] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), - [anon_sym_81] = ACTIONS(91), - [anon_sym_82] = ACTIONS(95), - [anon_sym_83] = ACTIONS(95), - [anon_sym_84] = ACTIONS(95), + [anon_sym_83] = ACTIONS(91), + [anon_sym_all] = ACTIONS(91), + [anon_sym_84] = ACTIONS(91), + [anon_sym_setinv] = ACTIONS(91), + [anon_sym_setunder] = ACTIONS(91), [anon_sym_85] = ACTIONS(95), [anon_sym_86] = ACTIONS(95), [anon_sym_87] = ACTIONS(95), @@ -22062,6 +22795,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(95), [anon_sym_91] = ACTIONS(95), [anon_sym_92] = ACTIONS(95), + [anon_sym_93] = ACTIONS(95), + [anon_sym_94] = ACTIONS(95), + [anon_sym_95] = ACTIONS(95), + [anon_sym_96] = ACTIONS(95), [sym__endOfLine] = ACTIONS(5), }, [65] = { @@ -22267,35 +23004,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(89), [anon_sym_pack] = ACTIONS(89), [anon_sym_68] = ACTIONS(89), - [anon_sym_reach] = ACTIONS(89), + [anon_sym_rectify] = ACTIONS(89), [anon_sym_69] = ACTIONS(89), + [anon_sym_this] = ACTIONS(89), + [anon_sym_70] = ACTIONS(89), + [anon_sym_recur] = ACTIONS(89), + [anon_sym_71] = ACTIONS(89), [anon_sym_fold] = ACTIONS(91), - [anon_sym_70] = ACTIONS(91), + [anon_sym_72] = ACTIONS(91), [anon_sym_table] = ACTIONS(91), - [anon_sym_71] = ACTIONS(91), + [anon_sym_73] = ACTIONS(91), [anon_sym_cross] = ACTIONS(91), - [anon_sym_72] = ACTIONS(91), + [anon_sym_74] = ACTIONS(91), [anon_sym_group] = ACTIONS(91), - [anon_sym_73] = ACTIONS(91), + [anon_sym_75] = ACTIONS(91), [anon_sym_partition] = ACTIONS(91), - [anon_sym_74] = ACTIONS(91), + [anon_sym_76] = ACTIONS(91), [anon_sym_both] = ACTIONS(91), - [anon_sym_75] = ACTIONS(91), + [anon_sym_77] = ACTIONS(91), [anon_sym_bracket] = ACTIONS(91), - [anon_sym_76] = ACTIONS(91), + [anon_sym_78] = ACTIONS(91), [anon_sym_fork] = ACTIONS(91), - [anon_sym_77] = ACTIONS(91), + [anon_sym_79] = ACTIONS(91), [anon_sym_under] = ACTIONS(91), - [anon_sym_78] = ACTIONS(91), + [anon_sym_80] = ACTIONS(91), [anon_sym_fill] = ACTIONS(91), - [anon_sym_79] = ACTIONS(91), + [anon_sym_81] = ACTIONS(91), [anon_sym_try] = ACTIONS(93), - [anon_sym_80] = ACTIONS(91), + [anon_sym_82] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), - [anon_sym_81] = ACTIONS(91), - [anon_sym_82] = ACTIONS(95), - [anon_sym_83] = ACTIONS(95), - [anon_sym_84] = ACTIONS(95), + [anon_sym_83] = ACTIONS(91), + [anon_sym_all] = ACTIONS(91), + [anon_sym_84] = ACTIONS(91), + [anon_sym_setinv] = ACTIONS(91), + [anon_sym_setunder] = ACTIONS(91), [anon_sym_85] = ACTIONS(95), [anon_sym_86] = ACTIONS(95), [anon_sym_87] = ACTIONS(95), @@ -22304,6 +23046,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(95), [anon_sym_91] = ACTIONS(95), [anon_sym_92] = ACTIONS(95), + [anon_sym_93] = ACTIONS(95), + [anon_sym_94] = ACTIONS(95), + [anon_sym_95] = ACTIONS(95), + [anon_sym_96] = ACTIONS(95), [sym__endOfLine] = ACTIONS(5), }, [66] = { @@ -22509,35 +23255,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(89), [anon_sym_pack] = ACTIONS(89), [anon_sym_68] = ACTIONS(89), - [anon_sym_reach] = ACTIONS(89), + [anon_sym_rectify] = ACTIONS(89), [anon_sym_69] = ACTIONS(89), + [anon_sym_this] = ACTIONS(89), + [anon_sym_70] = ACTIONS(89), + [anon_sym_recur] = ACTIONS(89), + [anon_sym_71] = ACTIONS(89), [anon_sym_fold] = ACTIONS(91), - [anon_sym_70] = ACTIONS(91), + [anon_sym_72] = ACTIONS(91), [anon_sym_table] = ACTIONS(91), - [anon_sym_71] = ACTIONS(91), + [anon_sym_73] = ACTIONS(91), [anon_sym_cross] = ACTIONS(91), - [anon_sym_72] = ACTIONS(91), + [anon_sym_74] = ACTIONS(91), [anon_sym_group] = ACTIONS(91), - [anon_sym_73] = ACTIONS(91), + [anon_sym_75] = ACTIONS(91), [anon_sym_partition] = ACTIONS(91), - [anon_sym_74] = ACTIONS(91), + [anon_sym_76] = ACTIONS(91), [anon_sym_both] = ACTIONS(91), - [anon_sym_75] = ACTIONS(91), + [anon_sym_77] = ACTIONS(91), [anon_sym_bracket] = ACTIONS(91), - [anon_sym_76] = ACTIONS(91), + [anon_sym_78] = ACTIONS(91), [anon_sym_fork] = ACTIONS(91), - [anon_sym_77] = ACTIONS(91), + [anon_sym_79] = ACTIONS(91), [anon_sym_under] = ACTIONS(91), - [anon_sym_78] = ACTIONS(91), + [anon_sym_80] = ACTIONS(91), [anon_sym_fill] = ACTIONS(91), - [anon_sym_79] = ACTIONS(91), + [anon_sym_81] = ACTIONS(91), [anon_sym_try] = ACTIONS(93), - [anon_sym_80] = ACTIONS(91), + [anon_sym_82] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), - [anon_sym_81] = ACTIONS(91), - [anon_sym_82] = ACTIONS(95), - [anon_sym_83] = ACTIONS(95), - [anon_sym_84] = ACTIONS(95), + [anon_sym_83] = ACTIONS(91), + [anon_sym_all] = ACTIONS(91), + [anon_sym_84] = ACTIONS(91), + [anon_sym_setinv] = ACTIONS(91), + [anon_sym_setunder] = ACTIONS(91), [anon_sym_85] = ACTIONS(95), [anon_sym_86] = ACTIONS(95), [anon_sym_87] = ACTIONS(95), @@ -22546,6 +23297,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(95), [anon_sym_91] = ACTIONS(95), [anon_sym_92] = ACTIONS(95), + [anon_sym_93] = ACTIONS(95), + [anon_sym_94] = ACTIONS(95), + [anon_sym_95] = ACTIONS(95), + [anon_sym_96] = ACTIONS(95), [sym__endOfLine] = ACTIONS(5), }, [67] = { @@ -22751,35 +23506,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(89), [anon_sym_pack] = ACTIONS(89), [anon_sym_68] = ACTIONS(89), - [anon_sym_reach] = ACTIONS(89), + [anon_sym_rectify] = ACTIONS(89), [anon_sym_69] = ACTIONS(89), + [anon_sym_this] = ACTIONS(89), + [anon_sym_70] = ACTIONS(89), + [anon_sym_recur] = ACTIONS(89), + [anon_sym_71] = ACTIONS(89), [anon_sym_fold] = ACTIONS(91), - [anon_sym_70] = ACTIONS(91), + [anon_sym_72] = ACTIONS(91), [anon_sym_table] = ACTIONS(91), - [anon_sym_71] = ACTIONS(91), + [anon_sym_73] = ACTIONS(91), [anon_sym_cross] = ACTIONS(91), - [anon_sym_72] = ACTIONS(91), + [anon_sym_74] = ACTIONS(91), [anon_sym_group] = ACTIONS(91), - [anon_sym_73] = ACTIONS(91), + [anon_sym_75] = ACTIONS(91), [anon_sym_partition] = ACTIONS(91), - [anon_sym_74] = ACTIONS(91), + [anon_sym_76] = ACTIONS(91), [anon_sym_both] = ACTIONS(91), - [anon_sym_75] = ACTIONS(91), + [anon_sym_77] = ACTIONS(91), [anon_sym_bracket] = ACTIONS(91), - [anon_sym_76] = ACTIONS(91), + [anon_sym_78] = ACTIONS(91), [anon_sym_fork] = ACTIONS(91), - [anon_sym_77] = ACTIONS(91), + [anon_sym_79] = ACTIONS(91), [anon_sym_under] = ACTIONS(91), - [anon_sym_78] = ACTIONS(91), + [anon_sym_80] = ACTIONS(91), [anon_sym_fill] = ACTIONS(91), - [anon_sym_79] = ACTIONS(91), + [anon_sym_81] = ACTIONS(91), [anon_sym_try] = ACTIONS(93), - [anon_sym_80] = ACTIONS(91), + [anon_sym_82] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), - [anon_sym_81] = ACTIONS(91), - [anon_sym_82] = ACTIONS(95), - [anon_sym_83] = ACTIONS(95), - [anon_sym_84] = ACTIONS(95), + [anon_sym_83] = ACTIONS(91), + [anon_sym_all] = ACTIONS(91), + [anon_sym_84] = ACTIONS(91), + [anon_sym_setinv] = ACTIONS(91), + [anon_sym_setunder] = ACTIONS(91), [anon_sym_85] = ACTIONS(95), [anon_sym_86] = ACTIONS(95), [anon_sym_87] = ACTIONS(95), @@ -22788,6 +23548,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(95), [anon_sym_91] = ACTIONS(95), [anon_sym_92] = ACTIONS(95), + [anon_sym_93] = ACTIONS(95), + [anon_sym_94] = ACTIONS(95), + [anon_sym_95] = ACTIONS(95), + [anon_sym_96] = ACTIONS(95), [sym__endOfLine] = ACTIONS(5), }, [68] = { @@ -22993,35 +23757,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(89), [anon_sym_pack] = ACTIONS(89), [anon_sym_68] = ACTIONS(89), - [anon_sym_reach] = ACTIONS(89), + [anon_sym_rectify] = ACTIONS(89), [anon_sym_69] = ACTIONS(89), + [anon_sym_this] = ACTIONS(89), + [anon_sym_70] = ACTIONS(89), + [anon_sym_recur] = ACTIONS(89), + [anon_sym_71] = ACTIONS(89), [anon_sym_fold] = ACTIONS(91), - [anon_sym_70] = ACTIONS(91), + [anon_sym_72] = ACTIONS(91), [anon_sym_table] = ACTIONS(91), - [anon_sym_71] = ACTIONS(91), + [anon_sym_73] = ACTIONS(91), [anon_sym_cross] = ACTIONS(91), - [anon_sym_72] = ACTIONS(91), + [anon_sym_74] = ACTIONS(91), [anon_sym_group] = ACTIONS(91), - [anon_sym_73] = ACTIONS(91), + [anon_sym_75] = ACTIONS(91), [anon_sym_partition] = ACTIONS(91), - [anon_sym_74] = ACTIONS(91), + [anon_sym_76] = ACTIONS(91), [anon_sym_both] = ACTIONS(91), - [anon_sym_75] = ACTIONS(91), + [anon_sym_77] = ACTIONS(91), [anon_sym_bracket] = ACTIONS(91), - [anon_sym_76] = ACTIONS(91), + [anon_sym_78] = ACTIONS(91), [anon_sym_fork] = ACTIONS(91), - [anon_sym_77] = ACTIONS(91), + [anon_sym_79] = ACTIONS(91), [anon_sym_under] = ACTIONS(91), - [anon_sym_78] = ACTIONS(91), + [anon_sym_80] = ACTIONS(91), [anon_sym_fill] = ACTIONS(91), - [anon_sym_79] = ACTIONS(91), + [anon_sym_81] = ACTIONS(91), [anon_sym_try] = ACTIONS(93), - [anon_sym_80] = ACTIONS(91), + [anon_sym_82] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), - [anon_sym_81] = ACTIONS(91), - [anon_sym_82] = ACTIONS(95), - [anon_sym_83] = ACTIONS(95), - [anon_sym_84] = ACTIONS(95), + [anon_sym_83] = ACTIONS(91), + [anon_sym_all] = ACTIONS(91), + [anon_sym_84] = ACTIONS(91), + [anon_sym_setinv] = ACTIONS(91), + [anon_sym_setunder] = ACTIONS(91), [anon_sym_85] = ACTIONS(95), [anon_sym_86] = ACTIONS(95), [anon_sym_87] = ACTIONS(95), @@ -23030,6 +23799,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(95), [anon_sym_91] = ACTIONS(95), [anon_sym_92] = ACTIONS(95), + [anon_sym_93] = ACTIONS(95), + [anon_sym_94] = ACTIONS(95), + [anon_sym_95] = ACTIONS(95), + [anon_sym_96] = ACTIONS(95), [sym__endOfLine] = ACTIONS(5), }, [69] = { @@ -23235,35 +24008,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(89), [anon_sym_pack] = ACTIONS(89), [anon_sym_68] = ACTIONS(89), - [anon_sym_reach] = ACTIONS(89), + [anon_sym_rectify] = ACTIONS(89), [anon_sym_69] = ACTIONS(89), + [anon_sym_this] = ACTIONS(89), + [anon_sym_70] = ACTIONS(89), + [anon_sym_recur] = ACTIONS(89), + [anon_sym_71] = ACTIONS(89), [anon_sym_fold] = ACTIONS(91), - [anon_sym_70] = ACTIONS(91), + [anon_sym_72] = ACTIONS(91), [anon_sym_table] = ACTIONS(91), - [anon_sym_71] = ACTIONS(91), + [anon_sym_73] = ACTIONS(91), [anon_sym_cross] = ACTIONS(91), - [anon_sym_72] = ACTIONS(91), + [anon_sym_74] = ACTIONS(91), [anon_sym_group] = ACTIONS(91), - [anon_sym_73] = ACTIONS(91), + [anon_sym_75] = ACTIONS(91), [anon_sym_partition] = ACTIONS(91), - [anon_sym_74] = ACTIONS(91), + [anon_sym_76] = ACTIONS(91), [anon_sym_both] = ACTIONS(91), - [anon_sym_75] = ACTIONS(91), + [anon_sym_77] = ACTIONS(91), [anon_sym_bracket] = ACTIONS(91), - [anon_sym_76] = ACTIONS(91), + [anon_sym_78] = ACTIONS(91), [anon_sym_fork] = ACTIONS(91), - [anon_sym_77] = ACTIONS(91), + [anon_sym_79] = ACTIONS(91), [anon_sym_under] = ACTIONS(91), - [anon_sym_78] = ACTIONS(91), + [anon_sym_80] = ACTIONS(91), [anon_sym_fill] = ACTIONS(91), - [anon_sym_79] = ACTIONS(91), + [anon_sym_81] = ACTIONS(91), [anon_sym_try] = ACTIONS(93), - [anon_sym_80] = ACTIONS(91), + [anon_sym_82] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), - [anon_sym_81] = ACTIONS(91), - [anon_sym_82] = ACTIONS(95), - [anon_sym_83] = ACTIONS(95), - [anon_sym_84] = ACTIONS(95), + [anon_sym_83] = ACTIONS(91), + [anon_sym_all] = ACTIONS(91), + [anon_sym_84] = ACTIONS(91), + [anon_sym_setinv] = ACTIONS(91), + [anon_sym_setunder] = ACTIONS(91), [anon_sym_85] = ACTIONS(95), [anon_sym_86] = ACTIONS(95), [anon_sym_87] = ACTIONS(95), @@ -23272,6 +24050,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(95), [anon_sym_91] = ACTIONS(95), [anon_sym_92] = ACTIONS(95), + [anon_sym_93] = ACTIONS(95), + [anon_sym_94] = ACTIONS(95), + [anon_sym_95] = ACTIONS(95), + [anon_sym_96] = ACTIONS(95), [sym__endOfLine] = ACTIONS(5), }, [70] = { @@ -23477,35 +24259,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(89), [anon_sym_pack] = ACTIONS(89), [anon_sym_68] = ACTIONS(89), - [anon_sym_reach] = ACTIONS(89), + [anon_sym_rectify] = ACTIONS(89), [anon_sym_69] = ACTIONS(89), + [anon_sym_this] = ACTIONS(89), + [anon_sym_70] = ACTIONS(89), + [anon_sym_recur] = ACTIONS(89), + [anon_sym_71] = ACTIONS(89), [anon_sym_fold] = ACTIONS(91), - [anon_sym_70] = ACTIONS(91), + [anon_sym_72] = ACTIONS(91), [anon_sym_table] = ACTIONS(91), - [anon_sym_71] = ACTIONS(91), + [anon_sym_73] = ACTIONS(91), [anon_sym_cross] = ACTIONS(91), - [anon_sym_72] = ACTIONS(91), + [anon_sym_74] = ACTIONS(91), [anon_sym_group] = ACTIONS(91), - [anon_sym_73] = ACTIONS(91), + [anon_sym_75] = ACTIONS(91), [anon_sym_partition] = ACTIONS(91), - [anon_sym_74] = ACTIONS(91), + [anon_sym_76] = ACTIONS(91), [anon_sym_both] = ACTIONS(91), - [anon_sym_75] = ACTIONS(91), + [anon_sym_77] = ACTIONS(91), [anon_sym_bracket] = ACTIONS(91), - [anon_sym_76] = ACTIONS(91), + [anon_sym_78] = ACTIONS(91), [anon_sym_fork] = ACTIONS(91), - [anon_sym_77] = ACTIONS(91), + [anon_sym_79] = ACTIONS(91), [anon_sym_under] = ACTIONS(91), - [anon_sym_78] = ACTIONS(91), + [anon_sym_80] = ACTIONS(91), [anon_sym_fill] = ACTIONS(91), - [anon_sym_79] = ACTIONS(91), + [anon_sym_81] = ACTIONS(91), [anon_sym_try] = ACTIONS(93), - [anon_sym_80] = ACTIONS(91), + [anon_sym_82] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), - [anon_sym_81] = ACTIONS(91), - [anon_sym_82] = ACTIONS(95), - [anon_sym_83] = ACTIONS(95), - [anon_sym_84] = ACTIONS(95), + [anon_sym_83] = ACTIONS(91), + [anon_sym_all] = ACTIONS(91), + [anon_sym_84] = ACTIONS(91), + [anon_sym_setinv] = ACTIONS(91), + [anon_sym_setunder] = ACTIONS(91), [anon_sym_85] = ACTIONS(95), [anon_sym_86] = ACTIONS(95), [anon_sym_87] = ACTIONS(95), @@ -23514,6 +24301,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(95), [anon_sym_91] = ACTIONS(95), [anon_sym_92] = ACTIONS(95), + [anon_sym_93] = ACTIONS(95), + [anon_sym_94] = ACTIONS(95), + [anon_sym_95] = ACTIONS(95), + [anon_sym_96] = ACTIONS(95), [sym__endOfLine] = ACTIONS(5), }, [71] = { @@ -23719,35 +24510,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(89), [anon_sym_pack] = ACTIONS(89), [anon_sym_68] = ACTIONS(89), - [anon_sym_reach] = ACTIONS(89), + [anon_sym_rectify] = ACTIONS(89), [anon_sym_69] = ACTIONS(89), + [anon_sym_this] = ACTIONS(89), + [anon_sym_70] = ACTIONS(89), + [anon_sym_recur] = ACTIONS(89), + [anon_sym_71] = ACTIONS(89), [anon_sym_fold] = ACTIONS(91), - [anon_sym_70] = ACTIONS(91), + [anon_sym_72] = ACTIONS(91), [anon_sym_table] = ACTIONS(91), - [anon_sym_71] = ACTIONS(91), + [anon_sym_73] = ACTIONS(91), [anon_sym_cross] = ACTIONS(91), - [anon_sym_72] = ACTIONS(91), + [anon_sym_74] = ACTIONS(91), [anon_sym_group] = ACTIONS(91), - [anon_sym_73] = ACTIONS(91), + [anon_sym_75] = ACTIONS(91), [anon_sym_partition] = ACTIONS(91), - [anon_sym_74] = ACTIONS(91), + [anon_sym_76] = ACTIONS(91), [anon_sym_both] = ACTIONS(91), - [anon_sym_75] = ACTIONS(91), + [anon_sym_77] = ACTIONS(91), [anon_sym_bracket] = ACTIONS(91), - [anon_sym_76] = ACTIONS(91), + [anon_sym_78] = ACTIONS(91), [anon_sym_fork] = ACTIONS(91), - [anon_sym_77] = ACTIONS(91), + [anon_sym_79] = ACTIONS(91), [anon_sym_under] = ACTIONS(91), - [anon_sym_78] = ACTIONS(91), + [anon_sym_80] = ACTIONS(91), [anon_sym_fill] = ACTIONS(91), - [anon_sym_79] = ACTIONS(91), + [anon_sym_81] = ACTIONS(91), [anon_sym_try] = ACTIONS(93), - [anon_sym_80] = ACTIONS(91), + [anon_sym_82] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), - [anon_sym_81] = ACTIONS(91), - [anon_sym_82] = ACTIONS(95), - [anon_sym_83] = ACTIONS(95), - [anon_sym_84] = ACTIONS(95), + [anon_sym_83] = ACTIONS(91), + [anon_sym_all] = ACTIONS(91), + [anon_sym_84] = ACTIONS(91), + [anon_sym_setinv] = ACTIONS(91), + [anon_sym_setunder] = ACTIONS(91), [anon_sym_85] = ACTIONS(95), [anon_sym_86] = ACTIONS(95), [anon_sym_87] = ACTIONS(95), @@ -23756,6 +24552,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(95), [anon_sym_91] = ACTIONS(95), [anon_sym_92] = ACTIONS(95), + [anon_sym_93] = ACTIONS(95), + [anon_sym_94] = ACTIONS(95), + [anon_sym_95] = ACTIONS(95), + [anon_sym_96] = ACTIONS(95), [sym__endOfLine] = ACTIONS(5), }, [72] = { @@ -23959,35 +24759,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(271), [anon_sym_pack] = ACTIONS(271), [anon_sym_68] = ACTIONS(271), - [anon_sym_reach] = ACTIONS(271), + [anon_sym_rectify] = ACTIONS(271), [anon_sym_69] = ACTIONS(271), + [anon_sym_this] = ACTIONS(271), + [anon_sym_70] = ACTIONS(271), + [anon_sym_recur] = ACTIONS(271), + [anon_sym_71] = ACTIONS(271), [anon_sym_fold] = ACTIONS(273), - [anon_sym_70] = ACTIONS(273), + [anon_sym_72] = ACTIONS(273), [anon_sym_table] = ACTIONS(273), - [anon_sym_71] = ACTIONS(273), + [anon_sym_73] = ACTIONS(273), [anon_sym_cross] = ACTIONS(273), - [anon_sym_72] = ACTIONS(273), + [anon_sym_74] = ACTIONS(273), [anon_sym_group] = ACTIONS(273), - [anon_sym_73] = ACTIONS(273), + [anon_sym_75] = ACTIONS(273), [anon_sym_partition] = ACTIONS(273), - [anon_sym_74] = ACTIONS(273), + [anon_sym_76] = ACTIONS(273), [anon_sym_both] = ACTIONS(273), - [anon_sym_75] = ACTIONS(273), + [anon_sym_77] = ACTIONS(273), [anon_sym_bracket] = ACTIONS(273), - [anon_sym_76] = ACTIONS(273), + [anon_sym_78] = ACTIONS(273), [anon_sym_fork] = ACTIONS(273), - [anon_sym_77] = ACTIONS(273), + [anon_sym_79] = ACTIONS(273), [anon_sym_under] = ACTIONS(273), - [anon_sym_78] = ACTIONS(273), + [anon_sym_80] = ACTIONS(273), [anon_sym_fill] = ACTIONS(273), - [anon_sym_79] = ACTIONS(273), + [anon_sym_81] = ACTIONS(273), [anon_sym_try] = ACTIONS(275), - [anon_sym_80] = ACTIONS(273), + [anon_sym_82] = ACTIONS(273), [anon_sym_do] = ACTIONS(275), - [anon_sym_81] = ACTIONS(273), - [anon_sym_82] = ACTIONS(277), - [anon_sym_83] = ACTIONS(277), - [anon_sym_84] = ACTIONS(277), + [anon_sym_83] = ACTIONS(273), + [anon_sym_all] = ACTIONS(273), + [anon_sym_84] = ACTIONS(273), + [anon_sym_setinv] = ACTIONS(273), + [anon_sym_setunder] = ACTIONS(273), [anon_sym_85] = ACTIONS(277), [anon_sym_86] = ACTIONS(277), [anon_sym_87] = ACTIONS(277), @@ -23996,6 +24801,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(277), [anon_sym_91] = ACTIONS(277), [anon_sym_92] = ACTIONS(277), + [anon_sym_93] = ACTIONS(277), + [anon_sym_94] = ACTIONS(277), + [anon_sym_95] = ACTIONS(277), + [anon_sym_96] = ACTIONS(277), [sym__endOfLine] = ACTIONS(5), }, [73] = { @@ -24199,35 +25008,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(89), [anon_sym_pack] = ACTIONS(89), [anon_sym_68] = ACTIONS(89), - [anon_sym_reach] = ACTIONS(89), + [anon_sym_rectify] = ACTIONS(89), [anon_sym_69] = ACTIONS(89), + [anon_sym_this] = ACTIONS(89), + [anon_sym_70] = ACTIONS(89), + [anon_sym_recur] = ACTIONS(89), + [anon_sym_71] = ACTIONS(89), [anon_sym_fold] = ACTIONS(91), - [anon_sym_70] = ACTIONS(91), + [anon_sym_72] = ACTIONS(91), [anon_sym_table] = ACTIONS(91), - [anon_sym_71] = ACTIONS(91), + [anon_sym_73] = ACTIONS(91), [anon_sym_cross] = ACTIONS(91), - [anon_sym_72] = ACTIONS(91), + [anon_sym_74] = ACTIONS(91), [anon_sym_group] = ACTIONS(91), - [anon_sym_73] = ACTIONS(91), + [anon_sym_75] = ACTIONS(91), [anon_sym_partition] = ACTIONS(91), - [anon_sym_74] = ACTIONS(91), + [anon_sym_76] = ACTIONS(91), [anon_sym_both] = ACTIONS(91), - [anon_sym_75] = ACTIONS(91), + [anon_sym_77] = ACTIONS(91), [anon_sym_bracket] = ACTIONS(91), - [anon_sym_76] = ACTIONS(91), + [anon_sym_78] = ACTIONS(91), [anon_sym_fork] = ACTIONS(91), - [anon_sym_77] = ACTIONS(91), + [anon_sym_79] = ACTIONS(91), [anon_sym_under] = ACTIONS(91), - [anon_sym_78] = ACTIONS(91), + [anon_sym_80] = ACTIONS(91), [anon_sym_fill] = ACTIONS(91), - [anon_sym_79] = ACTIONS(91), + [anon_sym_81] = ACTIONS(91), [anon_sym_try] = ACTIONS(93), - [anon_sym_80] = ACTIONS(91), + [anon_sym_82] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), - [anon_sym_81] = ACTIONS(91), - [anon_sym_82] = ACTIONS(95), - [anon_sym_83] = ACTIONS(95), - [anon_sym_84] = ACTIONS(95), + [anon_sym_83] = ACTIONS(91), + [anon_sym_all] = ACTIONS(91), + [anon_sym_84] = ACTIONS(91), + [anon_sym_setinv] = ACTIONS(91), + [anon_sym_setunder] = ACTIONS(91), [anon_sym_85] = ACTIONS(95), [anon_sym_86] = ACTIONS(95), [anon_sym_87] = ACTIONS(95), @@ -24236,6 +25050,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(95), [anon_sym_91] = ACTIONS(95), [anon_sym_92] = ACTIONS(95), + [anon_sym_93] = ACTIONS(95), + [anon_sym_94] = ACTIONS(95), + [anon_sym_95] = ACTIONS(95), + [anon_sym_96] = ACTIONS(95), [sym__endOfLine] = ACTIONS(5), }, [74] = { @@ -24439,35 +25257,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(271), [anon_sym_pack] = ACTIONS(271), [anon_sym_68] = ACTIONS(271), - [anon_sym_reach] = ACTIONS(271), + [anon_sym_rectify] = ACTIONS(271), [anon_sym_69] = ACTIONS(271), + [anon_sym_this] = ACTIONS(271), + [anon_sym_70] = ACTIONS(271), + [anon_sym_recur] = ACTIONS(271), + [anon_sym_71] = ACTIONS(271), [anon_sym_fold] = ACTIONS(273), - [anon_sym_70] = ACTIONS(273), + [anon_sym_72] = ACTIONS(273), [anon_sym_table] = ACTIONS(273), - [anon_sym_71] = ACTIONS(273), + [anon_sym_73] = ACTIONS(273), [anon_sym_cross] = ACTIONS(273), - [anon_sym_72] = ACTIONS(273), + [anon_sym_74] = ACTIONS(273), [anon_sym_group] = ACTIONS(273), - [anon_sym_73] = ACTIONS(273), + [anon_sym_75] = ACTIONS(273), [anon_sym_partition] = ACTIONS(273), - [anon_sym_74] = ACTIONS(273), + [anon_sym_76] = ACTIONS(273), [anon_sym_both] = ACTIONS(273), - [anon_sym_75] = ACTIONS(273), + [anon_sym_77] = ACTIONS(273), [anon_sym_bracket] = ACTIONS(273), - [anon_sym_76] = ACTIONS(273), + [anon_sym_78] = ACTIONS(273), [anon_sym_fork] = ACTIONS(273), - [anon_sym_77] = ACTIONS(273), + [anon_sym_79] = ACTIONS(273), [anon_sym_under] = ACTIONS(273), - [anon_sym_78] = ACTIONS(273), + [anon_sym_80] = ACTIONS(273), [anon_sym_fill] = ACTIONS(273), - [anon_sym_79] = ACTIONS(273), + [anon_sym_81] = ACTIONS(273), [anon_sym_try] = ACTIONS(275), - [anon_sym_80] = ACTIONS(273), + [anon_sym_82] = ACTIONS(273), [anon_sym_do] = ACTIONS(275), - [anon_sym_81] = ACTIONS(273), - [anon_sym_82] = ACTIONS(277), - [anon_sym_83] = ACTIONS(277), - [anon_sym_84] = ACTIONS(277), + [anon_sym_83] = ACTIONS(273), + [anon_sym_all] = ACTIONS(273), + [anon_sym_84] = ACTIONS(273), + [anon_sym_setinv] = ACTIONS(273), + [anon_sym_setunder] = ACTIONS(273), [anon_sym_85] = ACTIONS(277), [anon_sym_86] = ACTIONS(277), [anon_sym_87] = ACTIONS(277), @@ -24476,6 +25299,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(277), [anon_sym_91] = ACTIONS(277), [anon_sym_92] = ACTIONS(277), + [anon_sym_93] = ACTIONS(277), + [anon_sym_94] = ACTIONS(277), + [anon_sym_95] = ACTIONS(277), + [anon_sym_96] = ACTIONS(277), [sym__endOfLine] = ACTIONS(5), }, [75] = { @@ -24679,35 +25506,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(271), [anon_sym_pack] = ACTIONS(271), [anon_sym_68] = ACTIONS(271), - [anon_sym_reach] = ACTIONS(271), + [anon_sym_rectify] = ACTIONS(271), [anon_sym_69] = ACTIONS(271), + [anon_sym_this] = ACTIONS(271), + [anon_sym_70] = ACTIONS(271), + [anon_sym_recur] = ACTIONS(271), + [anon_sym_71] = ACTIONS(271), [anon_sym_fold] = ACTIONS(273), - [anon_sym_70] = ACTIONS(273), + [anon_sym_72] = ACTIONS(273), [anon_sym_table] = ACTIONS(273), - [anon_sym_71] = ACTIONS(273), + [anon_sym_73] = ACTIONS(273), [anon_sym_cross] = ACTIONS(273), - [anon_sym_72] = ACTIONS(273), + [anon_sym_74] = ACTIONS(273), [anon_sym_group] = ACTIONS(273), - [anon_sym_73] = ACTIONS(273), + [anon_sym_75] = ACTIONS(273), [anon_sym_partition] = ACTIONS(273), - [anon_sym_74] = ACTIONS(273), + [anon_sym_76] = ACTIONS(273), [anon_sym_both] = ACTIONS(273), - [anon_sym_75] = ACTIONS(273), + [anon_sym_77] = ACTIONS(273), [anon_sym_bracket] = ACTIONS(273), - [anon_sym_76] = ACTIONS(273), + [anon_sym_78] = ACTIONS(273), [anon_sym_fork] = ACTIONS(273), - [anon_sym_77] = ACTIONS(273), + [anon_sym_79] = ACTIONS(273), [anon_sym_under] = ACTIONS(273), - [anon_sym_78] = ACTIONS(273), + [anon_sym_80] = ACTIONS(273), [anon_sym_fill] = ACTIONS(273), - [anon_sym_79] = ACTIONS(273), + [anon_sym_81] = ACTIONS(273), [anon_sym_try] = ACTIONS(275), - [anon_sym_80] = ACTIONS(273), + [anon_sym_82] = ACTIONS(273), [anon_sym_do] = ACTIONS(275), - [anon_sym_81] = ACTIONS(273), - [anon_sym_82] = ACTIONS(277), - [anon_sym_83] = ACTIONS(277), - [anon_sym_84] = ACTIONS(277), + [anon_sym_83] = ACTIONS(273), + [anon_sym_all] = ACTIONS(273), + [anon_sym_84] = ACTIONS(273), + [anon_sym_setinv] = ACTIONS(273), + [anon_sym_setunder] = ACTIONS(273), [anon_sym_85] = ACTIONS(277), [anon_sym_86] = ACTIONS(277), [anon_sym_87] = ACTIONS(277), @@ -24716,6 +25548,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(277), [anon_sym_91] = ACTIONS(277), [anon_sym_92] = ACTIONS(277), + [anon_sym_93] = ACTIONS(277), + [anon_sym_94] = ACTIONS(277), + [anon_sym_95] = ACTIONS(277), + [anon_sym_96] = ACTIONS(277), [sym__endOfLine] = ACTIONS(5), }, [76] = { @@ -24919,35 +25755,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(271), [anon_sym_pack] = ACTIONS(271), [anon_sym_68] = ACTIONS(271), - [anon_sym_reach] = ACTIONS(271), + [anon_sym_rectify] = ACTIONS(271), [anon_sym_69] = ACTIONS(271), + [anon_sym_this] = ACTIONS(271), + [anon_sym_70] = ACTIONS(271), + [anon_sym_recur] = ACTIONS(271), + [anon_sym_71] = ACTIONS(271), [anon_sym_fold] = ACTIONS(273), - [anon_sym_70] = ACTIONS(273), + [anon_sym_72] = ACTIONS(273), [anon_sym_table] = ACTIONS(273), - [anon_sym_71] = ACTIONS(273), + [anon_sym_73] = ACTIONS(273), [anon_sym_cross] = ACTIONS(273), - [anon_sym_72] = ACTIONS(273), + [anon_sym_74] = ACTIONS(273), [anon_sym_group] = ACTIONS(273), - [anon_sym_73] = ACTIONS(273), + [anon_sym_75] = ACTIONS(273), [anon_sym_partition] = ACTIONS(273), - [anon_sym_74] = ACTIONS(273), + [anon_sym_76] = ACTIONS(273), [anon_sym_both] = ACTIONS(273), - [anon_sym_75] = ACTIONS(273), + [anon_sym_77] = ACTIONS(273), [anon_sym_bracket] = ACTIONS(273), - [anon_sym_76] = ACTIONS(273), + [anon_sym_78] = ACTIONS(273), [anon_sym_fork] = ACTIONS(273), - [anon_sym_77] = ACTIONS(273), + [anon_sym_79] = ACTIONS(273), [anon_sym_under] = ACTIONS(273), - [anon_sym_78] = ACTIONS(273), + [anon_sym_80] = ACTIONS(273), [anon_sym_fill] = ACTIONS(273), - [anon_sym_79] = ACTIONS(273), + [anon_sym_81] = ACTIONS(273), [anon_sym_try] = ACTIONS(275), - [anon_sym_80] = ACTIONS(273), + [anon_sym_82] = ACTIONS(273), [anon_sym_do] = ACTIONS(275), - [anon_sym_81] = ACTIONS(273), - [anon_sym_82] = ACTIONS(277), - [anon_sym_83] = ACTIONS(277), - [anon_sym_84] = ACTIONS(277), + [anon_sym_83] = ACTIONS(273), + [anon_sym_all] = ACTIONS(273), + [anon_sym_84] = ACTIONS(273), + [anon_sym_setinv] = ACTIONS(273), + [anon_sym_setunder] = ACTIONS(273), [anon_sym_85] = ACTIONS(277), [anon_sym_86] = ACTIONS(277), [anon_sym_87] = ACTIONS(277), @@ -24956,6 +25797,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(277), [anon_sym_91] = ACTIONS(277), [anon_sym_92] = ACTIONS(277), + [anon_sym_93] = ACTIONS(277), + [anon_sym_94] = ACTIONS(277), + [anon_sym_95] = ACTIONS(277), + [anon_sym_96] = ACTIONS(277), [sym__endOfLine] = ACTIONS(5), }, [77] = { @@ -25159,35 +26004,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(43), [anon_sym_pack] = ACTIONS(43), [anon_sym_68] = ACTIONS(43), - [anon_sym_reach] = ACTIONS(43), + [anon_sym_rectify] = ACTIONS(43), [anon_sym_69] = ACTIONS(43), + [anon_sym_this] = ACTIONS(43), + [anon_sym_70] = ACTIONS(43), + [anon_sym_recur] = ACTIONS(43), + [anon_sym_71] = ACTIONS(43), [anon_sym_fold] = ACTIONS(45), - [anon_sym_70] = ACTIONS(45), + [anon_sym_72] = ACTIONS(45), [anon_sym_table] = ACTIONS(45), - [anon_sym_71] = ACTIONS(45), + [anon_sym_73] = ACTIONS(45), [anon_sym_cross] = ACTIONS(45), - [anon_sym_72] = ACTIONS(45), + [anon_sym_74] = ACTIONS(45), [anon_sym_group] = ACTIONS(45), - [anon_sym_73] = ACTIONS(45), + [anon_sym_75] = ACTIONS(45), [anon_sym_partition] = ACTIONS(45), - [anon_sym_74] = ACTIONS(45), + [anon_sym_76] = ACTIONS(45), [anon_sym_both] = ACTIONS(45), - [anon_sym_75] = ACTIONS(45), + [anon_sym_77] = ACTIONS(45), [anon_sym_bracket] = ACTIONS(45), - [anon_sym_76] = ACTIONS(45), + [anon_sym_78] = ACTIONS(45), [anon_sym_fork] = ACTIONS(45), - [anon_sym_77] = ACTIONS(45), + [anon_sym_79] = ACTIONS(45), [anon_sym_under] = ACTIONS(45), - [anon_sym_78] = ACTIONS(45), + [anon_sym_80] = ACTIONS(45), [anon_sym_fill] = ACTIONS(45), - [anon_sym_79] = ACTIONS(45), + [anon_sym_81] = ACTIONS(45), [anon_sym_try] = ACTIONS(47), - [anon_sym_80] = ACTIONS(45), + [anon_sym_82] = ACTIONS(45), [anon_sym_do] = ACTIONS(47), - [anon_sym_81] = ACTIONS(45), - [anon_sym_82] = ACTIONS(49), - [anon_sym_83] = ACTIONS(49), - [anon_sym_84] = ACTIONS(49), + [anon_sym_83] = ACTIONS(45), + [anon_sym_all] = ACTIONS(45), + [anon_sym_84] = ACTIONS(45), + [anon_sym_setinv] = ACTIONS(45), + [anon_sym_setunder] = ACTIONS(45), [anon_sym_85] = ACTIONS(49), [anon_sym_86] = ACTIONS(49), [anon_sym_87] = ACTIONS(49), @@ -25196,6 +26046,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(49), [anon_sym_91] = ACTIONS(49), [anon_sym_92] = ACTIONS(49), + [anon_sym_93] = ACTIONS(49), + [anon_sym_94] = ACTIONS(49), + [anon_sym_95] = ACTIONS(49), + [anon_sym_96] = ACTIONS(49), [sym__endOfLine] = ACTIONS(5), }, [78] = { @@ -25399,35 +26253,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(271), [anon_sym_pack] = ACTIONS(271), [anon_sym_68] = ACTIONS(271), - [anon_sym_reach] = ACTIONS(271), + [anon_sym_rectify] = ACTIONS(271), [anon_sym_69] = ACTIONS(271), + [anon_sym_this] = ACTIONS(271), + [anon_sym_70] = ACTIONS(271), + [anon_sym_recur] = ACTIONS(271), + [anon_sym_71] = ACTIONS(271), [anon_sym_fold] = ACTIONS(273), - [anon_sym_70] = ACTIONS(273), + [anon_sym_72] = ACTIONS(273), [anon_sym_table] = ACTIONS(273), - [anon_sym_71] = ACTIONS(273), + [anon_sym_73] = ACTIONS(273), [anon_sym_cross] = ACTIONS(273), - [anon_sym_72] = ACTIONS(273), + [anon_sym_74] = ACTIONS(273), [anon_sym_group] = ACTIONS(273), - [anon_sym_73] = ACTIONS(273), + [anon_sym_75] = ACTIONS(273), [anon_sym_partition] = ACTIONS(273), - [anon_sym_74] = ACTIONS(273), + [anon_sym_76] = ACTIONS(273), [anon_sym_both] = ACTIONS(273), - [anon_sym_75] = ACTIONS(273), + [anon_sym_77] = ACTIONS(273), [anon_sym_bracket] = ACTIONS(273), - [anon_sym_76] = ACTIONS(273), + [anon_sym_78] = ACTIONS(273), [anon_sym_fork] = ACTIONS(273), - [anon_sym_77] = ACTIONS(273), + [anon_sym_79] = ACTIONS(273), [anon_sym_under] = ACTIONS(273), - [anon_sym_78] = ACTIONS(273), + [anon_sym_80] = ACTIONS(273), [anon_sym_fill] = ACTIONS(273), - [anon_sym_79] = ACTIONS(273), + [anon_sym_81] = ACTIONS(273), [anon_sym_try] = ACTIONS(275), - [anon_sym_80] = ACTIONS(273), + [anon_sym_82] = ACTIONS(273), [anon_sym_do] = ACTIONS(275), - [anon_sym_81] = ACTIONS(273), - [anon_sym_82] = ACTIONS(277), - [anon_sym_83] = ACTIONS(277), - [anon_sym_84] = ACTIONS(277), + [anon_sym_83] = ACTIONS(273), + [anon_sym_all] = ACTIONS(273), + [anon_sym_84] = ACTIONS(273), + [anon_sym_setinv] = ACTIONS(273), + [anon_sym_setunder] = ACTIONS(273), [anon_sym_85] = ACTIONS(277), [anon_sym_86] = ACTIONS(277), [anon_sym_87] = ACTIONS(277), @@ -25436,6 +26295,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(277), [anon_sym_91] = ACTIONS(277), [anon_sym_92] = ACTIONS(277), + [anon_sym_93] = ACTIONS(277), + [anon_sym_94] = ACTIONS(277), + [anon_sym_95] = ACTIONS(277), + [anon_sym_96] = ACTIONS(277), [sym__endOfLine] = ACTIONS(5), }, [79] = { @@ -25639,35 +26502,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(89), [anon_sym_pack] = ACTIONS(89), [anon_sym_68] = ACTIONS(89), - [anon_sym_reach] = ACTIONS(89), + [anon_sym_rectify] = ACTIONS(89), [anon_sym_69] = ACTIONS(89), + [anon_sym_this] = ACTIONS(89), + [anon_sym_70] = ACTIONS(89), + [anon_sym_recur] = ACTIONS(89), + [anon_sym_71] = ACTIONS(89), [anon_sym_fold] = ACTIONS(91), - [anon_sym_70] = ACTIONS(91), + [anon_sym_72] = ACTIONS(91), [anon_sym_table] = ACTIONS(91), - [anon_sym_71] = ACTIONS(91), + [anon_sym_73] = ACTIONS(91), [anon_sym_cross] = ACTIONS(91), - [anon_sym_72] = ACTIONS(91), + [anon_sym_74] = ACTIONS(91), [anon_sym_group] = ACTIONS(91), - [anon_sym_73] = ACTIONS(91), + [anon_sym_75] = ACTIONS(91), [anon_sym_partition] = ACTIONS(91), - [anon_sym_74] = ACTIONS(91), + [anon_sym_76] = ACTIONS(91), [anon_sym_both] = ACTIONS(91), - [anon_sym_75] = ACTIONS(91), + [anon_sym_77] = ACTIONS(91), [anon_sym_bracket] = ACTIONS(91), - [anon_sym_76] = ACTIONS(91), + [anon_sym_78] = ACTIONS(91), [anon_sym_fork] = ACTIONS(91), - [anon_sym_77] = ACTIONS(91), + [anon_sym_79] = ACTIONS(91), [anon_sym_under] = ACTIONS(91), - [anon_sym_78] = ACTIONS(91), + [anon_sym_80] = ACTIONS(91), [anon_sym_fill] = ACTIONS(91), - [anon_sym_79] = ACTIONS(91), + [anon_sym_81] = ACTIONS(91), [anon_sym_try] = ACTIONS(93), - [anon_sym_80] = ACTIONS(91), + [anon_sym_82] = ACTIONS(91), [anon_sym_do] = ACTIONS(93), - [anon_sym_81] = ACTIONS(91), - [anon_sym_82] = ACTIONS(95), - [anon_sym_83] = ACTIONS(95), - [anon_sym_84] = ACTIONS(95), + [anon_sym_83] = ACTIONS(91), + [anon_sym_all] = ACTIONS(91), + [anon_sym_84] = ACTIONS(91), + [anon_sym_setinv] = ACTIONS(91), + [anon_sym_setunder] = ACTIONS(91), [anon_sym_85] = ACTIONS(95), [anon_sym_86] = ACTIONS(95), [anon_sym_87] = ACTIONS(95), @@ -25676,6 +26544,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(95), [anon_sym_91] = ACTIONS(95), [anon_sym_92] = ACTIONS(95), + [anon_sym_93] = ACTIONS(95), + [anon_sym_94] = ACTIONS(95), + [anon_sym_95] = ACTIONS(95), + [anon_sym_96] = ACTIONS(95), [sym__endOfLine] = ACTIONS(5), }, [80] = { @@ -25879,35 +26751,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(271), [anon_sym_pack] = ACTIONS(271), [anon_sym_68] = ACTIONS(271), - [anon_sym_reach] = ACTIONS(271), + [anon_sym_rectify] = ACTIONS(271), [anon_sym_69] = ACTIONS(271), + [anon_sym_this] = ACTIONS(271), + [anon_sym_70] = ACTIONS(271), + [anon_sym_recur] = ACTIONS(271), + [anon_sym_71] = ACTIONS(271), [anon_sym_fold] = ACTIONS(273), - [anon_sym_70] = ACTIONS(273), + [anon_sym_72] = ACTIONS(273), [anon_sym_table] = ACTIONS(273), - [anon_sym_71] = ACTIONS(273), + [anon_sym_73] = ACTIONS(273), [anon_sym_cross] = ACTIONS(273), - [anon_sym_72] = ACTIONS(273), + [anon_sym_74] = ACTIONS(273), [anon_sym_group] = ACTIONS(273), - [anon_sym_73] = ACTIONS(273), + [anon_sym_75] = ACTIONS(273), [anon_sym_partition] = ACTIONS(273), - [anon_sym_74] = ACTIONS(273), + [anon_sym_76] = ACTIONS(273), [anon_sym_both] = ACTIONS(273), - [anon_sym_75] = ACTIONS(273), + [anon_sym_77] = ACTIONS(273), [anon_sym_bracket] = ACTIONS(273), - [anon_sym_76] = ACTIONS(273), + [anon_sym_78] = ACTIONS(273), [anon_sym_fork] = ACTIONS(273), - [anon_sym_77] = ACTIONS(273), + [anon_sym_79] = ACTIONS(273), [anon_sym_under] = ACTIONS(273), - [anon_sym_78] = ACTIONS(273), + [anon_sym_80] = ACTIONS(273), [anon_sym_fill] = ACTIONS(273), - [anon_sym_79] = ACTIONS(273), + [anon_sym_81] = ACTIONS(273), [anon_sym_try] = ACTIONS(275), - [anon_sym_80] = ACTIONS(273), + [anon_sym_82] = ACTIONS(273), [anon_sym_do] = ACTIONS(275), - [anon_sym_81] = ACTIONS(273), - [anon_sym_82] = ACTIONS(277), - [anon_sym_83] = ACTIONS(277), - [anon_sym_84] = ACTIONS(277), + [anon_sym_83] = ACTIONS(273), + [anon_sym_all] = ACTIONS(273), + [anon_sym_84] = ACTIONS(273), + [anon_sym_setinv] = ACTIONS(273), + [anon_sym_setunder] = ACTIONS(273), [anon_sym_85] = ACTIONS(277), [anon_sym_86] = ACTIONS(277), [anon_sym_87] = ACTIONS(277), @@ -25916,6 +26793,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(277), [anon_sym_91] = ACTIONS(277), [anon_sym_92] = ACTIONS(277), + [anon_sym_93] = ACTIONS(277), + [anon_sym_94] = ACTIONS(277), + [anon_sym_95] = ACTIONS(277), + [anon_sym_96] = ACTIONS(277), [sym__endOfLine] = ACTIONS(5), }, [81] = { @@ -26119,35 +27000,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(43), [anon_sym_pack] = ACTIONS(43), [anon_sym_68] = ACTIONS(43), - [anon_sym_reach] = ACTIONS(43), + [anon_sym_rectify] = ACTIONS(43), [anon_sym_69] = ACTIONS(43), + [anon_sym_this] = ACTIONS(43), + [anon_sym_70] = ACTIONS(43), + [anon_sym_recur] = ACTIONS(43), + [anon_sym_71] = ACTIONS(43), [anon_sym_fold] = ACTIONS(45), - [anon_sym_70] = ACTIONS(45), + [anon_sym_72] = ACTIONS(45), [anon_sym_table] = ACTIONS(45), - [anon_sym_71] = ACTIONS(45), + [anon_sym_73] = ACTIONS(45), [anon_sym_cross] = ACTIONS(45), - [anon_sym_72] = ACTIONS(45), + [anon_sym_74] = ACTIONS(45), [anon_sym_group] = ACTIONS(45), - [anon_sym_73] = ACTIONS(45), + [anon_sym_75] = ACTIONS(45), [anon_sym_partition] = ACTIONS(45), - [anon_sym_74] = ACTIONS(45), + [anon_sym_76] = ACTIONS(45), [anon_sym_both] = ACTIONS(45), - [anon_sym_75] = ACTIONS(45), + [anon_sym_77] = ACTIONS(45), [anon_sym_bracket] = ACTIONS(45), - [anon_sym_76] = ACTIONS(45), + [anon_sym_78] = ACTIONS(45), [anon_sym_fork] = ACTIONS(45), - [anon_sym_77] = ACTIONS(45), + [anon_sym_79] = ACTIONS(45), [anon_sym_under] = ACTIONS(45), - [anon_sym_78] = ACTIONS(45), + [anon_sym_80] = ACTIONS(45), [anon_sym_fill] = ACTIONS(45), - [anon_sym_79] = ACTIONS(45), + [anon_sym_81] = ACTIONS(45), [anon_sym_try] = ACTIONS(47), - [anon_sym_80] = ACTIONS(45), + [anon_sym_82] = ACTIONS(45), [anon_sym_do] = ACTIONS(47), - [anon_sym_81] = ACTIONS(45), - [anon_sym_82] = ACTIONS(49), - [anon_sym_83] = ACTIONS(49), - [anon_sym_84] = ACTIONS(49), + [anon_sym_83] = ACTIONS(45), + [anon_sym_all] = ACTIONS(45), + [anon_sym_84] = ACTIONS(45), + [anon_sym_setinv] = ACTIONS(45), + [anon_sym_setunder] = ACTIONS(45), [anon_sym_85] = ACTIONS(49), [anon_sym_86] = ACTIONS(49), [anon_sym_87] = ACTIONS(49), @@ -26156,6 +27042,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(49), [anon_sym_91] = ACTIONS(49), [anon_sym_92] = ACTIONS(49), + [anon_sym_93] = ACTIONS(49), + [anon_sym_94] = ACTIONS(49), + [anon_sym_95] = ACTIONS(49), + [anon_sym_96] = ACTIONS(49), [sym__endOfLine] = ACTIONS(5), }, [82] = { @@ -26351,35 +27241,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(425), [anon_sym_pack] = ACTIONS(425), [anon_sym_68] = ACTIONS(425), - [anon_sym_reach] = ACTIONS(425), + [anon_sym_rectify] = ACTIONS(425), [anon_sym_69] = ACTIONS(425), - [anon_sym_fold] = ACTIONS(425), + [anon_sym_this] = ACTIONS(425), [anon_sym_70] = ACTIONS(425), - [anon_sym_table] = ACTIONS(425), + [anon_sym_recur] = ACTIONS(425), [anon_sym_71] = ACTIONS(425), - [anon_sym_cross] = ACTIONS(425), + [anon_sym_fold] = ACTIONS(425), [anon_sym_72] = ACTIONS(425), - [anon_sym_group] = ACTIONS(425), + [anon_sym_table] = ACTIONS(425), [anon_sym_73] = ACTIONS(425), - [anon_sym_partition] = ACTIONS(425), + [anon_sym_cross] = ACTIONS(425), [anon_sym_74] = ACTIONS(425), - [anon_sym_both] = ACTIONS(425), + [anon_sym_group] = ACTIONS(425), [anon_sym_75] = ACTIONS(425), - [anon_sym_bracket] = ACTIONS(425), + [anon_sym_partition] = ACTIONS(425), [anon_sym_76] = ACTIONS(425), - [anon_sym_fork] = ACTIONS(425), + [anon_sym_both] = ACTIONS(425), [anon_sym_77] = ACTIONS(425), - [anon_sym_under] = ACTIONS(425), + [anon_sym_bracket] = ACTIONS(425), [anon_sym_78] = ACTIONS(425), - [anon_sym_fill] = ACTIONS(425), + [anon_sym_fork] = ACTIONS(425), [anon_sym_79] = ACTIONS(425), - [anon_sym_try] = ACTIONS(423), + [anon_sym_under] = ACTIONS(425), [anon_sym_80] = ACTIONS(425), - [anon_sym_do] = ACTIONS(423), + [anon_sym_fill] = ACTIONS(425), [anon_sym_81] = ACTIONS(425), + [anon_sym_try] = ACTIONS(423), [anon_sym_82] = ACTIONS(425), + [anon_sym_do] = ACTIONS(423), [anon_sym_83] = ACTIONS(425), + [anon_sym_all] = ACTIONS(425), [anon_sym_84] = ACTIONS(425), + [anon_sym_setinv] = ACTIONS(425), + [anon_sym_setunder] = ACTIONS(425), [anon_sym_85] = ACTIONS(425), [anon_sym_86] = ACTIONS(425), [anon_sym_87] = ACTIONS(425), @@ -26388,6 +27283,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(425), [anon_sym_91] = ACTIONS(425), [anon_sym_92] = ACTIONS(425), + [anon_sym_93] = ACTIONS(425), + [anon_sym_94] = ACTIONS(425), + [anon_sym_95] = ACTIONS(425), + [anon_sym_96] = ACTIONS(425), [sym__endOfLine] = ACTIONS(425), }, [83] = { @@ -26583,35 +27482,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(435), [anon_sym_pack] = ACTIONS(435), [anon_sym_68] = ACTIONS(435), - [anon_sym_reach] = ACTIONS(435), + [anon_sym_rectify] = ACTIONS(435), [anon_sym_69] = ACTIONS(435), - [anon_sym_fold] = ACTIONS(435), + [anon_sym_this] = ACTIONS(435), [anon_sym_70] = ACTIONS(435), - [anon_sym_table] = ACTIONS(435), + [anon_sym_recur] = ACTIONS(435), [anon_sym_71] = ACTIONS(435), - [anon_sym_cross] = ACTIONS(435), + [anon_sym_fold] = ACTIONS(435), [anon_sym_72] = ACTIONS(435), - [anon_sym_group] = ACTIONS(435), + [anon_sym_table] = ACTIONS(435), [anon_sym_73] = ACTIONS(435), - [anon_sym_partition] = ACTIONS(435), + [anon_sym_cross] = ACTIONS(435), [anon_sym_74] = ACTIONS(435), - [anon_sym_both] = ACTIONS(435), + [anon_sym_group] = ACTIONS(435), [anon_sym_75] = ACTIONS(435), - [anon_sym_bracket] = ACTIONS(435), + [anon_sym_partition] = ACTIONS(435), [anon_sym_76] = ACTIONS(435), - [anon_sym_fork] = ACTIONS(435), + [anon_sym_both] = ACTIONS(435), [anon_sym_77] = ACTIONS(435), - [anon_sym_under] = ACTIONS(435), + [anon_sym_bracket] = ACTIONS(435), [anon_sym_78] = ACTIONS(435), - [anon_sym_fill] = ACTIONS(435), + [anon_sym_fork] = ACTIONS(435), [anon_sym_79] = ACTIONS(435), - [anon_sym_try] = ACTIONS(433), + [anon_sym_under] = ACTIONS(435), [anon_sym_80] = ACTIONS(435), - [anon_sym_do] = ACTIONS(433), + [anon_sym_fill] = ACTIONS(435), [anon_sym_81] = ACTIONS(435), + [anon_sym_try] = ACTIONS(433), [anon_sym_82] = ACTIONS(435), + [anon_sym_do] = ACTIONS(433), [anon_sym_83] = ACTIONS(435), + [anon_sym_all] = ACTIONS(435), [anon_sym_84] = ACTIONS(435), + [anon_sym_setinv] = ACTIONS(435), + [anon_sym_setunder] = ACTIONS(435), [anon_sym_85] = ACTIONS(435), [anon_sym_86] = ACTIONS(435), [anon_sym_87] = ACTIONS(435), @@ -26620,6 +27524,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(435), [anon_sym_91] = ACTIONS(435), [anon_sym_92] = ACTIONS(435), + [anon_sym_93] = ACTIONS(435), + [anon_sym_94] = ACTIONS(435), + [anon_sym_95] = ACTIONS(435), + [anon_sym_96] = ACTIONS(435), [sym__endOfLine] = ACTIONS(435), }, [84] = { @@ -26815,35 +27723,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(435), [anon_sym_pack] = ACTIONS(435), [anon_sym_68] = ACTIONS(435), - [anon_sym_reach] = ACTIONS(435), + [anon_sym_rectify] = ACTIONS(435), [anon_sym_69] = ACTIONS(435), - [anon_sym_fold] = ACTIONS(435), + [anon_sym_this] = ACTIONS(435), [anon_sym_70] = ACTIONS(435), - [anon_sym_table] = ACTIONS(435), + [anon_sym_recur] = ACTIONS(435), [anon_sym_71] = ACTIONS(435), - [anon_sym_cross] = ACTIONS(435), + [anon_sym_fold] = ACTIONS(435), [anon_sym_72] = ACTIONS(435), - [anon_sym_group] = ACTIONS(435), + [anon_sym_table] = ACTIONS(435), [anon_sym_73] = ACTIONS(435), - [anon_sym_partition] = ACTIONS(435), + [anon_sym_cross] = ACTIONS(435), [anon_sym_74] = ACTIONS(435), - [anon_sym_both] = ACTIONS(435), + [anon_sym_group] = ACTIONS(435), [anon_sym_75] = ACTIONS(435), - [anon_sym_bracket] = ACTIONS(435), + [anon_sym_partition] = ACTIONS(435), [anon_sym_76] = ACTIONS(435), - [anon_sym_fork] = ACTIONS(435), + [anon_sym_both] = ACTIONS(435), [anon_sym_77] = ACTIONS(435), - [anon_sym_under] = ACTIONS(435), + [anon_sym_bracket] = ACTIONS(435), [anon_sym_78] = ACTIONS(435), - [anon_sym_fill] = ACTIONS(435), + [anon_sym_fork] = ACTIONS(435), [anon_sym_79] = ACTIONS(435), - [anon_sym_try] = ACTIONS(433), + [anon_sym_under] = ACTIONS(435), [anon_sym_80] = ACTIONS(435), - [anon_sym_do] = ACTIONS(433), + [anon_sym_fill] = ACTIONS(435), [anon_sym_81] = ACTIONS(435), + [anon_sym_try] = ACTIONS(433), [anon_sym_82] = ACTIONS(435), + [anon_sym_do] = ACTIONS(433), [anon_sym_83] = ACTIONS(435), + [anon_sym_all] = ACTIONS(435), [anon_sym_84] = ACTIONS(435), + [anon_sym_setinv] = ACTIONS(435), + [anon_sym_setunder] = ACTIONS(435), [anon_sym_85] = ACTIONS(435), [anon_sym_86] = ACTIONS(435), [anon_sym_87] = ACTIONS(435), @@ -26852,6 +27765,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(435), [anon_sym_91] = ACTIONS(435), [anon_sym_92] = ACTIONS(435), + [anon_sym_93] = ACTIONS(435), + [anon_sym_94] = ACTIONS(435), + [anon_sym_95] = ACTIONS(435), + [anon_sym_96] = ACTIONS(435), [sym__endOfLine] = ACTIONS(435), }, [85] = { @@ -27045,35 +27962,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(447), [anon_sym_pack] = ACTIONS(447), [anon_sym_68] = ACTIONS(447), - [anon_sym_reach] = ACTIONS(447), + [anon_sym_rectify] = ACTIONS(447), [anon_sym_69] = ACTIONS(447), - [anon_sym_fold] = ACTIONS(447), + [anon_sym_this] = ACTIONS(447), [anon_sym_70] = ACTIONS(447), - [anon_sym_table] = ACTIONS(447), + [anon_sym_recur] = ACTIONS(447), [anon_sym_71] = ACTIONS(447), - [anon_sym_cross] = ACTIONS(447), + [anon_sym_fold] = ACTIONS(447), [anon_sym_72] = ACTIONS(447), - [anon_sym_group] = ACTIONS(447), + [anon_sym_table] = ACTIONS(447), [anon_sym_73] = ACTIONS(447), - [anon_sym_partition] = ACTIONS(447), + [anon_sym_cross] = ACTIONS(447), [anon_sym_74] = ACTIONS(447), - [anon_sym_both] = ACTIONS(447), + [anon_sym_group] = ACTIONS(447), [anon_sym_75] = ACTIONS(447), - [anon_sym_bracket] = ACTIONS(447), + [anon_sym_partition] = ACTIONS(447), [anon_sym_76] = ACTIONS(447), - [anon_sym_fork] = ACTIONS(447), + [anon_sym_both] = ACTIONS(447), [anon_sym_77] = ACTIONS(447), - [anon_sym_under] = ACTIONS(447), + [anon_sym_bracket] = ACTIONS(447), [anon_sym_78] = ACTIONS(447), - [anon_sym_fill] = ACTIONS(447), + [anon_sym_fork] = ACTIONS(447), [anon_sym_79] = ACTIONS(447), - [anon_sym_try] = ACTIONS(445), + [anon_sym_under] = ACTIONS(447), [anon_sym_80] = ACTIONS(447), - [anon_sym_do] = ACTIONS(445), + [anon_sym_fill] = ACTIONS(447), [anon_sym_81] = ACTIONS(447), + [anon_sym_try] = ACTIONS(445), [anon_sym_82] = ACTIONS(447), + [anon_sym_do] = ACTIONS(445), [anon_sym_83] = ACTIONS(447), + [anon_sym_all] = ACTIONS(447), [anon_sym_84] = ACTIONS(447), + [anon_sym_setinv] = ACTIONS(447), + [anon_sym_setunder] = ACTIONS(447), [anon_sym_85] = ACTIONS(447), [anon_sym_86] = ACTIONS(447), [anon_sym_87] = ACTIONS(447), @@ -27082,6 +28004,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(447), [anon_sym_91] = ACTIONS(447), [anon_sym_92] = ACTIONS(447), + [anon_sym_93] = ACTIONS(447), + [anon_sym_94] = ACTIONS(447), + [anon_sym_95] = ACTIONS(447), + [anon_sym_96] = ACTIONS(447), [sym__endOfLine] = ACTIONS(447), }, [86] = { @@ -27275,35 +28201,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(451), [anon_sym_pack] = ACTIONS(451), [anon_sym_68] = ACTIONS(451), - [anon_sym_reach] = ACTIONS(451), + [anon_sym_rectify] = ACTIONS(451), [anon_sym_69] = ACTIONS(451), - [anon_sym_fold] = ACTIONS(451), + [anon_sym_this] = ACTIONS(451), [anon_sym_70] = ACTIONS(451), - [anon_sym_table] = ACTIONS(451), + [anon_sym_recur] = ACTIONS(451), [anon_sym_71] = ACTIONS(451), - [anon_sym_cross] = ACTIONS(451), + [anon_sym_fold] = ACTIONS(451), [anon_sym_72] = ACTIONS(451), - [anon_sym_group] = ACTIONS(451), + [anon_sym_table] = ACTIONS(451), [anon_sym_73] = ACTIONS(451), - [anon_sym_partition] = ACTIONS(451), + [anon_sym_cross] = ACTIONS(451), [anon_sym_74] = ACTIONS(451), - [anon_sym_both] = ACTIONS(451), + [anon_sym_group] = ACTIONS(451), [anon_sym_75] = ACTIONS(451), - [anon_sym_bracket] = ACTIONS(451), + [anon_sym_partition] = ACTIONS(451), [anon_sym_76] = ACTIONS(451), - [anon_sym_fork] = ACTIONS(451), + [anon_sym_both] = ACTIONS(451), [anon_sym_77] = ACTIONS(451), - [anon_sym_under] = ACTIONS(451), + [anon_sym_bracket] = ACTIONS(451), [anon_sym_78] = ACTIONS(451), - [anon_sym_fill] = ACTIONS(451), + [anon_sym_fork] = ACTIONS(451), [anon_sym_79] = ACTIONS(451), - [anon_sym_try] = ACTIONS(449), + [anon_sym_under] = ACTIONS(451), [anon_sym_80] = ACTIONS(451), - [anon_sym_do] = ACTIONS(449), + [anon_sym_fill] = ACTIONS(451), [anon_sym_81] = ACTIONS(451), + [anon_sym_try] = ACTIONS(449), [anon_sym_82] = ACTIONS(451), + [anon_sym_do] = ACTIONS(449), [anon_sym_83] = ACTIONS(451), + [anon_sym_all] = ACTIONS(451), [anon_sym_84] = ACTIONS(451), + [anon_sym_setinv] = ACTIONS(451), + [anon_sym_setunder] = ACTIONS(451), [anon_sym_85] = ACTIONS(451), [anon_sym_86] = ACTIONS(451), [anon_sym_87] = ACTIONS(451), @@ -27312,6 +28243,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(451), [anon_sym_91] = ACTIONS(451), [anon_sym_92] = ACTIONS(451), + [anon_sym_93] = ACTIONS(451), + [anon_sym_94] = ACTIONS(451), + [anon_sym_95] = ACTIONS(451), + [anon_sym_96] = ACTIONS(451), [sym__endOfLine] = ACTIONS(451), }, [87] = { @@ -27505,35 +28440,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(455), [anon_sym_pack] = ACTIONS(455), [anon_sym_68] = ACTIONS(455), - [anon_sym_reach] = ACTIONS(455), + [anon_sym_rectify] = ACTIONS(455), [anon_sym_69] = ACTIONS(455), - [anon_sym_fold] = ACTIONS(455), + [anon_sym_this] = ACTIONS(455), [anon_sym_70] = ACTIONS(455), - [anon_sym_table] = ACTIONS(455), + [anon_sym_recur] = ACTIONS(455), [anon_sym_71] = ACTIONS(455), - [anon_sym_cross] = ACTIONS(455), + [anon_sym_fold] = ACTIONS(455), [anon_sym_72] = ACTIONS(455), - [anon_sym_group] = ACTIONS(455), + [anon_sym_table] = ACTIONS(455), [anon_sym_73] = ACTIONS(455), - [anon_sym_partition] = ACTIONS(455), + [anon_sym_cross] = ACTIONS(455), [anon_sym_74] = ACTIONS(455), - [anon_sym_both] = ACTIONS(455), + [anon_sym_group] = ACTIONS(455), [anon_sym_75] = ACTIONS(455), - [anon_sym_bracket] = ACTIONS(455), + [anon_sym_partition] = ACTIONS(455), [anon_sym_76] = ACTIONS(455), - [anon_sym_fork] = ACTIONS(455), + [anon_sym_both] = ACTIONS(455), [anon_sym_77] = ACTIONS(455), - [anon_sym_under] = ACTIONS(455), + [anon_sym_bracket] = ACTIONS(455), [anon_sym_78] = ACTIONS(455), - [anon_sym_fill] = ACTIONS(455), + [anon_sym_fork] = ACTIONS(455), [anon_sym_79] = ACTIONS(455), - [anon_sym_try] = ACTIONS(453), + [anon_sym_under] = ACTIONS(455), [anon_sym_80] = ACTIONS(455), - [anon_sym_do] = ACTIONS(453), + [anon_sym_fill] = ACTIONS(455), [anon_sym_81] = ACTIONS(455), + [anon_sym_try] = ACTIONS(453), [anon_sym_82] = ACTIONS(455), + [anon_sym_do] = ACTIONS(453), [anon_sym_83] = ACTIONS(455), + [anon_sym_all] = ACTIONS(455), [anon_sym_84] = ACTIONS(455), + [anon_sym_setinv] = ACTIONS(455), + [anon_sym_setunder] = ACTIONS(455), [anon_sym_85] = ACTIONS(455), [anon_sym_86] = ACTIONS(455), [anon_sym_87] = ACTIONS(455), @@ -27542,6 +28482,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(455), [anon_sym_91] = ACTIONS(455), [anon_sym_92] = ACTIONS(455), + [anon_sym_93] = ACTIONS(455), + [anon_sym_94] = ACTIONS(455), + [anon_sym_95] = ACTIONS(455), + [anon_sym_96] = ACTIONS(455), [sym__endOfLine] = ACTIONS(455), }, [88] = { @@ -27735,35 +28679,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(459), [anon_sym_pack] = ACTIONS(459), [anon_sym_68] = ACTIONS(459), - [anon_sym_reach] = ACTIONS(459), + [anon_sym_rectify] = ACTIONS(459), [anon_sym_69] = ACTIONS(459), - [anon_sym_fold] = ACTIONS(459), + [anon_sym_this] = ACTIONS(459), [anon_sym_70] = ACTIONS(459), - [anon_sym_table] = ACTIONS(459), + [anon_sym_recur] = ACTIONS(459), [anon_sym_71] = ACTIONS(459), - [anon_sym_cross] = ACTIONS(459), + [anon_sym_fold] = ACTIONS(459), [anon_sym_72] = ACTIONS(459), - [anon_sym_group] = ACTIONS(459), + [anon_sym_table] = ACTIONS(459), [anon_sym_73] = ACTIONS(459), - [anon_sym_partition] = ACTIONS(459), + [anon_sym_cross] = ACTIONS(459), [anon_sym_74] = ACTIONS(459), - [anon_sym_both] = ACTIONS(459), + [anon_sym_group] = ACTIONS(459), [anon_sym_75] = ACTIONS(459), - [anon_sym_bracket] = ACTIONS(459), + [anon_sym_partition] = ACTIONS(459), [anon_sym_76] = ACTIONS(459), - [anon_sym_fork] = ACTIONS(459), + [anon_sym_both] = ACTIONS(459), [anon_sym_77] = ACTIONS(459), - [anon_sym_under] = ACTIONS(459), + [anon_sym_bracket] = ACTIONS(459), [anon_sym_78] = ACTIONS(459), - [anon_sym_fill] = ACTIONS(459), + [anon_sym_fork] = ACTIONS(459), [anon_sym_79] = ACTIONS(459), - [anon_sym_try] = ACTIONS(457), + [anon_sym_under] = ACTIONS(459), [anon_sym_80] = ACTIONS(459), - [anon_sym_do] = ACTIONS(457), + [anon_sym_fill] = ACTIONS(459), [anon_sym_81] = ACTIONS(459), + [anon_sym_try] = ACTIONS(457), [anon_sym_82] = ACTIONS(459), + [anon_sym_do] = ACTIONS(457), [anon_sym_83] = ACTIONS(459), + [anon_sym_all] = ACTIONS(459), [anon_sym_84] = ACTIONS(459), + [anon_sym_setinv] = ACTIONS(459), + [anon_sym_setunder] = ACTIONS(459), [anon_sym_85] = ACTIONS(459), [anon_sym_86] = ACTIONS(459), [anon_sym_87] = ACTIONS(459), @@ -27772,6 +28721,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(459), [anon_sym_91] = ACTIONS(459), [anon_sym_92] = ACTIONS(459), + [anon_sym_93] = ACTIONS(459), + [anon_sym_94] = ACTIONS(459), + [anon_sym_95] = ACTIONS(459), + [anon_sym_96] = ACTIONS(459), [sym__endOfLine] = ACTIONS(459), }, [89] = { @@ -27965,35 +28918,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(463), [anon_sym_pack] = ACTIONS(463), [anon_sym_68] = ACTIONS(463), - [anon_sym_reach] = ACTIONS(463), + [anon_sym_rectify] = ACTIONS(463), [anon_sym_69] = ACTIONS(463), - [anon_sym_fold] = ACTIONS(463), + [anon_sym_this] = ACTIONS(463), [anon_sym_70] = ACTIONS(463), - [anon_sym_table] = ACTIONS(463), + [anon_sym_recur] = ACTIONS(463), [anon_sym_71] = ACTIONS(463), - [anon_sym_cross] = ACTIONS(463), + [anon_sym_fold] = ACTIONS(463), [anon_sym_72] = ACTIONS(463), - [anon_sym_group] = ACTIONS(463), + [anon_sym_table] = ACTIONS(463), [anon_sym_73] = ACTIONS(463), - [anon_sym_partition] = ACTIONS(463), + [anon_sym_cross] = ACTIONS(463), [anon_sym_74] = ACTIONS(463), - [anon_sym_both] = ACTIONS(463), + [anon_sym_group] = ACTIONS(463), [anon_sym_75] = ACTIONS(463), - [anon_sym_bracket] = ACTIONS(463), + [anon_sym_partition] = ACTIONS(463), [anon_sym_76] = ACTIONS(463), - [anon_sym_fork] = ACTIONS(463), + [anon_sym_both] = ACTIONS(463), [anon_sym_77] = ACTIONS(463), - [anon_sym_under] = ACTIONS(463), + [anon_sym_bracket] = ACTIONS(463), [anon_sym_78] = ACTIONS(463), - [anon_sym_fill] = ACTIONS(463), + [anon_sym_fork] = ACTIONS(463), [anon_sym_79] = ACTIONS(463), - [anon_sym_try] = ACTIONS(461), + [anon_sym_under] = ACTIONS(463), [anon_sym_80] = ACTIONS(463), - [anon_sym_do] = ACTIONS(461), + [anon_sym_fill] = ACTIONS(463), [anon_sym_81] = ACTIONS(463), + [anon_sym_try] = ACTIONS(461), [anon_sym_82] = ACTIONS(463), + [anon_sym_do] = ACTIONS(461), [anon_sym_83] = ACTIONS(463), + [anon_sym_all] = ACTIONS(463), [anon_sym_84] = ACTIONS(463), + [anon_sym_setinv] = ACTIONS(463), + [anon_sym_setunder] = ACTIONS(463), [anon_sym_85] = ACTIONS(463), [anon_sym_86] = ACTIONS(463), [anon_sym_87] = ACTIONS(463), @@ -28002,6 +28960,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(463), [anon_sym_91] = ACTIONS(463), [anon_sym_92] = ACTIONS(463), + [anon_sym_93] = ACTIONS(463), + [anon_sym_94] = ACTIONS(463), + [anon_sym_95] = ACTIONS(463), + [anon_sym_96] = ACTIONS(463), [sym__endOfLine] = ACTIONS(463), }, [90] = { @@ -28195,35 +29157,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(467), [anon_sym_pack] = ACTIONS(467), [anon_sym_68] = ACTIONS(467), - [anon_sym_reach] = ACTIONS(467), + [anon_sym_rectify] = ACTIONS(467), [anon_sym_69] = ACTIONS(467), - [anon_sym_fold] = ACTIONS(467), + [anon_sym_this] = ACTIONS(467), [anon_sym_70] = ACTIONS(467), - [anon_sym_table] = ACTIONS(467), + [anon_sym_recur] = ACTIONS(467), [anon_sym_71] = ACTIONS(467), - [anon_sym_cross] = ACTIONS(467), + [anon_sym_fold] = ACTIONS(467), [anon_sym_72] = ACTIONS(467), - [anon_sym_group] = ACTIONS(467), + [anon_sym_table] = ACTIONS(467), [anon_sym_73] = ACTIONS(467), - [anon_sym_partition] = ACTIONS(467), + [anon_sym_cross] = ACTIONS(467), [anon_sym_74] = ACTIONS(467), - [anon_sym_both] = ACTIONS(467), + [anon_sym_group] = ACTIONS(467), [anon_sym_75] = ACTIONS(467), - [anon_sym_bracket] = ACTIONS(467), + [anon_sym_partition] = ACTIONS(467), [anon_sym_76] = ACTIONS(467), - [anon_sym_fork] = ACTIONS(467), + [anon_sym_both] = ACTIONS(467), [anon_sym_77] = ACTIONS(467), - [anon_sym_under] = ACTIONS(467), + [anon_sym_bracket] = ACTIONS(467), [anon_sym_78] = ACTIONS(467), - [anon_sym_fill] = ACTIONS(467), + [anon_sym_fork] = ACTIONS(467), [anon_sym_79] = ACTIONS(467), - [anon_sym_try] = ACTIONS(465), + [anon_sym_under] = ACTIONS(467), [anon_sym_80] = ACTIONS(467), - [anon_sym_do] = ACTIONS(465), + [anon_sym_fill] = ACTIONS(467), [anon_sym_81] = ACTIONS(467), + [anon_sym_try] = ACTIONS(465), [anon_sym_82] = ACTIONS(467), + [anon_sym_do] = ACTIONS(465), [anon_sym_83] = ACTIONS(467), + [anon_sym_all] = ACTIONS(467), [anon_sym_84] = ACTIONS(467), + [anon_sym_setinv] = ACTIONS(467), + [anon_sym_setunder] = ACTIONS(467), [anon_sym_85] = ACTIONS(467), [anon_sym_86] = ACTIONS(467), [anon_sym_87] = ACTIONS(467), @@ -28232,6 +29199,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(467), [anon_sym_91] = ACTIONS(467), [anon_sym_92] = ACTIONS(467), + [anon_sym_93] = ACTIONS(467), + [anon_sym_94] = ACTIONS(467), + [anon_sym_95] = ACTIONS(467), + [anon_sym_96] = ACTIONS(467), [sym__endOfLine] = ACTIONS(467), }, [91] = { @@ -28425,35 +29396,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(471), [anon_sym_pack] = ACTIONS(471), [anon_sym_68] = ACTIONS(471), - [anon_sym_reach] = ACTIONS(471), + [anon_sym_rectify] = ACTIONS(471), [anon_sym_69] = ACTIONS(471), - [anon_sym_fold] = ACTIONS(471), + [anon_sym_this] = ACTIONS(471), [anon_sym_70] = ACTIONS(471), - [anon_sym_table] = ACTIONS(471), + [anon_sym_recur] = ACTIONS(471), [anon_sym_71] = ACTIONS(471), - [anon_sym_cross] = ACTIONS(471), + [anon_sym_fold] = ACTIONS(471), [anon_sym_72] = ACTIONS(471), - [anon_sym_group] = ACTIONS(471), + [anon_sym_table] = ACTIONS(471), [anon_sym_73] = ACTIONS(471), - [anon_sym_partition] = ACTIONS(471), + [anon_sym_cross] = ACTIONS(471), [anon_sym_74] = ACTIONS(471), - [anon_sym_both] = ACTIONS(471), + [anon_sym_group] = ACTIONS(471), [anon_sym_75] = ACTIONS(471), - [anon_sym_bracket] = ACTIONS(471), + [anon_sym_partition] = ACTIONS(471), [anon_sym_76] = ACTIONS(471), - [anon_sym_fork] = ACTIONS(471), + [anon_sym_both] = ACTIONS(471), [anon_sym_77] = ACTIONS(471), - [anon_sym_under] = ACTIONS(471), + [anon_sym_bracket] = ACTIONS(471), [anon_sym_78] = ACTIONS(471), - [anon_sym_fill] = ACTIONS(471), + [anon_sym_fork] = ACTIONS(471), [anon_sym_79] = ACTIONS(471), - [anon_sym_try] = ACTIONS(469), + [anon_sym_under] = ACTIONS(471), [anon_sym_80] = ACTIONS(471), - [anon_sym_do] = ACTIONS(469), + [anon_sym_fill] = ACTIONS(471), [anon_sym_81] = ACTIONS(471), + [anon_sym_try] = ACTIONS(469), [anon_sym_82] = ACTIONS(471), + [anon_sym_do] = ACTIONS(469), [anon_sym_83] = ACTIONS(471), + [anon_sym_all] = ACTIONS(471), [anon_sym_84] = ACTIONS(471), + [anon_sym_setinv] = ACTIONS(471), + [anon_sym_setunder] = ACTIONS(471), [anon_sym_85] = ACTIONS(471), [anon_sym_86] = ACTIONS(471), [anon_sym_87] = ACTIONS(471), @@ -28462,6 +29438,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(471), [anon_sym_91] = ACTIONS(471), [anon_sym_92] = ACTIONS(471), + [anon_sym_93] = ACTIONS(471), + [anon_sym_94] = ACTIONS(471), + [anon_sym_95] = ACTIONS(471), + [anon_sym_96] = ACTIONS(471), [sym__endOfLine] = ACTIONS(471), }, [92] = { @@ -28655,35 +29635,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(475), [anon_sym_pack] = ACTIONS(475), [anon_sym_68] = ACTIONS(475), - [anon_sym_reach] = ACTIONS(475), + [anon_sym_rectify] = ACTIONS(475), [anon_sym_69] = ACTIONS(475), - [anon_sym_fold] = ACTIONS(475), + [anon_sym_this] = ACTIONS(475), [anon_sym_70] = ACTIONS(475), - [anon_sym_table] = ACTIONS(475), + [anon_sym_recur] = ACTIONS(475), [anon_sym_71] = ACTIONS(475), - [anon_sym_cross] = ACTIONS(475), + [anon_sym_fold] = ACTIONS(475), [anon_sym_72] = ACTIONS(475), - [anon_sym_group] = ACTIONS(475), + [anon_sym_table] = ACTIONS(475), [anon_sym_73] = ACTIONS(475), - [anon_sym_partition] = ACTIONS(475), + [anon_sym_cross] = ACTIONS(475), [anon_sym_74] = ACTIONS(475), - [anon_sym_both] = ACTIONS(475), + [anon_sym_group] = ACTIONS(475), [anon_sym_75] = ACTIONS(475), - [anon_sym_bracket] = ACTIONS(475), + [anon_sym_partition] = ACTIONS(475), [anon_sym_76] = ACTIONS(475), - [anon_sym_fork] = ACTIONS(475), + [anon_sym_both] = ACTIONS(475), [anon_sym_77] = ACTIONS(475), - [anon_sym_under] = ACTIONS(475), + [anon_sym_bracket] = ACTIONS(475), [anon_sym_78] = ACTIONS(475), - [anon_sym_fill] = ACTIONS(475), + [anon_sym_fork] = ACTIONS(475), [anon_sym_79] = ACTIONS(475), - [anon_sym_try] = ACTIONS(473), + [anon_sym_under] = ACTIONS(475), [anon_sym_80] = ACTIONS(475), - [anon_sym_do] = ACTIONS(473), + [anon_sym_fill] = ACTIONS(475), [anon_sym_81] = ACTIONS(475), + [anon_sym_try] = ACTIONS(473), [anon_sym_82] = ACTIONS(475), + [anon_sym_do] = ACTIONS(473), [anon_sym_83] = ACTIONS(475), + [anon_sym_all] = ACTIONS(475), [anon_sym_84] = ACTIONS(475), + [anon_sym_setinv] = ACTIONS(475), + [anon_sym_setunder] = ACTIONS(475), [anon_sym_85] = ACTIONS(475), [anon_sym_86] = ACTIONS(475), [anon_sym_87] = ACTIONS(475), @@ -28692,6 +29677,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(475), [anon_sym_91] = ACTIONS(475), [anon_sym_92] = ACTIONS(475), + [anon_sym_93] = ACTIONS(475), + [anon_sym_94] = ACTIONS(475), + [anon_sym_95] = ACTIONS(475), + [anon_sym_96] = ACTIONS(475), [sym__endOfLine] = ACTIONS(475), }, [93] = { @@ -28885,35 +29874,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(479), [anon_sym_pack] = ACTIONS(479), [anon_sym_68] = ACTIONS(479), - [anon_sym_reach] = ACTIONS(479), + [anon_sym_rectify] = ACTIONS(479), [anon_sym_69] = ACTIONS(479), - [anon_sym_fold] = ACTIONS(479), + [anon_sym_this] = ACTIONS(479), [anon_sym_70] = ACTIONS(479), - [anon_sym_table] = ACTIONS(479), + [anon_sym_recur] = ACTIONS(479), [anon_sym_71] = ACTIONS(479), - [anon_sym_cross] = ACTIONS(479), + [anon_sym_fold] = ACTIONS(479), [anon_sym_72] = ACTIONS(479), - [anon_sym_group] = ACTIONS(479), + [anon_sym_table] = ACTIONS(479), [anon_sym_73] = ACTIONS(479), - [anon_sym_partition] = ACTIONS(479), + [anon_sym_cross] = ACTIONS(479), [anon_sym_74] = ACTIONS(479), - [anon_sym_both] = ACTIONS(479), + [anon_sym_group] = ACTIONS(479), [anon_sym_75] = ACTIONS(479), - [anon_sym_bracket] = ACTIONS(479), + [anon_sym_partition] = ACTIONS(479), [anon_sym_76] = ACTIONS(479), - [anon_sym_fork] = ACTIONS(479), + [anon_sym_both] = ACTIONS(479), [anon_sym_77] = ACTIONS(479), - [anon_sym_under] = ACTIONS(479), + [anon_sym_bracket] = ACTIONS(479), [anon_sym_78] = ACTIONS(479), - [anon_sym_fill] = ACTIONS(479), + [anon_sym_fork] = ACTIONS(479), [anon_sym_79] = ACTIONS(479), - [anon_sym_try] = ACTIONS(477), + [anon_sym_under] = ACTIONS(479), [anon_sym_80] = ACTIONS(479), - [anon_sym_do] = ACTIONS(477), + [anon_sym_fill] = ACTIONS(479), [anon_sym_81] = ACTIONS(479), + [anon_sym_try] = ACTIONS(477), [anon_sym_82] = ACTIONS(479), + [anon_sym_do] = ACTIONS(477), [anon_sym_83] = ACTIONS(479), + [anon_sym_all] = ACTIONS(479), [anon_sym_84] = ACTIONS(479), + [anon_sym_setinv] = ACTIONS(479), + [anon_sym_setunder] = ACTIONS(479), [anon_sym_85] = ACTIONS(479), [anon_sym_86] = ACTIONS(479), [anon_sym_87] = ACTIONS(479), @@ -28922,6 +29916,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(479), [anon_sym_91] = ACTIONS(479), [anon_sym_92] = ACTIONS(479), + [anon_sym_93] = ACTIONS(479), + [anon_sym_94] = ACTIONS(479), + [anon_sym_95] = ACTIONS(479), + [anon_sym_96] = ACTIONS(479), [sym__endOfLine] = ACTIONS(479), }, [94] = { @@ -29115,35 +30113,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(483), [anon_sym_pack] = ACTIONS(483), [anon_sym_68] = ACTIONS(483), - [anon_sym_reach] = ACTIONS(483), + [anon_sym_rectify] = ACTIONS(483), [anon_sym_69] = ACTIONS(483), - [anon_sym_fold] = ACTIONS(483), + [anon_sym_this] = ACTIONS(483), [anon_sym_70] = ACTIONS(483), - [anon_sym_table] = ACTIONS(483), + [anon_sym_recur] = ACTIONS(483), [anon_sym_71] = ACTIONS(483), - [anon_sym_cross] = ACTIONS(483), + [anon_sym_fold] = ACTIONS(483), [anon_sym_72] = ACTIONS(483), - [anon_sym_group] = ACTIONS(483), + [anon_sym_table] = ACTIONS(483), [anon_sym_73] = ACTIONS(483), - [anon_sym_partition] = ACTIONS(483), + [anon_sym_cross] = ACTIONS(483), [anon_sym_74] = ACTIONS(483), - [anon_sym_both] = ACTIONS(483), + [anon_sym_group] = ACTIONS(483), [anon_sym_75] = ACTIONS(483), - [anon_sym_bracket] = ACTIONS(483), + [anon_sym_partition] = ACTIONS(483), [anon_sym_76] = ACTIONS(483), - [anon_sym_fork] = ACTIONS(483), + [anon_sym_both] = ACTIONS(483), [anon_sym_77] = ACTIONS(483), - [anon_sym_under] = ACTIONS(483), + [anon_sym_bracket] = ACTIONS(483), [anon_sym_78] = ACTIONS(483), - [anon_sym_fill] = ACTIONS(483), + [anon_sym_fork] = ACTIONS(483), [anon_sym_79] = ACTIONS(483), - [anon_sym_try] = ACTIONS(481), + [anon_sym_under] = ACTIONS(483), [anon_sym_80] = ACTIONS(483), - [anon_sym_do] = ACTIONS(481), + [anon_sym_fill] = ACTIONS(483), [anon_sym_81] = ACTIONS(483), + [anon_sym_try] = ACTIONS(481), [anon_sym_82] = ACTIONS(483), + [anon_sym_do] = ACTIONS(481), [anon_sym_83] = ACTIONS(483), + [anon_sym_all] = ACTIONS(483), [anon_sym_84] = ACTIONS(483), + [anon_sym_setinv] = ACTIONS(483), + [anon_sym_setunder] = ACTIONS(483), [anon_sym_85] = ACTIONS(483), [anon_sym_86] = ACTIONS(483), [anon_sym_87] = ACTIONS(483), @@ -29152,6 +30155,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(483), [anon_sym_91] = ACTIONS(483), [anon_sym_92] = ACTIONS(483), + [anon_sym_93] = ACTIONS(483), + [anon_sym_94] = ACTIONS(483), + [anon_sym_95] = ACTIONS(483), + [anon_sym_96] = ACTIONS(483), [sym__endOfLine] = ACTIONS(483), }, [95] = { @@ -29345,35 +30352,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(487), [anon_sym_pack] = ACTIONS(487), [anon_sym_68] = ACTIONS(487), - [anon_sym_reach] = ACTIONS(487), + [anon_sym_rectify] = ACTIONS(487), [anon_sym_69] = ACTIONS(487), - [anon_sym_fold] = ACTIONS(487), + [anon_sym_this] = ACTIONS(487), [anon_sym_70] = ACTIONS(487), - [anon_sym_table] = ACTIONS(487), + [anon_sym_recur] = ACTIONS(487), [anon_sym_71] = ACTIONS(487), - [anon_sym_cross] = ACTIONS(487), + [anon_sym_fold] = ACTIONS(487), [anon_sym_72] = ACTIONS(487), - [anon_sym_group] = ACTIONS(487), + [anon_sym_table] = ACTIONS(487), [anon_sym_73] = ACTIONS(487), - [anon_sym_partition] = ACTIONS(487), + [anon_sym_cross] = ACTIONS(487), [anon_sym_74] = ACTIONS(487), - [anon_sym_both] = ACTIONS(487), + [anon_sym_group] = ACTIONS(487), [anon_sym_75] = ACTIONS(487), - [anon_sym_bracket] = ACTIONS(487), + [anon_sym_partition] = ACTIONS(487), [anon_sym_76] = ACTIONS(487), - [anon_sym_fork] = ACTIONS(487), + [anon_sym_both] = ACTIONS(487), [anon_sym_77] = ACTIONS(487), - [anon_sym_under] = ACTIONS(487), + [anon_sym_bracket] = ACTIONS(487), [anon_sym_78] = ACTIONS(487), - [anon_sym_fill] = ACTIONS(487), + [anon_sym_fork] = ACTIONS(487), [anon_sym_79] = ACTIONS(487), - [anon_sym_try] = ACTIONS(485), + [anon_sym_under] = ACTIONS(487), [anon_sym_80] = ACTIONS(487), - [anon_sym_do] = ACTIONS(485), + [anon_sym_fill] = ACTIONS(487), [anon_sym_81] = ACTIONS(487), + [anon_sym_try] = ACTIONS(485), [anon_sym_82] = ACTIONS(487), + [anon_sym_do] = ACTIONS(485), [anon_sym_83] = ACTIONS(487), + [anon_sym_all] = ACTIONS(487), [anon_sym_84] = ACTIONS(487), + [anon_sym_setinv] = ACTIONS(487), + [anon_sym_setunder] = ACTIONS(487), [anon_sym_85] = ACTIONS(487), [anon_sym_86] = ACTIONS(487), [anon_sym_87] = ACTIONS(487), @@ -29382,6 +30394,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(487), [anon_sym_91] = ACTIONS(487), [anon_sym_92] = ACTIONS(487), + [anon_sym_93] = ACTIONS(487), + [anon_sym_94] = ACTIONS(487), + [anon_sym_95] = ACTIONS(487), + [anon_sym_96] = ACTIONS(487), [sym__endOfLine] = ACTIONS(487), }, [96] = { @@ -29575,35 +30591,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(425), [anon_sym_pack] = ACTIONS(425), [anon_sym_68] = ACTIONS(425), - [anon_sym_reach] = ACTIONS(425), + [anon_sym_rectify] = ACTIONS(425), [anon_sym_69] = ACTIONS(425), - [anon_sym_fold] = ACTIONS(425), + [anon_sym_this] = ACTIONS(425), [anon_sym_70] = ACTIONS(425), - [anon_sym_table] = ACTIONS(425), + [anon_sym_recur] = ACTIONS(425), [anon_sym_71] = ACTIONS(425), - [anon_sym_cross] = ACTIONS(425), + [anon_sym_fold] = ACTIONS(425), [anon_sym_72] = ACTIONS(425), - [anon_sym_group] = ACTIONS(425), + [anon_sym_table] = ACTIONS(425), [anon_sym_73] = ACTIONS(425), - [anon_sym_partition] = ACTIONS(425), + [anon_sym_cross] = ACTIONS(425), [anon_sym_74] = ACTIONS(425), - [anon_sym_both] = ACTIONS(425), + [anon_sym_group] = ACTIONS(425), [anon_sym_75] = ACTIONS(425), - [anon_sym_bracket] = ACTIONS(425), + [anon_sym_partition] = ACTIONS(425), [anon_sym_76] = ACTIONS(425), - [anon_sym_fork] = ACTIONS(425), + [anon_sym_both] = ACTIONS(425), [anon_sym_77] = ACTIONS(425), - [anon_sym_under] = ACTIONS(425), + [anon_sym_bracket] = ACTIONS(425), [anon_sym_78] = ACTIONS(425), - [anon_sym_fill] = ACTIONS(425), + [anon_sym_fork] = ACTIONS(425), [anon_sym_79] = ACTIONS(425), - [anon_sym_try] = ACTIONS(423), + [anon_sym_under] = ACTIONS(425), [anon_sym_80] = ACTIONS(425), - [anon_sym_do] = ACTIONS(423), + [anon_sym_fill] = ACTIONS(425), [anon_sym_81] = ACTIONS(425), + [anon_sym_try] = ACTIONS(423), [anon_sym_82] = ACTIONS(425), + [anon_sym_do] = ACTIONS(423), [anon_sym_83] = ACTIONS(425), + [anon_sym_all] = ACTIONS(425), [anon_sym_84] = ACTIONS(425), + [anon_sym_setinv] = ACTIONS(425), + [anon_sym_setunder] = ACTIONS(425), [anon_sym_85] = ACTIONS(425), [anon_sym_86] = ACTIONS(425), [anon_sym_87] = ACTIONS(425), @@ -29612,6 +30633,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(425), [anon_sym_91] = ACTIONS(425), [anon_sym_92] = ACTIONS(425), + [anon_sym_93] = ACTIONS(425), + [anon_sym_94] = ACTIONS(425), + [anon_sym_95] = ACTIONS(425), + [anon_sym_96] = ACTIONS(425), [sym__endOfLine] = ACTIONS(425), }, [97] = { @@ -29805,35 +30830,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(487), [anon_sym_pack] = ACTIONS(487), [anon_sym_68] = ACTIONS(487), - [anon_sym_reach] = ACTIONS(487), + [anon_sym_rectify] = ACTIONS(487), [anon_sym_69] = ACTIONS(487), - [anon_sym_fold] = ACTIONS(487), + [anon_sym_this] = ACTIONS(487), [anon_sym_70] = ACTIONS(487), - [anon_sym_table] = ACTIONS(487), + [anon_sym_recur] = ACTIONS(487), [anon_sym_71] = ACTIONS(487), - [anon_sym_cross] = ACTIONS(487), + [anon_sym_fold] = ACTIONS(487), [anon_sym_72] = ACTIONS(487), - [anon_sym_group] = ACTIONS(487), + [anon_sym_table] = ACTIONS(487), [anon_sym_73] = ACTIONS(487), - [anon_sym_partition] = ACTIONS(487), + [anon_sym_cross] = ACTIONS(487), [anon_sym_74] = ACTIONS(487), - [anon_sym_both] = ACTIONS(487), + [anon_sym_group] = ACTIONS(487), [anon_sym_75] = ACTIONS(487), - [anon_sym_bracket] = ACTIONS(487), + [anon_sym_partition] = ACTIONS(487), [anon_sym_76] = ACTIONS(487), - [anon_sym_fork] = ACTIONS(487), + [anon_sym_both] = ACTIONS(487), [anon_sym_77] = ACTIONS(487), - [anon_sym_under] = ACTIONS(487), + [anon_sym_bracket] = ACTIONS(487), [anon_sym_78] = ACTIONS(487), - [anon_sym_fill] = ACTIONS(487), + [anon_sym_fork] = ACTIONS(487), [anon_sym_79] = ACTIONS(487), - [anon_sym_try] = ACTIONS(485), + [anon_sym_under] = ACTIONS(487), [anon_sym_80] = ACTIONS(487), - [anon_sym_do] = ACTIONS(485), + [anon_sym_fill] = ACTIONS(487), [anon_sym_81] = ACTIONS(487), + [anon_sym_try] = ACTIONS(485), [anon_sym_82] = ACTIONS(487), + [anon_sym_do] = ACTIONS(485), [anon_sym_83] = ACTIONS(487), + [anon_sym_all] = ACTIONS(487), [anon_sym_84] = ACTIONS(487), + [anon_sym_setinv] = ACTIONS(487), + [anon_sym_setunder] = ACTIONS(487), [anon_sym_85] = ACTIONS(487), [anon_sym_86] = ACTIONS(487), [anon_sym_87] = ACTIONS(487), @@ -29842,6 +30872,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(487), [anon_sym_91] = ACTIONS(487), [anon_sym_92] = ACTIONS(487), + [anon_sym_93] = ACTIONS(487), + [anon_sym_94] = ACTIONS(487), + [anon_sym_95] = ACTIONS(487), + [anon_sym_96] = ACTIONS(487), [sym__endOfLine] = ACTIONS(487), }, [98] = { @@ -30035,35 +31069,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(435), [anon_sym_pack] = ACTIONS(435), [anon_sym_68] = ACTIONS(435), - [anon_sym_reach] = ACTIONS(435), + [anon_sym_rectify] = ACTIONS(435), [anon_sym_69] = ACTIONS(435), - [anon_sym_fold] = ACTIONS(435), + [anon_sym_this] = ACTIONS(435), [anon_sym_70] = ACTIONS(435), - [anon_sym_table] = ACTIONS(435), + [anon_sym_recur] = ACTIONS(435), [anon_sym_71] = ACTIONS(435), - [anon_sym_cross] = ACTIONS(435), + [anon_sym_fold] = ACTIONS(435), [anon_sym_72] = ACTIONS(435), - [anon_sym_group] = ACTIONS(435), + [anon_sym_table] = ACTIONS(435), [anon_sym_73] = ACTIONS(435), - [anon_sym_partition] = ACTIONS(435), + [anon_sym_cross] = ACTIONS(435), [anon_sym_74] = ACTIONS(435), - [anon_sym_both] = ACTIONS(435), + [anon_sym_group] = ACTIONS(435), [anon_sym_75] = ACTIONS(435), - [anon_sym_bracket] = ACTIONS(435), + [anon_sym_partition] = ACTIONS(435), [anon_sym_76] = ACTIONS(435), - [anon_sym_fork] = ACTIONS(435), + [anon_sym_both] = ACTIONS(435), [anon_sym_77] = ACTIONS(435), - [anon_sym_under] = ACTIONS(435), + [anon_sym_bracket] = ACTIONS(435), [anon_sym_78] = ACTIONS(435), - [anon_sym_fill] = ACTIONS(435), + [anon_sym_fork] = ACTIONS(435), [anon_sym_79] = ACTIONS(435), - [anon_sym_try] = ACTIONS(433), + [anon_sym_under] = ACTIONS(435), [anon_sym_80] = ACTIONS(435), - [anon_sym_do] = ACTIONS(433), + [anon_sym_fill] = ACTIONS(435), [anon_sym_81] = ACTIONS(435), + [anon_sym_try] = ACTIONS(433), [anon_sym_82] = ACTIONS(435), + [anon_sym_do] = ACTIONS(433), [anon_sym_83] = ACTIONS(435), + [anon_sym_all] = ACTIONS(435), [anon_sym_84] = ACTIONS(435), + [anon_sym_setinv] = ACTIONS(435), + [anon_sym_setunder] = ACTIONS(435), [anon_sym_85] = ACTIONS(435), [anon_sym_86] = ACTIONS(435), [anon_sym_87] = ACTIONS(435), @@ -30072,6 +31111,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(435), [anon_sym_91] = ACTIONS(435), [anon_sym_92] = ACTIONS(435), + [anon_sym_93] = ACTIONS(435), + [anon_sym_94] = ACTIONS(435), + [anon_sym_95] = ACTIONS(435), + [anon_sym_96] = ACTIONS(435), [sym__endOfLine] = ACTIONS(435), }, [99] = { @@ -30265,35 +31308,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(491), [anon_sym_pack] = ACTIONS(491), [anon_sym_68] = ACTIONS(491), - [anon_sym_reach] = ACTIONS(491), + [anon_sym_rectify] = ACTIONS(491), [anon_sym_69] = ACTIONS(491), - [anon_sym_fold] = ACTIONS(491), + [anon_sym_this] = ACTIONS(491), [anon_sym_70] = ACTIONS(491), - [anon_sym_table] = ACTIONS(491), + [anon_sym_recur] = ACTIONS(491), [anon_sym_71] = ACTIONS(491), - [anon_sym_cross] = ACTIONS(491), + [anon_sym_fold] = ACTIONS(491), [anon_sym_72] = ACTIONS(491), - [anon_sym_group] = ACTIONS(491), + [anon_sym_table] = ACTIONS(491), [anon_sym_73] = ACTIONS(491), - [anon_sym_partition] = ACTIONS(491), + [anon_sym_cross] = ACTIONS(491), [anon_sym_74] = ACTIONS(491), - [anon_sym_both] = ACTIONS(491), + [anon_sym_group] = ACTIONS(491), [anon_sym_75] = ACTIONS(491), - [anon_sym_bracket] = ACTIONS(491), + [anon_sym_partition] = ACTIONS(491), [anon_sym_76] = ACTIONS(491), - [anon_sym_fork] = ACTIONS(491), + [anon_sym_both] = ACTIONS(491), [anon_sym_77] = ACTIONS(491), - [anon_sym_under] = ACTIONS(491), + [anon_sym_bracket] = ACTIONS(491), [anon_sym_78] = ACTIONS(491), - [anon_sym_fill] = ACTIONS(491), + [anon_sym_fork] = ACTIONS(491), [anon_sym_79] = ACTIONS(491), - [anon_sym_try] = ACTIONS(489), + [anon_sym_under] = ACTIONS(491), [anon_sym_80] = ACTIONS(491), - [anon_sym_do] = ACTIONS(489), + [anon_sym_fill] = ACTIONS(491), [anon_sym_81] = ACTIONS(491), + [anon_sym_try] = ACTIONS(489), [anon_sym_82] = ACTIONS(491), + [anon_sym_do] = ACTIONS(489), [anon_sym_83] = ACTIONS(491), + [anon_sym_all] = ACTIONS(491), [anon_sym_84] = ACTIONS(491), + [anon_sym_setinv] = ACTIONS(491), + [anon_sym_setunder] = ACTIONS(491), [anon_sym_85] = ACTIONS(491), [anon_sym_86] = ACTIONS(491), [anon_sym_87] = ACTIONS(491), @@ -30302,6 +31350,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(491), [anon_sym_91] = ACTIONS(491), [anon_sym_92] = ACTIONS(491), + [anon_sym_93] = ACTIONS(491), + [anon_sym_94] = ACTIONS(491), + [anon_sym_95] = ACTIONS(491), + [anon_sym_96] = ACTIONS(491), [sym__endOfLine] = ACTIONS(491), }, [100] = { @@ -30495,35 +31547,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(495), [anon_sym_pack] = ACTIONS(495), [anon_sym_68] = ACTIONS(495), - [anon_sym_reach] = ACTIONS(495), + [anon_sym_rectify] = ACTIONS(495), [anon_sym_69] = ACTIONS(495), - [anon_sym_fold] = ACTIONS(495), + [anon_sym_this] = ACTIONS(495), [anon_sym_70] = ACTIONS(495), - [anon_sym_table] = ACTIONS(495), + [anon_sym_recur] = ACTIONS(495), [anon_sym_71] = ACTIONS(495), - [anon_sym_cross] = ACTIONS(495), + [anon_sym_fold] = ACTIONS(495), [anon_sym_72] = ACTIONS(495), - [anon_sym_group] = ACTIONS(495), + [anon_sym_table] = ACTIONS(495), [anon_sym_73] = ACTIONS(495), - [anon_sym_partition] = ACTIONS(495), + [anon_sym_cross] = ACTIONS(495), [anon_sym_74] = ACTIONS(495), - [anon_sym_both] = ACTIONS(495), + [anon_sym_group] = ACTIONS(495), [anon_sym_75] = ACTIONS(495), - [anon_sym_bracket] = ACTIONS(495), + [anon_sym_partition] = ACTIONS(495), [anon_sym_76] = ACTIONS(495), - [anon_sym_fork] = ACTIONS(495), + [anon_sym_both] = ACTIONS(495), [anon_sym_77] = ACTIONS(495), - [anon_sym_under] = ACTIONS(495), + [anon_sym_bracket] = ACTIONS(495), [anon_sym_78] = ACTIONS(495), - [anon_sym_fill] = ACTIONS(495), + [anon_sym_fork] = ACTIONS(495), [anon_sym_79] = ACTIONS(495), - [anon_sym_try] = ACTIONS(493), + [anon_sym_under] = ACTIONS(495), [anon_sym_80] = ACTIONS(495), - [anon_sym_do] = ACTIONS(493), + [anon_sym_fill] = ACTIONS(495), [anon_sym_81] = ACTIONS(495), + [anon_sym_try] = ACTIONS(493), [anon_sym_82] = ACTIONS(495), + [anon_sym_do] = ACTIONS(493), [anon_sym_83] = ACTIONS(495), + [anon_sym_all] = ACTIONS(495), [anon_sym_84] = ACTIONS(495), + [anon_sym_setinv] = ACTIONS(495), + [anon_sym_setunder] = ACTIONS(495), [anon_sym_85] = ACTIONS(495), [anon_sym_86] = ACTIONS(495), [anon_sym_87] = ACTIONS(495), @@ -30532,6 +31589,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(495), [anon_sym_91] = ACTIONS(495), [anon_sym_92] = ACTIONS(495), + [anon_sym_93] = ACTIONS(495), + [anon_sym_94] = ACTIONS(495), + [anon_sym_95] = ACTIONS(495), + [anon_sym_96] = ACTIONS(495), [sym__endOfLine] = ACTIONS(495), }, [101] = { @@ -30725,35 +31786,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(499), [anon_sym_pack] = ACTIONS(499), [anon_sym_68] = ACTIONS(499), - [anon_sym_reach] = ACTIONS(499), + [anon_sym_rectify] = ACTIONS(499), [anon_sym_69] = ACTIONS(499), - [anon_sym_fold] = ACTIONS(499), + [anon_sym_this] = ACTIONS(499), [anon_sym_70] = ACTIONS(499), - [anon_sym_table] = ACTIONS(499), + [anon_sym_recur] = ACTIONS(499), [anon_sym_71] = ACTIONS(499), - [anon_sym_cross] = ACTIONS(499), + [anon_sym_fold] = ACTIONS(499), [anon_sym_72] = ACTIONS(499), - [anon_sym_group] = ACTIONS(499), + [anon_sym_table] = ACTIONS(499), [anon_sym_73] = ACTIONS(499), - [anon_sym_partition] = ACTIONS(499), + [anon_sym_cross] = ACTIONS(499), [anon_sym_74] = ACTIONS(499), - [anon_sym_both] = ACTIONS(499), + [anon_sym_group] = ACTIONS(499), [anon_sym_75] = ACTIONS(499), - [anon_sym_bracket] = ACTIONS(499), + [anon_sym_partition] = ACTIONS(499), [anon_sym_76] = ACTIONS(499), - [anon_sym_fork] = ACTIONS(499), + [anon_sym_both] = ACTIONS(499), [anon_sym_77] = ACTIONS(499), - [anon_sym_under] = ACTIONS(499), + [anon_sym_bracket] = ACTIONS(499), [anon_sym_78] = ACTIONS(499), - [anon_sym_fill] = ACTIONS(499), + [anon_sym_fork] = ACTIONS(499), [anon_sym_79] = ACTIONS(499), - [anon_sym_try] = ACTIONS(497), + [anon_sym_under] = ACTIONS(499), [anon_sym_80] = ACTIONS(499), - [anon_sym_do] = ACTIONS(497), + [anon_sym_fill] = ACTIONS(499), [anon_sym_81] = ACTIONS(499), + [anon_sym_try] = ACTIONS(497), [anon_sym_82] = ACTIONS(499), + [anon_sym_do] = ACTIONS(497), [anon_sym_83] = ACTIONS(499), + [anon_sym_all] = ACTIONS(499), [anon_sym_84] = ACTIONS(499), + [anon_sym_setinv] = ACTIONS(499), + [anon_sym_setunder] = ACTIONS(499), [anon_sym_85] = ACTIONS(499), [anon_sym_86] = ACTIONS(499), [anon_sym_87] = ACTIONS(499), @@ -30762,6 +31828,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(499), [anon_sym_91] = ACTIONS(499), [anon_sym_92] = ACTIONS(499), + [anon_sym_93] = ACTIONS(499), + [anon_sym_94] = ACTIONS(499), + [anon_sym_95] = ACTIONS(499), + [anon_sym_96] = ACTIONS(499), [sym__endOfLine] = ACTIONS(499), }, [102] = { @@ -30955,35 +32025,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(503), [anon_sym_pack] = ACTIONS(503), [anon_sym_68] = ACTIONS(503), - [anon_sym_reach] = ACTIONS(503), + [anon_sym_rectify] = ACTIONS(503), [anon_sym_69] = ACTIONS(503), - [anon_sym_fold] = ACTIONS(503), + [anon_sym_this] = ACTIONS(503), [anon_sym_70] = ACTIONS(503), - [anon_sym_table] = ACTIONS(503), + [anon_sym_recur] = ACTIONS(503), [anon_sym_71] = ACTIONS(503), - [anon_sym_cross] = ACTIONS(503), + [anon_sym_fold] = ACTIONS(503), [anon_sym_72] = ACTIONS(503), - [anon_sym_group] = ACTIONS(503), + [anon_sym_table] = ACTIONS(503), [anon_sym_73] = ACTIONS(503), - [anon_sym_partition] = ACTIONS(503), + [anon_sym_cross] = ACTIONS(503), [anon_sym_74] = ACTIONS(503), - [anon_sym_both] = ACTIONS(503), + [anon_sym_group] = ACTIONS(503), [anon_sym_75] = ACTIONS(503), - [anon_sym_bracket] = ACTIONS(503), + [anon_sym_partition] = ACTIONS(503), [anon_sym_76] = ACTIONS(503), - [anon_sym_fork] = ACTIONS(503), + [anon_sym_both] = ACTIONS(503), [anon_sym_77] = ACTIONS(503), - [anon_sym_under] = ACTIONS(503), + [anon_sym_bracket] = ACTIONS(503), [anon_sym_78] = ACTIONS(503), - [anon_sym_fill] = ACTIONS(503), + [anon_sym_fork] = ACTIONS(503), [anon_sym_79] = ACTIONS(503), - [anon_sym_try] = ACTIONS(501), + [anon_sym_under] = ACTIONS(503), [anon_sym_80] = ACTIONS(503), - [anon_sym_do] = ACTIONS(501), + [anon_sym_fill] = ACTIONS(503), [anon_sym_81] = ACTIONS(503), + [anon_sym_try] = ACTIONS(501), [anon_sym_82] = ACTIONS(503), + [anon_sym_do] = ACTIONS(501), [anon_sym_83] = ACTIONS(503), + [anon_sym_all] = ACTIONS(503), [anon_sym_84] = ACTIONS(503), + [anon_sym_setinv] = ACTIONS(503), + [anon_sym_setunder] = ACTIONS(503), [anon_sym_85] = ACTIONS(503), [anon_sym_86] = ACTIONS(503), [anon_sym_87] = ACTIONS(503), @@ -30992,6 +32067,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(503), [anon_sym_91] = ACTIONS(503), [anon_sym_92] = ACTIONS(503), + [anon_sym_93] = ACTIONS(503), + [anon_sym_94] = ACTIONS(503), + [anon_sym_95] = ACTIONS(503), + [anon_sym_96] = ACTIONS(503), [sym__endOfLine] = ACTIONS(503), }, [103] = { @@ -31185,35 +32264,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(507), [anon_sym_pack] = ACTIONS(507), [anon_sym_68] = ACTIONS(507), - [anon_sym_reach] = ACTIONS(507), + [anon_sym_rectify] = ACTIONS(507), [anon_sym_69] = ACTIONS(507), - [anon_sym_fold] = ACTIONS(507), + [anon_sym_this] = ACTIONS(507), [anon_sym_70] = ACTIONS(507), - [anon_sym_table] = ACTIONS(507), + [anon_sym_recur] = ACTIONS(507), [anon_sym_71] = ACTIONS(507), - [anon_sym_cross] = ACTIONS(507), + [anon_sym_fold] = ACTIONS(507), [anon_sym_72] = ACTIONS(507), - [anon_sym_group] = ACTIONS(507), + [anon_sym_table] = ACTIONS(507), [anon_sym_73] = ACTIONS(507), - [anon_sym_partition] = ACTIONS(507), + [anon_sym_cross] = ACTIONS(507), [anon_sym_74] = ACTIONS(507), - [anon_sym_both] = ACTIONS(507), + [anon_sym_group] = ACTIONS(507), [anon_sym_75] = ACTIONS(507), - [anon_sym_bracket] = ACTIONS(507), + [anon_sym_partition] = ACTIONS(507), [anon_sym_76] = ACTIONS(507), - [anon_sym_fork] = ACTIONS(507), + [anon_sym_both] = ACTIONS(507), [anon_sym_77] = ACTIONS(507), - [anon_sym_under] = ACTIONS(507), + [anon_sym_bracket] = ACTIONS(507), [anon_sym_78] = ACTIONS(507), - [anon_sym_fill] = ACTIONS(507), + [anon_sym_fork] = ACTIONS(507), [anon_sym_79] = ACTIONS(507), - [anon_sym_try] = ACTIONS(505), + [anon_sym_under] = ACTIONS(507), [anon_sym_80] = ACTIONS(507), - [anon_sym_do] = ACTIONS(505), + [anon_sym_fill] = ACTIONS(507), [anon_sym_81] = ACTIONS(507), + [anon_sym_try] = ACTIONS(505), [anon_sym_82] = ACTIONS(507), + [anon_sym_do] = ACTIONS(505), [anon_sym_83] = ACTIONS(507), + [anon_sym_all] = ACTIONS(507), [anon_sym_84] = ACTIONS(507), + [anon_sym_setinv] = ACTIONS(507), + [anon_sym_setunder] = ACTIONS(507), [anon_sym_85] = ACTIONS(507), [anon_sym_86] = ACTIONS(507), [anon_sym_87] = ACTIONS(507), @@ -31222,6 +32306,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(507), [anon_sym_91] = ACTIONS(507), [anon_sym_92] = ACTIONS(507), + [anon_sym_93] = ACTIONS(507), + [anon_sym_94] = ACTIONS(507), + [anon_sym_95] = ACTIONS(507), + [anon_sym_96] = ACTIONS(507), [sym__endOfLine] = ACTIONS(507), }, [104] = { @@ -31415,35 +32503,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(511), [anon_sym_pack] = ACTIONS(511), [anon_sym_68] = ACTIONS(511), - [anon_sym_reach] = ACTIONS(511), + [anon_sym_rectify] = ACTIONS(511), [anon_sym_69] = ACTIONS(511), - [anon_sym_fold] = ACTIONS(511), + [anon_sym_this] = ACTIONS(511), [anon_sym_70] = ACTIONS(511), - [anon_sym_table] = ACTIONS(511), + [anon_sym_recur] = ACTIONS(511), [anon_sym_71] = ACTIONS(511), - [anon_sym_cross] = ACTIONS(511), + [anon_sym_fold] = ACTIONS(511), [anon_sym_72] = ACTIONS(511), - [anon_sym_group] = ACTIONS(511), + [anon_sym_table] = ACTIONS(511), [anon_sym_73] = ACTIONS(511), - [anon_sym_partition] = ACTIONS(511), + [anon_sym_cross] = ACTIONS(511), [anon_sym_74] = ACTIONS(511), - [anon_sym_both] = ACTIONS(511), + [anon_sym_group] = ACTIONS(511), [anon_sym_75] = ACTIONS(511), - [anon_sym_bracket] = ACTIONS(511), + [anon_sym_partition] = ACTIONS(511), [anon_sym_76] = ACTIONS(511), - [anon_sym_fork] = ACTIONS(511), + [anon_sym_both] = ACTIONS(511), [anon_sym_77] = ACTIONS(511), - [anon_sym_under] = ACTIONS(511), + [anon_sym_bracket] = ACTIONS(511), [anon_sym_78] = ACTIONS(511), - [anon_sym_fill] = ACTIONS(511), + [anon_sym_fork] = ACTIONS(511), [anon_sym_79] = ACTIONS(511), - [anon_sym_try] = ACTIONS(509), + [anon_sym_under] = ACTIONS(511), [anon_sym_80] = ACTIONS(511), - [anon_sym_do] = ACTIONS(509), + [anon_sym_fill] = ACTIONS(511), [anon_sym_81] = ACTIONS(511), + [anon_sym_try] = ACTIONS(509), [anon_sym_82] = ACTIONS(511), + [anon_sym_do] = ACTIONS(509), [anon_sym_83] = ACTIONS(511), + [anon_sym_all] = ACTIONS(511), [anon_sym_84] = ACTIONS(511), + [anon_sym_setinv] = ACTIONS(511), + [anon_sym_setunder] = ACTIONS(511), [anon_sym_85] = ACTIONS(511), [anon_sym_86] = ACTIONS(511), [anon_sym_87] = ACTIONS(511), @@ -31452,6 +32545,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(511), [anon_sym_91] = ACTIONS(511), [anon_sym_92] = ACTIONS(511), + [anon_sym_93] = ACTIONS(511), + [anon_sym_94] = ACTIONS(511), + [anon_sym_95] = ACTIONS(511), + [anon_sym_96] = ACTIONS(511), [sym__endOfLine] = ACTIONS(511), }, [105] = { @@ -31645,35 +32742,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(515), [anon_sym_pack] = ACTIONS(515), [anon_sym_68] = ACTIONS(515), - [anon_sym_reach] = ACTIONS(515), + [anon_sym_rectify] = ACTIONS(515), [anon_sym_69] = ACTIONS(515), - [anon_sym_fold] = ACTIONS(515), + [anon_sym_this] = ACTIONS(515), [anon_sym_70] = ACTIONS(515), - [anon_sym_table] = ACTIONS(515), + [anon_sym_recur] = ACTIONS(515), [anon_sym_71] = ACTIONS(515), - [anon_sym_cross] = ACTIONS(515), + [anon_sym_fold] = ACTIONS(515), [anon_sym_72] = ACTIONS(515), - [anon_sym_group] = ACTIONS(515), + [anon_sym_table] = ACTIONS(515), [anon_sym_73] = ACTIONS(515), - [anon_sym_partition] = ACTIONS(515), + [anon_sym_cross] = ACTIONS(515), [anon_sym_74] = ACTIONS(515), - [anon_sym_both] = ACTIONS(515), + [anon_sym_group] = ACTIONS(515), [anon_sym_75] = ACTIONS(515), - [anon_sym_bracket] = ACTIONS(515), + [anon_sym_partition] = ACTIONS(515), [anon_sym_76] = ACTIONS(515), - [anon_sym_fork] = ACTIONS(515), + [anon_sym_both] = ACTIONS(515), [anon_sym_77] = ACTIONS(515), - [anon_sym_under] = ACTIONS(515), + [anon_sym_bracket] = ACTIONS(515), [anon_sym_78] = ACTIONS(515), - [anon_sym_fill] = ACTIONS(515), + [anon_sym_fork] = ACTIONS(515), [anon_sym_79] = ACTIONS(515), - [anon_sym_try] = ACTIONS(513), + [anon_sym_under] = ACTIONS(515), [anon_sym_80] = ACTIONS(515), - [anon_sym_do] = ACTIONS(513), + [anon_sym_fill] = ACTIONS(515), [anon_sym_81] = ACTIONS(515), + [anon_sym_try] = ACTIONS(513), [anon_sym_82] = ACTIONS(515), + [anon_sym_do] = ACTIONS(513), [anon_sym_83] = ACTIONS(515), + [anon_sym_all] = ACTIONS(515), [anon_sym_84] = ACTIONS(515), + [anon_sym_setinv] = ACTIONS(515), + [anon_sym_setunder] = ACTIONS(515), [anon_sym_85] = ACTIONS(515), [anon_sym_86] = ACTIONS(515), [anon_sym_87] = ACTIONS(515), @@ -31682,6 +32784,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(515), [anon_sym_91] = ACTIONS(515), [anon_sym_92] = ACTIONS(515), + [anon_sym_93] = ACTIONS(515), + [anon_sym_94] = ACTIONS(515), + [anon_sym_95] = ACTIONS(515), + [anon_sym_96] = ACTIONS(515), [sym__endOfLine] = ACTIONS(515), }, [106] = { @@ -31875,35 +32981,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(519), [anon_sym_pack] = ACTIONS(519), [anon_sym_68] = ACTIONS(519), - [anon_sym_reach] = ACTIONS(519), + [anon_sym_rectify] = ACTIONS(519), [anon_sym_69] = ACTIONS(519), - [anon_sym_fold] = ACTIONS(519), + [anon_sym_this] = ACTIONS(519), [anon_sym_70] = ACTIONS(519), - [anon_sym_table] = ACTIONS(519), + [anon_sym_recur] = ACTIONS(519), [anon_sym_71] = ACTIONS(519), - [anon_sym_cross] = ACTIONS(519), + [anon_sym_fold] = ACTIONS(519), [anon_sym_72] = ACTIONS(519), - [anon_sym_group] = ACTIONS(519), + [anon_sym_table] = ACTIONS(519), [anon_sym_73] = ACTIONS(519), - [anon_sym_partition] = ACTIONS(519), + [anon_sym_cross] = ACTIONS(519), [anon_sym_74] = ACTIONS(519), - [anon_sym_both] = ACTIONS(519), + [anon_sym_group] = ACTIONS(519), [anon_sym_75] = ACTIONS(519), - [anon_sym_bracket] = ACTIONS(519), + [anon_sym_partition] = ACTIONS(519), [anon_sym_76] = ACTIONS(519), - [anon_sym_fork] = ACTIONS(519), + [anon_sym_both] = ACTIONS(519), [anon_sym_77] = ACTIONS(519), - [anon_sym_under] = ACTIONS(519), + [anon_sym_bracket] = ACTIONS(519), [anon_sym_78] = ACTIONS(519), - [anon_sym_fill] = ACTIONS(519), + [anon_sym_fork] = ACTIONS(519), [anon_sym_79] = ACTIONS(519), - [anon_sym_try] = ACTIONS(517), + [anon_sym_under] = ACTIONS(519), [anon_sym_80] = ACTIONS(519), - [anon_sym_do] = ACTIONS(517), + [anon_sym_fill] = ACTIONS(519), [anon_sym_81] = ACTIONS(519), + [anon_sym_try] = ACTIONS(517), [anon_sym_82] = ACTIONS(519), + [anon_sym_do] = ACTIONS(517), [anon_sym_83] = ACTIONS(519), + [anon_sym_all] = ACTIONS(519), [anon_sym_84] = ACTIONS(519), + [anon_sym_setinv] = ACTIONS(519), + [anon_sym_setunder] = ACTIONS(519), [anon_sym_85] = ACTIONS(519), [anon_sym_86] = ACTIONS(519), [anon_sym_87] = ACTIONS(519), @@ -31912,6 +33023,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(519), [anon_sym_91] = ACTIONS(519), [anon_sym_92] = ACTIONS(519), + [anon_sym_93] = ACTIONS(519), + [anon_sym_94] = ACTIONS(519), + [anon_sym_95] = ACTIONS(519), + [anon_sym_96] = ACTIONS(519), [sym__endOfLine] = ACTIONS(519), }, [107] = { @@ -32105,35 +33220,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(523), [anon_sym_pack] = ACTIONS(523), [anon_sym_68] = ACTIONS(523), - [anon_sym_reach] = ACTIONS(523), + [anon_sym_rectify] = ACTIONS(523), [anon_sym_69] = ACTIONS(523), - [anon_sym_fold] = ACTIONS(523), + [anon_sym_this] = ACTIONS(523), [anon_sym_70] = ACTIONS(523), - [anon_sym_table] = ACTIONS(523), + [anon_sym_recur] = ACTIONS(523), [anon_sym_71] = ACTIONS(523), - [anon_sym_cross] = ACTIONS(523), + [anon_sym_fold] = ACTIONS(523), [anon_sym_72] = ACTIONS(523), - [anon_sym_group] = ACTIONS(523), + [anon_sym_table] = ACTIONS(523), [anon_sym_73] = ACTIONS(523), - [anon_sym_partition] = ACTIONS(523), + [anon_sym_cross] = ACTIONS(523), [anon_sym_74] = ACTIONS(523), - [anon_sym_both] = ACTIONS(523), + [anon_sym_group] = ACTIONS(523), [anon_sym_75] = ACTIONS(523), - [anon_sym_bracket] = ACTIONS(523), + [anon_sym_partition] = ACTIONS(523), [anon_sym_76] = ACTIONS(523), - [anon_sym_fork] = ACTIONS(523), + [anon_sym_both] = ACTIONS(523), [anon_sym_77] = ACTIONS(523), - [anon_sym_under] = ACTIONS(523), + [anon_sym_bracket] = ACTIONS(523), [anon_sym_78] = ACTIONS(523), - [anon_sym_fill] = ACTIONS(523), + [anon_sym_fork] = ACTIONS(523), [anon_sym_79] = ACTIONS(523), - [anon_sym_try] = ACTIONS(521), + [anon_sym_under] = ACTIONS(523), [anon_sym_80] = ACTIONS(523), - [anon_sym_do] = ACTIONS(521), + [anon_sym_fill] = ACTIONS(523), [anon_sym_81] = ACTIONS(523), + [anon_sym_try] = ACTIONS(521), [anon_sym_82] = ACTIONS(523), + [anon_sym_do] = ACTIONS(521), [anon_sym_83] = ACTIONS(523), + [anon_sym_all] = ACTIONS(523), [anon_sym_84] = ACTIONS(523), + [anon_sym_setinv] = ACTIONS(523), + [anon_sym_setunder] = ACTIONS(523), [anon_sym_85] = ACTIONS(523), [anon_sym_86] = ACTIONS(523), [anon_sym_87] = ACTIONS(523), @@ -32142,6 +33262,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(523), [anon_sym_91] = ACTIONS(523), [anon_sym_92] = ACTIONS(523), + [anon_sym_93] = ACTIONS(523), + [anon_sym_94] = ACTIONS(523), + [anon_sym_95] = ACTIONS(523), + [anon_sym_96] = ACTIONS(523), [sym__endOfLine] = ACTIONS(523), }, [108] = { @@ -32334,35 +33458,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(425), [anon_sym_pack] = ACTIONS(425), [anon_sym_68] = ACTIONS(425), - [anon_sym_reach] = ACTIONS(425), + [anon_sym_rectify] = ACTIONS(425), [anon_sym_69] = ACTIONS(425), - [anon_sym_fold] = ACTIONS(425), + [anon_sym_this] = ACTIONS(425), [anon_sym_70] = ACTIONS(425), - [anon_sym_table] = ACTIONS(425), + [anon_sym_recur] = ACTIONS(425), [anon_sym_71] = ACTIONS(425), - [anon_sym_cross] = ACTIONS(425), + [anon_sym_fold] = ACTIONS(425), [anon_sym_72] = ACTIONS(425), - [anon_sym_group] = ACTIONS(425), + [anon_sym_table] = ACTIONS(425), [anon_sym_73] = ACTIONS(425), - [anon_sym_partition] = ACTIONS(425), + [anon_sym_cross] = ACTIONS(425), [anon_sym_74] = ACTIONS(425), - [anon_sym_both] = ACTIONS(425), + [anon_sym_group] = ACTIONS(425), [anon_sym_75] = ACTIONS(425), - [anon_sym_bracket] = ACTIONS(425), + [anon_sym_partition] = ACTIONS(425), [anon_sym_76] = ACTIONS(425), - [anon_sym_fork] = ACTIONS(425), + [anon_sym_both] = ACTIONS(425), [anon_sym_77] = ACTIONS(425), - [anon_sym_under] = ACTIONS(425), + [anon_sym_bracket] = ACTIONS(425), [anon_sym_78] = ACTIONS(425), - [anon_sym_fill] = ACTIONS(425), + [anon_sym_fork] = ACTIONS(425), [anon_sym_79] = ACTIONS(425), - [anon_sym_try] = ACTIONS(423), + [anon_sym_under] = ACTIONS(425), [anon_sym_80] = ACTIONS(425), - [anon_sym_do] = ACTIONS(423), + [anon_sym_fill] = ACTIONS(425), [anon_sym_81] = ACTIONS(425), + [anon_sym_try] = ACTIONS(423), [anon_sym_82] = ACTIONS(425), + [anon_sym_do] = ACTIONS(423), [anon_sym_83] = ACTIONS(425), + [anon_sym_all] = ACTIONS(425), [anon_sym_84] = ACTIONS(425), + [anon_sym_setinv] = ACTIONS(425), + [anon_sym_setunder] = ACTIONS(425), [anon_sym_85] = ACTIONS(425), [anon_sym_86] = ACTIONS(425), [anon_sym_87] = ACTIONS(425), @@ -32371,6 +33500,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(425), [anon_sym_91] = ACTIONS(425), [anon_sym_92] = ACTIONS(425), + [anon_sym_93] = ACTIONS(425), + [anon_sym_94] = ACTIONS(425), + [anon_sym_95] = ACTIONS(425), + [anon_sym_96] = ACTIONS(425), [sym__endOfLine] = ACTIONS(425), }, [109] = { @@ -32563,35 +33696,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(435), [anon_sym_pack] = ACTIONS(435), [anon_sym_68] = ACTIONS(435), - [anon_sym_reach] = ACTIONS(435), + [anon_sym_rectify] = ACTIONS(435), [anon_sym_69] = ACTIONS(435), - [anon_sym_fold] = ACTIONS(435), + [anon_sym_this] = ACTIONS(435), [anon_sym_70] = ACTIONS(435), - [anon_sym_table] = ACTIONS(435), + [anon_sym_recur] = ACTIONS(435), [anon_sym_71] = ACTIONS(435), - [anon_sym_cross] = ACTIONS(435), + [anon_sym_fold] = ACTIONS(435), [anon_sym_72] = ACTIONS(435), - [anon_sym_group] = ACTIONS(435), + [anon_sym_table] = ACTIONS(435), [anon_sym_73] = ACTIONS(435), - [anon_sym_partition] = ACTIONS(435), + [anon_sym_cross] = ACTIONS(435), [anon_sym_74] = ACTIONS(435), - [anon_sym_both] = ACTIONS(435), + [anon_sym_group] = ACTIONS(435), [anon_sym_75] = ACTIONS(435), - [anon_sym_bracket] = ACTIONS(435), + [anon_sym_partition] = ACTIONS(435), [anon_sym_76] = ACTIONS(435), - [anon_sym_fork] = ACTIONS(435), + [anon_sym_both] = ACTIONS(435), [anon_sym_77] = ACTIONS(435), - [anon_sym_under] = ACTIONS(435), + [anon_sym_bracket] = ACTIONS(435), [anon_sym_78] = ACTIONS(435), - [anon_sym_fill] = ACTIONS(435), + [anon_sym_fork] = ACTIONS(435), [anon_sym_79] = ACTIONS(435), - [anon_sym_try] = ACTIONS(433), + [anon_sym_under] = ACTIONS(435), [anon_sym_80] = ACTIONS(435), - [anon_sym_do] = ACTIONS(433), + [anon_sym_fill] = ACTIONS(435), [anon_sym_81] = ACTIONS(435), + [anon_sym_try] = ACTIONS(433), [anon_sym_82] = ACTIONS(435), + [anon_sym_do] = ACTIONS(433), [anon_sym_83] = ACTIONS(435), + [anon_sym_all] = ACTIONS(435), [anon_sym_84] = ACTIONS(435), + [anon_sym_setinv] = ACTIONS(435), + [anon_sym_setunder] = ACTIONS(435), [anon_sym_85] = ACTIONS(435), [anon_sym_86] = ACTIONS(435), [anon_sym_87] = ACTIONS(435), @@ -32600,6 +33738,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(435), [anon_sym_91] = ACTIONS(435), [anon_sym_92] = ACTIONS(435), + [anon_sym_93] = ACTIONS(435), + [anon_sym_94] = ACTIONS(435), + [anon_sym_95] = ACTIONS(435), + [anon_sym_96] = ACTIONS(435), [sym__endOfLine] = ACTIONS(435), }, [110] = { @@ -32792,35 +33934,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(435), [anon_sym_pack] = ACTIONS(435), [anon_sym_68] = ACTIONS(435), - [anon_sym_reach] = ACTIONS(435), + [anon_sym_rectify] = ACTIONS(435), [anon_sym_69] = ACTIONS(435), - [anon_sym_fold] = ACTIONS(435), + [anon_sym_this] = ACTIONS(435), [anon_sym_70] = ACTIONS(435), - [anon_sym_table] = ACTIONS(435), + [anon_sym_recur] = ACTIONS(435), [anon_sym_71] = ACTIONS(435), - [anon_sym_cross] = ACTIONS(435), + [anon_sym_fold] = ACTIONS(435), [anon_sym_72] = ACTIONS(435), - [anon_sym_group] = ACTIONS(435), + [anon_sym_table] = ACTIONS(435), [anon_sym_73] = ACTIONS(435), - [anon_sym_partition] = ACTIONS(435), + [anon_sym_cross] = ACTIONS(435), [anon_sym_74] = ACTIONS(435), - [anon_sym_both] = ACTIONS(435), + [anon_sym_group] = ACTIONS(435), [anon_sym_75] = ACTIONS(435), - [anon_sym_bracket] = ACTIONS(435), + [anon_sym_partition] = ACTIONS(435), [anon_sym_76] = ACTIONS(435), - [anon_sym_fork] = ACTIONS(435), + [anon_sym_both] = ACTIONS(435), [anon_sym_77] = ACTIONS(435), - [anon_sym_under] = ACTIONS(435), + [anon_sym_bracket] = ACTIONS(435), [anon_sym_78] = ACTIONS(435), - [anon_sym_fill] = ACTIONS(435), + [anon_sym_fork] = ACTIONS(435), [anon_sym_79] = ACTIONS(435), - [anon_sym_try] = ACTIONS(433), + [anon_sym_under] = ACTIONS(435), [anon_sym_80] = ACTIONS(435), - [anon_sym_do] = ACTIONS(433), + [anon_sym_fill] = ACTIONS(435), [anon_sym_81] = ACTIONS(435), + [anon_sym_try] = ACTIONS(433), [anon_sym_82] = ACTIONS(435), + [anon_sym_do] = ACTIONS(433), [anon_sym_83] = ACTIONS(435), + [anon_sym_all] = ACTIONS(435), [anon_sym_84] = ACTIONS(435), + [anon_sym_setinv] = ACTIONS(435), + [anon_sym_setunder] = ACTIONS(435), [anon_sym_85] = ACTIONS(435), [anon_sym_86] = ACTIONS(435), [anon_sym_87] = ACTIONS(435), @@ -32829,6 +33976,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(435), [anon_sym_91] = ACTIONS(435), [anon_sym_92] = ACTIONS(435), + [anon_sym_93] = ACTIONS(435), + [anon_sym_94] = ACTIONS(435), + [anon_sym_95] = ACTIONS(435), + [anon_sym_96] = ACTIONS(435), [sym__endOfLine] = ACTIONS(435), }, [111] = { @@ -33020,35 +34171,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(511), [anon_sym_pack] = ACTIONS(511), [anon_sym_68] = ACTIONS(511), - [anon_sym_reach] = ACTIONS(511), + [anon_sym_rectify] = ACTIONS(511), [anon_sym_69] = ACTIONS(511), - [anon_sym_fold] = ACTIONS(511), + [anon_sym_this] = ACTIONS(511), [anon_sym_70] = ACTIONS(511), - [anon_sym_table] = ACTIONS(511), + [anon_sym_recur] = ACTIONS(511), [anon_sym_71] = ACTIONS(511), - [anon_sym_cross] = ACTIONS(511), + [anon_sym_fold] = ACTIONS(511), [anon_sym_72] = ACTIONS(511), - [anon_sym_group] = ACTIONS(511), + [anon_sym_table] = ACTIONS(511), [anon_sym_73] = ACTIONS(511), - [anon_sym_partition] = ACTIONS(511), + [anon_sym_cross] = ACTIONS(511), [anon_sym_74] = ACTIONS(511), - [anon_sym_both] = ACTIONS(511), + [anon_sym_group] = ACTIONS(511), [anon_sym_75] = ACTIONS(511), - [anon_sym_bracket] = ACTIONS(511), + [anon_sym_partition] = ACTIONS(511), [anon_sym_76] = ACTIONS(511), - [anon_sym_fork] = ACTIONS(511), + [anon_sym_both] = ACTIONS(511), [anon_sym_77] = ACTIONS(511), - [anon_sym_under] = ACTIONS(511), + [anon_sym_bracket] = ACTIONS(511), [anon_sym_78] = ACTIONS(511), - [anon_sym_fill] = ACTIONS(511), + [anon_sym_fork] = ACTIONS(511), [anon_sym_79] = ACTIONS(511), - [anon_sym_try] = ACTIONS(509), + [anon_sym_under] = ACTIONS(511), [anon_sym_80] = ACTIONS(511), - [anon_sym_do] = ACTIONS(509), + [anon_sym_fill] = ACTIONS(511), [anon_sym_81] = ACTIONS(511), + [anon_sym_try] = ACTIONS(509), [anon_sym_82] = ACTIONS(511), + [anon_sym_do] = ACTIONS(509), [anon_sym_83] = ACTIONS(511), + [anon_sym_all] = ACTIONS(511), [anon_sym_84] = ACTIONS(511), + [anon_sym_setinv] = ACTIONS(511), + [anon_sym_setunder] = ACTIONS(511), [anon_sym_85] = ACTIONS(511), [anon_sym_86] = ACTIONS(511), [anon_sym_87] = ACTIONS(511), @@ -33057,6 +34213,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(511), [anon_sym_91] = ACTIONS(511), [anon_sym_92] = ACTIONS(511), + [anon_sym_93] = ACTIONS(511), + [anon_sym_94] = ACTIONS(511), + [anon_sym_95] = ACTIONS(511), + [anon_sym_96] = ACTIONS(511), [sym__endOfLine] = ACTIONS(511), }, [112] = { @@ -33247,35 +34407,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(487), [anon_sym_pack] = ACTIONS(487), [anon_sym_68] = ACTIONS(487), - [anon_sym_reach] = ACTIONS(487), + [anon_sym_rectify] = ACTIONS(487), [anon_sym_69] = ACTIONS(487), - [anon_sym_fold] = ACTIONS(487), + [anon_sym_this] = ACTIONS(487), [anon_sym_70] = ACTIONS(487), - [anon_sym_table] = ACTIONS(487), + [anon_sym_recur] = ACTIONS(487), [anon_sym_71] = ACTIONS(487), - [anon_sym_cross] = ACTIONS(487), + [anon_sym_fold] = ACTIONS(487), [anon_sym_72] = ACTIONS(487), - [anon_sym_group] = ACTIONS(487), + [anon_sym_table] = ACTIONS(487), [anon_sym_73] = ACTIONS(487), - [anon_sym_partition] = ACTIONS(487), + [anon_sym_cross] = ACTIONS(487), [anon_sym_74] = ACTIONS(487), - [anon_sym_both] = ACTIONS(487), + [anon_sym_group] = ACTIONS(487), [anon_sym_75] = ACTIONS(487), - [anon_sym_bracket] = ACTIONS(487), + [anon_sym_partition] = ACTIONS(487), [anon_sym_76] = ACTIONS(487), - [anon_sym_fork] = ACTIONS(487), + [anon_sym_both] = ACTIONS(487), [anon_sym_77] = ACTIONS(487), - [anon_sym_under] = ACTIONS(487), + [anon_sym_bracket] = ACTIONS(487), [anon_sym_78] = ACTIONS(487), - [anon_sym_fill] = ACTIONS(487), + [anon_sym_fork] = ACTIONS(487), [anon_sym_79] = ACTIONS(487), - [anon_sym_try] = ACTIONS(485), + [anon_sym_under] = ACTIONS(487), [anon_sym_80] = ACTIONS(487), - [anon_sym_do] = ACTIONS(485), + [anon_sym_fill] = ACTIONS(487), [anon_sym_81] = ACTIONS(487), + [anon_sym_try] = ACTIONS(485), [anon_sym_82] = ACTIONS(487), + [anon_sym_do] = ACTIONS(485), [anon_sym_83] = ACTIONS(487), + [anon_sym_all] = ACTIONS(487), [anon_sym_84] = ACTIONS(487), + [anon_sym_setinv] = ACTIONS(487), + [anon_sym_setunder] = ACTIONS(487), [anon_sym_85] = ACTIONS(487), [anon_sym_86] = ACTIONS(487), [anon_sym_87] = ACTIONS(487), @@ -33284,6 +34449,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(487), [anon_sym_91] = ACTIONS(487), [anon_sym_92] = ACTIONS(487), + [anon_sym_93] = ACTIONS(487), + [anon_sym_94] = ACTIONS(487), + [anon_sym_95] = ACTIONS(487), + [anon_sym_96] = ACTIONS(487), [sym__endOfLine] = ACTIONS(487), }, [113] = { @@ -33474,35 +34643,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(511), [anon_sym_pack] = ACTIONS(511), [anon_sym_68] = ACTIONS(511), - [anon_sym_reach] = ACTIONS(511), + [anon_sym_rectify] = ACTIONS(511), [anon_sym_69] = ACTIONS(511), - [anon_sym_fold] = ACTIONS(511), + [anon_sym_this] = ACTIONS(511), [anon_sym_70] = ACTIONS(511), - [anon_sym_table] = ACTIONS(511), + [anon_sym_recur] = ACTIONS(511), [anon_sym_71] = ACTIONS(511), - [anon_sym_cross] = ACTIONS(511), + [anon_sym_fold] = ACTIONS(511), [anon_sym_72] = ACTIONS(511), - [anon_sym_group] = ACTIONS(511), + [anon_sym_table] = ACTIONS(511), [anon_sym_73] = ACTIONS(511), - [anon_sym_partition] = ACTIONS(511), + [anon_sym_cross] = ACTIONS(511), [anon_sym_74] = ACTIONS(511), - [anon_sym_both] = ACTIONS(511), + [anon_sym_group] = ACTIONS(511), [anon_sym_75] = ACTIONS(511), - [anon_sym_bracket] = ACTIONS(511), + [anon_sym_partition] = ACTIONS(511), [anon_sym_76] = ACTIONS(511), - [anon_sym_fork] = ACTIONS(511), + [anon_sym_both] = ACTIONS(511), [anon_sym_77] = ACTIONS(511), - [anon_sym_under] = ACTIONS(511), + [anon_sym_bracket] = ACTIONS(511), [anon_sym_78] = ACTIONS(511), - [anon_sym_fill] = ACTIONS(511), + [anon_sym_fork] = ACTIONS(511), [anon_sym_79] = ACTIONS(511), - [anon_sym_try] = ACTIONS(509), + [anon_sym_under] = ACTIONS(511), [anon_sym_80] = ACTIONS(511), - [anon_sym_do] = ACTIONS(509), + [anon_sym_fill] = ACTIONS(511), [anon_sym_81] = ACTIONS(511), + [anon_sym_try] = ACTIONS(509), [anon_sym_82] = ACTIONS(511), + [anon_sym_do] = ACTIONS(509), [anon_sym_83] = ACTIONS(511), + [anon_sym_all] = ACTIONS(511), [anon_sym_84] = ACTIONS(511), + [anon_sym_setinv] = ACTIONS(511), + [anon_sym_setunder] = ACTIONS(511), [anon_sym_85] = ACTIONS(511), [anon_sym_86] = ACTIONS(511), [anon_sym_87] = ACTIONS(511), @@ -33511,6 +34685,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(511), [anon_sym_91] = ACTIONS(511), [anon_sym_92] = ACTIONS(511), + [anon_sym_93] = ACTIONS(511), + [anon_sym_94] = ACTIONS(511), + [anon_sym_95] = ACTIONS(511), + [anon_sym_96] = ACTIONS(511), [sym__endOfLine] = ACTIONS(511), }, [114] = { @@ -33701,35 +34879,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(483), [anon_sym_pack] = ACTIONS(483), [anon_sym_68] = ACTIONS(483), - [anon_sym_reach] = ACTIONS(483), + [anon_sym_rectify] = ACTIONS(483), [anon_sym_69] = ACTIONS(483), - [anon_sym_fold] = ACTIONS(483), + [anon_sym_this] = ACTIONS(483), [anon_sym_70] = ACTIONS(483), - [anon_sym_table] = ACTIONS(483), + [anon_sym_recur] = ACTIONS(483), [anon_sym_71] = ACTIONS(483), - [anon_sym_cross] = ACTIONS(483), + [anon_sym_fold] = ACTIONS(483), [anon_sym_72] = ACTIONS(483), - [anon_sym_group] = ACTIONS(483), + [anon_sym_table] = ACTIONS(483), [anon_sym_73] = ACTIONS(483), - [anon_sym_partition] = ACTIONS(483), + [anon_sym_cross] = ACTIONS(483), [anon_sym_74] = ACTIONS(483), - [anon_sym_both] = ACTIONS(483), + [anon_sym_group] = ACTIONS(483), [anon_sym_75] = ACTIONS(483), - [anon_sym_bracket] = ACTIONS(483), + [anon_sym_partition] = ACTIONS(483), [anon_sym_76] = ACTIONS(483), - [anon_sym_fork] = ACTIONS(483), + [anon_sym_both] = ACTIONS(483), [anon_sym_77] = ACTIONS(483), - [anon_sym_under] = ACTIONS(483), + [anon_sym_bracket] = ACTIONS(483), [anon_sym_78] = ACTIONS(483), - [anon_sym_fill] = ACTIONS(483), + [anon_sym_fork] = ACTIONS(483), [anon_sym_79] = ACTIONS(483), - [anon_sym_try] = ACTIONS(481), + [anon_sym_under] = ACTIONS(483), [anon_sym_80] = ACTIONS(483), - [anon_sym_do] = ACTIONS(481), + [anon_sym_fill] = ACTIONS(483), [anon_sym_81] = ACTIONS(483), + [anon_sym_try] = ACTIONS(481), [anon_sym_82] = ACTIONS(483), + [anon_sym_do] = ACTIONS(481), [anon_sym_83] = ACTIONS(483), + [anon_sym_all] = ACTIONS(483), [anon_sym_84] = ACTIONS(483), + [anon_sym_setinv] = ACTIONS(483), + [anon_sym_setunder] = ACTIONS(483), [anon_sym_85] = ACTIONS(483), [anon_sym_86] = ACTIONS(483), [anon_sym_87] = ACTIONS(483), @@ -33738,6 +34921,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(483), [anon_sym_91] = ACTIONS(483), [anon_sym_92] = ACTIONS(483), + [anon_sym_93] = ACTIONS(483), + [anon_sym_94] = ACTIONS(483), + [anon_sym_95] = ACTIONS(483), + [anon_sym_96] = ACTIONS(483), [sym__endOfLine] = ACTIONS(483), }, [115] = { @@ -33928,35 +35115,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(463), [anon_sym_pack] = ACTIONS(463), [anon_sym_68] = ACTIONS(463), - [anon_sym_reach] = ACTIONS(463), + [anon_sym_rectify] = ACTIONS(463), [anon_sym_69] = ACTIONS(463), - [anon_sym_fold] = ACTIONS(463), + [anon_sym_this] = ACTIONS(463), [anon_sym_70] = ACTIONS(463), - [anon_sym_table] = ACTIONS(463), + [anon_sym_recur] = ACTIONS(463), [anon_sym_71] = ACTIONS(463), - [anon_sym_cross] = ACTIONS(463), + [anon_sym_fold] = ACTIONS(463), [anon_sym_72] = ACTIONS(463), - [anon_sym_group] = ACTIONS(463), + [anon_sym_table] = ACTIONS(463), [anon_sym_73] = ACTIONS(463), - [anon_sym_partition] = ACTIONS(463), + [anon_sym_cross] = ACTIONS(463), [anon_sym_74] = ACTIONS(463), - [anon_sym_both] = ACTIONS(463), + [anon_sym_group] = ACTIONS(463), [anon_sym_75] = ACTIONS(463), - [anon_sym_bracket] = ACTIONS(463), + [anon_sym_partition] = ACTIONS(463), [anon_sym_76] = ACTIONS(463), - [anon_sym_fork] = ACTIONS(463), + [anon_sym_both] = ACTIONS(463), [anon_sym_77] = ACTIONS(463), - [anon_sym_under] = ACTIONS(463), + [anon_sym_bracket] = ACTIONS(463), [anon_sym_78] = ACTIONS(463), - [anon_sym_fill] = ACTIONS(463), + [anon_sym_fork] = ACTIONS(463), [anon_sym_79] = ACTIONS(463), - [anon_sym_try] = ACTIONS(461), + [anon_sym_under] = ACTIONS(463), [anon_sym_80] = ACTIONS(463), - [anon_sym_do] = ACTIONS(461), + [anon_sym_fill] = ACTIONS(463), [anon_sym_81] = ACTIONS(463), + [anon_sym_try] = ACTIONS(461), [anon_sym_82] = ACTIONS(463), + [anon_sym_do] = ACTIONS(461), [anon_sym_83] = ACTIONS(463), + [anon_sym_all] = ACTIONS(463), [anon_sym_84] = ACTIONS(463), + [anon_sym_setinv] = ACTIONS(463), + [anon_sym_setunder] = ACTIONS(463), [anon_sym_85] = ACTIONS(463), [anon_sym_86] = ACTIONS(463), [anon_sym_87] = ACTIONS(463), @@ -33965,6 +35157,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(463), [anon_sym_91] = ACTIONS(463), [anon_sym_92] = ACTIONS(463), + [anon_sym_93] = ACTIONS(463), + [anon_sym_94] = ACTIONS(463), + [anon_sym_95] = ACTIONS(463), + [anon_sym_96] = ACTIONS(463), [sym__endOfLine] = ACTIONS(463), }, [116] = { @@ -34155,35 +35351,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(451), [anon_sym_pack] = ACTIONS(451), [anon_sym_68] = ACTIONS(451), - [anon_sym_reach] = ACTIONS(451), + [anon_sym_rectify] = ACTIONS(451), [anon_sym_69] = ACTIONS(451), - [anon_sym_fold] = ACTIONS(451), + [anon_sym_this] = ACTIONS(451), [anon_sym_70] = ACTIONS(451), - [anon_sym_table] = ACTIONS(451), + [anon_sym_recur] = ACTIONS(451), [anon_sym_71] = ACTIONS(451), - [anon_sym_cross] = ACTIONS(451), + [anon_sym_fold] = ACTIONS(451), [anon_sym_72] = ACTIONS(451), - [anon_sym_group] = ACTIONS(451), + [anon_sym_table] = ACTIONS(451), [anon_sym_73] = ACTIONS(451), - [anon_sym_partition] = ACTIONS(451), + [anon_sym_cross] = ACTIONS(451), [anon_sym_74] = ACTIONS(451), - [anon_sym_both] = ACTIONS(451), + [anon_sym_group] = ACTIONS(451), [anon_sym_75] = ACTIONS(451), - [anon_sym_bracket] = ACTIONS(451), + [anon_sym_partition] = ACTIONS(451), [anon_sym_76] = ACTIONS(451), - [anon_sym_fork] = ACTIONS(451), + [anon_sym_both] = ACTIONS(451), [anon_sym_77] = ACTIONS(451), - [anon_sym_under] = ACTIONS(451), + [anon_sym_bracket] = ACTIONS(451), [anon_sym_78] = ACTIONS(451), - [anon_sym_fill] = ACTIONS(451), + [anon_sym_fork] = ACTIONS(451), [anon_sym_79] = ACTIONS(451), - [anon_sym_try] = ACTIONS(449), + [anon_sym_under] = ACTIONS(451), [anon_sym_80] = ACTIONS(451), - [anon_sym_do] = ACTIONS(449), + [anon_sym_fill] = ACTIONS(451), [anon_sym_81] = ACTIONS(451), + [anon_sym_try] = ACTIONS(449), [anon_sym_82] = ACTIONS(451), + [anon_sym_do] = ACTIONS(449), [anon_sym_83] = ACTIONS(451), + [anon_sym_all] = ACTIONS(451), [anon_sym_84] = ACTIONS(451), + [anon_sym_setinv] = ACTIONS(451), + [anon_sym_setunder] = ACTIONS(451), [anon_sym_85] = ACTIONS(451), [anon_sym_86] = ACTIONS(451), [anon_sym_87] = ACTIONS(451), @@ -34192,6 +35393,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(451), [anon_sym_91] = ACTIONS(451), [anon_sym_92] = ACTIONS(451), + [anon_sym_93] = ACTIONS(451), + [anon_sym_94] = ACTIONS(451), + [anon_sym_95] = ACTIONS(451), + [anon_sym_96] = ACTIONS(451), [sym__endOfLine] = ACTIONS(451), }, [117] = { @@ -34382,35 +35587,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(197), [anon_sym_pack] = ACTIONS(197), [anon_sym_68] = ACTIONS(197), - [anon_sym_reach] = ACTIONS(197), + [anon_sym_rectify] = ACTIONS(197), [anon_sym_69] = ACTIONS(197), - [anon_sym_fold] = ACTIONS(197), + [anon_sym_this] = ACTIONS(197), [anon_sym_70] = ACTIONS(197), - [anon_sym_table] = ACTIONS(197), + [anon_sym_recur] = ACTIONS(197), [anon_sym_71] = ACTIONS(197), - [anon_sym_cross] = ACTIONS(197), + [anon_sym_fold] = ACTIONS(197), [anon_sym_72] = ACTIONS(197), - [anon_sym_group] = ACTIONS(197), + [anon_sym_table] = ACTIONS(197), [anon_sym_73] = ACTIONS(197), - [anon_sym_partition] = ACTIONS(197), + [anon_sym_cross] = ACTIONS(197), [anon_sym_74] = ACTIONS(197), - [anon_sym_both] = ACTIONS(197), + [anon_sym_group] = ACTIONS(197), [anon_sym_75] = ACTIONS(197), - [anon_sym_bracket] = ACTIONS(197), + [anon_sym_partition] = ACTIONS(197), [anon_sym_76] = ACTIONS(197), - [anon_sym_fork] = ACTIONS(197), + [anon_sym_both] = ACTIONS(197), [anon_sym_77] = ACTIONS(197), - [anon_sym_under] = ACTIONS(197), + [anon_sym_bracket] = ACTIONS(197), [anon_sym_78] = ACTIONS(197), - [anon_sym_fill] = ACTIONS(197), + [anon_sym_fork] = ACTIONS(197), [anon_sym_79] = ACTIONS(197), - [anon_sym_try] = ACTIONS(541), + [anon_sym_under] = ACTIONS(197), [anon_sym_80] = ACTIONS(197), - [anon_sym_do] = ACTIONS(541), + [anon_sym_fill] = ACTIONS(197), [anon_sym_81] = ACTIONS(197), + [anon_sym_try] = ACTIONS(541), [anon_sym_82] = ACTIONS(197), + [anon_sym_do] = ACTIONS(541), [anon_sym_83] = ACTIONS(197), + [anon_sym_all] = ACTIONS(197), [anon_sym_84] = ACTIONS(197), + [anon_sym_setinv] = ACTIONS(197), + [anon_sym_setunder] = ACTIONS(197), [anon_sym_85] = ACTIONS(197), [anon_sym_86] = ACTIONS(197), [anon_sym_87] = ACTIONS(197), @@ -34419,6 +35629,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(197), [anon_sym_91] = ACTIONS(197), [anon_sym_92] = ACTIONS(197), + [anon_sym_93] = ACTIONS(197), + [anon_sym_94] = ACTIONS(197), + [anon_sym_95] = ACTIONS(197), + [anon_sym_96] = ACTIONS(197), [sym__endOfLine] = ACTIONS(5), }, [118] = { @@ -34609,35 +35823,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(519), [anon_sym_pack] = ACTIONS(519), [anon_sym_68] = ACTIONS(519), - [anon_sym_reach] = ACTIONS(519), + [anon_sym_rectify] = ACTIONS(519), [anon_sym_69] = ACTIONS(519), - [anon_sym_fold] = ACTIONS(519), + [anon_sym_this] = ACTIONS(519), [anon_sym_70] = ACTIONS(519), - [anon_sym_table] = ACTIONS(519), + [anon_sym_recur] = ACTIONS(519), [anon_sym_71] = ACTIONS(519), - [anon_sym_cross] = ACTIONS(519), + [anon_sym_fold] = ACTIONS(519), [anon_sym_72] = ACTIONS(519), - [anon_sym_group] = ACTIONS(519), + [anon_sym_table] = ACTIONS(519), [anon_sym_73] = ACTIONS(519), - [anon_sym_partition] = ACTIONS(519), + [anon_sym_cross] = ACTIONS(519), [anon_sym_74] = ACTIONS(519), - [anon_sym_both] = ACTIONS(519), + [anon_sym_group] = ACTIONS(519), [anon_sym_75] = ACTIONS(519), - [anon_sym_bracket] = ACTIONS(519), + [anon_sym_partition] = ACTIONS(519), [anon_sym_76] = ACTIONS(519), - [anon_sym_fork] = ACTIONS(519), + [anon_sym_both] = ACTIONS(519), [anon_sym_77] = ACTIONS(519), - [anon_sym_under] = ACTIONS(519), + [anon_sym_bracket] = ACTIONS(519), [anon_sym_78] = ACTIONS(519), - [anon_sym_fill] = ACTIONS(519), + [anon_sym_fork] = ACTIONS(519), [anon_sym_79] = ACTIONS(519), - [anon_sym_try] = ACTIONS(517), + [anon_sym_under] = ACTIONS(519), [anon_sym_80] = ACTIONS(519), - [anon_sym_do] = ACTIONS(517), + [anon_sym_fill] = ACTIONS(519), [anon_sym_81] = ACTIONS(519), + [anon_sym_try] = ACTIONS(517), [anon_sym_82] = ACTIONS(519), + [anon_sym_do] = ACTIONS(517), [anon_sym_83] = ACTIONS(519), + [anon_sym_all] = ACTIONS(519), [anon_sym_84] = ACTIONS(519), + [anon_sym_setinv] = ACTIONS(519), + [anon_sym_setunder] = ACTIONS(519), [anon_sym_85] = ACTIONS(519), [anon_sym_86] = ACTIONS(519), [anon_sym_87] = ACTIONS(519), @@ -34646,6 +35865,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(519), [anon_sym_91] = ACTIONS(519), [anon_sym_92] = ACTIONS(519), + [anon_sym_93] = ACTIONS(519), + [anon_sym_94] = ACTIONS(519), + [anon_sym_95] = ACTIONS(519), + [anon_sym_96] = ACTIONS(519), [sym__endOfLine] = ACTIONS(519), }, [119] = { @@ -34836,35 +36059,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(515), [anon_sym_pack] = ACTIONS(515), [anon_sym_68] = ACTIONS(515), - [anon_sym_reach] = ACTIONS(515), + [anon_sym_rectify] = ACTIONS(515), [anon_sym_69] = ACTIONS(515), - [anon_sym_fold] = ACTIONS(515), + [anon_sym_this] = ACTIONS(515), [anon_sym_70] = ACTIONS(515), - [anon_sym_table] = ACTIONS(515), + [anon_sym_recur] = ACTIONS(515), [anon_sym_71] = ACTIONS(515), - [anon_sym_cross] = ACTIONS(515), + [anon_sym_fold] = ACTIONS(515), [anon_sym_72] = ACTIONS(515), - [anon_sym_group] = ACTIONS(515), + [anon_sym_table] = ACTIONS(515), [anon_sym_73] = ACTIONS(515), - [anon_sym_partition] = ACTIONS(515), + [anon_sym_cross] = ACTIONS(515), [anon_sym_74] = ACTIONS(515), - [anon_sym_both] = ACTIONS(515), + [anon_sym_group] = ACTIONS(515), [anon_sym_75] = ACTIONS(515), - [anon_sym_bracket] = ACTIONS(515), + [anon_sym_partition] = ACTIONS(515), [anon_sym_76] = ACTIONS(515), - [anon_sym_fork] = ACTIONS(515), + [anon_sym_both] = ACTIONS(515), [anon_sym_77] = ACTIONS(515), - [anon_sym_under] = ACTIONS(515), + [anon_sym_bracket] = ACTIONS(515), [anon_sym_78] = ACTIONS(515), - [anon_sym_fill] = ACTIONS(515), + [anon_sym_fork] = ACTIONS(515), [anon_sym_79] = ACTIONS(515), - [anon_sym_try] = ACTIONS(513), + [anon_sym_under] = ACTIONS(515), [anon_sym_80] = ACTIONS(515), - [anon_sym_do] = ACTIONS(513), + [anon_sym_fill] = ACTIONS(515), [anon_sym_81] = ACTIONS(515), + [anon_sym_try] = ACTIONS(513), [anon_sym_82] = ACTIONS(515), + [anon_sym_do] = ACTIONS(513), [anon_sym_83] = ACTIONS(515), + [anon_sym_all] = ACTIONS(515), [anon_sym_84] = ACTIONS(515), + [anon_sym_setinv] = ACTIONS(515), + [anon_sym_setunder] = ACTIONS(515), [anon_sym_85] = ACTIONS(515), [anon_sym_86] = ACTIONS(515), [anon_sym_87] = ACTIONS(515), @@ -34873,6 +36101,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(515), [anon_sym_91] = ACTIONS(515), [anon_sym_92] = ACTIONS(515), + [anon_sym_93] = ACTIONS(515), + [anon_sym_94] = ACTIONS(515), + [anon_sym_95] = ACTIONS(515), + [anon_sym_96] = ACTIONS(515), [sym__endOfLine] = ACTIONS(515), }, [120] = { @@ -35063,35 +36295,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(545), [anon_sym_pack] = ACTIONS(545), [anon_sym_68] = ACTIONS(545), - [anon_sym_reach] = ACTIONS(545), + [anon_sym_rectify] = ACTIONS(545), [anon_sym_69] = ACTIONS(545), - [anon_sym_fold] = ACTIONS(545), + [anon_sym_this] = ACTIONS(545), [anon_sym_70] = ACTIONS(545), - [anon_sym_table] = ACTIONS(545), + [anon_sym_recur] = ACTIONS(545), [anon_sym_71] = ACTIONS(545), - [anon_sym_cross] = ACTIONS(545), + [anon_sym_fold] = ACTIONS(545), [anon_sym_72] = ACTIONS(545), - [anon_sym_group] = ACTIONS(545), + [anon_sym_table] = ACTIONS(545), [anon_sym_73] = ACTIONS(545), - [anon_sym_partition] = ACTIONS(545), + [anon_sym_cross] = ACTIONS(545), [anon_sym_74] = ACTIONS(545), - [anon_sym_both] = ACTIONS(545), + [anon_sym_group] = ACTIONS(545), [anon_sym_75] = ACTIONS(545), - [anon_sym_bracket] = ACTIONS(545), + [anon_sym_partition] = ACTIONS(545), [anon_sym_76] = ACTIONS(545), - [anon_sym_fork] = ACTIONS(545), + [anon_sym_both] = ACTIONS(545), [anon_sym_77] = ACTIONS(545), - [anon_sym_under] = ACTIONS(545), + [anon_sym_bracket] = ACTIONS(545), [anon_sym_78] = ACTIONS(545), - [anon_sym_fill] = ACTIONS(545), + [anon_sym_fork] = ACTIONS(545), [anon_sym_79] = ACTIONS(545), - [anon_sym_try] = ACTIONS(543), + [anon_sym_under] = ACTIONS(545), [anon_sym_80] = ACTIONS(545), - [anon_sym_do] = ACTIONS(543), + [anon_sym_fill] = ACTIONS(545), [anon_sym_81] = ACTIONS(545), + [anon_sym_try] = ACTIONS(543), [anon_sym_82] = ACTIONS(545), + [anon_sym_do] = ACTIONS(543), [anon_sym_83] = ACTIONS(545), + [anon_sym_all] = ACTIONS(545), [anon_sym_84] = ACTIONS(545), + [anon_sym_setinv] = ACTIONS(545), + [anon_sym_setunder] = ACTIONS(545), [anon_sym_85] = ACTIONS(545), [anon_sym_86] = ACTIONS(545), [anon_sym_87] = ACTIONS(545), @@ -35100,6 +36337,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(545), [anon_sym_91] = ACTIONS(545), [anon_sym_92] = ACTIONS(545), + [anon_sym_93] = ACTIONS(545), + [anon_sym_94] = ACTIONS(545), + [anon_sym_95] = ACTIONS(545), + [anon_sym_96] = ACTIONS(545), [sym__endOfLine] = ACTIONS(545), }, [121] = { @@ -35290,35 +36531,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(507), [anon_sym_pack] = ACTIONS(507), [anon_sym_68] = ACTIONS(507), - [anon_sym_reach] = ACTIONS(507), + [anon_sym_rectify] = ACTIONS(507), [anon_sym_69] = ACTIONS(507), - [anon_sym_fold] = ACTIONS(507), + [anon_sym_this] = ACTIONS(507), [anon_sym_70] = ACTIONS(507), - [anon_sym_table] = ACTIONS(507), + [anon_sym_recur] = ACTIONS(507), [anon_sym_71] = ACTIONS(507), - [anon_sym_cross] = ACTIONS(507), + [anon_sym_fold] = ACTIONS(507), [anon_sym_72] = ACTIONS(507), - [anon_sym_group] = ACTIONS(507), + [anon_sym_table] = ACTIONS(507), [anon_sym_73] = ACTIONS(507), - [anon_sym_partition] = ACTIONS(507), + [anon_sym_cross] = ACTIONS(507), [anon_sym_74] = ACTIONS(507), - [anon_sym_both] = ACTIONS(507), + [anon_sym_group] = ACTIONS(507), [anon_sym_75] = ACTIONS(507), - [anon_sym_bracket] = ACTIONS(507), + [anon_sym_partition] = ACTIONS(507), [anon_sym_76] = ACTIONS(507), - [anon_sym_fork] = ACTIONS(507), + [anon_sym_both] = ACTIONS(507), [anon_sym_77] = ACTIONS(507), - [anon_sym_under] = ACTIONS(507), + [anon_sym_bracket] = ACTIONS(507), [anon_sym_78] = ACTIONS(507), - [anon_sym_fill] = ACTIONS(507), + [anon_sym_fork] = ACTIONS(507), [anon_sym_79] = ACTIONS(507), - [anon_sym_try] = ACTIONS(505), + [anon_sym_under] = ACTIONS(507), [anon_sym_80] = ACTIONS(507), - [anon_sym_do] = ACTIONS(505), + [anon_sym_fill] = ACTIONS(507), [anon_sym_81] = ACTIONS(507), + [anon_sym_try] = ACTIONS(505), [anon_sym_82] = ACTIONS(507), + [anon_sym_do] = ACTIONS(505), [anon_sym_83] = ACTIONS(507), + [anon_sym_all] = ACTIONS(507), [anon_sym_84] = ACTIONS(507), + [anon_sym_setinv] = ACTIONS(507), + [anon_sym_setunder] = ACTIONS(507), [anon_sym_85] = ACTIONS(507), [anon_sym_86] = ACTIONS(507), [anon_sym_87] = ACTIONS(507), @@ -35327,6 +36573,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(507), [anon_sym_91] = ACTIONS(507), [anon_sym_92] = ACTIONS(507), + [anon_sym_93] = ACTIONS(507), + [anon_sym_94] = ACTIONS(507), + [anon_sym_95] = ACTIONS(507), + [anon_sym_96] = ACTIONS(507), [sym__endOfLine] = ACTIONS(507), }, [122] = { @@ -35517,35 +36767,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(455), [anon_sym_pack] = ACTIONS(455), [anon_sym_68] = ACTIONS(455), - [anon_sym_reach] = ACTIONS(455), + [anon_sym_rectify] = ACTIONS(455), [anon_sym_69] = ACTIONS(455), - [anon_sym_fold] = ACTIONS(455), + [anon_sym_this] = ACTIONS(455), [anon_sym_70] = ACTIONS(455), - [anon_sym_table] = ACTIONS(455), + [anon_sym_recur] = ACTIONS(455), [anon_sym_71] = ACTIONS(455), - [anon_sym_cross] = ACTIONS(455), + [anon_sym_fold] = ACTIONS(455), [anon_sym_72] = ACTIONS(455), - [anon_sym_group] = ACTIONS(455), + [anon_sym_table] = ACTIONS(455), [anon_sym_73] = ACTIONS(455), - [anon_sym_partition] = ACTIONS(455), + [anon_sym_cross] = ACTIONS(455), [anon_sym_74] = ACTIONS(455), - [anon_sym_both] = ACTIONS(455), + [anon_sym_group] = ACTIONS(455), [anon_sym_75] = ACTIONS(455), - [anon_sym_bracket] = ACTIONS(455), + [anon_sym_partition] = ACTIONS(455), [anon_sym_76] = ACTIONS(455), - [anon_sym_fork] = ACTIONS(455), + [anon_sym_both] = ACTIONS(455), [anon_sym_77] = ACTIONS(455), - [anon_sym_under] = ACTIONS(455), + [anon_sym_bracket] = ACTIONS(455), [anon_sym_78] = ACTIONS(455), - [anon_sym_fill] = ACTIONS(455), + [anon_sym_fork] = ACTIONS(455), [anon_sym_79] = ACTIONS(455), - [anon_sym_try] = ACTIONS(453), + [anon_sym_under] = ACTIONS(455), [anon_sym_80] = ACTIONS(455), - [anon_sym_do] = ACTIONS(453), + [anon_sym_fill] = ACTIONS(455), [anon_sym_81] = ACTIONS(455), + [anon_sym_try] = ACTIONS(453), [anon_sym_82] = ACTIONS(455), + [anon_sym_do] = ACTIONS(453), [anon_sym_83] = ACTIONS(455), + [anon_sym_all] = ACTIONS(455), [anon_sym_84] = ACTIONS(455), + [anon_sym_setinv] = ACTIONS(455), + [anon_sym_setunder] = ACTIONS(455), [anon_sym_85] = ACTIONS(455), [anon_sym_86] = ACTIONS(455), [anon_sym_87] = ACTIONS(455), @@ -35554,6 +36809,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(455), [anon_sym_91] = ACTIONS(455), [anon_sym_92] = ACTIONS(455), + [anon_sym_93] = ACTIONS(455), + [anon_sym_94] = ACTIONS(455), + [anon_sym_95] = ACTIONS(455), + [anon_sym_96] = ACTIONS(455), [sym__endOfLine] = ACTIONS(455), }, [123] = { @@ -35744,35 +37003,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(467), [anon_sym_pack] = ACTIONS(467), [anon_sym_68] = ACTIONS(467), - [anon_sym_reach] = ACTIONS(467), + [anon_sym_rectify] = ACTIONS(467), [anon_sym_69] = ACTIONS(467), - [anon_sym_fold] = ACTIONS(467), + [anon_sym_this] = ACTIONS(467), [anon_sym_70] = ACTIONS(467), - [anon_sym_table] = ACTIONS(467), + [anon_sym_recur] = ACTIONS(467), [anon_sym_71] = ACTIONS(467), - [anon_sym_cross] = ACTIONS(467), + [anon_sym_fold] = ACTIONS(467), [anon_sym_72] = ACTIONS(467), - [anon_sym_group] = ACTIONS(467), + [anon_sym_table] = ACTIONS(467), [anon_sym_73] = ACTIONS(467), - [anon_sym_partition] = ACTIONS(467), + [anon_sym_cross] = ACTIONS(467), [anon_sym_74] = ACTIONS(467), - [anon_sym_both] = ACTIONS(467), + [anon_sym_group] = ACTIONS(467), [anon_sym_75] = ACTIONS(467), - [anon_sym_bracket] = ACTIONS(467), + [anon_sym_partition] = ACTIONS(467), [anon_sym_76] = ACTIONS(467), - [anon_sym_fork] = ACTIONS(467), + [anon_sym_both] = ACTIONS(467), [anon_sym_77] = ACTIONS(467), - [anon_sym_under] = ACTIONS(467), + [anon_sym_bracket] = ACTIONS(467), [anon_sym_78] = ACTIONS(467), - [anon_sym_fill] = ACTIONS(467), + [anon_sym_fork] = ACTIONS(467), [anon_sym_79] = ACTIONS(467), - [anon_sym_try] = ACTIONS(465), + [anon_sym_under] = ACTIONS(467), [anon_sym_80] = ACTIONS(467), - [anon_sym_do] = ACTIONS(465), + [anon_sym_fill] = ACTIONS(467), [anon_sym_81] = ACTIONS(467), + [anon_sym_try] = ACTIONS(465), [anon_sym_82] = ACTIONS(467), + [anon_sym_do] = ACTIONS(465), [anon_sym_83] = ACTIONS(467), + [anon_sym_all] = ACTIONS(467), [anon_sym_84] = ACTIONS(467), + [anon_sym_setinv] = ACTIONS(467), + [anon_sym_setunder] = ACTIONS(467), [anon_sym_85] = ACTIONS(467), [anon_sym_86] = ACTIONS(467), [anon_sym_87] = ACTIONS(467), @@ -35781,6 +37045,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(467), [anon_sym_91] = ACTIONS(467), [anon_sym_92] = ACTIONS(467), + [anon_sym_93] = ACTIONS(467), + [anon_sym_94] = ACTIONS(467), + [anon_sym_95] = ACTIONS(467), + [anon_sym_96] = ACTIONS(467), [sym__endOfLine] = ACTIONS(467), }, [124] = { @@ -35971,35 +37239,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(523), [anon_sym_pack] = ACTIONS(523), [anon_sym_68] = ACTIONS(523), - [anon_sym_reach] = ACTIONS(523), + [anon_sym_rectify] = ACTIONS(523), [anon_sym_69] = ACTIONS(523), - [anon_sym_fold] = ACTIONS(523), + [anon_sym_this] = ACTIONS(523), [anon_sym_70] = ACTIONS(523), - [anon_sym_table] = ACTIONS(523), + [anon_sym_recur] = ACTIONS(523), [anon_sym_71] = ACTIONS(523), - [anon_sym_cross] = ACTIONS(523), + [anon_sym_fold] = ACTIONS(523), [anon_sym_72] = ACTIONS(523), - [anon_sym_group] = ACTIONS(523), + [anon_sym_table] = ACTIONS(523), [anon_sym_73] = ACTIONS(523), - [anon_sym_partition] = ACTIONS(523), + [anon_sym_cross] = ACTIONS(523), [anon_sym_74] = ACTIONS(523), - [anon_sym_both] = ACTIONS(523), + [anon_sym_group] = ACTIONS(523), [anon_sym_75] = ACTIONS(523), - [anon_sym_bracket] = ACTIONS(523), + [anon_sym_partition] = ACTIONS(523), [anon_sym_76] = ACTIONS(523), - [anon_sym_fork] = ACTIONS(523), + [anon_sym_both] = ACTIONS(523), [anon_sym_77] = ACTIONS(523), - [anon_sym_under] = ACTIONS(523), + [anon_sym_bracket] = ACTIONS(523), [anon_sym_78] = ACTIONS(523), - [anon_sym_fill] = ACTIONS(523), + [anon_sym_fork] = ACTIONS(523), [anon_sym_79] = ACTIONS(523), - [anon_sym_try] = ACTIONS(521), + [anon_sym_under] = ACTIONS(523), [anon_sym_80] = ACTIONS(523), - [anon_sym_do] = ACTIONS(521), + [anon_sym_fill] = ACTIONS(523), [anon_sym_81] = ACTIONS(523), + [anon_sym_try] = ACTIONS(521), [anon_sym_82] = ACTIONS(523), + [anon_sym_do] = ACTIONS(521), [anon_sym_83] = ACTIONS(523), + [anon_sym_all] = ACTIONS(523), [anon_sym_84] = ACTIONS(523), + [anon_sym_setinv] = ACTIONS(523), + [anon_sym_setunder] = ACTIONS(523), [anon_sym_85] = ACTIONS(523), [anon_sym_86] = ACTIONS(523), [anon_sym_87] = ACTIONS(523), @@ -36008,6 +37281,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(523), [anon_sym_91] = ACTIONS(523), [anon_sym_92] = ACTIONS(523), + [anon_sym_93] = ACTIONS(523), + [anon_sym_94] = ACTIONS(523), + [anon_sym_95] = ACTIONS(523), + [anon_sym_96] = ACTIONS(523), [sym__endOfLine] = ACTIONS(523), }, [125] = { @@ -36198,35 +37475,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(551), [anon_sym_pack] = ACTIONS(551), [anon_sym_68] = ACTIONS(551), - [anon_sym_reach] = ACTIONS(551), + [anon_sym_rectify] = ACTIONS(551), [anon_sym_69] = ACTIONS(551), - [anon_sym_fold] = ACTIONS(551), + [anon_sym_this] = ACTIONS(551), [anon_sym_70] = ACTIONS(551), - [anon_sym_table] = ACTIONS(551), + [anon_sym_recur] = ACTIONS(551), [anon_sym_71] = ACTIONS(551), - [anon_sym_cross] = ACTIONS(551), + [anon_sym_fold] = ACTIONS(551), [anon_sym_72] = ACTIONS(551), - [anon_sym_group] = ACTIONS(551), + [anon_sym_table] = ACTIONS(551), [anon_sym_73] = ACTIONS(551), - [anon_sym_partition] = ACTIONS(551), + [anon_sym_cross] = ACTIONS(551), [anon_sym_74] = ACTIONS(551), - [anon_sym_both] = ACTIONS(551), + [anon_sym_group] = ACTIONS(551), [anon_sym_75] = ACTIONS(551), - [anon_sym_bracket] = ACTIONS(551), + [anon_sym_partition] = ACTIONS(551), [anon_sym_76] = ACTIONS(551), - [anon_sym_fork] = ACTIONS(551), + [anon_sym_both] = ACTIONS(551), [anon_sym_77] = ACTIONS(551), - [anon_sym_under] = ACTIONS(551), + [anon_sym_bracket] = ACTIONS(551), [anon_sym_78] = ACTIONS(551), - [anon_sym_fill] = ACTIONS(551), + [anon_sym_fork] = ACTIONS(551), [anon_sym_79] = ACTIONS(551), - [anon_sym_try] = ACTIONS(549), + [anon_sym_under] = ACTIONS(551), [anon_sym_80] = ACTIONS(551), - [anon_sym_do] = ACTIONS(549), + [anon_sym_fill] = ACTIONS(551), [anon_sym_81] = ACTIONS(551), + [anon_sym_try] = ACTIONS(549), [anon_sym_82] = ACTIONS(551), + [anon_sym_do] = ACTIONS(549), [anon_sym_83] = ACTIONS(551), + [anon_sym_all] = ACTIONS(551), [anon_sym_84] = ACTIONS(551), + [anon_sym_setinv] = ACTIONS(551), + [anon_sym_setunder] = ACTIONS(551), [anon_sym_85] = ACTIONS(551), [anon_sym_86] = ACTIONS(551), [anon_sym_87] = ACTIONS(551), @@ -36235,6 +37517,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(551), [anon_sym_91] = ACTIONS(551), [anon_sym_92] = ACTIONS(551), + [anon_sym_93] = ACTIONS(551), + [anon_sym_94] = ACTIONS(551), + [anon_sym_95] = ACTIONS(551), + [anon_sym_96] = ACTIONS(551), [sym__endOfLine] = ACTIONS(5), }, [126] = { @@ -36425,35 +37711,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(511), [anon_sym_pack] = ACTIONS(511), [anon_sym_68] = ACTIONS(511), - [anon_sym_reach] = ACTIONS(511), + [anon_sym_rectify] = ACTIONS(511), [anon_sym_69] = ACTIONS(511), - [anon_sym_fold] = ACTIONS(511), + [anon_sym_this] = ACTIONS(511), [anon_sym_70] = ACTIONS(511), - [anon_sym_table] = ACTIONS(511), + [anon_sym_recur] = ACTIONS(511), [anon_sym_71] = ACTIONS(511), - [anon_sym_cross] = ACTIONS(511), + [anon_sym_fold] = ACTIONS(511), [anon_sym_72] = ACTIONS(511), - [anon_sym_group] = ACTIONS(511), + [anon_sym_table] = ACTIONS(511), [anon_sym_73] = ACTIONS(511), - [anon_sym_partition] = ACTIONS(511), + [anon_sym_cross] = ACTIONS(511), [anon_sym_74] = ACTIONS(511), - [anon_sym_both] = ACTIONS(511), + [anon_sym_group] = ACTIONS(511), [anon_sym_75] = ACTIONS(511), - [anon_sym_bracket] = ACTIONS(511), + [anon_sym_partition] = ACTIONS(511), [anon_sym_76] = ACTIONS(511), - [anon_sym_fork] = ACTIONS(511), + [anon_sym_both] = ACTIONS(511), [anon_sym_77] = ACTIONS(511), - [anon_sym_under] = ACTIONS(511), + [anon_sym_bracket] = ACTIONS(511), [anon_sym_78] = ACTIONS(511), - [anon_sym_fill] = ACTIONS(511), + [anon_sym_fork] = ACTIONS(511), [anon_sym_79] = ACTIONS(511), - [anon_sym_try] = ACTIONS(509), + [anon_sym_under] = ACTIONS(511), [anon_sym_80] = ACTIONS(511), - [anon_sym_do] = ACTIONS(509), + [anon_sym_fill] = ACTIONS(511), [anon_sym_81] = ACTIONS(511), + [anon_sym_try] = ACTIONS(509), [anon_sym_82] = ACTIONS(511), + [anon_sym_do] = ACTIONS(509), [anon_sym_83] = ACTIONS(511), + [anon_sym_all] = ACTIONS(511), [anon_sym_84] = ACTIONS(511), + [anon_sym_setinv] = ACTIONS(511), + [anon_sym_setunder] = ACTIONS(511), [anon_sym_85] = ACTIONS(511), [anon_sym_86] = ACTIONS(511), [anon_sym_87] = ACTIONS(511), @@ -36462,6 +37753,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(511), [anon_sym_91] = ACTIONS(511), [anon_sym_92] = ACTIONS(511), + [anon_sym_93] = ACTIONS(511), + [anon_sym_94] = ACTIONS(511), + [anon_sym_95] = ACTIONS(511), + [anon_sym_96] = ACTIONS(511), [sym__endOfLine] = ACTIONS(511), }, [127] = { @@ -36652,35 +37947,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(471), [anon_sym_pack] = ACTIONS(471), [anon_sym_68] = ACTIONS(471), - [anon_sym_reach] = ACTIONS(471), + [anon_sym_rectify] = ACTIONS(471), [anon_sym_69] = ACTIONS(471), - [anon_sym_fold] = ACTIONS(471), + [anon_sym_this] = ACTIONS(471), [anon_sym_70] = ACTIONS(471), - [anon_sym_table] = ACTIONS(471), + [anon_sym_recur] = ACTIONS(471), [anon_sym_71] = ACTIONS(471), - [anon_sym_cross] = ACTIONS(471), + [anon_sym_fold] = ACTIONS(471), [anon_sym_72] = ACTIONS(471), - [anon_sym_group] = ACTIONS(471), + [anon_sym_table] = ACTIONS(471), [anon_sym_73] = ACTIONS(471), - [anon_sym_partition] = ACTIONS(471), + [anon_sym_cross] = ACTIONS(471), [anon_sym_74] = ACTIONS(471), - [anon_sym_both] = ACTIONS(471), + [anon_sym_group] = ACTIONS(471), [anon_sym_75] = ACTIONS(471), - [anon_sym_bracket] = ACTIONS(471), + [anon_sym_partition] = ACTIONS(471), [anon_sym_76] = ACTIONS(471), - [anon_sym_fork] = ACTIONS(471), + [anon_sym_both] = ACTIONS(471), [anon_sym_77] = ACTIONS(471), - [anon_sym_under] = ACTIONS(471), + [anon_sym_bracket] = ACTIONS(471), [anon_sym_78] = ACTIONS(471), - [anon_sym_fill] = ACTIONS(471), + [anon_sym_fork] = ACTIONS(471), [anon_sym_79] = ACTIONS(471), - [anon_sym_try] = ACTIONS(469), + [anon_sym_under] = ACTIONS(471), [anon_sym_80] = ACTIONS(471), - [anon_sym_do] = ACTIONS(469), + [anon_sym_fill] = ACTIONS(471), [anon_sym_81] = ACTIONS(471), + [anon_sym_try] = ACTIONS(469), [anon_sym_82] = ACTIONS(471), + [anon_sym_do] = ACTIONS(469), [anon_sym_83] = ACTIONS(471), + [anon_sym_all] = ACTIONS(471), [anon_sym_84] = ACTIONS(471), + [anon_sym_setinv] = ACTIONS(471), + [anon_sym_setunder] = ACTIONS(471), [anon_sym_85] = ACTIONS(471), [anon_sym_86] = ACTIONS(471), [anon_sym_87] = ACTIONS(471), @@ -36689,6 +37989,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(471), [anon_sym_91] = ACTIONS(471), [anon_sym_92] = ACTIONS(471), + [anon_sym_93] = ACTIONS(471), + [anon_sym_94] = ACTIONS(471), + [anon_sym_95] = ACTIONS(471), + [anon_sym_96] = ACTIONS(471), [sym__endOfLine] = ACTIONS(471), }, [128] = { @@ -36879,35 +38183,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(475), [anon_sym_pack] = ACTIONS(475), [anon_sym_68] = ACTIONS(475), - [anon_sym_reach] = ACTIONS(475), + [anon_sym_rectify] = ACTIONS(475), [anon_sym_69] = ACTIONS(475), - [anon_sym_fold] = ACTIONS(475), + [anon_sym_this] = ACTIONS(475), [anon_sym_70] = ACTIONS(475), - [anon_sym_table] = ACTIONS(475), + [anon_sym_recur] = ACTIONS(475), [anon_sym_71] = ACTIONS(475), - [anon_sym_cross] = ACTIONS(475), + [anon_sym_fold] = ACTIONS(475), [anon_sym_72] = ACTIONS(475), - [anon_sym_group] = ACTIONS(475), + [anon_sym_table] = ACTIONS(475), [anon_sym_73] = ACTIONS(475), - [anon_sym_partition] = ACTIONS(475), + [anon_sym_cross] = ACTIONS(475), [anon_sym_74] = ACTIONS(475), - [anon_sym_both] = ACTIONS(475), + [anon_sym_group] = ACTIONS(475), [anon_sym_75] = ACTIONS(475), - [anon_sym_bracket] = ACTIONS(475), + [anon_sym_partition] = ACTIONS(475), [anon_sym_76] = ACTIONS(475), - [anon_sym_fork] = ACTIONS(475), + [anon_sym_both] = ACTIONS(475), [anon_sym_77] = ACTIONS(475), - [anon_sym_under] = ACTIONS(475), + [anon_sym_bracket] = ACTIONS(475), [anon_sym_78] = ACTIONS(475), - [anon_sym_fill] = ACTIONS(475), + [anon_sym_fork] = ACTIONS(475), [anon_sym_79] = ACTIONS(475), - [anon_sym_try] = ACTIONS(473), + [anon_sym_under] = ACTIONS(475), [anon_sym_80] = ACTIONS(475), - [anon_sym_do] = ACTIONS(473), + [anon_sym_fill] = ACTIONS(475), [anon_sym_81] = ACTIONS(475), + [anon_sym_try] = ACTIONS(473), [anon_sym_82] = ACTIONS(475), + [anon_sym_do] = ACTIONS(473), [anon_sym_83] = ACTIONS(475), + [anon_sym_all] = ACTIONS(475), [anon_sym_84] = ACTIONS(475), + [anon_sym_setinv] = ACTIONS(475), + [anon_sym_setunder] = ACTIONS(475), [anon_sym_85] = ACTIONS(475), [anon_sym_86] = ACTIONS(475), [anon_sym_87] = ACTIONS(475), @@ -36916,6 +38225,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(475), [anon_sym_91] = ACTIONS(475), [anon_sym_92] = ACTIONS(475), + [anon_sym_93] = ACTIONS(475), + [anon_sym_94] = ACTIONS(475), + [anon_sym_95] = ACTIONS(475), + [anon_sym_96] = ACTIONS(475), [sym__endOfLine] = ACTIONS(475), }, [129] = { @@ -37106,35 +38419,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(459), [anon_sym_pack] = ACTIONS(459), [anon_sym_68] = ACTIONS(459), - [anon_sym_reach] = ACTIONS(459), + [anon_sym_rectify] = ACTIONS(459), [anon_sym_69] = ACTIONS(459), - [anon_sym_fold] = ACTIONS(459), + [anon_sym_this] = ACTIONS(459), [anon_sym_70] = ACTIONS(459), - [anon_sym_table] = ACTIONS(459), + [anon_sym_recur] = ACTIONS(459), [anon_sym_71] = ACTIONS(459), - [anon_sym_cross] = ACTIONS(459), + [anon_sym_fold] = ACTIONS(459), [anon_sym_72] = ACTIONS(459), - [anon_sym_group] = ACTIONS(459), + [anon_sym_table] = ACTIONS(459), [anon_sym_73] = ACTIONS(459), - [anon_sym_partition] = ACTIONS(459), + [anon_sym_cross] = ACTIONS(459), [anon_sym_74] = ACTIONS(459), - [anon_sym_both] = ACTIONS(459), + [anon_sym_group] = ACTIONS(459), [anon_sym_75] = ACTIONS(459), - [anon_sym_bracket] = ACTIONS(459), + [anon_sym_partition] = ACTIONS(459), [anon_sym_76] = ACTIONS(459), - [anon_sym_fork] = ACTIONS(459), + [anon_sym_both] = ACTIONS(459), [anon_sym_77] = ACTIONS(459), - [anon_sym_under] = ACTIONS(459), + [anon_sym_bracket] = ACTIONS(459), [anon_sym_78] = ACTIONS(459), - [anon_sym_fill] = ACTIONS(459), + [anon_sym_fork] = ACTIONS(459), [anon_sym_79] = ACTIONS(459), - [anon_sym_try] = ACTIONS(457), + [anon_sym_under] = ACTIONS(459), [anon_sym_80] = ACTIONS(459), - [anon_sym_do] = ACTIONS(457), + [anon_sym_fill] = ACTIONS(459), [anon_sym_81] = ACTIONS(459), + [anon_sym_try] = ACTIONS(457), [anon_sym_82] = ACTIONS(459), + [anon_sym_do] = ACTIONS(457), [anon_sym_83] = ACTIONS(459), + [anon_sym_all] = ACTIONS(459), [anon_sym_84] = ACTIONS(459), + [anon_sym_setinv] = ACTIONS(459), + [anon_sym_setunder] = ACTIONS(459), [anon_sym_85] = ACTIONS(459), [anon_sym_86] = ACTIONS(459), [anon_sym_87] = ACTIONS(459), @@ -37143,6 +38461,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(459), [anon_sym_91] = ACTIONS(459), [anon_sym_92] = ACTIONS(459), + [anon_sym_93] = ACTIONS(459), + [anon_sym_94] = ACTIONS(459), + [anon_sym_95] = ACTIONS(459), + [anon_sym_96] = ACTIONS(459), [sym__endOfLine] = ACTIONS(459), }, [130] = { @@ -37333,35 +38655,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(495), [anon_sym_pack] = ACTIONS(495), [anon_sym_68] = ACTIONS(495), - [anon_sym_reach] = ACTIONS(495), + [anon_sym_rectify] = ACTIONS(495), [anon_sym_69] = ACTIONS(495), - [anon_sym_fold] = ACTIONS(495), + [anon_sym_this] = ACTIONS(495), [anon_sym_70] = ACTIONS(495), - [anon_sym_table] = ACTIONS(495), + [anon_sym_recur] = ACTIONS(495), [anon_sym_71] = ACTIONS(495), - [anon_sym_cross] = ACTIONS(495), + [anon_sym_fold] = ACTIONS(495), [anon_sym_72] = ACTIONS(495), - [anon_sym_group] = ACTIONS(495), + [anon_sym_table] = ACTIONS(495), [anon_sym_73] = ACTIONS(495), - [anon_sym_partition] = ACTIONS(495), + [anon_sym_cross] = ACTIONS(495), [anon_sym_74] = ACTIONS(495), - [anon_sym_both] = ACTIONS(495), + [anon_sym_group] = ACTIONS(495), [anon_sym_75] = ACTIONS(495), - [anon_sym_bracket] = ACTIONS(495), + [anon_sym_partition] = ACTIONS(495), [anon_sym_76] = ACTIONS(495), - [anon_sym_fork] = ACTIONS(495), + [anon_sym_both] = ACTIONS(495), [anon_sym_77] = ACTIONS(495), - [anon_sym_under] = ACTIONS(495), + [anon_sym_bracket] = ACTIONS(495), [anon_sym_78] = ACTIONS(495), - [anon_sym_fill] = ACTIONS(495), + [anon_sym_fork] = ACTIONS(495), [anon_sym_79] = ACTIONS(495), - [anon_sym_try] = ACTIONS(493), + [anon_sym_under] = ACTIONS(495), [anon_sym_80] = ACTIONS(495), - [anon_sym_do] = ACTIONS(493), + [anon_sym_fill] = ACTIONS(495), [anon_sym_81] = ACTIONS(495), + [anon_sym_try] = ACTIONS(493), [anon_sym_82] = ACTIONS(495), + [anon_sym_do] = ACTIONS(493), [anon_sym_83] = ACTIONS(495), + [anon_sym_all] = ACTIONS(495), [anon_sym_84] = ACTIONS(495), + [anon_sym_setinv] = ACTIONS(495), + [anon_sym_setunder] = ACTIONS(495), [anon_sym_85] = ACTIONS(495), [anon_sym_86] = ACTIONS(495), [anon_sym_87] = ACTIONS(495), @@ -37370,6 +38697,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(495), [anon_sym_91] = ACTIONS(495), [anon_sym_92] = ACTIONS(495), + [anon_sym_93] = ACTIONS(495), + [anon_sym_94] = ACTIONS(495), + [anon_sym_95] = ACTIONS(495), + [anon_sym_96] = ACTIONS(495), [sym__endOfLine] = ACTIONS(495), }, [131] = { @@ -37560,35 +38891,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(425), [anon_sym_pack] = ACTIONS(425), [anon_sym_68] = ACTIONS(425), - [anon_sym_reach] = ACTIONS(425), + [anon_sym_rectify] = ACTIONS(425), [anon_sym_69] = ACTIONS(425), - [anon_sym_fold] = ACTIONS(425), + [anon_sym_this] = ACTIONS(425), [anon_sym_70] = ACTIONS(425), - [anon_sym_table] = ACTIONS(425), + [anon_sym_recur] = ACTIONS(425), [anon_sym_71] = ACTIONS(425), - [anon_sym_cross] = ACTIONS(425), + [anon_sym_fold] = ACTIONS(425), [anon_sym_72] = ACTIONS(425), - [anon_sym_group] = ACTIONS(425), + [anon_sym_table] = ACTIONS(425), [anon_sym_73] = ACTIONS(425), - [anon_sym_partition] = ACTIONS(425), + [anon_sym_cross] = ACTIONS(425), [anon_sym_74] = ACTIONS(425), - [anon_sym_both] = ACTIONS(425), + [anon_sym_group] = ACTIONS(425), [anon_sym_75] = ACTIONS(425), - [anon_sym_bracket] = ACTIONS(425), + [anon_sym_partition] = ACTIONS(425), [anon_sym_76] = ACTIONS(425), - [anon_sym_fork] = ACTIONS(425), + [anon_sym_both] = ACTIONS(425), [anon_sym_77] = ACTIONS(425), - [anon_sym_under] = ACTIONS(425), + [anon_sym_bracket] = ACTIONS(425), [anon_sym_78] = ACTIONS(425), - [anon_sym_fill] = ACTIONS(425), + [anon_sym_fork] = ACTIONS(425), [anon_sym_79] = ACTIONS(425), - [anon_sym_try] = ACTIONS(423), + [anon_sym_under] = ACTIONS(425), [anon_sym_80] = ACTIONS(425), - [anon_sym_do] = ACTIONS(423), + [anon_sym_fill] = ACTIONS(425), [anon_sym_81] = ACTIONS(425), + [anon_sym_try] = ACTIONS(423), [anon_sym_82] = ACTIONS(425), + [anon_sym_do] = ACTIONS(423), [anon_sym_83] = ACTIONS(425), + [anon_sym_all] = ACTIONS(425), [anon_sym_84] = ACTIONS(425), + [anon_sym_setinv] = ACTIONS(425), + [anon_sym_setunder] = ACTIONS(425), [anon_sym_85] = ACTIONS(425), [anon_sym_86] = ACTIONS(425), [anon_sym_87] = ACTIONS(425), @@ -37597,6 +38933,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(425), [anon_sym_91] = ACTIONS(425), [anon_sym_92] = ACTIONS(425), + [anon_sym_93] = ACTIONS(425), + [anon_sym_94] = ACTIONS(425), + [anon_sym_95] = ACTIONS(425), + [anon_sym_96] = ACTIONS(425), [sym__endOfLine] = ACTIONS(425), }, [132] = { @@ -37787,35 +39127,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(491), [anon_sym_pack] = ACTIONS(491), [anon_sym_68] = ACTIONS(491), - [anon_sym_reach] = ACTIONS(491), + [anon_sym_rectify] = ACTIONS(491), [anon_sym_69] = ACTIONS(491), - [anon_sym_fold] = ACTIONS(491), + [anon_sym_this] = ACTIONS(491), [anon_sym_70] = ACTIONS(491), - [anon_sym_table] = ACTIONS(491), + [anon_sym_recur] = ACTIONS(491), [anon_sym_71] = ACTIONS(491), - [anon_sym_cross] = ACTIONS(491), + [anon_sym_fold] = ACTIONS(491), [anon_sym_72] = ACTIONS(491), - [anon_sym_group] = ACTIONS(491), + [anon_sym_table] = ACTIONS(491), [anon_sym_73] = ACTIONS(491), - [anon_sym_partition] = ACTIONS(491), + [anon_sym_cross] = ACTIONS(491), [anon_sym_74] = ACTIONS(491), - [anon_sym_both] = ACTIONS(491), + [anon_sym_group] = ACTIONS(491), [anon_sym_75] = ACTIONS(491), - [anon_sym_bracket] = ACTIONS(491), + [anon_sym_partition] = ACTIONS(491), [anon_sym_76] = ACTIONS(491), - [anon_sym_fork] = ACTIONS(491), + [anon_sym_both] = ACTIONS(491), [anon_sym_77] = ACTIONS(491), - [anon_sym_under] = ACTIONS(491), + [anon_sym_bracket] = ACTIONS(491), [anon_sym_78] = ACTIONS(491), - [anon_sym_fill] = ACTIONS(491), + [anon_sym_fork] = ACTIONS(491), [anon_sym_79] = ACTIONS(491), - [anon_sym_try] = ACTIONS(489), + [anon_sym_under] = ACTIONS(491), [anon_sym_80] = ACTIONS(491), - [anon_sym_do] = ACTIONS(489), + [anon_sym_fill] = ACTIONS(491), [anon_sym_81] = ACTIONS(491), + [anon_sym_try] = ACTIONS(489), [anon_sym_82] = ACTIONS(491), + [anon_sym_do] = ACTIONS(489), [anon_sym_83] = ACTIONS(491), + [anon_sym_all] = ACTIONS(491), [anon_sym_84] = ACTIONS(491), + [anon_sym_setinv] = ACTIONS(491), + [anon_sym_setunder] = ACTIONS(491), [anon_sym_85] = ACTIONS(491), [anon_sym_86] = ACTIONS(491), [anon_sym_87] = ACTIONS(491), @@ -37824,6 +39169,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(491), [anon_sym_91] = ACTIONS(491), [anon_sym_92] = ACTIONS(491), + [anon_sym_93] = ACTIONS(491), + [anon_sym_94] = ACTIONS(491), + [anon_sym_95] = ACTIONS(491), + [anon_sym_96] = ACTIONS(491), [sym__endOfLine] = ACTIONS(491), }, [133] = { @@ -38014,35 +39363,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(435), [anon_sym_pack] = ACTIONS(435), [anon_sym_68] = ACTIONS(435), - [anon_sym_reach] = ACTIONS(435), + [anon_sym_rectify] = ACTIONS(435), [anon_sym_69] = ACTIONS(435), - [anon_sym_fold] = ACTIONS(435), + [anon_sym_this] = ACTIONS(435), [anon_sym_70] = ACTIONS(435), - [anon_sym_table] = ACTIONS(435), + [anon_sym_recur] = ACTIONS(435), [anon_sym_71] = ACTIONS(435), - [anon_sym_cross] = ACTIONS(435), + [anon_sym_fold] = ACTIONS(435), [anon_sym_72] = ACTIONS(435), - [anon_sym_group] = ACTIONS(435), + [anon_sym_table] = ACTIONS(435), [anon_sym_73] = ACTIONS(435), - [anon_sym_partition] = ACTIONS(435), + [anon_sym_cross] = ACTIONS(435), [anon_sym_74] = ACTIONS(435), - [anon_sym_both] = ACTIONS(435), + [anon_sym_group] = ACTIONS(435), [anon_sym_75] = ACTIONS(435), - [anon_sym_bracket] = ACTIONS(435), + [anon_sym_partition] = ACTIONS(435), [anon_sym_76] = ACTIONS(435), - [anon_sym_fork] = ACTIONS(435), + [anon_sym_both] = ACTIONS(435), [anon_sym_77] = ACTIONS(435), - [anon_sym_under] = ACTIONS(435), + [anon_sym_bracket] = ACTIONS(435), [anon_sym_78] = ACTIONS(435), - [anon_sym_fill] = ACTIONS(435), + [anon_sym_fork] = ACTIONS(435), [anon_sym_79] = ACTIONS(435), - [anon_sym_try] = ACTIONS(433), + [anon_sym_under] = ACTIONS(435), [anon_sym_80] = ACTIONS(435), - [anon_sym_do] = ACTIONS(433), + [anon_sym_fill] = ACTIONS(435), [anon_sym_81] = ACTIONS(435), + [anon_sym_try] = ACTIONS(433), [anon_sym_82] = ACTIONS(435), + [anon_sym_do] = ACTIONS(433), [anon_sym_83] = ACTIONS(435), + [anon_sym_all] = ACTIONS(435), [anon_sym_84] = ACTIONS(435), + [anon_sym_setinv] = ACTIONS(435), + [anon_sym_setunder] = ACTIONS(435), [anon_sym_85] = ACTIONS(435), [anon_sym_86] = ACTIONS(435), [anon_sym_87] = ACTIONS(435), @@ -38051,6 +39405,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(435), [anon_sym_91] = ACTIONS(435), [anon_sym_92] = ACTIONS(435), + [anon_sym_93] = ACTIONS(435), + [anon_sym_94] = ACTIONS(435), + [anon_sym_95] = ACTIONS(435), + [anon_sym_96] = ACTIONS(435), [sym__endOfLine] = ACTIONS(435), }, [134] = { @@ -38241,35 +39599,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(551), [anon_sym_pack] = ACTIONS(551), [anon_sym_68] = ACTIONS(551), - [anon_sym_reach] = ACTIONS(551), + [anon_sym_rectify] = ACTIONS(551), [anon_sym_69] = ACTIONS(551), - [anon_sym_fold] = ACTIONS(551), + [anon_sym_this] = ACTIONS(551), [anon_sym_70] = ACTIONS(551), - [anon_sym_table] = ACTIONS(551), + [anon_sym_recur] = ACTIONS(551), [anon_sym_71] = ACTIONS(551), - [anon_sym_cross] = ACTIONS(551), + [anon_sym_fold] = ACTIONS(551), [anon_sym_72] = ACTIONS(551), - [anon_sym_group] = ACTIONS(551), + [anon_sym_table] = ACTIONS(551), [anon_sym_73] = ACTIONS(551), - [anon_sym_partition] = ACTIONS(551), + [anon_sym_cross] = ACTIONS(551), [anon_sym_74] = ACTIONS(551), - [anon_sym_both] = ACTIONS(551), + [anon_sym_group] = ACTIONS(551), [anon_sym_75] = ACTIONS(551), - [anon_sym_bracket] = ACTIONS(551), + [anon_sym_partition] = ACTIONS(551), [anon_sym_76] = ACTIONS(551), - [anon_sym_fork] = ACTIONS(551), + [anon_sym_both] = ACTIONS(551), [anon_sym_77] = ACTIONS(551), - [anon_sym_under] = ACTIONS(551), + [anon_sym_bracket] = ACTIONS(551), [anon_sym_78] = ACTIONS(551), - [anon_sym_fill] = ACTIONS(551), + [anon_sym_fork] = ACTIONS(551), [anon_sym_79] = ACTIONS(551), - [anon_sym_try] = ACTIONS(549), + [anon_sym_under] = ACTIONS(551), [anon_sym_80] = ACTIONS(551), - [anon_sym_do] = ACTIONS(549), + [anon_sym_fill] = ACTIONS(551), [anon_sym_81] = ACTIONS(551), + [anon_sym_try] = ACTIONS(549), [anon_sym_82] = ACTIONS(551), + [anon_sym_do] = ACTIONS(549), [anon_sym_83] = ACTIONS(551), + [anon_sym_all] = ACTIONS(551), [anon_sym_84] = ACTIONS(551), + [anon_sym_setinv] = ACTIONS(551), + [anon_sym_setunder] = ACTIONS(551), [anon_sym_85] = ACTIONS(551), [anon_sym_86] = ACTIONS(551), [anon_sym_87] = ACTIONS(551), @@ -38278,6 +39641,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(551), [anon_sym_91] = ACTIONS(551), [anon_sym_92] = ACTIONS(551), + [anon_sym_93] = ACTIONS(551), + [anon_sym_94] = ACTIONS(551), + [anon_sym_95] = ACTIONS(551), + [anon_sym_96] = ACTIONS(551), [sym__endOfLine] = ACTIONS(5), }, [135] = { @@ -38468,35 +39835,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(499), [anon_sym_pack] = ACTIONS(499), [anon_sym_68] = ACTIONS(499), - [anon_sym_reach] = ACTIONS(499), + [anon_sym_rectify] = ACTIONS(499), [anon_sym_69] = ACTIONS(499), - [anon_sym_fold] = ACTIONS(499), + [anon_sym_this] = ACTIONS(499), [anon_sym_70] = ACTIONS(499), - [anon_sym_table] = ACTIONS(499), + [anon_sym_recur] = ACTIONS(499), [anon_sym_71] = ACTIONS(499), - [anon_sym_cross] = ACTIONS(499), + [anon_sym_fold] = ACTIONS(499), [anon_sym_72] = ACTIONS(499), - [anon_sym_group] = ACTIONS(499), + [anon_sym_table] = ACTIONS(499), [anon_sym_73] = ACTIONS(499), - [anon_sym_partition] = ACTIONS(499), + [anon_sym_cross] = ACTIONS(499), [anon_sym_74] = ACTIONS(499), - [anon_sym_both] = ACTIONS(499), + [anon_sym_group] = ACTIONS(499), [anon_sym_75] = ACTIONS(499), - [anon_sym_bracket] = ACTIONS(499), + [anon_sym_partition] = ACTIONS(499), [anon_sym_76] = ACTIONS(499), - [anon_sym_fork] = ACTIONS(499), + [anon_sym_both] = ACTIONS(499), [anon_sym_77] = ACTIONS(499), - [anon_sym_under] = ACTIONS(499), + [anon_sym_bracket] = ACTIONS(499), [anon_sym_78] = ACTIONS(499), - [anon_sym_fill] = ACTIONS(499), + [anon_sym_fork] = ACTIONS(499), [anon_sym_79] = ACTIONS(499), - [anon_sym_try] = ACTIONS(497), + [anon_sym_under] = ACTIONS(499), [anon_sym_80] = ACTIONS(499), - [anon_sym_do] = ACTIONS(497), + [anon_sym_fill] = ACTIONS(499), [anon_sym_81] = ACTIONS(499), + [anon_sym_try] = ACTIONS(497), [anon_sym_82] = ACTIONS(499), + [anon_sym_do] = ACTIONS(497), [anon_sym_83] = ACTIONS(499), + [anon_sym_all] = ACTIONS(499), [anon_sym_84] = ACTIONS(499), + [anon_sym_setinv] = ACTIONS(499), + [anon_sym_setunder] = ACTIONS(499), [anon_sym_85] = ACTIONS(499), [anon_sym_86] = ACTIONS(499), [anon_sym_87] = ACTIONS(499), @@ -38505,6 +39877,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(499), [anon_sym_91] = ACTIONS(499), [anon_sym_92] = ACTIONS(499), + [anon_sym_93] = ACTIONS(499), + [anon_sym_94] = ACTIONS(499), + [anon_sym_95] = ACTIONS(499), + [anon_sym_96] = ACTIONS(499), [sym__endOfLine] = ACTIONS(499), }, [136] = { @@ -38695,35 +40071,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(487), [anon_sym_pack] = ACTIONS(487), [anon_sym_68] = ACTIONS(487), - [anon_sym_reach] = ACTIONS(487), + [anon_sym_rectify] = ACTIONS(487), [anon_sym_69] = ACTIONS(487), - [anon_sym_fold] = ACTIONS(487), + [anon_sym_this] = ACTIONS(487), [anon_sym_70] = ACTIONS(487), - [anon_sym_table] = ACTIONS(487), + [anon_sym_recur] = ACTIONS(487), [anon_sym_71] = ACTIONS(487), - [anon_sym_cross] = ACTIONS(487), + [anon_sym_fold] = ACTIONS(487), [anon_sym_72] = ACTIONS(487), - [anon_sym_group] = ACTIONS(487), + [anon_sym_table] = ACTIONS(487), [anon_sym_73] = ACTIONS(487), - [anon_sym_partition] = ACTIONS(487), + [anon_sym_cross] = ACTIONS(487), [anon_sym_74] = ACTIONS(487), - [anon_sym_both] = ACTIONS(487), + [anon_sym_group] = ACTIONS(487), [anon_sym_75] = ACTIONS(487), - [anon_sym_bracket] = ACTIONS(487), + [anon_sym_partition] = ACTIONS(487), [anon_sym_76] = ACTIONS(487), - [anon_sym_fork] = ACTIONS(487), + [anon_sym_both] = ACTIONS(487), [anon_sym_77] = ACTIONS(487), - [anon_sym_under] = ACTIONS(487), + [anon_sym_bracket] = ACTIONS(487), [anon_sym_78] = ACTIONS(487), - [anon_sym_fill] = ACTIONS(487), + [anon_sym_fork] = ACTIONS(487), [anon_sym_79] = ACTIONS(487), - [anon_sym_try] = ACTIONS(485), + [anon_sym_under] = ACTIONS(487), [anon_sym_80] = ACTIONS(487), - [anon_sym_do] = ACTIONS(485), + [anon_sym_fill] = ACTIONS(487), [anon_sym_81] = ACTIONS(487), + [anon_sym_try] = ACTIONS(485), [anon_sym_82] = ACTIONS(487), + [anon_sym_do] = ACTIONS(485), [anon_sym_83] = ACTIONS(487), + [anon_sym_all] = ACTIONS(487), [anon_sym_84] = ACTIONS(487), + [anon_sym_setinv] = ACTIONS(487), + [anon_sym_setunder] = ACTIONS(487), [anon_sym_85] = ACTIONS(487), [anon_sym_86] = ACTIONS(487), [anon_sym_87] = ACTIONS(487), @@ -38732,6 +40113,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(487), [anon_sym_91] = ACTIONS(487), [anon_sym_92] = ACTIONS(487), + [anon_sym_93] = ACTIONS(487), + [anon_sym_94] = ACTIONS(487), + [anon_sym_95] = ACTIONS(487), + [anon_sym_96] = ACTIONS(487), [sym__endOfLine] = ACTIONS(487), }, [137] = { @@ -38922,35 +40307,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(447), [anon_sym_pack] = ACTIONS(447), [anon_sym_68] = ACTIONS(447), - [anon_sym_reach] = ACTIONS(447), + [anon_sym_rectify] = ACTIONS(447), [anon_sym_69] = ACTIONS(447), - [anon_sym_fold] = ACTIONS(447), + [anon_sym_this] = ACTIONS(447), [anon_sym_70] = ACTIONS(447), - [anon_sym_table] = ACTIONS(447), + [anon_sym_recur] = ACTIONS(447), [anon_sym_71] = ACTIONS(447), - [anon_sym_cross] = ACTIONS(447), + [anon_sym_fold] = ACTIONS(447), [anon_sym_72] = ACTIONS(447), - [anon_sym_group] = ACTIONS(447), + [anon_sym_table] = ACTIONS(447), [anon_sym_73] = ACTIONS(447), - [anon_sym_partition] = ACTIONS(447), + [anon_sym_cross] = ACTIONS(447), [anon_sym_74] = ACTIONS(447), - [anon_sym_both] = ACTIONS(447), + [anon_sym_group] = ACTIONS(447), [anon_sym_75] = ACTIONS(447), - [anon_sym_bracket] = ACTIONS(447), + [anon_sym_partition] = ACTIONS(447), [anon_sym_76] = ACTIONS(447), - [anon_sym_fork] = ACTIONS(447), + [anon_sym_both] = ACTIONS(447), [anon_sym_77] = ACTIONS(447), - [anon_sym_under] = ACTIONS(447), + [anon_sym_bracket] = ACTIONS(447), [anon_sym_78] = ACTIONS(447), - [anon_sym_fill] = ACTIONS(447), + [anon_sym_fork] = ACTIONS(447), [anon_sym_79] = ACTIONS(447), - [anon_sym_try] = ACTIONS(445), + [anon_sym_under] = ACTIONS(447), [anon_sym_80] = ACTIONS(447), - [anon_sym_do] = ACTIONS(445), + [anon_sym_fill] = ACTIONS(447), [anon_sym_81] = ACTIONS(447), + [anon_sym_try] = ACTIONS(445), [anon_sym_82] = ACTIONS(447), + [anon_sym_do] = ACTIONS(445), [anon_sym_83] = ACTIONS(447), + [anon_sym_all] = ACTIONS(447), [anon_sym_84] = ACTIONS(447), + [anon_sym_setinv] = ACTIONS(447), + [anon_sym_setunder] = ACTIONS(447), [anon_sym_85] = ACTIONS(447), [anon_sym_86] = ACTIONS(447), [anon_sym_87] = ACTIONS(447), @@ -38959,6 +40349,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(447), [anon_sym_91] = ACTIONS(447), [anon_sym_92] = ACTIONS(447), + [anon_sym_93] = ACTIONS(447), + [anon_sym_94] = ACTIONS(447), + [anon_sym_95] = ACTIONS(447), + [anon_sym_96] = ACTIONS(447), [sym__endOfLine] = ACTIONS(447), }, [138] = { @@ -39149,35 +40543,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(559), [anon_sym_pack] = ACTIONS(559), [anon_sym_68] = ACTIONS(559), - [anon_sym_reach] = ACTIONS(559), + [anon_sym_rectify] = ACTIONS(559), [anon_sym_69] = ACTIONS(559), - [anon_sym_fold] = ACTIONS(559), + [anon_sym_this] = ACTIONS(559), [anon_sym_70] = ACTIONS(559), - [anon_sym_table] = ACTIONS(559), + [anon_sym_recur] = ACTIONS(559), [anon_sym_71] = ACTIONS(559), - [anon_sym_cross] = ACTIONS(559), + [anon_sym_fold] = ACTIONS(559), [anon_sym_72] = ACTIONS(559), - [anon_sym_group] = ACTIONS(559), + [anon_sym_table] = ACTIONS(559), [anon_sym_73] = ACTIONS(559), - [anon_sym_partition] = ACTIONS(559), + [anon_sym_cross] = ACTIONS(559), [anon_sym_74] = ACTIONS(559), - [anon_sym_both] = ACTIONS(559), + [anon_sym_group] = ACTIONS(559), [anon_sym_75] = ACTIONS(559), - [anon_sym_bracket] = ACTIONS(559), + [anon_sym_partition] = ACTIONS(559), [anon_sym_76] = ACTIONS(559), - [anon_sym_fork] = ACTIONS(559), + [anon_sym_both] = ACTIONS(559), [anon_sym_77] = ACTIONS(559), - [anon_sym_under] = ACTIONS(559), + [anon_sym_bracket] = ACTIONS(559), [anon_sym_78] = ACTIONS(559), - [anon_sym_fill] = ACTIONS(559), + [anon_sym_fork] = ACTIONS(559), [anon_sym_79] = ACTIONS(559), - [anon_sym_try] = ACTIONS(557), + [anon_sym_under] = ACTIONS(559), [anon_sym_80] = ACTIONS(559), - [anon_sym_do] = ACTIONS(557), + [anon_sym_fill] = ACTIONS(559), [anon_sym_81] = ACTIONS(559), + [anon_sym_try] = ACTIONS(557), [anon_sym_82] = ACTIONS(559), + [anon_sym_do] = ACTIONS(557), [anon_sym_83] = ACTIONS(559), + [anon_sym_all] = ACTIONS(559), [anon_sym_84] = ACTIONS(559), + [anon_sym_setinv] = ACTIONS(559), + [anon_sym_setunder] = ACTIONS(559), [anon_sym_85] = ACTIONS(559), [anon_sym_86] = ACTIONS(559), [anon_sym_87] = ACTIONS(559), @@ -39186,6 +40585,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(559), [anon_sym_91] = ACTIONS(559), [anon_sym_92] = ACTIONS(559), + [anon_sym_93] = ACTIONS(559), + [anon_sym_94] = ACTIONS(559), + [anon_sym_95] = ACTIONS(559), + [anon_sym_96] = ACTIONS(559), [sym__endOfLine] = ACTIONS(561), }, [139] = { @@ -39376,35 +40779,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(479), [anon_sym_pack] = ACTIONS(479), [anon_sym_68] = ACTIONS(479), - [anon_sym_reach] = ACTIONS(479), + [anon_sym_rectify] = ACTIONS(479), [anon_sym_69] = ACTIONS(479), - [anon_sym_fold] = ACTIONS(479), + [anon_sym_this] = ACTIONS(479), [anon_sym_70] = ACTIONS(479), - [anon_sym_table] = ACTIONS(479), + [anon_sym_recur] = ACTIONS(479), [anon_sym_71] = ACTIONS(479), - [anon_sym_cross] = ACTIONS(479), + [anon_sym_fold] = ACTIONS(479), [anon_sym_72] = ACTIONS(479), - [anon_sym_group] = ACTIONS(479), + [anon_sym_table] = ACTIONS(479), [anon_sym_73] = ACTIONS(479), - [anon_sym_partition] = ACTIONS(479), + [anon_sym_cross] = ACTIONS(479), [anon_sym_74] = ACTIONS(479), - [anon_sym_both] = ACTIONS(479), + [anon_sym_group] = ACTIONS(479), [anon_sym_75] = ACTIONS(479), - [anon_sym_bracket] = ACTIONS(479), + [anon_sym_partition] = ACTIONS(479), [anon_sym_76] = ACTIONS(479), - [anon_sym_fork] = ACTIONS(479), + [anon_sym_both] = ACTIONS(479), [anon_sym_77] = ACTIONS(479), - [anon_sym_under] = ACTIONS(479), + [anon_sym_bracket] = ACTIONS(479), [anon_sym_78] = ACTIONS(479), - [anon_sym_fill] = ACTIONS(479), + [anon_sym_fork] = ACTIONS(479), [anon_sym_79] = ACTIONS(479), - [anon_sym_try] = ACTIONS(477), + [anon_sym_under] = ACTIONS(479), [anon_sym_80] = ACTIONS(479), - [anon_sym_do] = ACTIONS(477), + [anon_sym_fill] = ACTIONS(479), [anon_sym_81] = ACTIONS(479), + [anon_sym_try] = ACTIONS(477), [anon_sym_82] = ACTIONS(479), + [anon_sym_do] = ACTIONS(477), [anon_sym_83] = ACTIONS(479), + [anon_sym_all] = ACTIONS(479), [anon_sym_84] = ACTIONS(479), + [anon_sym_setinv] = ACTIONS(479), + [anon_sym_setunder] = ACTIONS(479), [anon_sym_85] = ACTIONS(479), [anon_sym_86] = ACTIONS(479), [anon_sym_87] = ACTIONS(479), @@ -39413,6 +40821,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(479), [anon_sym_91] = ACTIONS(479), [anon_sym_92] = ACTIONS(479), + [anon_sym_93] = ACTIONS(479), + [anon_sym_94] = ACTIONS(479), + [anon_sym_95] = ACTIONS(479), + [anon_sym_96] = ACTIONS(479), [sym__endOfLine] = ACTIONS(479), }, [140] = { @@ -39603,35 +41015,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(503), [anon_sym_pack] = ACTIONS(503), [anon_sym_68] = ACTIONS(503), - [anon_sym_reach] = ACTIONS(503), + [anon_sym_rectify] = ACTIONS(503), [anon_sym_69] = ACTIONS(503), - [anon_sym_fold] = ACTIONS(503), + [anon_sym_this] = ACTIONS(503), [anon_sym_70] = ACTIONS(503), - [anon_sym_table] = ACTIONS(503), + [anon_sym_recur] = ACTIONS(503), [anon_sym_71] = ACTIONS(503), - [anon_sym_cross] = ACTIONS(503), + [anon_sym_fold] = ACTIONS(503), [anon_sym_72] = ACTIONS(503), - [anon_sym_group] = ACTIONS(503), + [anon_sym_table] = ACTIONS(503), [anon_sym_73] = ACTIONS(503), - [anon_sym_partition] = ACTIONS(503), + [anon_sym_cross] = ACTIONS(503), [anon_sym_74] = ACTIONS(503), - [anon_sym_both] = ACTIONS(503), + [anon_sym_group] = ACTIONS(503), [anon_sym_75] = ACTIONS(503), - [anon_sym_bracket] = ACTIONS(503), + [anon_sym_partition] = ACTIONS(503), [anon_sym_76] = ACTIONS(503), - [anon_sym_fork] = ACTIONS(503), + [anon_sym_both] = ACTIONS(503), [anon_sym_77] = ACTIONS(503), - [anon_sym_under] = ACTIONS(503), + [anon_sym_bracket] = ACTIONS(503), [anon_sym_78] = ACTIONS(503), - [anon_sym_fill] = ACTIONS(503), + [anon_sym_fork] = ACTIONS(503), [anon_sym_79] = ACTIONS(503), - [anon_sym_try] = ACTIONS(501), + [anon_sym_under] = ACTIONS(503), [anon_sym_80] = ACTIONS(503), - [anon_sym_do] = ACTIONS(501), + [anon_sym_fill] = ACTIONS(503), [anon_sym_81] = ACTIONS(503), + [anon_sym_try] = ACTIONS(501), [anon_sym_82] = ACTIONS(503), + [anon_sym_do] = ACTIONS(501), [anon_sym_83] = ACTIONS(503), + [anon_sym_all] = ACTIONS(503), [anon_sym_84] = ACTIONS(503), + [anon_sym_setinv] = ACTIONS(503), + [anon_sym_setunder] = ACTIONS(503), [anon_sym_85] = ACTIONS(503), [anon_sym_86] = ACTIONS(503), [anon_sym_87] = ACTIONS(503), @@ -39640,6 +41057,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(503), [anon_sym_91] = ACTIONS(503), [anon_sym_92] = ACTIONS(503), + [anon_sym_93] = ACTIONS(503), + [anon_sym_94] = ACTIONS(503), + [anon_sym_95] = ACTIONS(503), + [anon_sym_96] = ACTIONS(503), [sym__endOfLine] = ACTIONS(503), }, [141] = { @@ -39829,35 +41250,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(565), [anon_sym_pack] = ACTIONS(565), [anon_sym_68] = ACTIONS(565), - [anon_sym_reach] = ACTIONS(565), + [anon_sym_rectify] = ACTIONS(565), [anon_sym_69] = ACTIONS(565), - [anon_sym_fold] = ACTIONS(565), + [anon_sym_this] = ACTIONS(565), [anon_sym_70] = ACTIONS(565), - [anon_sym_table] = ACTIONS(565), + [anon_sym_recur] = ACTIONS(565), [anon_sym_71] = ACTIONS(565), - [anon_sym_cross] = ACTIONS(565), + [anon_sym_fold] = ACTIONS(565), [anon_sym_72] = ACTIONS(565), - [anon_sym_group] = ACTIONS(565), + [anon_sym_table] = ACTIONS(565), [anon_sym_73] = ACTIONS(565), - [anon_sym_partition] = ACTIONS(565), + [anon_sym_cross] = ACTIONS(565), [anon_sym_74] = ACTIONS(565), - [anon_sym_both] = ACTIONS(565), + [anon_sym_group] = ACTIONS(565), [anon_sym_75] = ACTIONS(565), - [anon_sym_bracket] = ACTIONS(565), + [anon_sym_partition] = ACTIONS(565), [anon_sym_76] = ACTIONS(565), - [anon_sym_fork] = ACTIONS(565), + [anon_sym_both] = ACTIONS(565), [anon_sym_77] = ACTIONS(565), - [anon_sym_under] = ACTIONS(565), + [anon_sym_bracket] = ACTIONS(565), [anon_sym_78] = ACTIONS(565), - [anon_sym_fill] = ACTIONS(565), + [anon_sym_fork] = ACTIONS(565), [anon_sym_79] = ACTIONS(565), - [anon_sym_try] = ACTIONS(563), + [anon_sym_under] = ACTIONS(565), [anon_sym_80] = ACTIONS(565), - [anon_sym_do] = ACTIONS(563), + [anon_sym_fill] = ACTIONS(565), [anon_sym_81] = ACTIONS(565), + [anon_sym_try] = ACTIONS(563), [anon_sym_82] = ACTIONS(565), + [anon_sym_do] = ACTIONS(563), [anon_sym_83] = ACTIONS(565), + [anon_sym_all] = ACTIONS(565), [anon_sym_84] = ACTIONS(565), + [anon_sym_setinv] = ACTIONS(565), + [anon_sym_setunder] = ACTIONS(565), [anon_sym_85] = ACTIONS(565), [anon_sym_86] = ACTIONS(565), [anon_sym_87] = ACTIONS(565), @@ -39866,6 +41292,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(565), [anon_sym_91] = ACTIONS(565), [anon_sym_92] = ACTIONS(565), + [anon_sym_93] = ACTIONS(565), + [anon_sym_94] = ACTIONS(565), + [anon_sym_95] = ACTIONS(565), + [anon_sym_96] = ACTIONS(565), [sym__endOfLine] = ACTIONS(5), }, [142] = { @@ -40055,35 +41485,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(571), [anon_sym_pack] = ACTIONS(571), [anon_sym_68] = ACTIONS(571), - [anon_sym_reach] = ACTIONS(571), + [anon_sym_rectify] = ACTIONS(571), [anon_sym_69] = ACTIONS(571), - [anon_sym_fold] = ACTIONS(571), + [anon_sym_this] = ACTIONS(571), [anon_sym_70] = ACTIONS(571), - [anon_sym_table] = ACTIONS(571), + [anon_sym_recur] = ACTIONS(571), [anon_sym_71] = ACTIONS(571), - [anon_sym_cross] = ACTIONS(571), + [anon_sym_fold] = ACTIONS(571), [anon_sym_72] = ACTIONS(571), - [anon_sym_group] = ACTIONS(571), + [anon_sym_table] = ACTIONS(571), [anon_sym_73] = ACTIONS(571), - [anon_sym_partition] = ACTIONS(571), + [anon_sym_cross] = ACTIONS(571), [anon_sym_74] = ACTIONS(571), - [anon_sym_both] = ACTIONS(571), + [anon_sym_group] = ACTIONS(571), [anon_sym_75] = ACTIONS(571), - [anon_sym_bracket] = ACTIONS(571), + [anon_sym_partition] = ACTIONS(571), [anon_sym_76] = ACTIONS(571), - [anon_sym_fork] = ACTIONS(571), + [anon_sym_both] = ACTIONS(571), [anon_sym_77] = ACTIONS(571), - [anon_sym_under] = ACTIONS(571), + [anon_sym_bracket] = ACTIONS(571), [anon_sym_78] = ACTIONS(571), - [anon_sym_fill] = ACTIONS(571), + [anon_sym_fork] = ACTIONS(571), [anon_sym_79] = ACTIONS(571), - [anon_sym_try] = ACTIONS(569), + [anon_sym_under] = ACTIONS(571), [anon_sym_80] = ACTIONS(571), - [anon_sym_do] = ACTIONS(569), + [anon_sym_fill] = ACTIONS(571), [anon_sym_81] = ACTIONS(571), + [anon_sym_try] = ACTIONS(569), [anon_sym_82] = ACTIONS(571), + [anon_sym_do] = ACTIONS(569), [anon_sym_83] = ACTIONS(571), + [anon_sym_all] = ACTIONS(571), [anon_sym_84] = ACTIONS(571), + [anon_sym_setinv] = ACTIONS(571), + [anon_sym_setunder] = ACTIONS(571), [anon_sym_85] = ACTIONS(571), [anon_sym_86] = ACTIONS(571), [anon_sym_87] = ACTIONS(571), @@ -40092,6 +41527,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(571), [anon_sym_91] = ACTIONS(571), [anon_sym_92] = ACTIONS(571), + [anon_sym_93] = ACTIONS(571), + [anon_sym_94] = ACTIONS(571), + [anon_sym_95] = ACTIONS(571), + [anon_sym_96] = ACTIONS(571), [sym__endOfLine] = ACTIONS(5), }, [143] = { @@ -40281,35 +41720,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(565), [anon_sym_pack] = ACTIONS(565), [anon_sym_68] = ACTIONS(565), - [anon_sym_reach] = ACTIONS(565), + [anon_sym_rectify] = ACTIONS(565), [anon_sym_69] = ACTIONS(565), - [anon_sym_fold] = ACTIONS(565), + [anon_sym_this] = ACTIONS(565), [anon_sym_70] = ACTIONS(565), - [anon_sym_table] = ACTIONS(565), + [anon_sym_recur] = ACTIONS(565), [anon_sym_71] = ACTIONS(565), - [anon_sym_cross] = ACTIONS(565), + [anon_sym_fold] = ACTIONS(565), [anon_sym_72] = ACTIONS(565), - [anon_sym_group] = ACTIONS(565), + [anon_sym_table] = ACTIONS(565), [anon_sym_73] = ACTIONS(565), - [anon_sym_partition] = ACTIONS(565), + [anon_sym_cross] = ACTIONS(565), [anon_sym_74] = ACTIONS(565), - [anon_sym_both] = ACTIONS(565), + [anon_sym_group] = ACTIONS(565), [anon_sym_75] = ACTIONS(565), - [anon_sym_bracket] = ACTIONS(565), + [anon_sym_partition] = ACTIONS(565), [anon_sym_76] = ACTIONS(565), - [anon_sym_fork] = ACTIONS(565), + [anon_sym_both] = ACTIONS(565), [anon_sym_77] = ACTIONS(565), - [anon_sym_under] = ACTIONS(565), + [anon_sym_bracket] = ACTIONS(565), [anon_sym_78] = ACTIONS(565), - [anon_sym_fill] = ACTIONS(565), + [anon_sym_fork] = ACTIONS(565), [anon_sym_79] = ACTIONS(565), - [anon_sym_try] = ACTIONS(563), + [anon_sym_under] = ACTIONS(565), [anon_sym_80] = ACTIONS(565), - [anon_sym_do] = ACTIONS(563), + [anon_sym_fill] = ACTIONS(565), [anon_sym_81] = ACTIONS(565), + [anon_sym_try] = ACTIONS(563), [anon_sym_82] = ACTIONS(565), + [anon_sym_do] = ACTIONS(563), [anon_sym_83] = ACTIONS(565), + [anon_sym_all] = ACTIONS(565), [anon_sym_84] = ACTIONS(565), + [anon_sym_setinv] = ACTIONS(565), + [anon_sym_setunder] = ACTIONS(565), [anon_sym_85] = ACTIONS(565), [anon_sym_86] = ACTIONS(565), [anon_sym_87] = ACTIONS(565), @@ -40318,6 +41762,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(565), [anon_sym_91] = ACTIONS(565), [anon_sym_92] = ACTIONS(565), + [anon_sym_93] = ACTIONS(565), + [anon_sym_94] = ACTIONS(565), + [anon_sym_95] = ACTIONS(565), + [anon_sym_96] = ACTIONS(565), [sym__endOfLine] = ACTIONS(5), }, [144] = { @@ -40507,35 +41955,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(565), [anon_sym_pack] = ACTIONS(565), [anon_sym_68] = ACTIONS(565), - [anon_sym_reach] = ACTIONS(565), + [anon_sym_rectify] = ACTIONS(565), [anon_sym_69] = ACTIONS(565), - [anon_sym_fold] = ACTIONS(565), + [anon_sym_this] = ACTIONS(565), [anon_sym_70] = ACTIONS(565), - [anon_sym_table] = ACTIONS(565), + [anon_sym_recur] = ACTIONS(565), [anon_sym_71] = ACTIONS(565), - [anon_sym_cross] = ACTIONS(565), + [anon_sym_fold] = ACTIONS(565), [anon_sym_72] = ACTIONS(565), - [anon_sym_group] = ACTIONS(565), + [anon_sym_table] = ACTIONS(565), [anon_sym_73] = ACTIONS(565), - [anon_sym_partition] = ACTIONS(565), + [anon_sym_cross] = ACTIONS(565), [anon_sym_74] = ACTIONS(565), - [anon_sym_both] = ACTIONS(565), + [anon_sym_group] = ACTIONS(565), [anon_sym_75] = ACTIONS(565), - [anon_sym_bracket] = ACTIONS(565), + [anon_sym_partition] = ACTIONS(565), [anon_sym_76] = ACTIONS(565), - [anon_sym_fork] = ACTIONS(565), + [anon_sym_both] = ACTIONS(565), [anon_sym_77] = ACTIONS(565), - [anon_sym_under] = ACTIONS(565), + [anon_sym_bracket] = ACTIONS(565), [anon_sym_78] = ACTIONS(565), - [anon_sym_fill] = ACTIONS(565), + [anon_sym_fork] = ACTIONS(565), [anon_sym_79] = ACTIONS(565), - [anon_sym_try] = ACTIONS(563), + [anon_sym_under] = ACTIONS(565), [anon_sym_80] = ACTIONS(565), - [anon_sym_do] = ACTIONS(563), + [anon_sym_fill] = ACTIONS(565), [anon_sym_81] = ACTIONS(565), + [anon_sym_try] = ACTIONS(563), [anon_sym_82] = ACTIONS(565), + [anon_sym_do] = ACTIONS(563), [anon_sym_83] = ACTIONS(565), + [anon_sym_all] = ACTIONS(565), [anon_sym_84] = ACTIONS(565), + [anon_sym_setinv] = ACTIONS(565), + [anon_sym_setunder] = ACTIONS(565), [anon_sym_85] = ACTIONS(565), [anon_sym_86] = ACTIONS(565), [anon_sym_87] = ACTIONS(565), @@ -40544,6 +41997,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(565), [anon_sym_91] = ACTIONS(565), [anon_sym_92] = ACTIONS(565), + [anon_sym_93] = ACTIONS(565), + [anon_sym_94] = ACTIONS(565), + [anon_sym_95] = ACTIONS(565), + [anon_sym_96] = ACTIONS(565), [sym__endOfLine] = ACTIONS(5), }, [145] = { @@ -40733,35 +42190,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(565), [anon_sym_pack] = ACTIONS(565), [anon_sym_68] = ACTIONS(565), - [anon_sym_reach] = ACTIONS(565), + [anon_sym_rectify] = ACTIONS(565), [anon_sym_69] = ACTIONS(565), - [anon_sym_fold] = ACTIONS(565), + [anon_sym_this] = ACTIONS(565), [anon_sym_70] = ACTIONS(565), - [anon_sym_table] = ACTIONS(565), + [anon_sym_recur] = ACTIONS(565), [anon_sym_71] = ACTIONS(565), - [anon_sym_cross] = ACTIONS(565), + [anon_sym_fold] = ACTIONS(565), [anon_sym_72] = ACTIONS(565), - [anon_sym_group] = ACTIONS(565), + [anon_sym_table] = ACTIONS(565), [anon_sym_73] = ACTIONS(565), - [anon_sym_partition] = ACTIONS(565), + [anon_sym_cross] = ACTIONS(565), [anon_sym_74] = ACTIONS(565), - [anon_sym_both] = ACTIONS(565), + [anon_sym_group] = ACTIONS(565), [anon_sym_75] = ACTIONS(565), - [anon_sym_bracket] = ACTIONS(565), + [anon_sym_partition] = ACTIONS(565), [anon_sym_76] = ACTIONS(565), - [anon_sym_fork] = ACTIONS(565), + [anon_sym_both] = ACTIONS(565), [anon_sym_77] = ACTIONS(565), - [anon_sym_under] = ACTIONS(565), + [anon_sym_bracket] = ACTIONS(565), [anon_sym_78] = ACTIONS(565), - [anon_sym_fill] = ACTIONS(565), + [anon_sym_fork] = ACTIONS(565), [anon_sym_79] = ACTIONS(565), - [anon_sym_try] = ACTIONS(563), + [anon_sym_under] = ACTIONS(565), [anon_sym_80] = ACTIONS(565), - [anon_sym_do] = ACTIONS(563), + [anon_sym_fill] = ACTIONS(565), [anon_sym_81] = ACTIONS(565), + [anon_sym_try] = ACTIONS(563), [anon_sym_82] = ACTIONS(565), + [anon_sym_do] = ACTIONS(563), [anon_sym_83] = ACTIONS(565), + [anon_sym_all] = ACTIONS(565), [anon_sym_84] = ACTIONS(565), + [anon_sym_setinv] = ACTIONS(565), + [anon_sym_setunder] = ACTIONS(565), [anon_sym_85] = ACTIONS(565), [anon_sym_86] = ACTIONS(565), [anon_sym_87] = ACTIONS(565), @@ -40770,6 +42232,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(565), [anon_sym_91] = ACTIONS(565), [anon_sym_92] = ACTIONS(565), + [anon_sym_93] = ACTIONS(565), + [anon_sym_94] = ACTIONS(565), + [anon_sym_95] = ACTIONS(565), + [anon_sym_96] = ACTIONS(565), [sym__endOfLine] = ACTIONS(5), }, [146] = { @@ -40959,35 +42425,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(565), [anon_sym_pack] = ACTIONS(565), [anon_sym_68] = ACTIONS(565), - [anon_sym_reach] = ACTIONS(565), + [anon_sym_rectify] = ACTIONS(565), [anon_sym_69] = ACTIONS(565), - [anon_sym_fold] = ACTIONS(565), + [anon_sym_this] = ACTIONS(565), [anon_sym_70] = ACTIONS(565), - [anon_sym_table] = ACTIONS(565), + [anon_sym_recur] = ACTIONS(565), [anon_sym_71] = ACTIONS(565), - [anon_sym_cross] = ACTIONS(565), + [anon_sym_fold] = ACTIONS(565), [anon_sym_72] = ACTIONS(565), - [anon_sym_group] = ACTIONS(565), + [anon_sym_table] = ACTIONS(565), [anon_sym_73] = ACTIONS(565), - [anon_sym_partition] = ACTIONS(565), + [anon_sym_cross] = ACTIONS(565), [anon_sym_74] = ACTIONS(565), - [anon_sym_both] = ACTIONS(565), + [anon_sym_group] = ACTIONS(565), [anon_sym_75] = ACTIONS(565), - [anon_sym_bracket] = ACTIONS(565), + [anon_sym_partition] = ACTIONS(565), [anon_sym_76] = ACTIONS(565), - [anon_sym_fork] = ACTIONS(565), + [anon_sym_both] = ACTIONS(565), [anon_sym_77] = ACTIONS(565), - [anon_sym_under] = ACTIONS(565), + [anon_sym_bracket] = ACTIONS(565), [anon_sym_78] = ACTIONS(565), - [anon_sym_fill] = ACTIONS(565), + [anon_sym_fork] = ACTIONS(565), [anon_sym_79] = ACTIONS(565), - [anon_sym_try] = ACTIONS(563), + [anon_sym_under] = ACTIONS(565), [anon_sym_80] = ACTIONS(565), - [anon_sym_do] = ACTIONS(563), + [anon_sym_fill] = ACTIONS(565), [anon_sym_81] = ACTIONS(565), + [anon_sym_try] = ACTIONS(563), [anon_sym_82] = ACTIONS(565), + [anon_sym_do] = ACTIONS(563), [anon_sym_83] = ACTIONS(565), + [anon_sym_all] = ACTIONS(565), [anon_sym_84] = ACTIONS(565), + [anon_sym_setinv] = ACTIONS(565), + [anon_sym_setunder] = ACTIONS(565), [anon_sym_85] = ACTIONS(565), [anon_sym_86] = ACTIONS(565), [anon_sym_87] = ACTIONS(565), @@ -40996,6 +42467,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(565), [anon_sym_91] = ACTIONS(565), [anon_sym_92] = ACTIONS(565), + [anon_sym_93] = ACTIONS(565), + [anon_sym_94] = ACTIONS(565), + [anon_sym_95] = ACTIONS(565), + [anon_sym_96] = ACTIONS(565), [sym__endOfLine] = ACTIONS(5), }, [147] = { @@ -41185,35 +42660,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(565), [anon_sym_pack] = ACTIONS(565), [anon_sym_68] = ACTIONS(565), - [anon_sym_reach] = ACTIONS(565), + [anon_sym_rectify] = ACTIONS(565), [anon_sym_69] = ACTIONS(565), - [anon_sym_fold] = ACTIONS(565), + [anon_sym_this] = ACTIONS(565), [anon_sym_70] = ACTIONS(565), - [anon_sym_table] = ACTIONS(565), + [anon_sym_recur] = ACTIONS(565), [anon_sym_71] = ACTIONS(565), - [anon_sym_cross] = ACTIONS(565), + [anon_sym_fold] = ACTIONS(565), [anon_sym_72] = ACTIONS(565), - [anon_sym_group] = ACTIONS(565), + [anon_sym_table] = ACTIONS(565), [anon_sym_73] = ACTIONS(565), - [anon_sym_partition] = ACTIONS(565), + [anon_sym_cross] = ACTIONS(565), [anon_sym_74] = ACTIONS(565), - [anon_sym_both] = ACTIONS(565), + [anon_sym_group] = ACTIONS(565), [anon_sym_75] = ACTIONS(565), - [anon_sym_bracket] = ACTIONS(565), + [anon_sym_partition] = ACTIONS(565), [anon_sym_76] = ACTIONS(565), - [anon_sym_fork] = ACTIONS(565), + [anon_sym_both] = ACTIONS(565), [anon_sym_77] = ACTIONS(565), - [anon_sym_under] = ACTIONS(565), + [anon_sym_bracket] = ACTIONS(565), [anon_sym_78] = ACTIONS(565), - [anon_sym_fill] = ACTIONS(565), + [anon_sym_fork] = ACTIONS(565), [anon_sym_79] = ACTIONS(565), - [anon_sym_try] = ACTIONS(563), + [anon_sym_under] = ACTIONS(565), [anon_sym_80] = ACTIONS(565), - [anon_sym_do] = ACTIONS(563), + [anon_sym_fill] = ACTIONS(565), [anon_sym_81] = ACTIONS(565), + [anon_sym_try] = ACTIONS(563), [anon_sym_82] = ACTIONS(565), + [anon_sym_do] = ACTIONS(563), [anon_sym_83] = ACTIONS(565), + [anon_sym_all] = ACTIONS(565), [anon_sym_84] = ACTIONS(565), + [anon_sym_setinv] = ACTIONS(565), + [anon_sym_setunder] = ACTIONS(565), [anon_sym_85] = ACTIONS(565), [anon_sym_86] = ACTIONS(565), [anon_sym_87] = ACTIONS(565), @@ -41222,6 +42702,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(565), [anon_sym_91] = ACTIONS(565), [anon_sym_92] = ACTIONS(565), + [anon_sym_93] = ACTIONS(565), + [anon_sym_94] = ACTIONS(565), + [anon_sym_95] = ACTIONS(565), + [anon_sym_96] = ACTIONS(565), [sym__endOfLine] = ACTIONS(5), }, [148] = { @@ -41411,35 +42895,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(585), [anon_sym_pack] = ACTIONS(585), [anon_sym_68] = ACTIONS(585), - [anon_sym_reach] = ACTIONS(585), + [anon_sym_rectify] = ACTIONS(585), [anon_sym_69] = ACTIONS(585), - [anon_sym_fold] = ACTIONS(585), + [anon_sym_this] = ACTIONS(585), [anon_sym_70] = ACTIONS(585), - [anon_sym_table] = ACTIONS(585), + [anon_sym_recur] = ACTIONS(585), [anon_sym_71] = ACTIONS(585), - [anon_sym_cross] = ACTIONS(585), + [anon_sym_fold] = ACTIONS(585), [anon_sym_72] = ACTIONS(585), - [anon_sym_group] = ACTIONS(585), + [anon_sym_table] = ACTIONS(585), [anon_sym_73] = ACTIONS(585), - [anon_sym_partition] = ACTIONS(585), + [anon_sym_cross] = ACTIONS(585), [anon_sym_74] = ACTIONS(585), - [anon_sym_both] = ACTIONS(585), + [anon_sym_group] = ACTIONS(585), [anon_sym_75] = ACTIONS(585), - [anon_sym_bracket] = ACTIONS(585), + [anon_sym_partition] = ACTIONS(585), [anon_sym_76] = ACTIONS(585), - [anon_sym_fork] = ACTIONS(585), + [anon_sym_both] = ACTIONS(585), [anon_sym_77] = ACTIONS(585), - [anon_sym_under] = ACTIONS(585), + [anon_sym_bracket] = ACTIONS(585), [anon_sym_78] = ACTIONS(585), - [anon_sym_fill] = ACTIONS(585), + [anon_sym_fork] = ACTIONS(585), [anon_sym_79] = ACTIONS(585), - [anon_sym_try] = ACTIONS(583), + [anon_sym_under] = ACTIONS(585), [anon_sym_80] = ACTIONS(585), - [anon_sym_do] = ACTIONS(583), + [anon_sym_fill] = ACTIONS(585), [anon_sym_81] = ACTIONS(585), + [anon_sym_try] = ACTIONS(583), [anon_sym_82] = ACTIONS(585), + [anon_sym_do] = ACTIONS(583), [anon_sym_83] = ACTIONS(585), + [anon_sym_all] = ACTIONS(585), [anon_sym_84] = ACTIONS(585), + [anon_sym_setinv] = ACTIONS(585), + [anon_sym_setunder] = ACTIONS(585), [anon_sym_85] = ACTIONS(585), [anon_sym_86] = ACTIONS(585), [anon_sym_87] = ACTIONS(585), @@ -41448,6 +42937,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(585), [anon_sym_91] = ACTIONS(585), [anon_sym_92] = ACTIONS(585), + [anon_sym_93] = ACTIONS(585), + [anon_sym_94] = ACTIONS(585), + [anon_sym_95] = ACTIONS(585), + [anon_sym_96] = ACTIONS(585), [sym__endOfLine] = ACTIONS(5), }, [149] = { @@ -41637,35 +43130,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(565), [anon_sym_pack] = ACTIONS(565), [anon_sym_68] = ACTIONS(565), - [anon_sym_reach] = ACTIONS(565), + [anon_sym_rectify] = ACTIONS(565), [anon_sym_69] = ACTIONS(565), - [anon_sym_fold] = ACTIONS(565), + [anon_sym_this] = ACTIONS(565), [anon_sym_70] = ACTIONS(565), - [anon_sym_table] = ACTIONS(565), + [anon_sym_recur] = ACTIONS(565), [anon_sym_71] = ACTIONS(565), - [anon_sym_cross] = ACTIONS(565), + [anon_sym_fold] = ACTIONS(565), [anon_sym_72] = ACTIONS(565), - [anon_sym_group] = ACTIONS(565), + [anon_sym_table] = ACTIONS(565), [anon_sym_73] = ACTIONS(565), - [anon_sym_partition] = ACTIONS(565), + [anon_sym_cross] = ACTIONS(565), [anon_sym_74] = ACTIONS(565), - [anon_sym_both] = ACTIONS(565), + [anon_sym_group] = ACTIONS(565), [anon_sym_75] = ACTIONS(565), - [anon_sym_bracket] = ACTIONS(565), + [anon_sym_partition] = ACTIONS(565), [anon_sym_76] = ACTIONS(565), - [anon_sym_fork] = ACTIONS(565), + [anon_sym_both] = ACTIONS(565), [anon_sym_77] = ACTIONS(565), - [anon_sym_under] = ACTIONS(565), + [anon_sym_bracket] = ACTIONS(565), [anon_sym_78] = ACTIONS(565), - [anon_sym_fill] = ACTIONS(565), + [anon_sym_fork] = ACTIONS(565), [anon_sym_79] = ACTIONS(565), - [anon_sym_try] = ACTIONS(563), + [anon_sym_under] = ACTIONS(565), [anon_sym_80] = ACTIONS(565), - [anon_sym_do] = ACTIONS(563), + [anon_sym_fill] = ACTIONS(565), [anon_sym_81] = ACTIONS(565), + [anon_sym_try] = ACTIONS(563), [anon_sym_82] = ACTIONS(565), + [anon_sym_do] = ACTIONS(563), [anon_sym_83] = ACTIONS(565), + [anon_sym_all] = ACTIONS(565), [anon_sym_84] = ACTIONS(565), + [anon_sym_setinv] = ACTIONS(565), + [anon_sym_setunder] = ACTIONS(565), [anon_sym_85] = ACTIONS(565), [anon_sym_86] = ACTIONS(565), [anon_sym_87] = ACTIONS(565), @@ -41674,6 +43172,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(565), [anon_sym_91] = ACTIONS(565), [anon_sym_92] = ACTIONS(565), + [anon_sym_93] = ACTIONS(565), + [anon_sym_94] = ACTIONS(565), + [anon_sym_95] = ACTIONS(565), + [anon_sym_96] = ACTIONS(565), [sym__endOfLine] = ACTIONS(5), }, [150] = { @@ -41863,35 +43365,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(565), [anon_sym_pack] = ACTIONS(565), [anon_sym_68] = ACTIONS(565), - [anon_sym_reach] = ACTIONS(565), + [anon_sym_rectify] = ACTIONS(565), [anon_sym_69] = ACTIONS(565), - [anon_sym_fold] = ACTIONS(565), + [anon_sym_this] = ACTIONS(565), [anon_sym_70] = ACTIONS(565), - [anon_sym_table] = ACTIONS(565), + [anon_sym_recur] = ACTIONS(565), [anon_sym_71] = ACTIONS(565), - [anon_sym_cross] = ACTIONS(565), + [anon_sym_fold] = ACTIONS(565), [anon_sym_72] = ACTIONS(565), - [anon_sym_group] = ACTIONS(565), + [anon_sym_table] = ACTIONS(565), [anon_sym_73] = ACTIONS(565), - [anon_sym_partition] = ACTIONS(565), + [anon_sym_cross] = ACTIONS(565), [anon_sym_74] = ACTIONS(565), - [anon_sym_both] = ACTIONS(565), + [anon_sym_group] = ACTIONS(565), [anon_sym_75] = ACTIONS(565), - [anon_sym_bracket] = ACTIONS(565), + [anon_sym_partition] = ACTIONS(565), [anon_sym_76] = ACTIONS(565), - [anon_sym_fork] = ACTIONS(565), + [anon_sym_both] = ACTIONS(565), [anon_sym_77] = ACTIONS(565), - [anon_sym_under] = ACTIONS(565), + [anon_sym_bracket] = ACTIONS(565), [anon_sym_78] = ACTIONS(565), - [anon_sym_fill] = ACTIONS(565), + [anon_sym_fork] = ACTIONS(565), [anon_sym_79] = ACTIONS(565), - [anon_sym_try] = ACTIONS(563), + [anon_sym_under] = ACTIONS(565), [anon_sym_80] = ACTIONS(565), - [anon_sym_do] = ACTIONS(563), + [anon_sym_fill] = ACTIONS(565), [anon_sym_81] = ACTIONS(565), + [anon_sym_try] = ACTIONS(563), [anon_sym_82] = ACTIONS(565), + [anon_sym_do] = ACTIONS(563), [anon_sym_83] = ACTIONS(565), + [anon_sym_all] = ACTIONS(565), [anon_sym_84] = ACTIONS(565), + [anon_sym_setinv] = ACTIONS(565), + [anon_sym_setunder] = ACTIONS(565), [anon_sym_85] = ACTIONS(565), [anon_sym_86] = ACTIONS(565), [anon_sym_87] = ACTIONS(565), @@ -41900,6 +43407,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(565), [anon_sym_91] = ACTIONS(565), [anon_sym_92] = ACTIONS(565), + [anon_sym_93] = ACTIONS(565), + [anon_sym_94] = ACTIONS(565), + [anon_sym_95] = ACTIONS(565), + [anon_sym_96] = ACTIONS(565), [sym__endOfLine] = ACTIONS(5), }, [151] = { @@ -42089,35 +43600,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(565), [anon_sym_pack] = ACTIONS(565), [anon_sym_68] = ACTIONS(565), - [anon_sym_reach] = ACTIONS(565), + [anon_sym_rectify] = ACTIONS(565), [anon_sym_69] = ACTIONS(565), - [anon_sym_fold] = ACTIONS(565), + [anon_sym_this] = ACTIONS(565), [anon_sym_70] = ACTIONS(565), - [anon_sym_table] = ACTIONS(565), + [anon_sym_recur] = ACTIONS(565), [anon_sym_71] = ACTIONS(565), - [anon_sym_cross] = ACTIONS(565), + [anon_sym_fold] = ACTIONS(565), [anon_sym_72] = ACTIONS(565), - [anon_sym_group] = ACTIONS(565), + [anon_sym_table] = ACTIONS(565), [anon_sym_73] = ACTIONS(565), - [anon_sym_partition] = ACTIONS(565), + [anon_sym_cross] = ACTIONS(565), [anon_sym_74] = ACTIONS(565), - [anon_sym_both] = ACTIONS(565), + [anon_sym_group] = ACTIONS(565), [anon_sym_75] = ACTIONS(565), - [anon_sym_bracket] = ACTIONS(565), + [anon_sym_partition] = ACTIONS(565), [anon_sym_76] = ACTIONS(565), - [anon_sym_fork] = ACTIONS(565), + [anon_sym_both] = ACTIONS(565), [anon_sym_77] = ACTIONS(565), - [anon_sym_under] = ACTIONS(565), + [anon_sym_bracket] = ACTIONS(565), [anon_sym_78] = ACTIONS(565), - [anon_sym_fill] = ACTIONS(565), + [anon_sym_fork] = ACTIONS(565), [anon_sym_79] = ACTIONS(565), - [anon_sym_try] = ACTIONS(563), + [anon_sym_under] = ACTIONS(565), [anon_sym_80] = ACTIONS(565), - [anon_sym_do] = ACTIONS(563), + [anon_sym_fill] = ACTIONS(565), [anon_sym_81] = ACTIONS(565), + [anon_sym_try] = ACTIONS(563), [anon_sym_82] = ACTIONS(565), + [anon_sym_do] = ACTIONS(563), [anon_sym_83] = ACTIONS(565), + [anon_sym_all] = ACTIONS(565), [anon_sym_84] = ACTIONS(565), + [anon_sym_setinv] = ACTIONS(565), + [anon_sym_setunder] = ACTIONS(565), [anon_sym_85] = ACTIONS(565), [anon_sym_86] = ACTIONS(565), [anon_sym_87] = ACTIONS(565), @@ -42126,6 +43642,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(565), [anon_sym_91] = ACTIONS(565), [anon_sym_92] = ACTIONS(565), + [anon_sym_93] = ACTIONS(565), + [anon_sym_94] = ACTIONS(565), + [anon_sym_95] = ACTIONS(565), + [anon_sym_96] = ACTIONS(565), [sym__endOfLine] = ACTIONS(5), }, [152] = { @@ -42315,35 +43835,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(565), [anon_sym_pack] = ACTIONS(565), [anon_sym_68] = ACTIONS(565), - [anon_sym_reach] = ACTIONS(565), + [anon_sym_rectify] = ACTIONS(565), [anon_sym_69] = ACTIONS(565), - [anon_sym_fold] = ACTIONS(565), + [anon_sym_this] = ACTIONS(565), [anon_sym_70] = ACTIONS(565), - [anon_sym_table] = ACTIONS(565), + [anon_sym_recur] = ACTIONS(565), [anon_sym_71] = ACTIONS(565), - [anon_sym_cross] = ACTIONS(565), + [anon_sym_fold] = ACTIONS(565), [anon_sym_72] = ACTIONS(565), - [anon_sym_group] = ACTIONS(565), + [anon_sym_table] = ACTIONS(565), [anon_sym_73] = ACTIONS(565), - [anon_sym_partition] = ACTIONS(565), + [anon_sym_cross] = ACTIONS(565), [anon_sym_74] = ACTIONS(565), - [anon_sym_both] = ACTIONS(565), + [anon_sym_group] = ACTIONS(565), [anon_sym_75] = ACTIONS(565), - [anon_sym_bracket] = ACTIONS(565), + [anon_sym_partition] = ACTIONS(565), [anon_sym_76] = ACTIONS(565), - [anon_sym_fork] = ACTIONS(565), + [anon_sym_both] = ACTIONS(565), [anon_sym_77] = ACTIONS(565), - [anon_sym_under] = ACTIONS(565), + [anon_sym_bracket] = ACTIONS(565), [anon_sym_78] = ACTIONS(565), - [anon_sym_fill] = ACTIONS(565), + [anon_sym_fork] = ACTIONS(565), [anon_sym_79] = ACTIONS(565), - [anon_sym_try] = ACTIONS(563), + [anon_sym_under] = ACTIONS(565), [anon_sym_80] = ACTIONS(565), - [anon_sym_do] = ACTIONS(563), + [anon_sym_fill] = ACTIONS(565), [anon_sym_81] = ACTIONS(565), + [anon_sym_try] = ACTIONS(563), [anon_sym_82] = ACTIONS(565), + [anon_sym_do] = ACTIONS(563), [anon_sym_83] = ACTIONS(565), + [anon_sym_all] = ACTIONS(565), [anon_sym_84] = ACTIONS(565), + [anon_sym_setinv] = ACTIONS(565), + [anon_sym_setunder] = ACTIONS(565), [anon_sym_85] = ACTIONS(565), [anon_sym_86] = ACTIONS(565), [anon_sym_87] = ACTIONS(565), @@ -42352,6 +43877,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(565), [anon_sym_91] = ACTIONS(565), [anon_sym_92] = ACTIONS(565), + [anon_sym_93] = ACTIONS(565), + [anon_sym_94] = ACTIONS(565), + [anon_sym_95] = ACTIONS(565), + [anon_sym_96] = ACTIONS(565), [sym__endOfLine] = ACTIONS(5), }, [153] = { @@ -42541,35 +44070,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(565), [anon_sym_pack] = ACTIONS(565), [anon_sym_68] = ACTIONS(565), - [anon_sym_reach] = ACTIONS(565), + [anon_sym_rectify] = ACTIONS(565), [anon_sym_69] = ACTIONS(565), - [anon_sym_fold] = ACTIONS(565), + [anon_sym_this] = ACTIONS(565), [anon_sym_70] = ACTIONS(565), - [anon_sym_table] = ACTIONS(565), + [anon_sym_recur] = ACTIONS(565), [anon_sym_71] = ACTIONS(565), - [anon_sym_cross] = ACTIONS(565), + [anon_sym_fold] = ACTIONS(565), [anon_sym_72] = ACTIONS(565), - [anon_sym_group] = ACTIONS(565), + [anon_sym_table] = ACTIONS(565), [anon_sym_73] = ACTIONS(565), - [anon_sym_partition] = ACTIONS(565), + [anon_sym_cross] = ACTIONS(565), [anon_sym_74] = ACTIONS(565), - [anon_sym_both] = ACTIONS(565), + [anon_sym_group] = ACTIONS(565), [anon_sym_75] = ACTIONS(565), - [anon_sym_bracket] = ACTIONS(565), + [anon_sym_partition] = ACTIONS(565), [anon_sym_76] = ACTIONS(565), - [anon_sym_fork] = ACTIONS(565), + [anon_sym_both] = ACTIONS(565), [anon_sym_77] = ACTIONS(565), - [anon_sym_under] = ACTIONS(565), + [anon_sym_bracket] = ACTIONS(565), [anon_sym_78] = ACTIONS(565), - [anon_sym_fill] = ACTIONS(565), + [anon_sym_fork] = ACTIONS(565), [anon_sym_79] = ACTIONS(565), - [anon_sym_try] = ACTIONS(563), + [anon_sym_under] = ACTIONS(565), [anon_sym_80] = ACTIONS(565), - [anon_sym_do] = ACTIONS(563), + [anon_sym_fill] = ACTIONS(565), [anon_sym_81] = ACTIONS(565), + [anon_sym_try] = ACTIONS(563), [anon_sym_82] = ACTIONS(565), + [anon_sym_do] = ACTIONS(563), [anon_sym_83] = ACTIONS(565), + [anon_sym_all] = ACTIONS(565), [anon_sym_84] = ACTIONS(565), + [anon_sym_setinv] = ACTIONS(565), + [anon_sym_setunder] = ACTIONS(565), [anon_sym_85] = ACTIONS(565), [anon_sym_86] = ACTIONS(565), [anon_sym_87] = ACTIONS(565), @@ -42578,6 +44112,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(565), [anon_sym_91] = ACTIONS(565), [anon_sym_92] = ACTIONS(565), + [anon_sym_93] = ACTIONS(565), + [anon_sym_94] = ACTIONS(565), + [anon_sym_95] = ACTIONS(565), + [anon_sym_96] = ACTIONS(565), [sym__endOfLine] = ACTIONS(5), }, [154] = { @@ -42767,35 +44305,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(565), [anon_sym_pack] = ACTIONS(565), [anon_sym_68] = ACTIONS(565), - [anon_sym_reach] = ACTIONS(565), + [anon_sym_rectify] = ACTIONS(565), [anon_sym_69] = ACTIONS(565), - [anon_sym_fold] = ACTIONS(565), + [anon_sym_this] = ACTIONS(565), [anon_sym_70] = ACTIONS(565), - [anon_sym_table] = ACTIONS(565), + [anon_sym_recur] = ACTIONS(565), [anon_sym_71] = ACTIONS(565), - [anon_sym_cross] = ACTIONS(565), + [anon_sym_fold] = ACTIONS(565), [anon_sym_72] = ACTIONS(565), - [anon_sym_group] = ACTIONS(565), + [anon_sym_table] = ACTIONS(565), [anon_sym_73] = ACTIONS(565), - [anon_sym_partition] = ACTIONS(565), + [anon_sym_cross] = ACTIONS(565), [anon_sym_74] = ACTIONS(565), - [anon_sym_both] = ACTIONS(565), + [anon_sym_group] = ACTIONS(565), [anon_sym_75] = ACTIONS(565), - [anon_sym_bracket] = ACTIONS(565), + [anon_sym_partition] = ACTIONS(565), [anon_sym_76] = ACTIONS(565), - [anon_sym_fork] = ACTIONS(565), + [anon_sym_both] = ACTIONS(565), [anon_sym_77] = ACTIONS(565), - [anon_sym_under] = ACTIONS(565), + [anon_sym_bracket] = ACTIONS(565), [anon_sym_78] = ACTIONS(565), - [anon_sym_fill] = ACTIONS(565), + [anon_sym_fork] = ACTIONS(565), [anon_sym_79] = ACTIONS(565), - [anon_sym_try] = ACTIONS(563), + [anon_sym_under] = ACTIONS(565), [anon_sym_80] = ACTIONS(565), - [anon_sym_do] = ACTIONS(563), + [anon_sym_fill] = ACTIONS(565), [anon_sym_81] = ACTIONS(565), + [anon_sym_try] = ACTIONS(563), [anon_sym_82] = ACTIONS(565), + [anon_sym_do] = ACTIONS(563), [anon_sym_83] = ACTIONS(565), + [anon_sym_all] = ACTIONS(565), [anon_sym_84] = ACTIONS(565), + [anon_sym_setinv] = ACTIONS(565), + [anon_sym_setunder] = ACTIONS(565), [anon_sym_85] = ACTIONS(565), [anon_sym_86] = ACTIONS(565), [anon_sym_87] = ACTIONS(565), @@ -42804,6 +44347,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(565), [anon_sym_91] = ACTIONS(565), [anon_sym_92] = ACTIONS(565), + [anon_sym_93] = ACTIONS(565), + [anon_sym_94] = ACTIONS(565), + [anon_sym_95] = ACTIONS(565), + [anon_sym_96] = ACTIONS(565), [sym__endOfLine] = ACTIONS(5), }, [155] = { @@ -42993,35 +44540,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(601), [anon_sym_pack] = ACTIONS(601), [anon_sym_68] = ACTIONS(601), - [anon_sym_reach] = ACTIONS(601), + [anon_sym_rectify] = ACTIONS(601), [anon_sym_69] = ACTIONS(601), - [anon_sym_fold] = ACTIONS(601), + [anon_sym_this] = ACTIONS(601), [anon_sym_70] = ACTIONS(601), - [anon_sym_table] = ACTIONS(601), + [anon_sym_recur] = ACTIONS(601), [anon_sym_71] = ACTIONS(601), - [anon_sym_cross] = ACTIONS(601), + [anon_sym_fold] = ACTIONS(601), [anon_sym_72] = ACTIONS(601), - [anon_sym_group] = ACTIONS(601), + [anon_sym_table] = ACTIONS(601), [anon_sym_73] = ACTIONS(601), - [anon_sym_partition] = ACTIONS(601), + [anon_sym_cross] = ACTIONS(601), [anon_sym_74] = ACTIONS(601), - [anon_sym_both] = ACTIONS(601), + [anon_sym_group] = ACTIONS(601), [anon_sym_75] = ACTIONS(601), - [anon_sym_bracket] = ACTIONS(601), + [anon_sym_partition] = ACTIONS(601), [anon_sym_76] = ACTIONS(601), - [anon_sym_fork] = ACTIONS(601), + [anon_sym_both] = ACTIONS(601), [anon_sym_77] = ACTIONS(601), - [anon_sym_under] = ACTIONS(601), + [anon_sym_bracket] = ACTIONS(601), [anon_sym_78] = ACTIONS(601), - [anon_sym_fill] = ACTIONS(601), + [anon_sym_fork] = ACTIONS(601), [anon_sym_79] = ACTIONS(601), - [anon_sym_try] = ACTIONS(599), + [anon_sym_under] = ACTIONS(601), [anon_sym_80] = ACTIONS(601), - [anon_sym_do] = ACTIONS(599), + [anon_sym_fill] = ACTIONS(601), [anon_sym_81] = ACTIONS(601), + [anon_sym_try] = ACTIONS(599), [anon_sym_82] = ACTIONS(601), + [anon_sym_do] = ACTIONS(599), [anon_sym_83] = ACTIONS(601), + [anon_sym_all] = ACTIONS(601), [anon_sym_84] = ACTIONS(601), + [anon_sym_setinv] = ACTIONS(601), + [anon_sym_setunder] = ACTIONS(601), [anon_sym_85] = ACTIONS(601), [anon_sym_86] = ACTIONS(601), [anon_sym_87] = ACTIONS(601), @@ -43030,6 +44582,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(601), [anon_sym_91] = ACTIONS(601), [anon_sym_92] = ACTIONS(601), + [anon_sym_93] = ACTIONS(601), + [anon_sym_94] = ACTIONS(601), + [anon_sym_95] = ACTIONS(601), + [anon_sym_96] = ACTIONS(601), [sym__endOfLine] = ACTIONS(5), }, [156] = { @@ -43219,35 +44775,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(565), [anon_sym_pack] = ACTIONS(565), [anon_sym_68] = ACTIONS(565), - [anon_sym_reach] = ACTIONS(565), + [anon_sym_rectify] = ACTIONS(565), [anon_sym_69] = ACTIONS(565), - [anon_sym_fold] = ACTIONS(565), + [anon_sym_this] = ACTIONS(565), [anon_sym_70] = ACTIONS(565), - [anon_sym_table] = ACTIONS(565), + [anon_sym_recur] = ACTIONS(565), [anon_sym_71] = ACTIONS(565), - [anon_sym_cross] = ACTIONS(565), + [anon_sym_fold] = ACTIONS(565), [anon_sym_72] = ACTIONS(565), - [anon_sym_group] = ACTIONS(565), + [anon_sym_table] = ACTIONS(565), [anon_sym_73] = ACTIONS(565), - [anon_sym_partition] = ACTIONS(565), + [anon_sym_cross] = ACTIONS(565), [anon_sym_74] = ACTIONS(565), - [anon_sym_both] = ACTIONS(565), + [anon_sym_group] = ACTIONS(565), [anon_sym_75] = ACTIONS(565), - [anon_sym_bracket] = ACTIONS(565), + [anon_sym_partition] = ACTIONS(565), [anon_sym_76] = ACTIONS(565), - [anon_sym_fork] = ACTIONS(565), + [anon_sym_both] = ACTIONS(565), [anon_sym_77] = ACTIONS(565), - [anon_sym_under] = ACTIONS(565), + [anon_sym_bracket] = ACTIONS(565), [anon_sym_78] = ACTIONS(565), - [anon_sym_fill] = ACTIONS(565), + [anon_sym_fork] = ACTIONS(565), [anon_sym_79] = ACTIONS(565), - [anon_sym_try] = ACTIONS(563), + [anon_sym_under] = ACTIONS(565), [anon_sym_80] = ACTIONS(565), - [anon_sym_do] = ACTIONS(563), + [anon_sym_fill] = ACTIONS(565), [anon_sym_81] = ACTIONS(565), + [anon_sym_try] = ACTIONS(563), [anon_sym_82] = ACTIONS(565), + [anon_sym_do] = ACTIONS(563), [anon_sym_83] = ACTIONS(565), + [anon_sym_all] = ACTIONS(565), [anon_sym_84] = ACTIONS(565), + [anon_sym_setinv] = ACTIONS(565), + [anon_sym_setunder] = ACTIONS(565), [anon_sym_85] = ACTIONS(565), [anon_sym_86] = ACTIONS(565), [anon_sym_87] = ACTIONS(565), @@ -43256,6 +44817,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(565), [anon_sym_91] = ACTIONS(565), [anon_sym_92] = ACTIONS(565), + [anon_sym_93] = ACTIONS(565), + [anon_sym_94] = ACTIONS(565), + [anon_sym_95] = ACTIONS(565), + [anon_sym_96] = ACTIONS(565), [sym__endOfLine] = ACTIONS(5), }, [157] = { @@ -43445,35 +45010,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(565), [anon_sym_pack] = ACTIONS(565), [anon_sym_68] = ACTIONS(565), - [anon_sym_reach] = ACTIONS(565), + [anon_sym_rectify] = ACTIONS(565), [anon_sym_69] = ACTIONS(565), - [anon_sym_fold] = ACTIONS(565), + [anon_sym_this] = ACTIONS(565), [anon_sym_70] = ACTIONS(565), - [anon_sym_table] = ACTIONS(565), + [anon_sym_recur] = ACTIONS(565), [anon_sym_71] = ACTIONS(565), - [anon_sym_cross] = ACTIONS(565), + [anon_sym_fold] = ACTIONS(565), [anon_sym_72] = ACTIONS(565), - [anon_sym_group] = ACTIONS(565), + [anon_sym_table] = ACTIONS(565), [anon_sym_73] = ACTIONS(565), - [anon_sym_partition] = ACTIONS(565), + [anon_sym_cross] = ACTIONS(565), [anon_sym_74] = ACTIONS(565), - [anon_sym_both] = ACTIONS(565), + [anon_sym_group] = ACTIONS(565), [anon_sym_75] = ACTIONS(565), - [anon_sym_bracket] = ACTIONS(565), + [anon_sym_partition] = ACTIONS(565), [anon_sym_76] = ACTIONS(565), - [anon_sym_fork] = ACTIONS(565), + [anon_sym_both] = ACTIONS(565), [anon_sym_77] = ACTIONS(565), - [anon_sym_under] = ACTIONS(565), + [anon_sym_bracket] = ACTIONS(565), [anon_sym_78] = ACTIONS(565), - [anon_sym_fill] = ACTIONS(565), + [anon_sym_fork] = ACTIONS(565), [anon_sym_79] = ACTIONS(565), - [anon_sym_try] = ACTIONS(563), + [anon_sym_under] = ACTIONS(565), [anon_sym_80] = ACTIONS(565), - [anon_sym_do] = ACTIONS(563), + [anon_sym_fill] = ACTIONS(565), [anon_sym_81] = ACTIONS(565), + [anon_sym_try] = ACTIONS(563), [anon_sym_82] = ACTIONS(565), + [anon_sym_do] = ACTIONS(563), [anon_sym_83] = ACTIONS(565), + [anon_sym_all] = ACTIONS(565), [anon_sym_84] = ACTIONS(565), + [anon_sym_setinv] = ACTIONS(565), + [anon_sym_setunder] = ACTIONS(565), [anon_sym_85] = ACTIONS(565), [anon_sym_86] = ACTIONS(565), [anon_sym_87] = ACTIONS(565), @@ -43482,6 +45052,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(565), [anon_sym_91] = ACTIONS(565), [anon_sym_92] = ACTIONS(565), + [anon_sym_93] = ACTIONS(565), + [anon_sym_94] = ACTIONS(565), + [anon_sym_95] = ACTIONS(565), + [anon_sym_96] = ACTIONS(565), [sym__endOfLine] = ACTIONS(5), }, [158] = { @@ -43671,35 +45245,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(565), [anon_sym_pack] = ACTIONS(565), [anon_sym_68] = ACTIONS(565), - [anon_sym_reach] = ACTIONS(565), + [anon_sym_rectify] = ACTIONS(565), [anon_sym_69] = ACTIONS(565), - [anon_sym_fold] = ACTIONS(565), + [anon_sym_this] = ACTIONS(565), [anon_sym_70] = ACTIONS(565), - [anon_sym_table] = ACTIONS(565), + [anon_sym_recur] = ACTIONS(565), [anon_sym_71] = ACTIONS(565), - [anon_sym_cross] = ACTIONS(565), + [anon_sym_fold] = ACTIONS(565), [anon_sym_72] = ACTIONS(565), - [anon_sym_group] = ACTIONS(565), + [anon_sym_table] = ACTIONS(565), [anon_sym_73] = ACTIONS(565), - [anon_sym_partition] = ACTIONS(565), + [anon_sym_cross] = ACTIONS(565), [anon_sym_74] = ACTIONS(565), - [anon_sym_both] = ACTIONS(565), + [anon_sym_group] = ACTIONS(565), [anon_sym_75] = ACTIONS(565), - [anon_sym_bracket] = ACTIONS(565), + [anon_sym_partition] = ACTIONS(565), [anon_sym_76] = ACTIONS(565), - [anon_sym_fork] = ACTIONS(565), + [anon_sym_both] = ACTIONS(565), [anon_sym_77] = ACTIONS(565), - [anon_sym_under] = ACTIONS(565), + [anon_sym_bracket] = ACTIONS(565), [anon_sym_78] = ACTIONS(565), - [anon_sym_fill] = ACTIONS(565), + [anon_sym_fork] = ACTIONS(565), [anon_sym_79] = ACTIONS(565), - [anon_sym_try] = ACTIONS(563), + [anon_sym_under] = ACTIONS(565), [anon_sym_80] = ACTIONS(565), - [anon_sym_do] = ACTIONS(563), + [anon_sym_fill] = ACTIONS(565), [anon_sym_81] = ACTIONS(565), + [anon_sym_try] = ACTIONS(563), [anon_sym_82] = ACTIONS(565), + [anon_sym_do] = ACTIONS(563), [anon_sym_83] = ACTIONS(565), + [anon_sym_all] = ACTIONS(565), [anon_sym_84] = ACTIONS(565), + [anon_sym_setinv] = ACTIONS(565), + [anon_sym_setunder] = ACTIONS(565), [anon_sym_85] = ACTIONS(565), [anon_sym_86] = ACTIONS(565), [anon_sym_87] = ACTIONS(565), @@ -43708,6 +45287,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(565), [anon_sym_91] = ACTIONS(565), [anon_sym_92] = ACTIONS(565), + [anon_sym_93] = ACTIONS(565), + [anon_sym_94] = ACTIONS(565), + [anon_sym_95] = ACTIONS(565), + [anon_sym_96] = ACTIONS(565), [sym__endOfLine] = ACTIONS(5), }, [159] = { @@ -43897,35 +45480,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(565), [anon_sym_pack] = ACTIONS(565), [anon_sym_68] = ACTIONS(565), - [anon_sym_reach] = ACTIONS(565), + [anon_sym_rectify] = ACTIONS(565), [anon_sym_69] = ACTIONS(565), - [anon_sym_fold] = ACTIONS(565), + [anon_sym_this] = ACTIONS(565), [anon_sym_70] = ACTIONS(565), - [anon_sym_table] = ACTIONS(565), + [anon_sym_recur] = ACTIONS(565), [anon_sym_71] = ACTIONS(565), - [anon_sym_cross] = ACTIONS(565), + [anon_sym_fold] = ACTIONS(565), [anon_sym_72] = ACTIONS(565), - [anon_sym_group] = ACTIONS(565), + [anon_sym_table] = ACTIONS(565), [anon_sym_73] = ACTIONS(565), - [anon_sym_partition] = ACTIONS(565), + [anon_sym_cross] = ACTIONS(565), [anon_sym_74] = ACTIONS(565), - [anon_sym_both] = ACTIONS(565), + [anon_sym_group] = ACTIONS(565), [anon_sym_75] = ACTIONS(565), - [anon_sym_bracket] = ACTIONS(565), + [anon_sym_partition] = ACTIONS(565), [anon_sym_76] = ACTIONS(565), - [anon_sym_fork] = ACTIONS(565), + [anon_sym_both] = ACTIONS(565), [anon_sym_77] = ACTIONS(565), - [anon_sym_under] = ACTIONS(565), + [anon_sym_bracket] = ACTIONS(565), [anon_sym_78] = ACTIONS(565), - [anon_sym_fill] = ACTIONS(565), + [anon_sym_fork] = ACTIONS(565), [anon_sym_79] = ACTIONS(565), - [anon_sym_try] = ACTIONS(563), + [anon_sym_under] = ACTIONS(565), [anon_sym_80] = ACTIONS(565), - [anon_sym_do] = ACTIONS(563), + [anon_sym_fill] = ACTIONS(565), [anon_sym_81] = ACTIONS(565), + [anon_sym_try] = ACTIONS(563), [anon_sym_82] = ACTIONS(565), + [anon_sym_do] = ACTIONS(563), [anon_sym_83] = ACTIONS(565), + [anon_sym_all] = ACTIONS(565), [anon_sym_84] = ACTIONS(565), + [anon_sym_setinv] = ACTIONS(565), + [anon_sym_setunder] = ACTIONS(565), [anon_sym_85] = ACTIONS(565), [anon_sym_86] = ACTIONS(565), [anon_sym_87] = ACTIONS(565), @@ -43934,6 +45522,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(565), [anon_sym_91] = ACTIONS(565), [anon_sym_92] = ACTIONS(565), + [anon_sym_93] = ACTIONS(565), + [anon_sym_94] = ACTIONS(565), + [anon_sym_95] = ACTIONS(565), + [anon_sym_96] = ACTIONS(565), [sym__endOfLine] = ACTIONS(5), }, [160] = { @@ -44123,35 +45715,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(565), [anon_sym_pack] = ACTIONS(565), [anon_sym_68] = ACTIONS(565), - [anon_sym_reach] = ACTIONS(565), + [anon_sym_rectify] = ACTIONS(565), [anon_sym_69] = ACTIONS(565), - [anon_sym_fold] = ACTIONS(565), + [anon_sym_this] = ACTIONS(565), [anon_sym_70] = ACTIONS(565), - [anon_sym_table] = ACTIONS(565), + [anon_sym_recur] = ACTIONS(565), [anon_sym_71] = ACTIONS(565), - [anon_sym_cross] = ACTIONS(565), + [anon_sym_fold] = ACTIONS(565), [anon_sym_72] = ACTIONS(565), - [anon_sym_group] = ACTIONS(565), + [anon_sym_table] = ACTIONS(565), [anon_sym_73] = ACTIONS(565), - [anon_sym_partition] = ACTIONS(565), + [anon_sym_cross] = ACTIONS(565), [anon_sym_74] = ACTIONS(565), - [anon_sym_both] = ACTIONS(565), + [anon_sym_group] = ACTIONS(565), [anon_sym_75] = ACTIONS(565), - [anon_sym_bracket] = ACTIONS(565), + [anon_sym_partition] = ACTIONS(565), [anon_sym_76] = ACTIONS(565), - [anon_sym_fork] = ACTIONS(565), + [anon_sym_both] = ACTIONS(565), [anon_sym_77] = ACTIONS(565), - [anon_sym_under] = ACTIONS(565), + [anon_sym_bracket] = ACTIONS(565), [anon_sym_78] = ACTIONS(565), - [anon_sym_fill] = ACTIONS(565), + [anon_sym_fork] = ACTIONS(565), [anon_sym_79] = ACTIONS(565), - [anon_sym_try] = ACTIONS(563), + [anon_sym_under] = ACTIONS(565), [anon_sym_80] = ACTIONS(565), - [anon_sym_do] = ACTIONS(563), + [anon_sym_fill] = ACTIONS(565), [anon_sym_81] = ACTIONS(565), + [anon_sym_try] = ACTIONS(563), [anon_sym_82] = ACTIONS(565), + [anon_sym_do] = ACTIONS(563), [anon_sym_83] = ACTIONS(565), + [anon_sym_all] = ACTIONS(565), [anon_sym_84] = ACTIONS(565), + [anon_sym_setinv] = ACTIONS(565), + [anon_sym_setunder] = ACTIONS(565), [anon_sym_85] = ACTIONS(565), [anon_sym_86] = ACTIONS(565), [anon_sym_87] = ACTIONS(565), @@ -44160,6 +45757,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(565), [anon_sym_91] = ACTIONS(565), [anon_sym_92] = ACTIONS(565), + [anon_sym_93] = ACTIONS(565), + [anon_sym_94] = ACTIONS(565), + [anon_sym_95] = ACTIONS(565), + [anon_sym_96] = ACTIONS(565), [sym__endOfLine] = ACTIONS(5), }, [161] = { @@ -44349,35 +45950,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(551), [anon_sym_pack] = ACTIONS(551), [anon_sym_68] = ACTIONS(551), - [anon_sym_reach] = ACTIONS(551), + [anon_sym_rectify] = ACTIONS(551), [anon_sym_69] = ACTIONS(551), - [anon_sym_fold] = ACTIONS(551), + [anon_sym_this] = ACTIONS(551), [anon_sym_70] = ACTIONS(551), - [anon_sym_table] = ACTIONS(551), + [anon_sym_recur] = ACTIONS(551), [anon_sym_71] = ACTIONS(551), - [anon_sym_cross] = ACTIONS(551), + [anon_sym_fold] = ACTIONS(551), [anon_sym_72] = ACTIONS(551), - [anon_sym_group] = ACTIONS(551), + [anon_sym_table] = ACTIONS(551), [anon_sym_73] = ACTIONS(551), - [anon_sym_partition] = ACTIONS(551), + [anon_sym_cross] = ACTIONS(551), [anon_sym_74] = ACTIONS(551), - [anon_sym_both] = ACTIONS(551), + [anon_sym_group] = ACTIONS(551), [anon_sym_75] = ACTIONS(551), - [anon_sym_bracket] = ACTIONS(551), + [anon_sym_partition] = ACTIONS(551), [anon_sym_76] = ACTIONS(551), - [anon_sym_fork] = ACTIONS(551), + [anon_sym_both] = ACTIONS(551), [anon_sym_77] = ACTIONS(551), - [anon_sym_under] = ACTIONS(551), + [anon_sym_bracket] = ACTIONS(551), [anon_sym_78] = ACTIONS(551), - [anon_sym_fill] = ACTIONS(551), + [anon_sym_fork] = ACTIONS(551), [anon_sym_79] = ACTIONS(551), - [anon_sym_try] = ACTIONS(549), + [anon_sym_under] = ACTIONS(551), [anon_sym_80] = ACTIONS(551), - [anon_sym_do] = ACTIONS(549), + [anon_sym_fill] = ACTIONS(551), [anon_sym_81] = ACTIONS(551), + [anon_sym_try] = ACTIONS(549), [anon_sym_82] = ACTIONS(551), + [anon_sym_do] = ACTIONS(549), [anon_sym_83] = ACTIONS(551), + [anon_sym_all] = ACTIONS(551), [anon_sym_84] = ACTIONS(551), + [anon_sym_setinv] = ACTIONS(551), + [anon_sym_setunder] = ACTIONS(551), [anon_sym_85] = ACTIONS(551), [anon_sym_86] = ACTIONS(551), [anon_sym_87] = ACTIONS(551), @@ -44386,6 +45992,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(551), [anon_sym_91] = ACTIONS(551), [anon_sym_92] = ACTIONS(551), + [anon_sym_93] = ACTIONS(551), + [anon_sym_94] = ACTIONS(551), + [anon_sym_95] = ACTIONS(551), + [anon_sym_96] = ACTIONS(551), [sym__endOfLine] = ACTIONS(5), }, [162] = { @@ -44574,35 +46184,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(615), [anon_sym_pack] = ACTIONS(615), [anon_sym_68] = ACTIONS(615), - [anon_sym_reach] = ACTIONS(615), + [anon_sym_rectify] = ACTIONS(615), [anon_sym_69] = ACTIONS(615), - [anon_sym_fold] = ACTIONS(615), + [anon_sym_this] = ACTIONS(615), [anon_sym_70] = ACTIONS(615), - [anon_sym_table] = ACTIONS(615), + [anon_sym_recur] = ACTIONS(615), [anon_sym_71] = ACTIONS(615), - [anon_sym_cross] = ACTIONS(615), + [anon_sym_fold] = ACTIONS(615), [anon_sym_72] = ACTIONS(615), - [anon_sym_group] = ACTIONS(615), + [anon_sym_table] = ACTIONS(615), [anon_sym_73] = ACTIONS(615), - [anon_sym_partition] = ACTIONS(615), + [anon_sym_cross] = ACTIONS(615), [anon_sym_74] = ACTIONS(615), - [anon_sym_both] = ACTIONS(615), + [anon_sym_group] = ACTIONS(615), [anon_sym_75] = ACTIONS(615), - [anon_sym_bracket] = ACTIONS(615), + [anon_sym_partition] = ACTIONS(615), [anon_sym_76] = ACTIONS(615), - [anon_sym_fork] = ACTIONS(615), + [anon_sym_both] = ACTIONS(615), [anon_sym_77] = ACTIONS(615), - [anon_sym_under] = ACTIONS(615), + [anon_sym_bracket] = ACTIONS(615), [anon_sym_78] = ACTIONS(615), - [anon_sym_fill] = ACTIONS(615), + [anon_sym_fork] = ACTIONS(615), [anon_sym_79] = ACTIONS(615), - [anon_sym_try] = ACTIONS(613), + [anon_sym_under] = ACTIONS(615), [anon_sym_80] = ACTIONS(615), - [anon_sym_do] = ACTIONS(613), + [anon_sym_fill] = ACTIONS(615), [anon_sym_81] = ACTIONS(615), + [anon_sym_try] = ACTIONS(613), [anon_sym_82] = ACTIONS(615), + [anon_sym_do] = ACTIONS(613), [anon_sym_83] = ACTIONS(615), + [anon_sym_all] = ACTIONS(615), [anon_sym_84] = ACTIONS(615), + [anon_sym_setinv] = ACTIONS(615), + [anon_sym_setunder] = ACTIONS(615), [anon_sym_85] = ACTIONS(615), [anon_sym_86] = ACTIONS(615), [anon_sym_87] = ACTIONS(615), @@ -44611,6 +46226,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(615), [anon_sym_91] = ACTIONS(615), [anon_sym_92] = ACTIONS(615), + [anon_sym_93] = ACTIONS(615), + [anon_sym_94] = ACTIONS(615), + [anon_sym_95] = ACTIONS(615), + [anon_sym_96] = ACTIONS(615), [sym__endOfLine] = ACTIONS(5), }, [163] = { @@ -44799,35 +46418,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(565), [anon_sym_pack] = ACTIONS(565), [anon_sym_68] = ACTIONS(565), - [anon_sym_reach] = ACTIONS(565), + [anon_sym_rectify] = ACTIONS(565), [anon_sym_69] = ACTIONS(565), - [anon_sym_fold] = ACTIONS(565), + [anon_sym_this] = ACTIONS(565), [anon_sym_70] = ACTIONS(565), - [anon_sym_table] = ACTIONS(565), + [anon_sym_recur] = ACTIONS(565), [anon_sym_71] = ACTIONS(565), - [anon_sym_cross] = ACTIONS(565), + [anon_sym_fold] = ACTIONS(565), [anon_sym_72] = ACTIONS(565), - [anon_sym_group] = ACTIONS(565), + [anon_sym_table] = ACTIONS(565), [anon_sym_73] = ACTIONS(565), - [anon_sym_partition] = ACTIONS(565), + [anon_sym_cross] = ACTIONS(565), [anon_sym_74] = ACTIONS(565), - [anon_sym_both] = ACTIONS(565), + [anon_sym_group] = ACTIONS(565), [anon_sym_75] = ACTIONS(565), - [anon_sym_bracket] = ACTIONS(565), + [anon_sym_partition] = ACTIONS(565), [anon_sym_76] = ACTIONS(565), - [anon_sym_fork] = ACTIONS(565), + [anon_sym_both] = ACTIONS(565), [anon_sym_77] = ACTIONS(565), - [anon_sym_under] = ACTIONS(565), + [anon_sym_bracket] = ACTIONS(565), [anon_sym_78] = ACTIONS(565), - [anon_sym_fill] = ACTIONS(565), + [anon_sym_fork] = ACTIONS(565), [anon_sym_79] = ACTIONS(565), - [anon_sym_try] = ACTIONS(563), + [anon_sym_under] = ACTIONS(565), [anon_sym_80] = ACTIONS(565), - [anon_sym_do] = ACTIONS(563), + [anon_sym_fill] = ACTIONS(565), [anon_sym_81] = ACTIONS(565), + [anon_sym_try] = ACTIONS(563), [anon_sym_82] = ACTIONS(565), + [anon_sym_do] = ACTIONS(563), [anon_sym_83] = ACTIONS(565), + [anon_sym_all] = ACTIONS(565), [anon_sym_84] = ACTIONS(565), + [anon_sym_setinv] = ACTIONS(565), + [anon_sym_setunder] = ACTIONS(565), [anon_sym_85] = ACTIONS(565), [anon_sym_86] = ACTIONS(565), [anon_sym_87] = ACTIONS(565), @@ -44836,6 +46460,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(565), [anon_sym_91] = ACTIONS(565), [anon_sym_92] = ACTIONS(565), + [anon_sym_93] = ACTIONS(565), + [anon_sym_94] = ACTIONS(565), + [anon_sym_95] = ACTIONS(565), + [anon_sym_96] = ACTIONS(565), [sym__endOfLine] = ACTIONS(5), }, [164] = { @@ -45024,35 +46652,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(619), [anon_sym_pack] = ACTIONS(619), [anon_sym_68] = ACTIONS(619), - [anon_sym_reach] = ACTIONS(619), + [anon_sym_rectify] = ACTIONS(619), [anon_sym_69] = ACTIONS(619), - [anon_sym_fold] = ACTIONS(619), + [anon_sym_this] = ACTIONS(619), [anon_sym_70] = ACTIONS(619), - [anon_sym_table] = ACTIONS(619), + [anon_sym_recur] = ACTIONS(619), [anon_sym_71] = ACTIONS(619), - [anon_sym_cross] = ACTIONS(619), + [anon_sym_fold] = ACTIONS(619), [anon_sym_72] = ACTIONS(619), - [anon_sym_group] = ACTIONS(619), + [anon_sym_table] = ACTIONS(619), [anon_sym_73] = ACTIONS(619), - [anon_sym_partition] = ACTIONS(619), + [anon_sym_cross] = ACTIONS(619), [anon_sym_74] = ACTIONS(619), - [anon_sym_both] = ACTIONS(619), + [anon_sym_group] = ACTIONS(619), [anon_sym_75] = ACTIONS(619), - [anon_sym_bracket] = ACTIONS(619), + [anon_sym_partition] = ACTIONS(619), [anon_sym_76] = ACTIONS(619), - [anon_sym_fork] = ACTIONS(619), + [anon_sym_both] = ACTIONS(619), [anon_sym_77] = ACTIONS(619), - [anon_sym_under] = ACTIONS(619), + [anon_sym_bracket] = ACTIONS(619), [anon_sym_78] = ACTIONS(619), - [anon_sym_fill] = ACTIONS(619), + [anon_sym_fork] = ACTIONS(619), [anon_sym_79] = ACTIONS(619), - [anon_sym_try] = ACTIONS(617), + [anon_sym_under] = ACTIONS(619), [anon_sym_80] = ACTIONS(619), - [anon_sym_do] = ACTIONS(617), + [anon_sym_fill] = ACTIONS(619), [anon_sym_81] = ACTIONS(619), + [anon_sym_try] = ACTIONS(617), [anon_sym_82] = ACTIONS(619), + [anon_sym_do] = ACTIONS(617), [anon_sym_83] = ACTIONS(619), + [anon_sym_all] = ACTIONS(619), [anon_sym_84] = ACTIONS(619), + [anon_sym_setinv] = ACTIONS(619), + [anon_sym_setunder] = ACTIONS(619), [anon_sym_85] = ACTIONS(619), [anon_sym_86] = ACTIONS(619), [anon_sym_87] = ACTIONS(619), @@ -45061,6 +46694,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(619), [anon_sym_91] = ACTIONS(619), [anon_sym_92] = ACTIONS(619), + [anon_sym_93] = ACTIONS(619), + [anon_sym_94] = ACTIONS(619), + [anon_sym_95] = ACTIONS(619), + [anon_sym_96] = ACTIONS(619), [sym__endOfLine] = ACTIONS(5), }, [165] = { @@ -45249,35 +46886,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_spawn] = ACTIONS(619), [anon_sym_pack] = ACTIONS(619), [anon_sym_68] = ACTIONS(619), - [anon_sym_reach] = ACTIONS(619), + [anon_sym_rectify] = ACTIONS(619), [anon_sym_69] = ACTIONS(619), - [anon_sym_fold] = ACTIONS(619), + [anon_sym_this] = ACTIONS(619), [anon_sym_70] = ACTIONS(619), - [anon_sym_table] = ACTIONS(619), + [anon_sym_recur] = ACTIONS(619), [anon_sym_71] = ACTIONS(619), - [anon_sym_cross] = ACTIONS(619), + [anon_sym_fold] = ACTIONS(619), [anon_sym_72] = ACTIONS(619), - [anon_sym_group] = ACTIONS(619), + [anon_sym_table] = ACTIONS(619), [anon_sym_73] = ACTIONS(619), - [anon_sym_partition] = ACTIONS(619), + [anon_sym_cross] = ACTIONS(619), [anon_sym_74] = ACTIONS(619), - [anon_sym_both] = ACTIONS(619), + [anon_sym_group] = ACTIONS(619), [anon_sym_75] = ACTIONS(619), - [anon_sym_bracket] = ACTIONS(619), + [anon_sym_partition] = ACTIONS(619), [anon_sym_76] = ACTIONS(619), - [anon_sym_fork] = ACTIONS(619), + [anon_sym_both] = ACTIONS(619), [anon_sym_77] = ACTIONS(619), - [anon_sym_under] = ACTIONS(619), + [anon_sym_bracket] = ACTIONS(619), [anon_sym_78] = ACTIONS(619), - [anon_sym_fill] = ACTIONS(619), + [anon_sym_fork] = ACTIONS(619), [anon_sym_79] = ACTIONS(619), - [anon_sym_try] = ACTIONS(617), + [anon_sym_under] = ACTIONS(619), [anon_sym_80] = ACTIONS(619), - [anon_sym_do] = ACTIONS(617), + [anon_sym_fill] = ACTIONS(619), [anon_sym_81] = ACTIONS(619), + [anon_sym_try] = ACTIONS(617), [anon_sym_82] = ACTIONS(619), + [anon_sym_do] = ACTIONS(617), [anon_sym_83] = ACTIONS(619), + [anon_sym_all] = ACTIONS(619), [anon_sym_84] = ACTIONS(619), + [anon_sym_setinv] = ACTIONS(619), + [anon_sym_setunder] = ACTIONS(619), [anon_sym_85] = ACTIONS(619), [anon_sym_86] = ACTIONS(619), [anon_sym_87] = ACTIONS(619), @@ -45286,6 +46928,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_90] = ACTIONS(619), [anon_sym_91] = ACTIONS(619), [anon_sym_92] = ACTIONS(619), + [anon_sym_93] = ACTIONS(619), + [anon_sym_94] = ACTIONS(619), + [anon_sym_95] = ACTIONS(619), + [anon_sym_96] = ACTIONS(619), [sym__endOfLine] = ACTIONS(5), }, [166] = {